:root {
  --ink: #241d20;
  --muted: #6d6162;
  --paper: #fbfaf7;
  --paper-deep: #f2eee8;
  --blush: #f3d8d5;
  --blush-deep: #e9b9b6;
  --rose: #711f2b;
  --rose-dark: #4d1721;
  --green: #183d37;
  --gold: #b78b4b;
  --line: #ded7d0;
  --white: #fffdf9;
  --content: 1180px;
  --header-height: 78px;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.content-width {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--rose);
  border-radius: 3px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 30px;
  height: var(--header-height);
  padding: 0 32px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(36, 29, 32, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(36, 29, 32, 0.08);
  background: rgba(255, 253, 249, 0.98);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-logo {
  width: 132px;
  height: 66px;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--white);
  background: var(--rose);
  border: 1px solid var(--rose-dark);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  display: flex;
  flex-direction: column;
  color: var(--rose-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.brand-name small {
  margin-top: 3px;
  color: var(--muted);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #514849;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--rose);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 24px;
  color: var(--rose);
  border-left: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--rose);
  border: 1px solid var(--rose);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-book:hover,
.header-book:focus-visible {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-1px);
}

.header-book svg {
  width: 16px;
  height: 16px;
}

.header-call svg {
  width: 16px;
  height: 16px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--rose-dark);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  height: calc(100svh - 118px);
  max-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: #322a28;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 46%;
}

.hero-shade {
  background: rgba(25, 17, 18, 0.56);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 26px;
  padding-bottom: 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blush);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--blush);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 76px;
  font-weight: 600;
  line-height: 0.98;
}

.hero h1 span {
  color: #f5d7cf;
}

.hero-copy {
  max-width: 480px;
  margin: 24px 0 0;
  color: #f6eee9;
  font-size: 19px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-light {
  color: var(--rose-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--rose-dark);
  background: #f5d7cf;
  border-color: #f5d7cf;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 253, 249, 0.68);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--rose-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-outline {
  color: var(--rose);
  background: transparent;
  border-color: var(--rose);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--rose);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 46px;
  color: #f9eee9;
  font-size: 13px;
}

.hero-meta span,
.hero-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta a {
  border-bottom: 1px solid rgba(255, 253, 249, 0.45);
}

.hero-meta a:hover,
.hero-meta a:focus-visible {
  color: #f5d7cf;
  border-color: #f5d7cf;
}

.hero-meta svg {
  width: 16px;
  height: 16px;
  color: #f5d7cf;
}

.open-state.is-closed {
  color: #f5d7cf;
}

/* Intro strip */
.service-intro {
  color: var(--rose-dark);
  background: var(--blush);
  border-bottom: 1px solid #e3c5c2;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-intro-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  padding: 18px 24px;
  border-right: 1px solid rgba(113, 31, 43, 0.16);
}

.service-intro-item:first-child {
  padding-left: 0;
}

.service-intro-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-intro-item svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  color: var(--rose);
}

.service-intro-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-intro-item strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.service-intro-item span {
  color: #78585a;
  font-size: 12px;
}

/* Shared section styles */
.section {
  padding: 112px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading h2,
.experience h2,
.appointment-copy h2 {
  margin: 0;
  color: var(--rose-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
}

.section-heading > p {
  max-width: 395px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Menu */
.menu-section {
  background: var(--paper);
}

.menu-heading-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 395px;
}

.menu-heading-side p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.menu-tabs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.menu-tabs-hint {
  display: none;
}

.menu-tabs button {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 12px 2px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.menu-tabs button svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.menu-tabs button[aria-selected="true"] {
  color: var(--rose);
  font-weight: 700;
}

.menu-tabs button[aria-selected="true"] svg {
  color: var(--rose);
}

.menu-tabs button:hover,
.menu-tabs button:focus-visible {
  color: var(--rose);
}

.menu-panel {
  min-height: 510px;
  padding: 28px 30px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--rose);
  border-radius: 6px;
}

.menu-panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.menu-kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-panel-header h3 {
  margin: 0;
  color: var(--rose-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 33px;
  font-weight: 600;
  line-height: 1.1;
}

.price-legend {
  display: grid;
  grid-template-columns: 72px 72px;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.price-legend span:last-child {
  color: var(--rose);
}

.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #ebe6df;
}

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

.menu-item.featured {
  margin: 0 -10px;
  padding-right: 10px;
  padding-left: 10px;
  background: #fbf1ee;
  border-bottom-color: transparent;
}

.menu-item h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.menu-item h4 small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.menu-item p {
  max-width: 610px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.menu-item .ingredients {
  margin-top: 6px;
  color: #8d6b5b;
  font-size: 11px;
  font-style: italic;
}

.price-pair {
  display: grid;
  grid-template-columns: 72px 72px;
  align-content: start;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.price-pair span:last-child {
  color: var(--rose);
}

.price-single {
  color: var(--rose);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.menu-group {
  padding-top: 22px;
}

.menu-group:first-child {
  padding-top: 0;
}

.menu-group + .menu-group {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.menu-group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 2px;
  color: var(--rose-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.menu-group-title small {
  color: var(--muted);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.price-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.price-note svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--gold);
}

.price-note p {
  max-width: 880px;
  margin: 0;
}

/* Gallery */
.gallery-section {
  background: #f1e8e2;
}

.gallery-heading {
  align-items: end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #dfd3cc;
  border-radius: 5px;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-promo {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item-promo img {
  object-position: center 57%;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #d7c8bf;
}

.gallery-cta p {
  margin: 0;
  color: var(--rose-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
}

.no-script {
  margin: 24px 0;
  color: var(--muted);
}

/* Experience */
.experience {
  color: var(--white);
  background: var(--rose-dark);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 82px;
  align-items: center;
}

.brand-art {
  margin: 0;
  border: 1px solid rgba(255, 253, 249, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.brand-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.experience h2,
.appointment-copy h2 {
  color: var(--white);
}

.experience-copy > p:not(.eyebrow),
.appointment-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: #f0dfdb;
  font-size: 17px;
  line-height: 1.6;
}

.experience-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 249, 0.24);
}

.experience-points > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.experience-points svg {
  color: var(--blush-deep);
}

.experience-points span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #e8d0cb;
  font-size: 12px;
  line-height: 1.4;
}

.experience-points strong {
  color: var(--white);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.text-link-light {
  color: #f5d7cf;
}

.experience-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.experience-actions .text-link {
  margin-top: 0;
}

/* Visit */
.visit-section {
  background: var(--paper-deep);
}

.visit-heading {
  align-items: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 36px;
  align-items: stretch;
}

.map-wrap {
  min-height: 420px;
  background: #dedad3;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 16px 0 10px;
}

.visit-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.visit-detail > svg,
.hours-heading svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--rose);
}

.visit-detail div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visit-detail span,
.hours-heading span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.visit-detail strong,
.visit-detail a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.visit-detail a {
  color: var(--rose);
}

.visit-detail a:hover,
.visit-detail a:focus-visible {
  color: var(--rose-dark);
  text-decoration: underline;
}

.hours-block {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hours-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hours-block dl {
  margin: 16px 0 0;
}

.hours-block dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #e2dcd4;
  font-size: 13px;
}

.hours-block dt {
  color: var(--muted);
}

.hours-block dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.walk-in-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: auto 0 0;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 700;
}

.walk-in-note svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

/* Appointment */
.appointment-section {
  color: var(--white);
  background: var(--green);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 84px;
  align-items: start;
}

.appointment-copy h2 {
  max-width: 420px;
}

.appointment-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #f6d9d4;
}

.appointment-book {
  margin-top: 32px;
}

.appointment-phone svg {
  width: 21px;
  height: 21px;
}

.appointment-phone span {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 20px;
  font-weight: 700;
}

.appointment-phone small {
  color: #c9dfd8;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.appointment-form {
  padding: 2px 0 0;
}

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

.appointment-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #d7e8e3;
  font-size: 12px;
  font-weight: 700;
}

.appointment-form label > span small {
  color: #9fc1b8;
  font-size: 11px;
  font-weight: 500;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 253, 249, 0.08);
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 3px;
  outline: 0;
  transition: border-color 160ms ease, background 160ms ease;
}

.appointment-form input,
.appointment-form select {
  height: 46px;
  padding: 0 12px;
}

.appointment-form textarea {
  min-height: 108px;
  padding: 11px 12px;
  resize: vertical;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: #b8d0c9;
}

.appointment-form select option {
  color: var(--ink);
  background: var(--white);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  background: rgba(255, 253, 249, 0.14);
  border-color: #f5d7cf;
}

.form-wide {
  grid-column: 1 / -1;
}

.website-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.submit-button {
  min-width: 154px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #f5d7cf;
  font-size: 13px;
}

.form-status.is-error {
  color: #ffd0c8;
}

.form-status.is-success {
  color: #c9e8d9;
}

/* Footer */
.site-footer {
  color: #e9d8d3;
  background: #281a1e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  padding-top: 54px;
  padding-bottom: 44px;
}

.brand-footer .brand-logo {
  width: 156px;
  height: 78px;
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name small {
  color: #bd9fa1;
}

.footer-grid > div:first-child > p {
  margin: 15px 0 0 50px;
  color: #c9b4b1;
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  padding-top: 5px;
  font-size: 13px;
}

.footer-links a {
  color: #e9d8d3;
}

.footer-contact a {
  color: #f5d7cf;
  font-size: 16px;
  font-weight: 700;
}

.footer-contact span {
  color: #c9b4b1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 20px;
  color: #a99190;
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  font-size: 11px;
}

.mobile-actions {
  display: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 215, 207, 0.9);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 0 22px;
  }

  .brand-logo {
    width: 116px;
    height: 58px;
  }

  .brand-name {
    display: none;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-call {
    padding-left: 16px;
  }

  .header-call span {
    display: none;
  }

  .hero h1 {
    font-size: 65px;
  }

  .menu-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 28px;
  }

  .experience-grid,
  .appointment-grid {
    gap: 46px;
  }

  .experience-points {
    gap: 14px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 64px;
  }

  .content-width {
    width: min(calc(100% - 36px), var(--content));
  }

  .site-header {
    padding: 0 18px;
  }

  .desktop-nav,
  .header-call,
  .header-book {
    display: none;
  }

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

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 8px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(36, 29, 32, 0.12);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 14px 2px;
    color: var(--rose-dark);
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-nav a:last-child {
    color: var(--rose);
    border-bottom: 0;
  }

  .brand-logo {
    width: 112px;
    height: 56px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    min-height: 510px;
    height: calc(100svh - 104px);
  }

  .hero-image {
    object-position: 53% center;
  }

  .hero-content {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    max-width: 320px;
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 300px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    font-size: 12px;
  }

  .service-intro-grid {
    grid-template-columns: 1fr;
  }

  .service-intro-item,
  .service-intro-item:first-child,
  .service-intro-item:last-child {
    min-height: 70px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(113, 31, 43, 0.16);
  }

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

  .section {
    padding: 76px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .experience h2,
  .appointment-copy h2 {
    font-size: 41px;
  }

  .section-heading > p {
    margin-top: 18px;
    font-size: 14px;
  }

  .menu-heading-side {
    max-width: none;
    margin-top: 18px;
    gap: 16px;
  }

  .menu-heading-side p {
    font-size: 14px;
  }

  .menu-heading-side .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 9px;
  }

  .gallery-item-wide,
  .gallery-item-promo {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 2;
  }

  .gallery-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-cta .button {
    width: 100%;
  }

  .menu-layout {
    display: block;
  }

  .menu-tabs-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 -18px 10px;
    color: var(--rose);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
  }

  .menu-tabs-hint::before,
  .menu-tabs-hint::after {
    width: 28px;
    height: 1px;
    content: "";
    background: rgba(113, 31, 43, 0.22);
  }

  .menu-tabs-hint svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
  }

  .menu-tabs {
    flex-direction: row;
    gap: 0;
    margin: 0 -18px 20px;
    padding: 0 18px;
    overflow-x: auto;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: thin;
  }

  .menu-tabs button {
    flex: 0 0 auto;
    gap: 7px;
    min-height: 48px;
    margin-right: 22px;
    padding: 9px 0;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    white-space: nowrap;
  }

  .menu-tabs button[aria-selected="true"] {
    border-bottom-color: var(--rose);
  }

  .menu-panel {
    min-height: 0;
    padding: 22px 18px 14px;
  }

  .menu-panel-header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .menu-panel-header h3 {
    font-size: 29px;
  }

  .price-legend {
    grid-template-columns: 61px 61px;
    gap: 4px;
    width: 126px;
    margin-left: auto;
    font-size: 9px;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 16px 0;
  }

  .menu-item.featured {
    margin: 0 -6px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .menu-item h4 {
    font-size: 14px;
  }

  .menu-item p {
    font-size: 12px;
  }

  .price-pair {
    grid-template-columns: 61px 61px;
    gap: 4px;
    font-size: 13px;
  }

  .price-single {
    font-size: 13px;
  }

  .menu-group-title {
    font-size: 22px;
  }

  .experience-grid,
  .visit-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .brand-art {
    max-width: 420px;
  }

  .experience-points {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
    padding-top: 20px;
  }

  .experience-points > div {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 11px;
  }

  .experience-points span {
    gap: 2px;
  }

  .visit-heading .button {
    margin-top: 22px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 330px;
  }

  .visit-details {
    padding: 0;
  }

  .appointment-grid {
    gap: 32px;
  }

  .appointment-book {
    width: 100%;
    margin-top: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .submit-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-top: 40px;
    padding-bottom: 34px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    min-height: 64px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(36, 29, 32, 0.1);
  }

  .mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--rose);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-actions a + a {
    color: var(--white);
    background: var(--rose);
  }

  .mobile-actions svg {
    width: 17px;
    height: 17px;
  }
}

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