@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap");

:root {
  --ink: #152823;
  --ink-2: #243c35;
  --mist: #edf4f1;
  --paper: #fffaf3;
  --line: rgba(21, 40, 35, 0.14);
  --ember: #d85f35;
  --ember-dark: #a64225;
  --sage: #8eb8ac;
  --blue: #4f7784;
  --gold: #f0c06a;
  --charcoal: #101a17;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(21, 40, 35, 0.14);
  --deep-shadow: 0 28px 80px rgba(16, 26, 23, 0.24);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.no-script {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid rgba(21, 40, 35, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(240, 192, 106, 0.18), transparent 58%),
    var(--charcoal);
  box-shadow: 0 12px 30px rgba(21, 40, 35, 0.2);
  overflow: hidden;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-line {
  color: rgba(21, 40, 35, 0.7);
  font-size: 0.78rem;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(21, 40, 35, 0.78);
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  margin: 2px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--ember);
  box-shadow: 0 14px 28px rgba(216, 95, 53, 0.25);
}

.button.primary:hover {
  background: var(--ember-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button.dark {
  color: var(--paper);
  background: var(--ink);
}

main {
  padding-top: 76px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  color: var(--white);
  position: relative;
  background:
    linear-gradient(90deg, rgba(11, 22, 19, 0.88), rgba(11, 22, 19, 0.56) 46%, rgba(11, 22, 19, 0.18)),
    var(--hero-image) center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(0deg, rgba(255, 250, 243, 0.96), transparent);
  pointer-events: none;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0 clamp(52px, 9vw, 104px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(250px, 0.36fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.hero-content {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.9;
  max-width: 760px;
}

.hero-lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-brand-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 320px);
  min-height: 330px;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 18px;
  padding: 26px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(16, 26, 23, 0.22), rgba(16, 26, 23, 0.9)),
    rgba(16, 26, 23, 0.74);
  border: 1px solid rgba(255, 250, 243, 0.22);
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(16px);
}

.hero-logo {
  width: clamp(118px, 14vw, 172px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.hero-brand-card p {
  margin: 0;
  color: rgba(255, 250, 243, 0.82);
  line-height: 1.55;
  font-weight: 700;
}

.brand-rail {
  overflow: hidden;
  background: var(--charcoal);
  color: var(--paper);
  border-block: 1px solid rgba(240, 192, 106, 0.28);
}

.brand-rail-track {
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  white-space: nowrap;
}

.brand-rail span {
  position: relative;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}

.brand-rail span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  transform: translateY(-50%);
}

.proof-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section.alt {
  background:
    linear-gradient(90deg, rgba(142, 184, 172, 0.18), transparent 40%),
    var(--mist);
}

.section.ink {
  background: var(--ink);
  color: var(--paper);
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-head.split {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  align-items: end;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.section-head p,
.page-lead {
  margin: 0;
  color: rgba(21, 40, 35, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ink .section-head p,
.ink .page-lead,
.ink .muted {
  color: rgba(255, 250, 243, 0.74);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.story-section {
  background:
    linear-gradient(180deg, var(--paper), rgba(255, 250, 243, 0.78)),
    repeating-linear-gradient(90deg, rgba(21, 40, 35, 0.06) 0 1px, transparent 1px 96px);
}

.story-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 0.9fr) minmax(0, 0.78fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.story-kicker {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--paper);
  background: var(--charcoal);
  box-shadow: var(--deep-shadow);
}

.story-logo {
  width: 118px;
  height: auto;
}

.story-kicker span {
  color: rgba(255, 250, 243, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-layout h2,
.origin-layout h2,
.press-layout h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.94;
}

.story-copy {
  display: grid;
  gap: 16px;
  color: rgba(21, 40, 35, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.story-copy p {
  margin: 0;
}

.trust-item {
  padding: 26px;
  min-height: 150px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  font-family: "Fraunces", Georgia, serif;
}

.trust-item span {
  display: block;
  margin-top: 12px;
  color: rgba(21, 40, 35, 0.67);
  line-height: 1.5;
}

.menu-grid,
.card-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.signature-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.signature-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.signature-card:nth-child(2) {
  margin-top: 44px;
}

.signature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.92) contrast(1.06);
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(16, 26, 23, 0.9));
}

.signature-card > div {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-content: end;
  padding: 26px;
}

.signature-card span {
  width: fit-content;
  margin-bottom: 13px;
  padding: 7px 10px;
  color: var(--charcoal);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signature-card h3 {
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  line-height: 1;
}

.signature-card p {
  margin: 14px 0 0;
  color: rgba(255, 250, 243, 0.78);
  line-height: 1.58;
}

.menu-card,
.info-card,
.story-card,
.event-card,
.knowledge-card,
.contact-panel,
.booking-panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(21, 40, 35, 0.08);
}

.menu-card img,
.story-card img,
.event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card > div,
.story-card > div,
.event-card > div,
.knowledge-card,
.info-card {
  padding: 22px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ember-dark);
  background: rgba(216, 95, 53, 0.1);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card h3,
.story-card h3,
.event-card h3,
.knowledge-card h3,
.info-card h3 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.menu-card p,
.story-card p,
.event-card p,
.knowledge-card p,
.info-card p {
  color: rgba(21, 40, 35, 0.68);
  line-height: 1.65;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-weight: 800;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.feature-photo {
  min-height: 560px;
  background: var(--image) center / cover;
  box-shadow: var(--shadow);
}

.fire-section {
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(216, 95, 53, 0.08) 50%),
    var(--paper);
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: var(--gold);
  font-size: 1.4rem;
}

.feature-row h3 {
  font-size: 1.45rem;
}

.feature-row p {
  margin: 8px 0 0;
  color: rgba(21, 40, 35, 0.68);
  line-height: 1.6;
}

.page-hero {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(21, 40, 35, 0.88), rgba(21, 40, 35, 0.52)),
    var(--page-image) center / cover;
  padding: clamp(76px, 10vw, 130px) 0 clamp(58px, 7vw, 92px);
}

.origin-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(16, 26, 23, 0.98), rgba(21, 40, 35, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(216, 95, 53, 0.26), transparent 32%);
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.origin-layout > div > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 250, 243, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

.origin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 250, 243, 0.18);
}

.origin-grid article {
  min-height: 180px;
  padding: 24px;
  border-right: 1px solid rgba(255, 250, 243, 0.18);
  border-bottom: 1px solid rgba(255, 250, 243, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.origin-grid article:nth-child(even) {
  border-right: 0;
}

.origin-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.origin-grid span {
  display: block;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
}

.origin-grid p {
  margin: 14px 0 0;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.58;
}

.press-section {
  background: #fbf4e8;
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.press-grid {
  display: grid;
  gap: 14px;
}

.press-grid figure {
  margin: 0;
  padding: 24px;
  background: var(--white);
  border-left: 6px solid var(--ember);
  box-shadow: 0 14px 34px rgba(21, 40, 35, 0.08);
}

.press-grid blockquote {
  margin: 0;
  color: rgba(21, 40, 35, 0.78);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.25;
}

.press-grid figcaption {
  margin-top: 12px;
  color: var(--ember-dark);
  font-weight: 900;
}

.page-hero .section-inner {
  max-width: 1180px;
}

.page-hero-content {
  max-width: 760px;
}

.page-hero .page-lead {
  color: rgba(255, 250, 243, 0.82);
  margin-top: 20px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.booking-panel,
.contact-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: rgba(21, 40, 35, 0.82);
  font-size: 0.88rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.75);
  color: var(--ink);
  border-radius: 14px;
  min-height: 46px;
  padding: 11px 13px;
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(216, 95, 53, 0.14);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(21, 40, 35, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--ember);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ember-dark);
  font-weight: 800;
}

.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.slot {
  border: 1px solid var(--line);
  background: rgba(142, 184, 172, 0.14);
  border-radius: 14px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
}

.slot strong,
.slot span {
  display: block;
}

.slot span {
  margin-top: 4px;
  color: rgba(21, 40, 35, 0.62);
  font-size: 0.8rem;
}

.slot.is-selected {
  border-color: var(--ember);
  background: rgba(216, 95, 53, 0.13);
}

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
  color: rgba(21, 40, 35, 0.72);
}

.filter-button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.timeline-item::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.timeline-item h3 {
  font-size: 1.45rem;
}

.timeline-item p {
  margin: 8px 0 0;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.6;
}

.map-consent {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(21, 40, 35, 0.92), rgba(79, 119, 132, 0.86)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
}

.map-consent p {
  margin: 10px auto 18px;
  max-width: 470px;
  color: rgba(255, 250, 243, 0.78);
  line-height: 1.6;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: rgba(21, 40, 35, 0.72);
  line-height: 1.5;
}

.cta-band {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(21, 40, 35, 0.94), rgba(36, 60, 53, 0.86)),
    var(--cta-image) center / cover;
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.cta-band p {
  color: rgba(255, 250, 243, 0.75);
  margin: 12px 0 0;
  max-width: 700px;
  line-height: 1.65;
}

.legal {
  max-width: 820px;
  line-height: 1.75;
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.8rem;
}

.legal p,
.legal li {
  color: rgba(21, 40, 35, 0.72);
}

.site-footer {
  background: #0f1f1b;
  color: var(--paper);
  padding: 54px 0 28px;
}

.footer-brand-mark {
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 250, 243, 0.16);
}

.footer-inner {
  display: grid;
  gap: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h3 {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: var(--gold);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 7px 0;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 250, 243, 0.12);
  padding-top: 22px;
  color: rgba(255, 250, 243, 0.58);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 4px 0 0;
  color: rgba(21, 40, 35, 0.68);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

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

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    background: rgba(255, 250, 243, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: inline-grid;
  }

  .header-actions .button {
    display: none;
  }

  .section-head.split,
  .experience,
  .two-column,
  .contact-grid,
  .hero-inner,
  .story-layout,
  .origin-layout,
  .press-layout,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }

  .hero-brand-card {
    justify-self: start;
    min-height: auto;
    width: min(100%, 430px);
  }

  .signature-row {
    grid-template-columns: 1fr;
  }

  .signature-card:nth-child(2) {
    margin-top: 0;
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand-line {
    display: none;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(11, 22, 19, 0.36), rgba(11, 22, 19, 0.88)),
      var(--hero-image) center / cover;
  }

  .hero-inner {
    padding-bottom: 54px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-brand-card {
    padding: 20px;
  }

  .hero-logo {
    width: 116px;
  }

  .brand-rail-track {
    width: min(100% - 28px, 1180px);
    overflow-x: auto;
    justify-content: flex-start;
    min-height: 58px;
    scrollbar-width: none;
  }

  .brand-rail-track::-webkit-scrollbar {
    display: none;
  }

  .menu-grid,
  .card-grid,
  .story-grid,
  .field-grid,
  .origin-grid,
  .trust-grid,
  .footer-grid,
  .slots {
    grid-template-columns: 1fr;
  }

  .story-kicker {
    width: min(100%, 220px);
    min-height: 160px;
  }

  .signature-card {
    min-height: 380px;
  }

  .origin-grid article,
  .origin-grid article:nth-child(even),
  .origin-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 243, 0.18);
  }

  .origin-grid article:last-child {
    border-bottom: 0;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .feature-photo {
    min-height: 360px;
  }

  .feature-row,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
  }
}
