:root {
  --ink: #0b0a09;
  --ink-soft: #151310;
  --cream: #f5efe4;
  --paper: #eee3d0;
  --gold: #d8b56c;
  --gold-deep: #a77b2f;
  --chilli: #c9472f;
  --muted: #a79f92;
  --line: rgba(216, 181, 108, 0.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: 100%;
  min-height: 108px;
  padding: 16px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand { width: clamp(190px, 18vw, 270px); }
.brand img { display: block; width: 100%; height: auto; }

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3vw, 52px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a { position: relative; padding: 14px 0; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 220ms ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-call { justify-self: end; text-align: right; }
.header-call span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header-call strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 800px;
  height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(24px, 8vw, 140px) 90px;
  isolation: isolate;
}

.hero-photo, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-photo {
  background-image: url("images/hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.62) 44%, rgba(5, 4, 3, 0.15) 78%),
    linear-gradient(0deg, rgba(5, 4, 3, 0.65), transparent 38%);
}

.hero-content { width: min(760px, 65vw); }
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1, .story h2, .coming-next h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.hero h1 { max-width: 760px; font-size: clamp(4.5rem, 8.8vw, 9rem); line-height: 0.86; }
.hero h1 span { display: block; color: var(--gold); font-style: italic; }
.hero-copy {
  max-width: 600px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: #e6c985; }
.button-ghost { background: rgba(10, 9, 8, 0.34); color: var(--cream); backdrop-filter: blur(10px); }
.button-ghost:hover { background: var(--cream); color: var(--ink); }

.rating-card {
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  bottom: 70px;
  display: grid;
  width: 190px;
  min-height: 190px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, transform 180ms ease;
}
.rating-card:hover { border-color: var(--gold); transform: rotate(-3deg) scale(1.02); }
.rating-number { font-family: Georgia, "Times New Roman", serif; font-size: 3.6rem; line-height: 1; }
.stars { margin: 7px 0; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.18em; }
.rating-card > span:last-child { color: var(--muted); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; }

.hero-scroll {
  position: absolute;
  bottom: 42px;
  left: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero-scroll span { width: 44px; height: 1px; background: var(--gold); }

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #100f0d;
}
.service-strip div {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.service-strip div:last-child { border-right: 0; }
.service-strip span { color: var(--gold-deep); font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; }
.service-strip strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1rem, 1.5vw, 1.28rem); font-weight: 400; }

.section { width: min(1200px, calc(100% - 48px)); margin: 0 auto; padding: 140px 0; }
.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}
.story-visual { position: relative; padding: 0 0 54px 54px; }
.story-visual::before {
  position: absolute;
  inset: 54px 54px 0 0;
  z-index: -1;
  border: 1px solid var(--line);
  content: "";
}
.story-visual img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(0.88) contrast(1.05); }
.story-badge {
  position: absolute;
  right: -34px;
  bottom: 10px;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  border-radius: 50%;
  background: var(--chilli);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  transform: rotate(-7deg);
}
.story-badge span { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.story-badge strong { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; }
.story-copy h2, .coming-next h2 { font-size: clamp(2.8rem, 5vw, 5.1rem); line-height: 1.02; }
.story-copy > p:not(.eyebrow) { margin: 28px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
.story-note { display: flex; align-items: center; gap: 22px; margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.story-note > span { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 3.4rem; }
.story-note p { margin: 0; color: var(--muted); line-height: 1.55; }
.story-note strong { color: var(--cream); }

.coming-next { min-height: 340px; padding: 100px clamp(24px, 8vw, 140px); background: var(--paper); color: var(--ink); text-align: center; }
.coming-next .eyebrow { color: var(--chilli); }

.menu-showcase {
  padding: 130px max(24px, calc((100vw - 1200px) / 2));
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading .eyebrow { color: var(--chilli); }
.section-heading h2,
.veggie-copy h2,
.review-content h2,
.visit-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: #6e665b;
  font-size: 1rem;
  line-height: 1.8;
}

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

.food-card:nth-child(even) { transform: translateY(70px); }
.food-photo { position: relative; overflow: hidden; background: #1a1713; }
.food-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45));
  content: "";
  pointer-events: none;
}

.food-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.food-card:hover .food-photo img { transform: scale(1.035); }
.food-card-1 .food-photo img { object-position: center 42%; }
.food-card-3 .food-photo img { object-position: center 45%; filter: brightness(1.45) saturate(0.9); }

.food-photo > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.food-card-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px 2px 0;
}

.food-card-copy > span {
  padding-top: 4px;
  color: var(--chilli);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.food-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.food-card p {
  max-width: 480px;
  margin: 10px 0 0;
  color: #6e665b;
  line-height: 1.65;
}

.veggie-feature {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  overflow: hidden;
  padding: 120px max(24px, calc((100vw - 1200px) / 2));
  background:
    radial-gradient(circle at 75% 45%, rgba(216, 181, 108, 0.12), transparent 34%),
    var(--ink-soft);
}

.veggie-feature::before {
  position: absolute;
  top: 50%;
  left: 57%;
  width: 520px;
  height: 520px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.veggie-copy { position: relative; z-index: 2; max-width: 550px; }
.veggie-copy h2 { font-size: clamp(3.1rem, 5.4vw, 5.8rem); }
.veggie-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.text-link span { font-size: 1.2rem; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }

.plate-composition { position: relative; min-height: 520px; }
.plate { position: absolute; display: block; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5)); }
.plate-one { z-index: 2; top: 0; left: 13%; width: min(42%, 260px); }
.plate-two { z-index: 3; top: 33%; right: 6%; width: min(46%, 290px); }
.plate-three { z-index: 1; bottom: 0; left: 4%; width: min(38%, 240px); }
.plate-composition p {
  position: absolute;
  top: 41%;
  left: 43%;
  z-index: 4;
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-8deg);
}
.plate-composition p strong { color: var(--gold); font-size: 1.65rem; font-style: italic; font-weight: 400; }

.review-section {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 110px max(24px, calc((100vw - 1200px) / 2));
  background: var(--gold);
  color: var(--ink);
}

.review-kicker {
  align-self: start;
  padding-top: 16px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.review-score {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 13vw, 13rem);
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.review-content { padding-left: 54px; border-left: 1px solid rgba(11, 10, 9, 0.28); }
.review-content .stars { margin: 0 0 20px; color: var(--ink); letter-spacing: 0.22em; }
.review-content h2 { max-width: 570px; font-size: clamp(2.4rem, 4vw, 4.4rem); }
.review-content .text-link { margin-top: 30px; color: var(--ink); }

.visit {
  padding: 120px max(24px, calc((100vw - 1300px) / 2));
  background:
    linear-gradient(rgba(5, 4, 3, 0.66), rgba(5, 4, 3, 0.76)),
    url("images/contact-bg.jpg") center / cover;
}

.visit-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.42);
}

.visit-intro,
.hours { padding: clamp(54px, 7vw, 100px); }
.visit-intro { display: flex; flex-direction: column; border-right: 1px solid rgba(11, 10, 9, 0.15); }
.visit-intro .eyebrow, .hours .eyebrow { color: var(--chilli); }
.visit-intro h2 { max-width: 650px; }
.visit-intro address {
  margin-top: 36px;
  color: #6e665b;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.7;
}
.visit-phone {
  width: max-content;
  margin-top: 16px;
  border-bottom: 1px solid var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; padding-top: 36px; }
.button-dark { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.button-dark:hover { background: var(--chilli); border-color: var(--chilli); }

.hours-list { margin-top: 36px; }
.hours-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(11, 10, 9, 0.11);
}
.hours-list span, .hours-list strong { font-size: 0.87rem; }
.hours-list strong { font-weight: 700; }
.hours-line { border-bottom: 1px dotted rgba(11, 10, 9, 0.28); }
.hours-note { margin: 24px 0 0; color: #746c61; font-size: 0.74rem; line-height: 1.6; }

.footer { padding: 42px max(24px, calc((100vw - 1200px) / 2)) 28px; background: #080706; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.footer-top img { width: min(240px, 100%); }
.footer-top p { margin: 0; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; text-align: center; }
.footer-top > a { justify-self: end; color: var(--gold); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; padding-top: 26px; color: #7c756b; font-size: 0.69rem; letter-spacing: 0.04em; }
.footer-bottom span:nth-child(2) { text-align: center; }
.footer-bottom a { justify-self: end; color: var(--cream); }
.mobile-call-bar { display: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 86px; }
  .desktop-nav, .header-call { display: none; }
  .brand { width: 210px; }
  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.25);
  }
  .menu-toggle span { display: block; width: 22px; height: 1px; background: var(--cream); }
  .menu-toggle span {
    transform-origin: center;
    transition: transform 180ms ease;
  }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    top: 86px;
    right: 18px;
    left: 18px;
    display: grid;
    padding: 12px 24px;
    border: 1px solid var(--line);
    background: rgba(11, 10, 9, 0.98);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
  .mobile-nav a:last-child { border-bottom: 0; color: var(--gold); }
  .hero { min-height: 780px; }
  .hero-content { width: min(680px, 80vw); }
  .rating-card { right: 28px; bottom: 48px; width: 156px; min-height: 156px; }
  .rating-number { font-size: 2.8rem; }
  .hero-scroll { display: none; }
  .story { grid-template-columns: 1fr; }
  .story-visual { max-width: 720px; }
  .story-badge { right: 0; }

  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .food-card:nth-child(even) { transform: translateY(34px); }
  .veggie-feature { grid-template-columns: 1fr; gap: 60px; }
  .veggie-feature::before { top: 73%; left: 52%; }
  .veggie-copy { max-width: 720px; }
  .plate-composition { width: min(680px, 100%); margin: 0 auto; }
  .review-section { grid-template-columns: auto 1fr; }
  .review-kicker { grid-column: 1 / 3; }
  .review-content { padding-left: 36px; }
  .visit-panel { grid-template-columns: 1fr; }
  .visit-intro { min-height: 580px; border-right: 0; border-bottom: 1px solid rgba(11, 10, 9, 0.15); }
}

@media (max-width: 680px) {
  .site-header { padding: 12px 18px; }
  .brand { width: 174px; }
  .hero { min-height: 800px; height: auto; padding: 146px 22px 258px; align-items: flex-start; }
  .hero-photo { background-position: 58% center; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 4, 3, 0.91), rgba(5, 4, 3, 0.48)),
      linear-gradient(0deg, rgba(5, 4, 3, 0.8), transparent 55%);
  }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 5.8rem); }
  .hero-copy { max-width: 90%; margin-top: 26px; font-size: 0.98rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; }
  .button { min-height: 50px; padding: 0 14px; font-size: 0.61rem; }
  .rating-card {
    right: auto;
    bottom: 96px;
    left: 22px;
    display: grid;
    grid-template-columns: auto auto;
    width: calc(100% - 44px);
    min-height: auto;
    align-items: center;
    justify-content: start;
    gap: 3px 16px;
    padding: 17px 22px;
    border-radius: 0;
    text-align: left;
  }
  .rating-number { grid-row: 1 / 3; font-size: 3.2rem; }
  .stars { margin: 0; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip div { min-height: 82px; justify-content: flex-start; padding: 18px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-strip div:last-child { border-bottom: 0; }
  .section { width: min(100% - 36px, 1200px); padding: 92px 0; }
  .story { gap: 70px; }
  .story-visual { padding: 0 0 34px 24px; }
  .story-visual::before { inset: 28px 24px 0 0; }
  .story-badge { right: -4px; width: 118px; height: 118px; }
  .story-badge span { font-size: 1.55rem; }
  .story-copy h2, .coming-next h2 { font-size: 2.65rem; }
  .coming-next { padding: 76px 22px; }

  .menu-showcase { padding: 86px 18px 116px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2, .veggie-copy h2, .visit-intro h2 { font-size: 2.75rem; }
  .food-grid { grid-template-columns: 1fr; gap: 48px; }
  .food-card:nth-child(even) { transform: none; }
  .food-photo img { aspect-ratio: 4 / 3; }
  .food-card-copy { gap: 14px; }
  .food-card h3 { font-size: 2.15rem; }
  .food-card p { font-size: 0.9rem; }
  .veggie-feature { min-height: auto; padding: 90px 18px 70px; }
  .veggie-feature::before { top: 75%; width: 380px; height: 380px; }
  .plate-composition { min-height: 400px; }
  .plate-one { left: 7%; width: 45%; }
  .plate-two { right: 0; width: 48%; }
  .plate-three { left: 0; width: 42%; }
  .plate-composition p { top: 43%; left: 40%; font-size: 0.95rem; }
  .plate-composition p strong { font-size: 1.3rem; }
  .review-section { grid-template-columns: 1fr; gap: 28px; padding: 72px 22px; }
  .review-kicker { grid-column: auto; }
  .review-score { font-size: 8rem; }
  .review-content { padding: 28px 0 0; border-top: 1px solid rgba(11, 10, 9, 0.28); border-left: 0; }
  .review-content h2 { font-size: 2.55rem; }
  .visit { padding: 54px 12px; }
  .visit-panel { min-height: auto; }
  .visit-intro, .hours { padding: 62px 26px; }
  .visit-intro { min-height: 580px; }
  .visit-actions { display: grid; grid-template-columns: 1fr; }
  .visit-actions .button { width: 100%; }
  .footer { padding: 40px 22px 104px; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; text-align: left; }
  .footer-top { gap: 24px; }
  .footer-top p { text-align: left; }
  .footer-top > a, .footer-bottom a { justify-self: start; }
  .footer-bottom { gap: 12px; }
  .footer-bottom span:nth-child(2) { text-align: left; }
  .mobile-call-bar {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--chilli);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  }
  .mobile-call-bar span { font-size: 0.67rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
  .mobile-call-bar strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; font-weight: 400; }
}

@media (max-width: 380px) {
  .site-header { padding-inline: 14px; }
  .brand { width: 158px; }
  .hero { padding-inline: 18px; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 4.1rem); }
  .hero-copy { max-width: 100%; }
  .button { padding-inline: 10px; font-size: 0.57rem; }
  .rating-card { left: 18px; width: calc(100% - 36px); padding-inline: 18px; }
  .mobile-call-bar { right: 8px; bottom: 8px; left: 8px; padding-inline: 16px; }
  .mobile-call-bar strong { font-size: 0.95rem; }
}

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