@font-face {
  font-family: "Merriweather Local";
  src: url("assets/merriweather-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Merriweather Local";
  src: url("assets/merriweather-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #e17a00;
  --orange-dark: #a95100;
  --blue: #02426b;
  --blue-deep: #062c3e;
  --blue-night: #071f2b;
  --blue-soft: #dce8ed;
  --rose: #e9e5e6;
  --cream: #f8f4f0;
  --paper: #fffdfb;
  --ink: #1f2a30;
  --muted: #667078;
  --line: rgba(6, 44, 62, .16);
  --line-light: rgba(255, 255, 255, .18);
  --success: #28754b;
  --font-display: "Merriweather Local", Georgia, serif;
  --font-body: Arial, Helvetica, sans-serif;
  --shell: min(1200px, calc(100vw - 64px));
  --header-height: 86px;
  --shadow: 0 24px 70px rgba(5, 34, 48, .13);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: auto;
}

a { color: inherit; }

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

button { color: inherit; }

::selection {
  background: var(--orange);
  color: var(--blue-night);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  background: var(--paper);
  color: var(--blue-deep);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.topline {
  background: var(--blue-night);
  color: rgba(255, 255, 255, .74);
  font-size: .78rem;
  letter-spacing: .035em;
}

.topline__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topline a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 240, .94);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  min-height: var(--header-height);
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  text-decoration: none;
}

.brand__mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.brand__mark circle {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3.5;
  stroke-dasharray: 82 18;
  stroke-linecap: round;
  transform: rotate(-32deg);
  transform-origin: center;
}

.brand__mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__wording {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__wording strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -.035em;
}

.brand__wording small {
  margin-top: 6px;
  color: var(--orange-dark);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  padding-block: 14px;
  color: var(--blue-deep);
  font-size: .89rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .2s ease;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--accent {
  background: var(--orange);
  color: var(--blue-night);
}

.button--accent:hover { background: #f28a0b; }

.button--light {
  background: var(--paper);
  color: var(--blue-deep);
}

.button--light:hover { background: var(--rose); }

.button--blue {
  background: var(--blue);
  color: #fff;
}

.button--blue:hover { background: var(--blue-deep); }

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--blue-deep);
}

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

#app {
  min-height: 70vh;
  animation: page-in .55s var(--ease);
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light { color: #ffc477; }

.display {
  margin: 18px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7.2vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}

.display--page { font-size: clamp(3.2rem, 6vw, 6.4rem); }

.lead {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.section--paper { background: var(--paper); }
.section--rose { background: var(--rose); }
.section--dark { background: var(--blue-deep); color: #fff; }

.section-heading {
  display: grid;
  align-items: end;
  gap: 48px;
  margin-bottom: 54px;
  grid-template-columns: 1fr .85fr;
}

.section-title {
  margin: 13px 0 0;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.section--dark .section-title { color: #fff; }

.home-hero {
  display: grid;
  min-height: min(790px, calc(100vh - 120px));
  background: var(--blue-deep);
  color: #fff;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
}

.home-hero__copy {
  display: flex;
  min-height: 720px;
  padding: clamp(72px, 8vw, 122px) max(48px, calc((100vw - 1200px) / 2));
  padding-right: clamp(52px, 7vw, 108px);
  flex-direction: column;
  justify-content: center;
}

.home-hero__copy .lead { color: rgba(255, 255, 255, .78); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.home-hero__media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #102a36;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 44, 62, .05), rgba(6, 44, 62, .5));
  content: "";
}

.home-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  transition: transform 1s var(--ease);
}

.home-hero:hover .home-hero__media img { transform: scale(1.025); }

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(28px, 5vw, 62px);
  display: grid;
  width: 144px;
  height: 144px;
  padding: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(6, 44, 62, .74);
  color: #fff;
  font-family: var(--font-display);
  font-size: .88rem;
  line-height: 1.35;
  text-align: center;
  transform: rotate(7deg);
  backdrop-filter: blur(10px);
}

.hero-stamp strong { color: #ffc477; font-size: 1.2rem; }

.keyword-rail {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.keyword-rail__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.keyword-rail span {
  padding: 23px 20px;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  text-align: center;
}

.keyword-rail span + span { border-left: 1px solid var(--line); }

.intro-grid {
  display: grid;
  align-items: start;
  gap: clamp(48px, 9vw, 140px);
  grid-template-columns: .78fr 1.22fr;
}

.intro-grid__title {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.intro-grid__copy {
  display: grid;
  gap: 24px;
  color: #3f4a50;
  font-size: 1.04rem;
}

.intro-grid__copy p { margin: 0; }

.intro-grid__copy p:first-child {
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1.5;
}

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

.feature {
  display: grid;
  min-height: 610px;
  background: var(--paper);
  grid-template-columns: 1fr 1fr;
}

.feature__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.feature__media img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.feature:hover .feature__media img { transform: scale(1.035); }

.feature__copy {
  display: flex;
  padding: clamp(44px, 7vw, 105px);
  flex-direction: column;
  justify-content: center;
}

.feature__copy h2 {
  margin: 0 0 22px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.feature__copy p {
  max-width: 520px;
  margin: 0;
  color: #4d575d;
}

.feature:nth-child(even) .feature__media { order: 2; }

.feature__media--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature__media--duo img:first-child { object-position: 42% center; }
.feature__media--duo img:last-child { object-position: 58% center; }

.closing-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 9vw, 116px);
  background: var(--orange);
  color: var(--blue-night);
}

.closing-cta::after {
  position: absolute;
  top: -190px;
  right: -90px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(6, 44, 62, .28);
  border-radius: 50%;
  content: "";
}

.closing-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: 1fr auto;
}

.closing-cta h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 570px;
  overflow: hidden;
  align-items: flex-end;
  background-color: var(--blue-night);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.page-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 24, 34, .92) 0%, rgba(4, 24, 34, .72) 45%, rgba(4, 24, 34, .32) 100%);
  content: "";
}

.page-hero--menu,
.page-hero--about { background-image: url("assets/streetfood-hero.jpg"); }
.page-hero--contact,
.page-hero--booking { background-image: url("assets/curry-hero.jpg"); background-position: 62% center; }

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(84px, 11vw, 140px) clamp(70px, 8vw, 104px);
}

.page-hero__inner .lead { color: rgba(255, 255, 255, .78); }

.prototype-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .81rem;
  line-height: 1.45;
}

.prototype-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.prototype-note--light { color: rgba(255, 255, 255, .68); }

.menu-toolbar {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 240, .95);
  backdrop-filter: blur(14px);
}

.menu-filters {
  display: flex;
  overflow-x: auto;
  gap: 6px;
  padding-block: 14px;
  scrollbar-width: none;
}

.menu-filters::-webkit-scrollbar { display: none; }

.menu-filter {
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  padding: 8px 15px;
  background: transparent;
  color: var(--blue-deep);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
}

.menu-filter:hover,
.menu-filter[aria-pressed="true"] {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--blue-night);
}

.menu-content { display: grid; gap: 74px; }

.menu-section.is-hidden { display: none; }

.menu-section__header {
  display: grid;
  align-items: end;
  gap: 30px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--blue-deep);
  grid-template-columns: 1fr auto;
}

.menu-section__header h2 {
  margin: 0;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}

.menu-section__header span {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-items {
  display: grid;
  gap: 0 54px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-item {
  display: grid;
  align-content: start;
  gap: 7px 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
}

.menu-item h3 {
  margin: 0;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.menu-item__price {
  color: var(--orange-dark);
  font-weight: 700;
  white-space: nowrap;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  grid-column: 1 / -1;
}

.menu-item__tag {
  width: max-content;
  margin-top: 2px;
  border: 1px solid rgba(40, 117, 75, .3);
  padding: 1px 7px;
  color: var(--success);
  font-size: .66rem;
  font-weight: 700;
  grid-column: 1 / -1;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.menu-disclaimer {
  display: grid;
  align-items: center;
  gap: 32px;
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 28px;
  grid-template-columns: auto 1fr auto;
}

.menu-disclaimer strong {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.menu-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.philosophy-grid {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  grid-template-columns: 1fr 1fr;
}

.philosophy-card {
  display: flex;
  min-height: 470px;
  padding: clamp(42px, 6vw, 82px);
  background: var(--blue-deep);
  flex-direction: column;
  justify-content: center;
}

.philosophy-card h2 {
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.philosophy-card p { color: rgba(255, 255, 255, .72); }
.philosophy-card .button { align-self: flex-start; margin-top: 20px; }

.editorial-intro {
  display: grid;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: .86fr 1.14fr;
}

.editorial-intro__copy h2 {
  margin: 12px 0 28px;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.editorial-intro__copy p { margin: 0; color: #48535a; }

.image-pair {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: .92fr 1.08fr;
}

.image-pair figure { margin: 0; }
.image-pair figure:first-child { margin-top: 74px; }

.image-pair img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-pair figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: .76rem;
}

.visit-callout {
  display: grid;
  min-height: 580px;
  grid-template-columns: 1fr 1fr;
}

.visit-callout__image img {
  height: 100%;
  object-fit: cover;
}

.visit-callout__copy {
  display: flex;
  padding: clamp(52px, 8vw, 112px);
  background: var(--orange);
  color: var(--blue-night);
  flex-direction: column;
  justify-content: center;
}

.visit-callout__copy h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.visit-callout__copy .button { align-self: flex-start; margin-top: 26px; }

.contact-methods {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.contact-method {
  min-height: 300px;
  padding: clamp(34px, 5vw, 66px);
  background: var(--paper);
}

.contact-method + .contact-method { border-left: 1px solid var(--line); }

.contact-method__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-dark);
}

.contact-method__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-method h2 {
  margin: 0 0 17px;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.contact-method p,
.contact-method address { margin: 0; color: var(--muted); font-style: normal; }

.contact-method a {
  color: var(--orange-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.contact-layout {
  display: grid;
  align-items: stretch;
  gap: 22px;
  grid-template-columns: .82fr 1.18fr;
}

.route-card {
  position: relative;
  display: flex;
  min-height: 580px;
  overflow: hidden;
  padding: clamp(42px, 6vw, 74px);
  background: var(--blue-deep);
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
}

.route-card::before,
.route-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.route-card::before {
  top: -80px;
  right: -90px;
  width: 310px;
  height: 310px;
}

.route-card::after {
  right: 44px;
  bottom: 66px;
  width: 170px;
  height: 170px;
}

.route-card__pin {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--blue-night);
}

.route-card__pin svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.route-card__copy { position: relative; z-index: 1; }

.route-card h2 {
  max-width: 500px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.3vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
}

.route-card address { color: rgba(255, 255, 255, .72); font-style: normal; }
.route-card .button { margin-top: 28px; }

.contact-form-panel,
.booking-panel {
  border: 1px solid var(--line);
  padding: clamp(34px, 5vw, 68px);
  background: var(--paper);
}

.contact-form-panel h2,
.booking-panel h2 {
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.contact-form-panel > p { margin: 0 0 34px; color: var(--muted); }

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full { grid-column: 1 / -1; }

.field > span,
.field > label {
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .025em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(6, 44, 62, .28);
  border-radius: 0;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}

.field textarea { min-height: 138px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: 2px solid rgba(225, 122, 0, .22);
  outline-offset: 0;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #556068;
  font-size: .8rem;
  line-height: 1.45;
}

.checkbox input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--orange);
}

.checkbox a { color: var(--blue); }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}

.form-success {
  display: grid;
  min-height: 330px;
  place-items: center;
  text-align: center;
}

.form-success__inner { max-width: 520px; }

.form-success__icon,
.confirmation__icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: #e0f0e6;
  color: var(--success);
}

.form-success__icon svg,
.confirmation__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.reservation-prompt {
  display: grid;
  align-items: center;
  gap: 40px;
  margin-top: 24px;
  padding: clamp(34px, 5vw, 62px);
  background: var(--orange);
  color: var(--blue-night);
  grid-template-columns: 1fr auto;
}

.reservation-prompt h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.07;
}

.booking-layout {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
}

.booking-steps {
  display: grid;
  margin: 36px 0 34px;
  grid-template-columns: repeat(3, 1fr);
}

.booking-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .72rem;
}

.booking-step::after {
  position: absolute;
  z-index: 0;
  top: 14px;
  right: 8px;
  left: 39px;
  height: 1px;
  background: var(--line);
  content: "";
}

.booking-step:last-child::after { display: none; }

.booking-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(6, 44, 62, .32);
  border-radius: 50%;
  background: var(--paper);
}

.booking-step.is-active { color: var(--orange-dark); font-weight: 700; }

.booking-step.is-active span,
.booking-step.is-complete span {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--blue-night);
}

.booking-fields {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.booking-availability {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: .85rem;
}

.time-slots {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  grid-template-columns: repeat(4, 1fr);
}

.time-slot {
  min-height: 46px;
  border: 1px solid rgba(6, 44, 62, .28);
  background: transparent;
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 700;
}

.time-slot:hover,
.time-slot.is-selected {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--blue-night);
}

.booking-next { width: 100%; }

.phone-panel {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  background: var(--blue-deep);
  color: #fff;
  text-align: center;
}

.phone-panel h2 { color: #fff; }

.phone-panel__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 28px auto 19px;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: #ffc477;
}

.phone-panel__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.phone-panel__number {
  display: block;
  margin-bottom: 25px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
  text-decoration: none;
}

.phone-panel p { color: rgba(255, 255, 255, .67); }

.phone-panel address {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  font-style: normal;
}

.confirmation { padding-block: 18px; text-align: center; }

.confirmation p { color: var(--muted); }

.confirmation__summary {
  max-width: 540px;
  margin: 28px auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
  text-align: left;
}

.legal {
  width: min(880px, calc(100vw - 48px));
  margin: 0 auto;
  padding-block: clamp(72px, 10vw, 132px);
}

.legal h1 {
  margin: 0 0 48px;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.04;
}

.legal h2 {
  margin: 48px 0 12px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
}

.legal p { color: #4b565d; }

.prototype-alert {
  margin-bottom: 48px;
  border-left: 4px solid var(--orange);
  padding: 20px 22px;
  background: var(--rose);
  color: #434d53;
}

.site-footer {
  background: var(--blue-night);
  color: rgba(255, 255, 255, .72);
}

.site-footer__main {
  display: grid;
  gap: 50px;
  padding-block: 74px;
  grid-template-columns: 1.45fr repeat(3, 1fr);
}

.site-footer h2 {
  margin: 4px 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
}

.site-footer address { font-style: normal; }

.site-footer__main > div > a:not(.brand) {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-block: 7px;
  color: rgba(255, 255, 255, .78);
  text-decoration-color: rgba(255, 255, 255, .28);
  text-underline-offset: 4px;
}

.brand--footer { color: #fff; }
.brand--footer .brand__wording small { color: #ffc477; }
.footer-brand p { margin: 19px 0 0; color: rgba(255, 255, 255, .5); font-size: .8rem; }

.site-footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  font-size: .76rem;
}

.site-footer__bottom > div { display: flex; align-items: center; gap: 20px; }
.site-footer__bottom a { color: inherit; }

.prototype-pill {
  border: 1px solid rgba(255, 255, 255, .24);
  padding: 4px 9px;
  color: rgba(255, 255, 255, .58);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  max-width: 380px;
  padding: 14px 17px;
  background: var(--blue-night);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 44px, 920px); }
  .site-header__inner { gap: 20px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: .82rem; }
  .header-cta { padding-inline: 15px; }
  .home-hero { grid-template-columns: 1fr 1fr; }
  .home-hero__copy { padding-inline: max(36px, calc((100vw - 920px) / 2)) 54px; }
  .site-footer__main { grid-template-columns: 1.25fr 1fr 1fr; }
  .site-footer__main > div:last-child { display: none; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; --shell: min(100% - 36px, 760px); }
  body { padding-bottom: 68px; }
  .topline__inner { justify-content: space-between; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .primary-nav,
  .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 50px;
    height: 50px;
    border: 0;
    padding: 13px 11px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 27px;
    height: 2px;
    background: var(--blue-deep);
    transition: opacity .2s ease, transform .2s ease;
  }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    overflow-y: auto;
    padding: 118px 24px 100px;
    background: var(--cream);
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s var(--ease), visibility 0s linear .25s;
  }
  .menu-open .mobile-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    padding: 18px 3px;
    color: var(--blue-deep);
    font-family: var(--font-display);
    font-size: 1.65rem;
    text-decoration: none;
  }
  .mobile-nav a[aria-current="page"] { color: var(--orange-dark); }
  .mobile-nav__cta {
    margin-top: 22px;
    border: 0 !important;
    padding-inline: 18px !important;
    background: var(--orange);
    color: var(--blue-night) !important;
    text-align: center;
  }
  .mobile-actions {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 68px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 -10px 30px rgba(6, 44, 62, .1);
  }
  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--blue-deep);
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-actions a + a { border-left: 1px solid var(--line); }
  .mobile-actions svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--orange-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
  .menu-open .mobile-actions { visibility: hidden; opacity: 0; }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero__copy { min-height: 590px; padding-inline: max(28px, calc((100vw - 760px) / 2)); }
  .home-hero__media { min-height: 580px; }
  .section-heading,
  .intro-grid,
  .editorial-intro,
  .contact-layout,
  .booking-layout { grid-template-columns: 1fr; }
  .intro-grid__title { position: static; }
  .feature { min-height: 0; grid-template-columns: 1fr; }
  .feature__media { min-height: 520px; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .closing-cta__inner { grid-template-columns: 1fr; }
  .page-hero { min-height: 520px; }
  .menu-toolbar { top: var(--header-height); }
  .philosophy-grid,
  .visit-callout { grid-template-columns: 1fr; }
  .visit-callout__image { min-height: 540px; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-method { min-height: 0; }
  .contact-method + .contact-method { border-top: 1px solid var(--line); border-left: 0; }
  .contact-method__icon { margin-bottom: 25px; }
  .phone-panel { position: static; }
  .site-footer__main { grid-template-columns: 1.3fr 1fr; }
  .site-footer__main > div:nth-child(3) { display: block; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 28px); }
  .topline { font-size: .7rem; }
  .topline__inner { gap: 12px; }
  .topline__inner span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand__mark { width: 46px; height: 46px; }
  .brand__wording strong { font-size: 1.24rem; }
  .brand__wording small { font-size: .56rem; }
  .display { font-size: clamp(3.25rem, 16vw, 5rem); }
  .display--page { font-size: clamp(2.9rem, 14vw, 4.6rem); }
  .home-hero__copy { min-height: 550px; padding-block: 70px; }
  .home-hero__media { min-height: 460px; }
  .hero-stamp { width: 120px; height: 120px; font-size: .75rem; }
  .keyword-rail__inner { grid-template-columns: 1fr 1fr; }
  .keyword-rail span:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .keyword-rail span:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding-block: 72px; }
  .section-heading { gap: 24px; margin-bottom: 36px; }
  .feature__media { min-height: 390px; }
  .feature__copy { padding: 44px 24px 52px; }
  .feature__media--duo { grid-template-columns: 1fr; }
  .feature__media--duo img:last-child { display: none; }
  .closing-cta h2 { font-size: 2.8rem; }
  .page-hero { min-height: 480px; }
  .page-hero::before { background: rgba(4, 24, 34, .7); }
  .menu-items { grid-template-columns: 1fr; }
  .menu-section__header { grid-template-columns: 1fr; gap: 7px; }
  .menu-disclaimer { align-items: start; grid-template-columns: 1fr; gap: 8px; }
  .philosophy-card { min-height: 0; }
  .image-pair { grid-template-columns: 1fr 1fr; }
  .image-pair figure:first-child { margin-top: 40px; }
  .visit-callout__image { min-height: 390px; }
  .contact-layout { gap: 14px; }
  .route-card { min-height: 500px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .reservation-prompt { align-items: stretch; grid-template-columns: 1fr; }
  .booking-fields { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: 1fr 1fr; }
  .booking-step { align-items: flex-start; flex-direction: column; gap: 5px; }
  .booking-step::after { top: 14px; left: 36px; }
  .site-footer__main { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__main > div:last-child { display: block; }
  .site-footer__bottom { padding-block: 22px; align-items: flex-start; flex-direction: column; }
  .site-footer__bottom > div { align-items: flex-start; flex-direction: column; gap: 12px; }
  .toast { right: 14px; bottom: 82px; left: 14px; max-width: none; }
}

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