:root {
  --ink: #2a2223;
  --muted: #6d6264;
  --cream: #f8f3ef;
  --paper: #fffdfb;
  --blush: #e9cfd2;
  --rose: #b8717f;
  --wine: #7d3948;
  --wine-dark: #53232e;
  --gold: #bc9460;
  --line: rgba(42, 34, 35, 0.13);
  --shadow: 0 24px 65px rgba(69, 35, 43, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.section {
  padding: 110px 0;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: white;
  transform: translateY(-150%);
}

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

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  color: white;
  background: var(--wine-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-dot {
  color: var(--blush);
}

.site-header {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,0.24);
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 253, 251, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(52, 34, 38, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1240px, calc(100% - 34px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.site-header.scrolled .brand {
  color: var(--ink);
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 19px;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-header.scrolled .site-nav a {
  color: var(--ink);
}

.site-nav a:not(.nav-book) {
  position: relative;
}

.site-nav a:not(.nav-book)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:not(.nav-book):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
}

.site-header.scrolled .nav-book {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 1.5px;
  margin: 5px auto;
  background: white;
  transition: transform .25s ease, opacity .25s ease;
}

.site-header.scrolled .menu-toggle span:not(.sr-only) {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(35, 20, 23, .22), rgba(35, 20, 23, .08)),
    url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=2000&q=88") center 45% / cover no-repeat;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 26, 31, .84) 0%, rgba(42, 26, 31, .45) 47%, rgba(42, 26, 31, .12) 78%),
    linear-gradient(0deg, rgba(42, 26, 31, .55) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 105px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3d5da;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 8vw, 104px);
}

.hero h1 em,
h2 em {
  color: var(--blush);
  font-weight: 600;
}

.hero-text {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 17px;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.button-primary {
  color: white;
  background: var(--wine);
  box-shadow: 0 12px 30px rgba(66, 25, 35, .22);
}

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

.button-ghost {
  color: white;
  border-color: rgba(255,255,255,.56);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}

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

.button-outline-light {
  color: white;
  border-color: rgba(255,255,255,.35);
}

.button-full {
  width: 100%;
}

.hero-facts {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.24);
}

.hero-facts > div {
  display: grid;
  gap: 3px;
  padding-right: 25px;
}

.fact-label {
  color: rgba(255,255,255,.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: end;
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.intro h2 em,
.section-heading h2 em,
.visit h2 em {
  color: var(--wine);
}

.intro-copy {
  padding-bottom: 7px;
}

.intro-copy p,
.section-heading > p,
.experience-copy > p,
.visit-info p {
  color: var(--muted);
}

.intro-copy p {
  margin: 0 0 28px;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p {
  margin: 0 0 4px;
  font-size: 15px;
}

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

.service-card {
  min-height: 355px;
  position: relative;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  transition: background .3s ease, transform .3s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--cream);
}

.service-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(184, 113, 127, .18);
  border-radius: 50%;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -31px;
  bottom: -63px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(184, 113, 127, .18);
  border-radius: 50%;
}

.service-featured {
  color: white;
  background: var(--wine);
}

.service-featured:hover {
  background: var(--wine-dark);
}

.service-number {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-featured .service-number,
.service-featured p {
  color: rgba(255,255,255,.68);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 54px 0 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 22px;
}

.service-featured .service-icon {
  border-color: rgba(255,255,255,.28);
  color: var(--blush);
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.service-card p {
  max-width: 270px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  position: absolute;
  left: 34px;
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  gap: 9px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.experience {
  background: #efe5e3;
}

.experience-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.experience-photo {
  min-height: 670px;
  position: relative;
  background:
    linear-gradient(0deg, rgba(61, 38, 43, .18), rgba(61, 38, 43, .02)),
    url("https://images.unsplash.com/photo-1610992015732-2449b76344bc?auto=format&fit=crop&w=1200&q=88") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.photo-badge {
  position: absolute;
  right: -36px;
  bottom: 34px;
  width: 220px;
  padding: 24px;
  color: white;
  background: var(--wine);
  box-shadow: 0 18px 40px rgba(83, 35, 46, .24);
}

.photo-badge strong,
.photo-badge span {
  display: block;
}

.photo-badge strong {
  font-family: var(--serif);
  font-size: 20px;
}

.photo-badge span {
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
}

.experience-copy {
  padding-left: 25px;
}

.experience-copy h2 em {
  color: var(--wine);
}

.experience-copy > p {
  max-width: 590px;
  margin: 28px 0 34px;
  font-size: 16px;
}

.benefit-list {
  margin-bottom: 34px;
}

.benefit-list > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 17px;
  padding: 18px 0;
  border-top: 1px solid rgba(42,34,35,.12);
}

.benefit-list > div:last-child {
  border-bottom: 1px solid rgba(42,34,35,.12);
}

.benefit-list span {
  color: var(--rose);
  font-size: 10px;
  font-weight: 800;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.benefit-list strong {
  color: var(--ink);
}

.gallery {
  background: var(--paper);
}

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

.gallery-heading .text-link {
  justify-self: end;
  margin-bottom: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: 315px 315px;
  gap: 16px;
}

.gallery-item {
  min-height: 300px;
  position: relative;
  margin: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(38,25,28,.55), transparent 45%);
  transition: background .3s ease;
}

.gallery-item:hover::after {
  background: linear-gradient(0deg, rgba(38,25,28,.65), rgba(38,25,28,.05));
}

.gallery-item figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: white;
  font-family: var(--serif);
  font-size: 17px;
}

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

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

.image-one {
  background-image: url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=1100&q=86");
}

.image-two {
  background-image: url("https://images.unsplash.com/photo-1632345031435-8727f6897d53?auto=format&fit=crop&w=900&q=86");
}

.image-three {
  background-image: url("https://images.unsplash.com/photo-1599206676335-193c82b13c9e?auto=format&fit=crop&w=900&q=86");
}

.image-four {
  background-image: url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1400&q=86");
}

.gallery-note {
  margin: 18px 0 0;
  color: #8a7d7f;
  font-size: 11px;
  text-align: right;
}

.testimonial {
  color: white;
  background: var(--wine-dark);
}

.testimonial-shell {
  position: relative;
  padding-left: 110px;
}

.quote-mark {
  position: absolute;
  top: -45px;
  left: 0;
  color: rgba(255,255,255,.12);
  font-family: var(--serif);
  font-size: 180px;
  line-height: 1;
}

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

blockquote {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 66px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.13;
}

.visit {
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 100px;
  align-items: start;
}

.visit-info h2 {
  max-width: 620px;
  margin-bottom: 50px;
}

.contact-block {
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.contact-block p {
  margin: 5px 0 14px;
}

.contact-label {
  color: var(--ink) !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.phone-link {
  display: inline-block;
  margin: 4px 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 31px;
  text-decoration: none;
}

.hours-card {
  padding: 40px;
  background: white;
  box-shadow: var(--shadow);
}

.hours-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
}

.open-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.open-indicator i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6d9d70;
  box-shadow: 0 0 0 4px rgba(109,157,112,.14);
}

.hours-card dl {
  margin: 20px 0 30px;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 13px;
}

.hours-card dt,
.hours-card dd {
  margin: 0;
}

.hours-card dd {
  color: var(--ink);
  font-weight: 700;
}

.map-section {
  height: 450px;
  filter: grayscale(.35) sepia(.08);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 72px 0 28px;
  color: rgba(255,255,255,.72);
  background: #241c1e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .6fr .6fr;
  gap: 70px;
}

.footer-brand {
  color: white;
}

.footer-grid > div:first-child > p {
  max-width: 390px;
  margin-top: 22px;
  font-size: 13px;
}

.footer-title {
  margin: 0 0 18px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 10px;
}

.mobile-booking {
  display: none;
}

@media (max-width: 920px) {
  .section {
    padding: 85px 0;
  }

  .site-header {
    top: 36px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: var(--wine-dark);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .site-nav.open {
    z-index: 20;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-header.scrolled .site-nav a {
    color: white;
    font-family: var(--serif);
    font-size: 28px;
  }

  .site-nav .nav-book {
    margin-top: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
  }

  .menu-toggle {
    position: relative;
    z-index: 21;
  }

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

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

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

  .menu-toggle.active span:not(.sr-only),
  .site-header.scrolled .menu-toggle.active span:not(.sr-only) {
    background: white;
  }

  .intro-grid,
  .section-heading,
  .experience-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .experience-photo {
    min-height: 560px;
  }

  .experience-copy {
    padding-left: 0;
  }

  .photo-badge {
    right: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 260px 320px;
  }

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

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

  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .announcement {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .site-header {
    top: 32px;
  }

  .nav-shell {
    width: calc(100% - 22px);
    height: 70px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .hero-image {
    background-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(42,26,31,.92) 0%, rgba(42,26,31,.53) 65%, rgba(42,26,31,.25) 100%);
  }

  .hero-content {
    padding-top: 150px;
    padding-bottom: 75px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 69px);
  }

  .hero-text {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

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

  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 35px;
  }

  .hero-facts > div:last-child {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: 44px;
  }

  .intro-grid {
    gap: 30px;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 36px;
  }

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

  .service-card {
    min-height: 315px;
  }

  .service-icon {
    margin-top: 35px;
  }

  .experience-photo {
    min-height: 470px;
  }

  .photo-badge {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .experience-grid {
    gap: 54px;
  }

  .gallery-heading .text-link {
    justify-self: start;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 215px 215px;
    gap: 9px;
  }

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

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

  .gallery-note {
    text-align: left;
  }

  .testimonial-shell {
    padding-left: 15px;
  }

  .quote-mark {
    top: -50px;
    left: -4px;
    font-size: 120px;
  }

  blockquote {
    font-size: 39px;
  }

  .testimonial-actions {
    display: grid;
  }

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

  .hours-card {
    padding: 26px 22px;
  }

  .hours-title {
    font-size: 19px;
  }

  .hours-card dl div {
    font-size: 12px;
  }

  .map-section {
    height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 70px;
  }

  .mobile-booking {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 50;
    display: block;
  }

  .mobile-booking a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    color: white;
    background: rgba(83,35,46,.95);
    box-shadow: 0 15px 45px rgba(44,20,25,.3);
    text-decoration: none;
    backdrop-filter: blur(13px);
  }

  .mobile-booking span {
    font-family: var(--serif);
    font-size: 17px;
  }

  .mobile-booking strong {
    padding: 8px 12px;
    border-radius: 999px;
    background: white;
    color: var(--wine);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
}


/* Complete menu and authentic gallery update */
.hero-authentic .hero-image {
  background-image: url("https://centralnailsaz.com/wp-content/uploads/2021/10/IMG_4637110821021527PM.jpg");
  background-position: center 58%;
}
.hero-authentic .hero-overlay {
  background: linear-gradient(90deg, rgba(35,20,24,.88) 0%, rgba(35,20,24,.59) 48%, rgba(35,20,24,.18) 100%), linear-gradient(0deg, rgba(35,20,24,.52), transparent 42%);
}
.authentic-photo {
  background-image: linear-gradient(0deg, rgba(61,38,43,.18), rgba(61,38,43,.02)), url("https://centralnailsaz.com/wp-content/uploads/2021/10/IMG_4633110821021518PM.jpg");
  background-position: center;
}
.full-menu { background: var(--paper); }
.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-menu-card {
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.service-menu-card[open] {
  border-color: rgba(125,57,72,.38);
  box-shadow: 0 18px 50px rgba(69,35,43,.09);
}
.service-menu-card:hover { transform: translateY(-2px); }
.service-menu-card summary {
  min-height: 106px;
  display: grid;
  grid-template-columns: 38px 1fr 28px;
  gap: 14px;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}
.service-menu-card summary::-webkit-details-marker { display: none; }
.service-menu-number { color: var(--rose); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.service-menu-title { font-family: var(--serif); font-size: 22px; line-height: 1.15; }
.service-menu-toggle { position: relative; width: 22px; height: 22px; }
.service-menu-toggle::before,.service-menu-toggle::after { content:""; position:absolute; top:50%; left:50%; width:14px; height:1px; background:var(--ink); transform:translate(-50%,-50%); transition:transform .2s ease; }
.service-menu-toggle::after { transform:translate(-50%,-50%) rotate(90deg); }
.service-menu-card[open] .service-menu-toggle::after { transform:translate(-50%,-50%) rotate(0deg); }
.service-menu-body { padding: 0 24px 26px 76px; }
.service-menu-body ul { margin: 0 0 22px; padding: 0; list-style: none; }
.service-menu-body li { position: relative; padding: 8px 0 8px 18px; border-bottom: 1px solid rgba(42,34,35,.08); color: var(--muted); font-size: 13px; }
.service-menu-body li::before { content:""; position:absolute; left:0; top:16px; width:5px; height:5px; border-radius:50%; background:var(--rose); }
.service-menu-body a { display:inline-flex; gap:8px; color:var(--wine); font-size:12px; font-weight:800; text-decoration:none; }
.service-menu-cta { margin-top: 22px; padding: 26px 30px; display:flex; align-items:center; justify-content:space-between; gap:24px; color:white; background:var(--wine-dark); }
.service-menu-cta span,.service-menu-cta strong { display:block; }
.service-menu-cta span { color:rgba(255,255,255,.65); font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.service-menu-cta strong { margin-top:4px; font-family:var(--serif); font-size:24px; }
.album-section { background: #f8f3ef; }
.album-filters { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
.album-filters button { padding:10px 16px; border:1px solid var(--line); border-radius:999px; color:var(--muted); background:white; font:700 11px var(--sans); cursor:pointer; }
.album-filters button.active { color:white; background:var(--wine); border-color:var(--wine); }
.album-grid { columns: 5 190px; column-gap: 10px; }
.album-item { width:100%; position:relative; display:block; margin:0 0 10px; padding:0; border:0; background:#e9dfe0; overflow:hidden; cursor:zoom-in; break-inside:avoid; }
.album-item img { width:100%; height:auto; min-height:150px; display:block; object-fit:cover; transition:transform .35s ease, filter .35s ease; }
.album-item:hover img { transform:scale(1.04); filter:brightness(.78); }
.album-overlay { position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:space-between; padding:14px; color:white; background:linear-gradient(0deg,rgba(37,22,26,.62),transparent 58%); opacity:0; transition:opacity .25s ease; }
.album-item:hover .album-overlay,.album-item:focus-visible .album-overlay { opacity:1; }
.album-overlay b { font-size:10px; letter-spacing:.15em; }
.album-overlay em { font-family:var(--serif); font-size:13px; font-style:normal; }
.album-extra { display:none; }
.album-grid.show-all .album-extra { display:block; }
.album-item.filtered-out { display:none !important; }
.album-actions { display:flex; align-items:center; justify-content:center; gap:24px; margin-top:34px; }
.lightbox { position:fixed; inset:0; z-index:1000; display:grid; place-items:center; padding:70px; color:white; background:rgba(24,15,18,.96); opacity:0; visibility:hidden; transition:opacity .2s ease,visibility .2s ease; }
.lightbox.open { opacity:1; visibility:visible; }
.lightbox figure { margin:0; max-width:min(900px,80vw); max-height:82vh; display:grid; gap:12px; justify-items:center; }
.lightbox figure img { max-width:100%; max-height:76vh; object-fit:contain; box-shadow:0 25px 80px rgba(0,0,0,.4); }
.lightbox figcaption { color:rgba(255,255,255,.68); font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.lightbox-close,.lightbox-nav { position:absolute; border:1px solid rgba(255,255,255,.22); color:white; background:rgba(255,255,255,.06); cursor:pointer; }
.lightbox-close { top:20px; right:20px; width:48px; height:48px; border-radius:50%; font-size:30px; }
.lightbox-nav { top:50%; width:50px; height:70px; transform:translateY(-50%); font-size:42px; }
.lightbox-prev { left:20px; }.lightbox-next { right:20px; }
@media (max-width: 920px) {
  .service-menu-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .album-grid { columns: 3 180px; }
}
@media (max-width: 640px) {
  .service-menu-grid { grid-template-columns: 1fr; }
  .service-menu-card summary { min-height:88px; padding:20px 18px; grid-template-columns:32px 1fr 24px; }
  .service-menu-title { font-size:20px; }
  .service-menu-body { padding:0 18px 22px 62px; }
  .service-menu-cta { align-items:flex-start; flex-direction:column; padding:24px 20px; }
  .service-menu-cta .button { width:100%; }
  .album-grid { columns:2 135px; column-gap:8px; }
  .album-item { margin-bottom:8px; }
  .album-actions { flex-direction:column; }
  .lightbox { padding:58px 14px 80px; }
  .lightbox figure { max-width:94vw; }
  .lightbox-nav { top:auto; bottom:14px; width:52px; height:48px; transform:none; }
  .lightbox-prev { left:calc(50% - 62px); }.lightbox-next { right:calc(50% - 62px); }
}


/* Parties & events */
.parties { background:var(--cream); }
.parties-shell { display:grid; grid-template-columns:.95fr 1.05fr; gap:80px; align-items:center; }
.parties-photo { min-height:590px; position:relative; background:linear-gradient(0deg,rgba(61,38,43,.18),rgba(61,38,43,.02)),url("https://centralnailsaz.com/wp-content/uploads/2021/10/hostparty1.jpg") center/cover no-repeat; box-shadow:var(--shadow); }
.parties-badge { position:absolute; left:24px; right:24px; bottom:24px; padding:22px 24px; color:white; background:rgba(83,35,46,.94); backdrop-filter:blur(8px); }
.parties-badge span,.parties-badge strong { display:block; }
.parties-badge span { margin-bottom:5px; font-size:10px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; opacity:.72; }
.parties-badge strong { font-family:var(--serif); font-size:25px; font-weight:600; }
.parties-copy h2 em { color:var(--wine); }
.parties-copy>p:not(.eyebrow) { max-width:620px; margin:27px 0 30px; color:var(--muted); font-size:16px; }
.party-types { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:35px; }
.party-types span { padding:10px 14px; border:1px solid var(--line); border-radius:999px; background:var(--paper); color:var(--ink); font-size:11px; font-weight:800; }
.party-actions { display:flex; align-items:center; gap:24px; padding-top:28px; border-top:1px solid var(--line); }
.party-actions p { margin:0; color:var(--ink); font-size:14px; line-height:1.35; }
.party-actions small { color:var(--muted); font-size:11px; }
@media (max-width:920px) { .parties-shell { grid-template-columns:1fr; gap:48px; } .parties-photo { min-height:520px; } }
@media (max-width:640px) { .parties-photo { min-height:430px; } .party-actions { align-items:stretch; flex-direction:column; } .party-actions .button { width:100%; } }
\n\n/* Technician request section */\n.technicians {\n  background: var(--cream);\n}\n\n.technicians-shell {\n  position: relative;\n}\n\n.technicians-heading {\n  display: grid;\n  grid-template-columns: 1fr 390px;\n  gap: 70px;\n  align-items: end;\n  margin-bottom: 48px;\n}\n\n.technicians-heading h2 em {\n  color: var(--wine);\n}\n\n.technicians-intro p {\n  margin: 0 0 24px;\n  color: var(--muted);\n  font-size: 15px;\n}\n\n.technician-grid {\n  display: grid;\n  grid-template-columns: repeat(4, 1fr);\n  border-top: 1px solid var(--line);\n  border-left: 1px solid var(--line);\n  background: var(--paper);\n}\n\n.technician-card {\n  min-height: 210px;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  padding: 28px 18px;\n  border-right: 1px solid var(--line);\n  border-bottom: 1px solid var(--line);\n  text-align: center;\n  transition: background .25s ease, transform .25s ease;\n}\n\n.technician-card:hover {\n  position: relative;\n  z-index: 2;\n  background: #f2e5e5;\n  transform: translateY(-3px);\n}\n\n.technician-initial {\n  width: 68px;\n  height: 68px;\n  display: grid;\n  place-items: center;\n  margin-bottom: 18px;\n  border: 1px solid rgba(125,57,72,.25);\n  border-radius: 50%;\n  color: var(--wine);\n  background: white;\n  font-family: var(--serif);\n  font-size: 26px;\n  box-shadow: 0 12px 30px rgba(69,35,43,.08);\n}\n\n.technician-card h3 {\n  margin: 0 0 4px;\n  font-family: var(--serif);\n  font-size: 25px;\n  font-weight: 600;\n}\n\n.technician-card p {\n  margin: 0;\n  color: var(--muted);\n  font-size: 11px;\n  font-weight: 700;\n  letter-spacing: .08em;\n  text-transform: uppercase;\n}\n\n.technician-cta {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n  gap: 30px;\n  margin-top: 24px;\n  padding: 26px 30px;\n  color: white;\n  background: var(--wine-dark);\n}\n\n.technician-cta div {\n  display: grid;\n  gap: 3px;\n}\n\n.technician-cta strong {\n  font-family: var(--serif);\n  font-size: 22px;\n}\n\n.technician-cta span {\n  color: rgba(255,255,255,.72);\n  font-size: 12px;\n}\n\n@media (max-width: 920px) {\n  .technicians-heading {\n    grid-template-columns: 1fr;\n    gap: 28px;\n  }\n\n  .technician-grid {\n    grid-template-columns: repeat(2, 1fr);\n  }\n}\n\n@media (max-width: 640px) {\n  .technician-card {\n    min-height: 175px;\n    padding: 22px 10px;\n  }\n\n  .technician-initial {\n    width: 58px;\n    height: 58px;\n    font-size: 23px;\n  }\n\n  .technician-card h3 {\n    font-size: 22px;\n  }\n\n  .technician-cta {\n    align-items: stretch;\n    flex-direction: column;\n    padding: 24px;\n  }\n\n  .technician-cta .button {\n    width: 100%;\n  }\n}\n