:root {
  --aqua: #74f0ec;
  --cream: #f5f1e7;
  --paper: #fffdf8;
  --ink: #0b0b0b;
  --pink: #ea5384;
  --muted: rgba(11, 11, 11, 0.64);
  --hairline: rgba(11, 11, 11, 0.28);
  --header-height: 92px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

button, input, a { font: inherit; }
button, input { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--pink); color: white; }

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.split-backdrop {
  position: fixed;
  z-index: -3;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}

.split-backdrop span:first-child { background: var(--aqua); }
.split-backdrop span:last-child { background: var(--paper); }

.split-seam {
  position: fixed;
  z-index: 70;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(11, 11, 11, 0.13);
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: flex-start;
  padding: 1.75rem 2.5rem 0;
  pointer-events: none;
}

.header-nav, .brand, .menu-toggle, .mobile-menu { pointer-events: auto; }

.header-nav {
  display: flex;
  gap: clamp(1.5rem, 4.2vw, 4.7rem);
  align-items: center;
}

.header-nav--right { justify-content: flex-end; }

.header-nav a {
  position: relative;
  font-size: clamp(0.85rem, 1.35vw, 1.28rem);
  line-height: 1;
  white-space: nowrap;
}

.header-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  background: currentColor;
  transition: right 260ms ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.header-nav a.is-active::after { right: 0; }

.brand {
  position: relative;
  align-self: start;
  justify-self: center;
  width: 92px;
  height: 106px;
  margin-top: -1.55rem;
  display: grid;
  place-items: center;
  transform-origin: 50% 18%;
  animation: brand-arrive 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand img {
  width: 84px;
  max-height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.12));
  transition: transform 420ms ease;
}

.brand:hover img,
.brand:focus-visible img { transform: rotate(-5deg) scale(1.08); }

.menu-toggle, .mobile-menu { display: none; }

.fixed-dock {
  position: fixed;
  z-index: 95;
  inset: auto 0 0;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  pointer-events: none;
}

.fixed-dock > * { pointer-events: auto; }
.dock-language { justify-self: start; font-size: 1rem; }

.dock-name {
  justify-self: center;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.dock-book {
  justify-self: end;
  padding: 0.65rem 1.05rem 0.7rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: clamp(0.9rem, 1.4vw, 1.12rem);
  transition: background 200ms ease, transform 200ms ease;
}

.dock-book:hover,
.dock-book:focus-visible { background: var(--pink); transform: translateY(-2px); }

main { position: relative; }

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

.split-half { position: relative; min-width: 0; }

.hero { min-height: 100svh; }
.hero-visual { min-height: 100svh; }
.hero-reveal { position: absolute; inset: var(--header-height) 0 0; }

.hero-copy {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 9rem clamp(2.5rem, 6vw, 7rem) 8rem;
}

.microcopy, .eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.split-section h2,
.statement h3 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 740px;
  margin-top: 2.8rem;
  font-size: clamp(4.4rem, 7.4vw, 8.7rem);
}

.hero-sub {
  max-width: 560px;
  margin: 2.2rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.3rem;
  transform: translateX(-50%);
  font-size: 0.76rem;
}

.scroll-cue svg { animation: scroll-drift 1.5s ease-in-out infinite; }

.reveal-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #171412;
}

.reveal-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s cubic-bezier(0.2, 0.75, 0.2, 1), filter 600ms ease;
}

.reveal-media:hover > img { transform: scale(1.025); }

.media-curtain {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: 43%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 2rem;
  border: 0;
  border-right: 1px solid rgba(11, 11, 11, 0.22);
  background: rgba(245, 241, 231, 0.91);
  cursor: pointer;
  transition: transform 900ms cubic-bezier(0.77, 0, 0.18, 1), background 240ms ease;
}

.media-curtain span { font-size: 0.74rem; }
.media-curtain:hover, .media-curtain:focus-visible { background: var(--pink); color: white; }
.reveal-media.is-revealed .media-curtain { transform: translateX(-102%); }

.reveal-media figcaption {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.2rem;
  padding: 0.48rem 0.7rem;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--pink);
  font-size: 0.65rem;
}

.body-copy {
  max-width: 610px;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.48;
}

.experience-section { min-height: 155svh; }

.experience-copy {
  min-height: 155svh;
  padding: 11rem clamp(2.4rem, 5vw, 5.8rem);
}

.experience-copy h2 {
  max-width: 650px;
  margin-top: 2.5rem;
  font-size: clamp(4.8rem, 8.4vw, 9.6rem);
}

.experience-copy .body-copy { margin-top: 4rem; }

.experience-media-wrap {
  min-height: 155svh;
  padding: 12rem clamp(2rem, 5vw, 5.4rem) 10rem;
}

.experience-media {
  width: min(100%, 650px);
  height: 64svh;
  margin-left: auto;
}

.statement {
  max-width: 690px;
  margin: 18rem 0 0 auto;
}

.statement h3 { font-size: clamp(3rem, 5vw, 5.8rem); }
.statement p { max-width: 520px; margin: 2rem 0 0; font-size: 1.18rem; line-height: 1.5; }

.quote-section {
  position: relative;
  min-height: 108svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 3rem;
  text-align: center;
}

.quote-section blockquote {
  max-width: 1260px;
  margin: 0;
  font-size: clamp(4.4rem, 8.5vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.quote-section > span { margin-top: 3rem; font-size: 1rem; }

.story-section { min-height: 145svh; }

.story-number {
  min-height: 145svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10rem clamp(2.5rem, 5vw, 5.8rem);
}

.story-number > strong {
  margin-top: 4rem;
  font-size: clamp(14rem, 31vw, 36rem);
  font-weight: 400;
  letter-spacing: -0.12em;
  line-height: 0.66;
  transform: translateX(-0.08em);
}

.story-number > p {
  align-self: flex-end;
  margin: 2rem 0 0;
  font-size: clamp(2rem, 4.5vw, 5rem);
  letter-spacing: -0.04em;
}

.story-number > span {
  max-width: 430px;
  margin-top: 5rem;
  font-size: 1.15rem;
  line-height: 1.55;
}

.dough-story {
  min-height: 145svh;
  padding: 12rem clamp(2rem, 5vw, 5.6rem) 10rem;
}

.dough-copy h2 { max-width: 680px; font-size: clamp(4rem, 7vw, 8.5rem); }

.dough-compare {
  position: relative;
  width: min(100%, 720px);
  height: 69svh;
  min-height: 520px;
  margin: 10rem auto 0;
  overflow: hidden;
  background: #23201d;
}

.dough-compare > img,
.dough-before-wrap,
.dough-before-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dough-compare > img { position: absolute; inset: 0; }
.dough-before-wrap { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--reveal)) 0 0); }
.dough-before-wrap img { filter: grayscale(1) contrast(1.08); }

.compare-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 2px;
  background: var(--pink);
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 1.1rem;
  padding: 0.45rem 0.6rem;
  background: var(--paper);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-label--before { left: 1.1rem; }
.compare-label--after { right: 1.1rem; }

.dough-compare input {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.menu-section { min-height: 120svh; }

.menu-intro {
  min-height: 120svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10rem clamp(2.4rem, 5vw, 5.8rem);
}

.menu-intro h2,
.signature-copy h2,
.people-copy h2,
.visit-copy h2 {
  margin-top: 2.8rem;
  font-size: clamp(4.3rem, 7.5vw, 8.8rem);
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;
  min-width: 230px;
  margin-top: 2.4rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.98rem;
  transition: color 180ms ease, padding 180ms ease;
}

.action-link:hover,
.action-link:focus-visible { color: var(--pink); padding-left: 0.5rem; padding-right: 0.5rem; }
.action-link--inverse { border: 1px solid currentColor; padding: 0.9rem 1rem; }

.menu-board {
  min-height: 120svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: 10rem clamp(2rem, 5vw, 5.8rem);
}

.menu-column h3 {
  margin: 0 0 2.5rem;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--hairline);
}

.menu-item h4, .menu-item p { margin: 0; }
.menu-item h4, .menu-item strong { font-size: 0.82rem; font-weight: 600; }
.menu-item p { margin-top: 0.3rem; color: var(--muted); font-size: 0.7rem; line-height: 1.35; }
.menu-item strong { white-space: nowrap; }

.signature-section { min-height: 116svh; }

.signature-copy {
  min-height: 116svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10rem clamp(2.4rem, 5vw, 5.8rem);
}

.signature-line {
  max-width: 520px;
  margin: 2.5rem 0 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.45;
}

.signature-media-wrap {
  min-height: 116svh;
  display: flex;
  align-items: center;
  padding: 10rem clamp(2rem, 5vw, 5.8rem);
}

.signature-media { width: 100%; height: 72svh; }

.people-section { min-height: 150svh; }

.people-copy {
  min-height: 150svh;
  padding: 12rem clamp(2.4rem, 5vw, 5.8rem);
}

.people-copy h2 { max-width: 630px; }
.people-copy .body-copy { margin-top: 4rem; }

.people-gallery {
  min-height: 150svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 82svh 48svh;
  gap: 1rem;
  padding: 12rem clamp(2rem, 5vw, 5.8rem) 10rem;
}

.people-card { position: relative; margin: 0; overflow: hidden; }
.people-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.people-card:hover > img { transform: scale(1.035); }
.people-card--large { grid-column: 1 / 3; }

.visit-section { min-height: 120svh; }

.visit-visual {
  min-height: 120svh;
  display: flex;
  align-items: center;
  padding: 10rem clamp(2rem, 5vw, 5.8rem);
}

.visit-media { width: 100%; height: 70svh; }

.visit-copy {
  min-height: 120svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10rem clamp(2.4rem, 5vw, 5.8rem);
}

.visit-details {
  width: min(100%, 620px);
  margin-top: 3rem;
  border-top: 1px solid var(--hairline);
}

.visit-details > * {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9rem;
  line-height: 1.45;
}

.visit-details svg { flex: 0 0 auto; color: var(--pink); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 1.5rem; }

.site-footer {
  position: relative;
  z-index: 80;
  min-height: 72svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: white;
}

.footer-half {
  min-height: 72svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem clamp(2.4rem, 5vw, 5.8rem);
}

.footer-half--left { border-right: 1px solid rgba(255, 255, 255, 0.22); }
.footer-half h2 { margin: 0; font-size: clamp(4rem, 8vw, 9rem); font-weight: 400; letter-spacing: -0.065em; line-height: 0.9; }
.footer-half p { max-width: 420px; margin: 0; color: rgba(255, 255, 255, 0.62); }
.footer-half--right img { width: 150px; height: 180px; object-fit: contain; }
.footer-links { display: grid; gap: 0.8rem; font-size: clamp(1.35rem, 2.3vw, 2.4rem); }
.footer-links a { width: max-content; border-bottom: 1px solid currentColor; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--pink); }
.footer-half--right > span { color: rgba(255, 255, 255, 0.55); font-size: 0.75rem; }

[data-reveal] {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 900ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes brand-arrive {
  0% { opacity: 0; transform: translateY(-30px) rotate(-7deg) scale(0.72); }
  70% { opacity: 1; transform: translateY(5px) rotate(3deg) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes scroll-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr 90px 1fr; padding-inline: 1.5rem; }
  .header-nav { gap: 1.3rem; }
  .header-nav a { font-size: 0.83rem; }
  .brand { width: 78px; }
  .brand img { width: 72px; }
  .hero-copy, .experience-copy, .story-number, .menu-intro, .signature-copy, .people-copy, .visit-copy { padding-inline: 2.6rem; }
  .experience-media-wrap, .dough-story, .menu-board, .signature-media-wrap, .people-gallery, .visit-visual { padding-inline: 2.5rem; }
  .menu-board { gap: 2rem; }
  .fixed-dock { padding-inline: 1.5rem; }
}

@media (max-width: 820px) {
  :root { --header-height: 76px; }
  .split-seam { display: none; }
  .site-header { height: var(--header-height); grid-template-columns: 1fr auto; align-items: center; padding: 0 1rem; }
  .header-nav { display: none; }
  .brand { grid-column: 1; justify-self: start; width: 76px; height: 72px; margin: 0; }
  .brand img { width: 68px; height: 70px; }
  .menu-toggle { grid-column: 2; display: grid; place-items: center; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    padding: 6rem 1.25rem;
    background: var(--aqua);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
  }

  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { font-size: clamp(2.7rem, 12vw, 5rem); letter-spacing: -0.05em; line-height: 1.02; }
  .mobile-menu a:last-child { margin-top: 1.5rem; color: var(--pink); }
  .fixed-dock { height: 64px; grid-template-columns: 1fr auto; padding-inline: 1rem; }
  .dock-language, .dock-name { display: none; }
  .dock-book { grid-column: 2; padding: 0.55rem 0.9rem; }

  .split-backdrop { display: none; }
  .split-section { grid-template-columns: 1fr; }
  .split-half--left { background: var(--aqua); }
  .split-half--right { background: var(--paper); }

  .hero-visual { min-height: 58svh; order: 2; }
  .hero-copy { min-height: 78svh; order: 1; padding: 8rem 1.25rem 7rem; }
  .hero h1 { font-size: clamp(3.8rem, 16.5vw, 6.5rem); }
  .hero-sub { font-size: 1rem; }
  .scroll-cue { bottom: 4.5rem; }
  .media-curtain { width: 48%; padding: 1rem; }
  .media-curtain svg { width: 42px; }

  .experience-section, .experience-copy, .experience-media-wrap,
  .story-section, .story-number, .dough-story,
  .menu-section, .menu-intro, .menu-board,
  .signature-section, .signature-copy, .signature-media-wrap,
  .people-section, .people-copy, .people-gallery,
  .visit-section, .visit-visual, .visit-copy { min-height: 0; }

  .experience-copy { padding: 8rem 1.25rem 6rem; }
  .experience-copy h2 { font-size: clamp(4.4rem, 21vw, 7rem); }
  .experience-media-wrap { padding: 4rem 1.25rem 8rem; }
  .experience-media { height: 72svh; }
  .statement { margin-top: 10rem; }
  .statement h3 { font-size: clamp(3.2rem, 15vw, 5.4rem); }

  .quote-section { min-height: 88svh; padding: 7rem 1.25rem; background: var(--aqua); }
  .quote-section blockquote { font-size: clamp(3.6rem, 17vw, 7.2rem); }

  .story-number { min-height: 100svh; padding: 8rem 1.25rem; }
  .story-number > strong { font-size: 72vw; }
  .story-number > p { font-size: 16vw; }
  .dough-story { padding: 8rem 1.25rem; }
  .dough-copy h2 { font-size: clamp(4rem, 19vw, 6.8rem); }
  .dough-compare { height: 78svh; min-height: 520px; margin-top: 6rem; }

  .menu-intro, .signature-copy, .people-copy, .visit-copy { padding: 8rem 1.25rem; }
  .menu-intro h2, .signature-copy h2, .people-copy h2, .visit-copy h2 { font-size: clamp(3.8rem, 16.5vw, 6.4rem); }
  .menu-board { grid-template-columns: 1fr; padding: 7rem 1.25rem; }
  .signature-media-wrap, .visit-visual { padding: 4rem 1.25rem 8rem; }
  .signature-media, .visit-media { height: 72svh; }
  .people-gallery { grid-template-rows: 72svh 48vw; padding: 4rem 1.25rem 8rem; }

  .site-footer { grid-template-columns: 1fr; }
  .footer-half { min-height: 70svh; padding: 5rem 1.25rem; }
  .footer-half--left { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
  .footer-half h2 { font-size: clamp(4rem, 20vw, 7rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
