@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&family=Noto+Sans+SC:wght@400;500&family=Noto+Serif+SC:wght@400;500;600&display=swap");

:root {
  --paper: #ffffff;
  --ink: #111111;
  --muted: #5f5f5f;
  --quiet: #8a8a8a;
  --line: #dddddd;
  --wash: #f7f4ee;
  --seal: #b83a31;
  --serif: "Cormorant Garamond", "Noto Serif SC", "Songti SC", serif;
  --sans: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  --page-pad: 44px;
  --max: 1760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  background: var(--wash);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 1.5px solid var(--seal);
  outline-offset: 4px;
}

.wrap {
  width: min(var(--max), calc(100% - var(--page-pad) * 2));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 74px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  width: 132px;
}

.brand-wordmark {
  width: 132px;
  height: auto;
  background: transparent;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 500;
}

.nav a,
.lang a,
.social a,
.footer-nav a {
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"],
.lang a:hover,
.lang a[aria-current="true"],
.social a:hover,
.footer-nav a:hover {
  color: var(--seal);
  border-color: currentColor;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: end;
}

.lang,
.social {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

.home-cover {
  min-height: calc(100svh - 74px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.cover-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 520ms ease;
}

.cover-bg.active {
  opacity: 1;
}

.cover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.28);
}

.cover-menu {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 120px 0;
  text-align: center;
}

.cover-link {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  line-height: 0.94;
  color: var(--ink);
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
  transition: color 160ms ease, -webkit-text-stroke-color 160ms ease;
}

.cover-link:hover,
.cover-link:focus-visible {
  color: rgba(17, 17, 17, 0);
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: none;
}

.home-note {
  position: absolute;
  left: var(--page-pad);
  bottom: 28px;
  z-index: 3;
  max-width: 360px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
}

.home-note p {
  margin: 0;
}

.page-hero {
  min-height: 42vh;
  display: grid;
  align-items: end;
  padding: 110px 0 70px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
}

.page-intro {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.65;
  text-wrap: pretty;
}

.intro-line {
  display: block;
}

.mobile-line {
  display: inline;
}

.keep-together {
  white-space: nowrap;
}

.section {
  padding: 88px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-title {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.05;
}

.profile-grid,
.story-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.profile-grid.reverse,
.story-row.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.profile-copy p,
.story-copy p,
.contact-copy p {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--muted);
}

.profile-copy .lead,
.story-copy .lead,
.contact-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.55;
}

.signature {
  width: 240px;
  margin-top: 30px;
  background: transparent;
  mix-blend-mode: multiply;
}

.image-frame {
  overflow: hidden;
  background: var(--wash);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  column-count: 4;
  column-gap: 22px;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
}

.caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tile {
  display: block;
}

.tile .image-frame {
  aspect-ratio: 4 / 5;
}

.tile-title {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

.tile-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-strip .image-frame {
  aspect-ratio: 1 / 1;
}

.journal-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.journal-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  background: var(--paper);
}

.journal-card img {
  width: 220px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.journal-card h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.journal-card p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

.arrow {
  font-family: var(--serif);
  font-size: 40px;
  padding-right: 20px;
}

.contact-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span:first-child {
  color: var(--quiet);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-row span:last-child {
  font-family: var(--serif);
  font-size: 27px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
}

.footer-signature {
  width: 190px;
  margin-bottom: 12px;
  background: transparent;
  mix-blend-mode: multiply;
}

.footer-small {
  margin: 0;
  color: var(--quiet);
  font-size: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 12px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  background: white;
}

.lightbox button {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 34px;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .cover-link {
    font-size: 56px;
  }

  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 860px) {
  :root {
    --page-pad: 22px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    height: 66px;
  }

  .brand {
    font-size: 27px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 28px var(--page-pad) 32px;
    background: white;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  body.menu-open .nav {
    display: flex;
  }

  .lang,
  .social {
    display: none;
  }

  .cover-link {
    font-size: 37px;
  }

  .home-note {
    left: var(--page-pad);
    right: var(--page-pad);
    bottom: 20px;
    max-width: none;
    font-size: 18px;
  }

  .page-hero {
    min-height: 34vh;
    padding: 70px 0 44px;
  }

  .page-title {
    font-size: 46px;
  }

  .page-intro {
    font-size: 21px;
    overflow-wrap: anywhere;
    word-break: break-all;
    text-wrap: auto;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.14;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .profile-copy .lead,
  .story-copy .lead,
  .contact-copy .lead {
    font-size: 24px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .mobile-line {
    display: block;
  }

  .profile-grid,
  .profile-grid.reverse,
  .story-row,
  .story-row.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tile-grid,
  .product-strip {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 14px;
  }

  .gallery-item {
    margin-bottom: 14px;
  }

  .journal-card {
    grid-template-columns: 96px 1fr;
    gap: 18px;
    padding: 18px 0;
  }

  .journal-card img {
    width: 96px;
  }

  .journal-card h2 {
    font-size: 25px;
  }

  .journal-card .arrow {
    display: none;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-row span:last-child {
    font-size: 22px;
  }

  .footer-inner {
    display: block;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .cover-menu {
    gap: 8px;
    padding: 78px 0 130px;
  }

  .cover-link {
    font-size: 33px;
  }

  .gallery-grid {
    column-count: 1;
  }
}
