:root {
  --ink: #171411;
  --ink-soft: #25201b;
  --ink-faded: #756e65;
  --paper: #f4efe7;
  --paper-deep: #e9dfd1;
  --white: #fffaf2;
  --orange: #d76c35;
  --line-dark: rgba(255, 250, 242, 0.18);
  --line-light: rgba(23, 20, 17, 0.18);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --max: 1240px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 40px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

img { display: block; max-width: 100%; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: var(--space-2);
  left: var(--space-2);
  padding: var(--space-1) var(--space-2);
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 700ms var(--ease);
}

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

.page-shell {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
}

.section-dark { background: var(--ink); }
.section-light { color: var(--ink); background: var(--paper); }
.section-cream { color: var(--ink); background: var(--paper-deep); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-6);
  width: min(calc(100% - 96px), var(--max));
  margin: var(--space-5) auto 0;
  padding: var(--space-2) 0;
  color: var(--white);
  transition: color 700ms var(--ease), background 700ms var(--ease), padding 700ms var(--ease), margin 700ms var(--ease);
}

.site-header[data-scrolled="true"] {
  position: fixed;
  top: var(--space-3);
  width: min(calc(100% - 48px), var(--max));
  margin-top: 0;
  padding: var(--space-2) var(--space-3);
  color: var(--ink);
  background: rgba(244, 239, 231, 0.94);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.brand { justify-self: start; width: 132px; }
.brand img { width: 100%; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a, .header-cta, .footer-links a, .text-link { transition: opacity 700ms var(--ease), transform 700ms var(--ease), color 700ms var(--ease); }
.desktop-nav a:hover, .footer-links a:hover { opacity: 0.62; }
.desktop-nav a:active, .footer-links a:active { transform: translateY(1px); }

.header-cta {
  justify-self: end;
  padding: var(--space-1) var(--space-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.header-cta:hover { transform: translateY(-2px); }

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

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("https://images.getbento.com/accounts/a1b4eda810584d9f79ef30a203602294/media/images/55826deadhorse_hill_Brian_Samuels_Photography_March_2017_-_7.jpg?w=1800&fit=max&auto=compress,format&cs=origin&h=1800");
  background-position: center;
  background-size: cover;
  filter: saturate(0.78) contrast(1.06);
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(23, 20, 17, 0.48);
  content: "";
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 760px;
  padding-top: 160px;
  padding-bottom: var(--space-10);
}

.eyebrow {
  margin: 0 0 var(--space-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark { color: var(--ink-faded); }

h1, h2, p { text-wrap: pretty; }

h1, h2 { margin: 0; font-weight: 600; letter-spacing: -0.055em; line-height: 0.98; }

h1 {
  max-width: 680px;
  font-size: clamp(48px, 8vw, 96px);
}

h1 span { color: var(--orange); }

.hero-copy {
  max-width: 480px;
  margin: var(--space-5) 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: var(--space-2) var(--space-3);
  font-size: 16px;
  font-weight: 700;
  transition: transform 700ms var(--ease), background 700ms var(--ease), color 700ms var(--ease), border-color 700ms var(--ease);
}

.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(1px) scale(0.98); }
.button:focus-visible, .menu-tab:focus-visible, .menu-toggle:focus-visible, a:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

.button-primary { color: var(--ink); background: var(--paper); }
.button-primary:hover { background: var(--orange); }
.button-quiet { border: 1px solid rgba(255, 250, 242, 0.48); }
.button-quiet:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { background: var(--orange); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-7);
  color: rgba(255, 250, 242, 0.64);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; }

.hero-scroll-hint {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 250, 242, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-hint span { width: 1px; height: 40px; background: var(--orange); }

.statement { padding: var(--space-10) 0; }
.statement-inner { max-width: 900px; }
.statement-copy { max-width: 780px; margin: 0; font-size: clamp(36px, 6vw, 72px); font-weight: 500; letter-spacing: -0.06em; line-height: 1; }
.word { display: inline-block; color: rgba(255, 250, 242, 0.3); transition: color 800ms var(--ease); }
.word.is-visible { color: var(--white); }

.menu-section { padding: var(--space-10) 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: var(--space-8);
  align-items: end;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line-light);
}

h2 { font-size: clamp(36px, 5vw, 60px); }
.section-intro { margin: 0; color: var(--ink-faded); font-size: 16px; line-height: 1.6; }

.menu-switcher {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-5) 0 var(--space-7);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-switcher::-webkit-scrollbar { display: none; }
.menu-disclosure-row { padding: var(--space-5) 0 0; }
.menu-disclosure { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: var(--space-3) 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line-light); cursor: pointer; font-size: 18px; font-weight: 700; text-align: left; }
.menu-disclosure:hover { color: var(--orange); }
.menu-disclosure:active { transform: translateY(1px); }
.menu-disclosure-icon { display: grid; width: 32px; height: 32px; place-items: center; color: var(--paper); background: var(--ink); border-radius: 50%; font-size: 24px; font-weight: 400; line-height: 1; transition: transform 700ms var(--ease), background 700ms var(--ease); }
.menu-disclosure[aria-expanded="true"] .menu-disclosure-icon { background: var(--orange); transform: rotate(45deg); }
.menu-content { padding-top: var(--space-2); }
.menu-content[hidden] { display: none; }
.menu-tab { position: relative; padding: 0 0 var(--space-2); color: var(--ink-faded); background: transparent; border: 0; cursor: pointer; font-size: 18px; font-weight: 700; white-space: nowrap; }
.menu-tab::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: transparent; content: ""; transform: scaleX(0); transform-origin: left; transition: transform 700ms var(--ease), background 700ms var(--ease); }
.menu-tab.is-active { color: var(--ink); }
.menu-tab.is-active::after { background: var(--orange); transform: scaleX(1); }

.menu-layout { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: var(--space-8); align-items: start; }
.menu-index { position: sticky; top: 112px; display: flex; flex-direction: column; gap: var(--space-2); padding-top: var(--space-1); }
.menu-index button { padding: 0; color: var(--ink-faded); background: none; border: 0; cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-align: left; text-transform: uppercase; transition: color 700ms var(--ease), transform 700ms var(--ease); }
.menu-index button:hover, .menu-index button.is-active { color: var(--ink); transform: translateX(4px); }

.menu-board { min-width: 0; }
.menu-note { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: var(--space-2); max-width: 760px; margin-bottom: var(--space-8); padding-bottom: var(--space-4); border-bottom: 1px solid var(--line-light); }
.note-mark { color: var(--orange); font-size: 24px; line-height: 1; }
.menu-note p { max-width: 680px; margin: 0; color: var(--ink-faded); font-size: 12px; line-height: 1.55; }
.menu-panel[hidden] { display: none; }
.menu-group { max-width: 860px; margin-bottom: var(--space-8); scroll-margin-top: 120px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-heading { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-3); padding-bottom: var(--space-2); border-bottom: 1px solid var(--line-light); }
.menu-group-heading h3 { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: 0.02em; text-transform: lowercase; }
.menu-group-heading span { color: var(--ink-faded); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.menu-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--space-7); }
.menu-item { padding: var(--space-3) 0; border-bottom: 1px solid rgba(23, 20, 17, 0.09); }
.menu-item:nth-last-child(-n + 2) { border-bottom: 0; }
.item-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); }
.item-name { font-size: 16px; font-weight: 700; line-height: 1.3; }
.item-price { flex: 0 0 auto; font-size: 14px; font-weight: 700; }
.item-description { max-width: 360px; margin: var(--space-1) 0 0; color: var(--ink-faded); font-size: 12px; line-height: 1.5; }
.menu-footnote { max-width: 760px; margin: var(--space-8) 0 0; padding-top: var(--space-3); color: var(--ink-faded); border-top: 1px dotted var(--line-light); font-size: 12px; }

.photo-story { padding: var(--space-10) 0; }
.photo-story-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 360px); gap: var(--space-8); align-items: end; padding-bottom: var(--space-7); }
.photo-story-heading > p { margin: 0; color: rgba(255, 250, 242, 0.62); font-size: 16px; line-height: 1.6; }
.photo-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--space-3); align-items: start; }
.photo-frame { position: relative; margin: 0; overflow: hidden; background: var(--ink-soft); }
.photo-frame-tall { grid-column: span 3; }
.photo-frame-wide { grid-column: span 3; margin-top: var(--space-8); }
.photo-frame img { width: 100%; height: 420px; object-fit: cover; transition: transform 900ms var(--ease); }
.photo-frame:hover img { transform: scale(1.04); }
.photo-frame figcaption { position: absolute; right: var(--space-2); bottom: var(--space-2); left: var(--space-2); color: rgba(255, 250, 242, 0.82); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.feature-section { padding: var(--space-10) 0; }
.feature-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: var(--space-9); align-items: center; }
.feature-image { min-height: 660px; background: url("https://images.getbento.com/accounts/a1b4eda810584d9f79ef30a203602294/media/images/68027deadhorse_hill_Brian_Samuels_Photography_March_2017_-_105.jpg?w=1200&fit=max&auto=compress,format&cs=origin") center / cover; }
.feature-copy { max-width: 480px; }
.feature-copy h2 { color: var(--paper); }
.feature-copy > p:not(.eyebrow) { margin: var(--space-5) 0 0; color: rgba(255, 250, 242, 0.68); font-size: 16px; line-height: 1.65; }
.info-list { display: grid; gap: var(--space-4); margin: var(--space-7) 0; padding: var(--space-5) 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.info-list div { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: var(--space-3); }
.info-list span { color: rgba(255, 250, 242, 0.5); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.info-list strong, .info-list a { color: var(--paper); font-size: 14px; font-weight: 500; line-height: 1.55; }
.info-list a:hover { color: var(--orange); }
.text-link { display: inline-flex; gap: var(--space-2); padding-bottom: var(--space-1); border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 700; }
.text-link:hover { color: var(--orange); transform: translateX(4px); }
.reservation-note { display: grid; gap: var(--space-2); margin-top: var(--space-7); padding: var(--space-5) 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.reservation-note > span { color: rgba(255, 250, 242, 0.5); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.reservation-note p { max-width: 480px; margin: 0; color: rgba(255, 250, 242, 0.7); font-size: 14px; line-height: 1.6; }
.reservation-note .text-link { width: max-content; margin-top: var(--space-2); }

.gift-section { padding: var(--space-10) 0; }
.gift-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); gap: var(--space-9); align-items: center; }
.gift-copy { max-width: 560px; }
.gift-copy > p:not(.eyebrow) { max-width: 480px; margin: var(--space-5) 0 var(--space-6); color: var(--ink-faded); font-size: 16px; line-height: 1.65; }
.gift-card-visual { min-height: 420px; background: url("https://images.getbento.com/accounts/a1b4eda810584d9f79ef30a203602294/media/images/24191deadhorse_hill_Brian_Samuels_Photography_March_2017_-_140.jpg?w=1200&fit=max&auto=compress,format&cs=origin") center / cover; }

.reviews-section { padding: var(--space-10) 0; }
.reviews-header { padding-bottom: var(--space-7); border-bottom: 1px solid var(--line-light); }
.reviews-intro { max-width: 660px; }
.reviews-intro > p:not(.eyebrow) { max-width: 520px; margin: var(--space-5) 0 var(--space-6); color: var(--ink-faded); font-size: 16px; line-height: 1.65; }
.review-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); padding-top: var(--space-7); }
.review-card { display: flex; min-height: 360px; flex-direction: column; align-items: flex-start; padding: var(--space-5); background: var(--paper-deep); border: 1px solid var(--line-light); }
.review-card-topline { display: flex; width: 100%; justify-content: space-between; color: var(--ink-faded); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.review-card h3 { margin: var(--space-8) 0 0; font-size: 24px; font-weight: 600; letter-spacing: -0.05em; line-height: 1.05; }
.review-card > p { margin: var(--space-4) 0 0; color: var(--ink-faded); font-size: 16px; line-height: 1.6; }
.review-card-meta { display: flex; flex-direction: column; gap: var(--space-1); margin-top: auto; padding-top: var(--space-6); color: var(--ink-faded); font-size: 12px; line-height: 1.45; }
.review-card-meta span:first-child { color: var(--ink); font-weight: 700; }
.review-link { margin-top: var(--space-4); padding-bottom: var(--space-1); border-bottom: 1px solid var(--ink); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 700ms var(--ease), transform 700ms var(--ease); }
.review-link:hover { color: var(--orange); transform: translateX(4px); }

.events-section { padding: var(--space-10) 0; }
.events-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); gap: var(--space-9); align-items: center; }
.events-copy { max-width: 620px; }
.events-copy > p:not(.eyebrow) { max-width: 500px; margin: var(--space-5) 0 var(--space-6); color: var(--ink-faded); font-size: 16px; line-height: 1.65; }
.events-card { min-height: 360px; padding: var(--space-5); color: var(--paper); background: var(--ink-soft); display: flex; flex-direction: column; justify-content: space-between; }
.card-topline { display: flex; justify-content: space-between; color: rgba(255, 250, 242, 0.58); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.card-figure { color: var(--orange); font-size: clamp(60px, 9vw, 96px); font-weight: 600; letter-spacing: -0.08em; line-height: 1; }
.events-card p { max-width: 280px; margin: 0; color: rgba(255, 250, 242, 0.7); font-size: 14px; line-height: 1.6; }
.event-facts { display: grid; gap: var(--space-2); margin: var(--space-6) 0; padding: var(--space-4) 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.event-facts div { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: var(--space-2); align-items: baseline; }
.event-facts span { color: var(--ink-faded); font-size: 12px; font-weight: 700; }
.event-facts strong { font-size: 14px; font-weight: 700; }
.event-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4); }
.text-link-dark { color: var(--ink); }
.button-quiet-dark { color: var(--ink); background: transparent; border: 1px solid var(--line-light); }
.button-quiet-dark:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }

.contact-section { padding: var(--space-10) 0; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-9); align-items: start; }
.contact-copy { max-width: 520px; }
.contact-copy > p:not(.eyebrow) { max-width: 440px; margin: var(--space-5) 0 0; color: var(--ink-faded); font-size: 16px; line-height: 1.65; }
.contact-details { display: grid; gap: var(--space-4); padding-top: var(--space-2); }
.contact-details > div:not(.contact-actions) { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: var(--space-3); padding-bottom: var(--space-4); border-bottom: 1px solid var(--line-light); }
.contact-details span { color: var(--ink-faded); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-details strong, .contact-details a:not(.button) { color: var(--ink); font-size: 16px; font-weight: 500; line-height: 1.55; }
.contact-details a:not(.button):hover { color: var(--orange); }
.contact-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); padding-top: var(--space-2); }
.contact-actions .button { width: auto; }

.jobs-section { padding: var(--space-10) 0; }
.jobs-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr); gap: var(--space-9); align-items: start; }
.jobs-copy { max-width: 680px; }
.jobs-details { max-width: 480px; }
.jobs-details > p:first-child { margin: 0; color: rgba(255, 250, 242, 0.68); font-size: 16px; line-height: 1.65; }
.jobs-role { margin: var(--space-6) 0 var(--space-4); color: var(--paper); font-size: 18px; font-weight: 700; }

.closing { padding: var(--space-10) 0 var(--space-9); }
.closing-inner { display: flex; flex-direction: column; align-items: flex-start; }
.closing h2 { color: var(--paper); font-size: clamp(48px, 8vw, 96px); }
.closing .button { margin-top: var(--space-6); }

.site-footer { padding: var(--space-8) 0 var(--space-4); border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: var(--space-7); }
.footer-logo { width: 176px; }
.footer-small { margin: var(--space-2) 0 0; color: rgba(255, 250, 242, 0.46); font-size: 12px; }
.footer-address { margin: var(--space-4) 0 0; color: rgba(255, 250, 242, 0.62); font-size: 14px; line-height: 1.55; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-2); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links-right { align-items: flex-end; text-align: right; }
.footer-newsletter { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr); gap: var(--space-8); align-items: end; margin-top: var(--space-9); padding-top: var(--space-7); border-top: 1px solid var(--line-dark); }
.footer-newsletter h2 { color: var(--paper); font-size: 36px; }
.newsletter-form { display: grid; gap: var(--space-2); }
.newsletter-form label { color: rgba(255, 250, 242, 0.56); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.newsletter-form-row { display: flex; gap: var(--space-2); }
.newsletter-form input { min-width: 0; flex: 1; padding: var(--space-2) var(--space-3); color: var(--paper); background: transparent; border: 1px solid var(--line-dark); border-radius: 0; font: inherit; }
.newsletter-form input::placeholder { color: rgba(255, 250, 242, 0.4); }
.newsletter-form input:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.newsletter-form .button { flex: 0 0 auto; width: auto; border: 0; cursor: pointer; }
.newsletter-status { min-height: 20px; margin: 0; color: var(--orange); font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-9); padding-top: var(--space-3); color: rgba(255, 250, 242, 0.42); border-top: 1px solid var(--line-dark); font-size: 12px; }
.footer-concept { color: rgba(255, 250, 242, 0.24); }

.reveal { opacity: 0; transform: translateY(48px); filter: blur(4px); transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

@media (max-width: 900px) {
  .page-shell { width: min(calc(100% - 64px), var(--max)); }
  .site-header { width: min(calc(100% - 64px), var(--max)); }
  .desktop-nav, .header-cta { display: none; }
  .site-header { display: flex; justify-content: space-between; }
  .brand { width: 124px; }
  .menu-toggle { position: relative; z-index: 4; display: grid; flex: 0 0 44px; width: 44px; height: 44px; place-items: center; margin-left: auto; padding: 0; color: var(--white); background: rgba(23, 20, 17, 0.62); border: 1px solid rgba(255, 250, 242, 0.82); border-radius: 50%; cursor: pointer; visibility: visible; }
  .menu-toggle span:not(.sr-only) { position: absolute; width: 16px; height: 1px; background: currentColor; transition: transform 700ms var(--ease); }
  .menu-toggle span:nth-of-type(2) { transform: translateY(-3px); }
  .menu-toggle span:nth-of-type(3) { transform: translateY(3px); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 3; inset: 0; display: flex; flex-direction: column; justify-content: flex-start; gap: var(--space-2); padding: var(--space-10) var(--space-5) var(--space-5); overflow-y: auto; color: var(--paper); background: rgba(23, 20, 17, 0.96); opacity: 0; pointer-events: none; transform: translateY(-16px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav a { font-size: 24px; font-weight: 600; letter-spacing: -0.05em; }
  .mobile-nav a:nth-child(1) { transition-delay: 100ms; }
  .mobile-nav a:nth-child(2) { transition-delay: 150ms; }
  .mobile-nav a:nth-child(3) { transition-delay: 200ms; }
  .mobile-nav a:nth-child(4) { transition-delay: 250ms; }
  .mobile-nav a:nth-child(5) { transition-delay: 300ms; }
  .mobile-nav a:nth-child(6) { transition-delay: 350ms; }
  .mobile-nav a:nth-child(7) { transition-delay: 400ms; }
  .mobile-nav.is-open a { transform: translateY(0); opacity: 1; }
  .mobile-nav a { opacity: 0; transform: translateY(12px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
  .site-header[data-scrolled="true"] { width: calc(100% - 32px); }
  .hero, .hero-content { min-height: 680px; }
  .hero-content { padding-bottom: var(--space-8); }
  .hero-scroll-hint { display: none; }
  .section-heading, .photo-story-heading, .feature-grid, .gift-grid, .events-grid, .contact-grid, .jobs-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .photo-frame-wide { margin-top: 0; }
  .photo-frame img { height: 320px; }
  .review-cards { grid-template-columns: 1fr; }
  .menu-layout { grid-template-columns: 1fr; gap: var(--space-4); }
  .menu-index { position: static; flex-direction: row; gap: var(--space-4); padding: 0 0 var(--space-2); overflow-x: auto; scrollbar-width: none; }
  .menu-index::-webkit-scrollbar { display: none; }
  .menu-index button { flex: 0 0 auto; padding: var(--space-1) 0; }
  .feature-image { min-height: 480px; }
  .gift-card-visual { min-height: 360px; }
  .footer-newsletter { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links-right { align-items: flex-start; text-align: left; }
}

@media (max-width: 560px) {
  .page-shell { width: calc(100% - 40px); }
  .site-header { width: calc(100% - 40px); margin-top: var(--space-3); }
  .site-header[data-scrolled="true"] { width: calc(100% - 24px); top: var(--space-2); }
  .hero, .hero-content { min-height: 620px; }
  .hero-content { padding-top: 120px; padding-bottom: var(--space-7); }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-meta { flex-wrap: wrap; row-gap: var(--space-1); margin-top: var(--space-6); font-size: 10px; }
  .statement, .menu-section, .photo-story, .feature-section, .reviews-section, .gift-section, .events-section, .contact-section, .jobs-section, .closing { padding: var(--space-9) 0; }
  .section-heading { padding-bottom: var(--space-6); }
  .menu-switcher { padding: var(--space-4) 0 var(--space-6); }
  .menu-items { grid-template-columns: 1fr; }
  .menu-item:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(23, 20, 17, 0.09); }
  .menu-item:last-child { border-bottom: 0; }
  .menu-group { margin-bottom: var(--space-7); }
  .feature-image { min-height: 360px; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-frame-tall, .photo-frame-wide { grid-column: span 1; }
  .photo-frame img { height: 260px; }
  .info-list div { grid-template-columns: 84px minmax(0, 1fr); }
  .events-card { min-height: 300px; }
  .event-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .event-actions .button, .event-actions .text-link, .contact-actions .button { width: 100%; }
  .contact-details > div:not(.contact-actions) { grid-template-columns: 84px minmax(0, 1fr); }
  .newsletter-form-row { flex-direction: column; }
  .newsletter-form .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-bottom { flex-direction: column; gap: var(--space-1); margin-top: var(--space-7); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
