:root {
  --ivory: #fbf7f1;
  --warm-white: #fffdf9;
  --nude: #e8d8c8;
  --nude-deep: #c9aa91;
  --champagne: #b89663;
  --espresso: #241b17;
  --charcoal: #36302c;
  --muted: #7b6d63;
  --line: rgba(36, 27, 23, 0.12);
  --shadow: 0 28px 70px rgba(49, 35, 27, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1120px, calc(100% - 40px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--warm-white);
  background: var(--espresso);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 118px 0;
}

.section-sm {
  padding: 82px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(251, 247, 241, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(36, 27, 23, 0.06);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 150, 99, 0.48);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--espresso);
  background: rgba(255, 253, 249, 0.76);
}

.brand-text {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 103;
}

.lang-button {
  min-width: 42px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(36, 27, 23, 0.12);
  background: rgba(255, 253, 249, 0.72);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.lang-button:focus-visible {
  outline: 2px solid rgba(184, 150, 99, 0.72);
  outline-offset: 2px;
}

.lang-button.is-active,
.lang-button:hover {
  border-color: rgba(184, 150, 99, 0.48);
  color: var(--warm-white);
  background: var(--espresso);
}

.nav-menu a,
.footer-nav a,
.socials a {
  position: relative;
  color: var(--charcoal);
}

.nav-menu a::after,
.footer-nav a::after,
.socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-menu a:hover::after,
.footer-nav a:hover::after,
.socials a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 20px;
  border: 1px solid rgba(36, 27, 23, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav-cta:hover {
  color: var(--warm-white);
  background: var(--espresso);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.76);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--espresso);
  transition: transform 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 44px;
  background: #d9c7b7;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.placeholder-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.72), rgba(232, 216, 200, 0.34)),
    radial-gradient(circle at 72% 20%, rgba(184, 150, 99, 0.4), transparent 28%),
    linear-gradient(120deg, #d7bdad, #f2e7dd 44%, #ad8d7b);
}

.placeholder-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 27, 23, 0.26), transparent 44%),
    repeating-linear-gradient(110deg, rgba(255, 253, 249, 0.18) 0 2px, transparent 2px 18px);
  mix-blend-mode: soft-light;
}

.placeholder-image::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 253, 249, 0.34);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.88) 0%, rgba(251, 247, 241, 0.64) 38%, rgba(36, 27, 23, 0.14) 100%),
    linear-gradient(0deg, rgba(36, 27, 23, 0.38), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 76px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 0.98;
  font-weight: 700;
}

.hero-title {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 7.6vw, 6.65rem);
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  color: #4a4039;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-actions,
.footer-layout,
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  color: var(--warm-white);
  background: var(--espresso);
  box-shadow: 0 18px 34px rgba(36, 27, 23, 0.18);
}

.button-primary:hover {
  background: #3a2b24;
  box-shadow: 0 22px 42px rgba(36, 27, 23, 0.22);
}

.button-secondary {
  color: var(--espresso);
  border-color: rgba(36, 27, 23, 0.18);
  background: rgba(255, 253, 249, 0.62);
}

.button-secondary:hover {
  border-color: rgba(184, 150, 99, 0.56);
  background: var(--warm-white);
}

.hero-card {
  position: absolute;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 44px;
  z-index: 3;
  width: min(340px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid rgba(255, 253, 249, 0.44);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card span,
.contact-card span,
.booking-label {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.02;
}

.hero-card p,
.service-card p,
.trust-item p,
.contact-card p,
.booking-widget p,
.footer p,
.section-intro p,
.split-heading p,
.about-content p,
.policy-copy p {
  color: var(--muted);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2,
.split-heading h2,
.about-content h2,
.booking-content h2,
.policy-layout h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.7vw, 4.35rem);
}

.trust {
  background: var(--warm-white);
}

.trust-grid,
.services-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-item,
.service-card,
.contact-card {
  min-width: 0;
  padding: 34px;
  background: var(--ivory);
}

.trust-item span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 2rem;
}

.trust-item h3,
.service-card h3,
.hours h3,
.booking-widget h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.services {
  background:
    linear-gradient(180deg, var(--ivory), #f4ebe2);
}

.services-compact {
  padding: 42px 0;
  background: var(--warm-white);
}

.compact-services {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.compact-services span {
  margin-right: 8px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compact-services a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(36, 27, 23, 0.12);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--espresso);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.compact-services a:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 150, 99, 0.5);
  color: var(--champagne);
}

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

.service-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.service-card:hover {
  z-index: 1;
  transform: translateY(-8px);
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--champagne);
  border: 1px solid rgba(184, 150, 99, 0.36);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-card a,
.text-link {
  margin-top: auto;
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a::after,
.text-link::after {
  content: " /";
  color: var(--champagne);
}

.gallery {
  background: var(--espresso);
  color: var(--warm-white);
}

.gallery .eyebrow,
.gallery figcaption {
  color: #d8bb8e;
}

.gallery .section-intro p {
  color: rgba(255, 253, 249, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.82fr 0.82fr;
  grid-auto-rows: 214px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #3a2b24;
  cursor: zoom-in;
  border: 0;
}

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

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

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #2f221d;
  transition: transform 540ms ease, filter 540ms ease;
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-item:focus-visible {
  outline: 2px solid rgba(216, 187, 142, 0.9);
  outline-offset: 3px;
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 249, 0.2);
  background: rgba(36, 27, 23, 0.42);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(22, 15, 12, 0.84);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  max-height: min(94vh, 1000px);
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(32, 22, 17, 0.92);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
  animation: lightbox-in 260ms ease;
}

.lightbox-image {
  width: 100%;
  max-height: calc(94vh - 98px);
  object-fit: contain;
  background: #1a120f;
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.92rem;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 50%;
  color: var(--warm-white);
  background: rgba(22, 15, 12, 0.72);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 50%;
  color: var(--warm-white);
  background: rgba(22, 15, 12, 0.72);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.tone-blonde {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.68), rgba(199, 162, 105, 0.12)),
    linear-gradient(120deg, #c79f75, #f2dfc0 45%, #8a6a58);
}

.tone-brunette {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.48), rgba(97, 65, 48, 0.2)),
    linear-gradient(120deg, #4a3328, #b78e74 54%, #241b17);
}

.tone-copper {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.48), rgba(170, 89, 56, 0.2)),
    linear-gradient(120deg, #8f4d35, #d49b75 48%, #513027);
}

.tone-balayage {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.56), rgba(184, 150, 99, 0.18)),
    linear-gradient(120deg, #5f4034, #d6b189 48%, #f5e5cd);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  display: grid;
  gap: 16px;
}

.about-image {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.about-note {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  padding: 24px;
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.about-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
}

.about-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-content p {
  font-size: 1.02rem;
}

.signature {
  margin-top: 26px;
  color: var(--champagne) !important;
  font-family: var(--serif);
  font-size: 1.45rem !important;
  font-weight: 700;
}

.booking {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(36, 27, 23, 0.62), rgba(36, 27, 23, 0.62)),
    linear-gradient(120deg, #c9aa91, #f5e8dd 45%, #886c5e);
  color: var(--warm-white);
}

.booking::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 253, 249, 0.16);
  pointer-events: none;
}

.booking-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: clamp(34px, 7vw, 84px);
  border: 1px solid rgba(255, 253, 249, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.13), rgba(255, 253, 249, 0.04)),
    rgba(36, 27, 23, 0.2);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.booking-content p {
  max-width: 620px;
  color: rgba(255, 253, 249, 0.74);
  font-size: 1.05rem;
}

.booking-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.booking-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 253, 249, 0.82);
  font-weight: 700;
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 14px;
  height: 1px;
  background: var(--champagne);
}

.booking-widget {
  position: relative;
  padding: clamp(26px, 4vw, 40px);
  color: var(--espresso);
  background: var(--warm-white);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.26);
}

.booking-widget h3 {
  margin-bottom: 8px;
}

.booking-widget .button {
  width: 100%;
  margin-top: 16px;
}

.booking-embed-slot {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin: 24px 0 18px;
  padding: 24px;
  text-align: center;
  border: 1px dashed rgba(184, 150, 99, 0.56);
  background:
    linear-gradient(rgba(251, 247, 241, 0.78), rgba(251, 247, 241, 0.78)),
    repeating-linear-gradient(135deg, rgba(184, 150, 99, 0.14) 0 1px, transparent 1px 14px);
}

.booking-embed-slot span {
  display: block;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.booking-embed-slot small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.booking-main-cta {
  min-height: 58px;
}

.booking-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.policy {
  background: var(--warm-white);
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.policy-copy {
  column-count: 2;
  column-gap: 34px;
}

.contact {
  background: var(--warm-white);
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.7fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.contact-heading h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.contact-heading p {
  max-width: 420px;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.contact .contact-card {
  padding: 24px;
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact-card a:hover {
  color: var(--champagne);
}

.instagram-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ivory), var(--warm-white));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.instagram-preview:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 150, 99, 0.38);
  box-shadow: 0 20px 44px rgba(36, 27, 23, 0.08);
}

.instagram-avatar {
  width: 74px;
  height: 74px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(184, 150, 99, 0.36);
  background: var(--warm-white);
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.instagram-preview span {
  display: block;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.instagram-preview strong {
  display: block;
  margin: 2px 0 4px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1;
}

.instagram-preview p {
  margin: 0;
  color: var(--muted);
}

.instagram-preview .instagram-action {
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid rgba(36, 27, 23, 0.12);
  border-radius: 999px;
  color: var(--espresso);
  background: var(--warm-white);
}

.contact-bottom {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
}

.hours,
.map-card {
  min-height: 330px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.hours {
  padding: 34px;
}

.hours dl {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.map-card {
  position: relative;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  border: 0;
  filter: saturate(0.8) contrast(0.96);
}

.map-info {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(330px, calc(100% - 44px));
  padding: 22px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.map-info span {
  display: block;
  margin-bottom: 10px;
  color: var(--champagne);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-info strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.footer {
  padding: 56px 0 28px;
  color: var(--warm-white);
  background: var(--espresso);
}

.footer .brand-mark {
  color: var(--warm-white);
  background: transparent;
}

.footer .brand-text,
.footer a {
  color: var(--warm-white);
}

.footer p,
.footer-bottom {
  color: rgba(255, 253, 249, 0.62);
}

.footer-layout {
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.14);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-nav,
.socials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom {
  justify-content: space-between;
  padding-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .section {
    padding: 88px 0;
  }

  .section-sm {
    padding: 68px 0;
  }

  .nav-toggle {
    display: block;
    z-index: 102;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 16px auto;
    z-index: 101;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-cta {
    display: none;
  }

  .lang-switcher {
    order: 3;
    margin-left: auto;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 28px;
    width: auto;
  }

  .trust-grid,
  .services-grid,
  .contact-grid,
  .split-heading,
  .contact-heading,
  .about-layout,
  .booking-panel,
  .policy-layout,
  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 18px;
  }

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

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

  .about-image {
    max-height: 620px;
  }

  .about-note {
    right: auto;
  }

  .policy-copy {
    column-count: 1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 560px);
    --header-height: 70px;
  }

  .brand-text {
    font-size: 1.18rem;
  }

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

  .hero {
    padding-top: 112px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 12vw, 4.15rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section-intro h2,
  .split-heading h2,
  .about-content h2,
  .booking-content h2,
  .policy-layout h2,
  .contact h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .trust-item,
  .service-card,
  .contact-card,
  .hours,
  .map-info,
  .booking-widget {
    padding: 24px;
  }

  .contact .contact-card {
    padding: 24px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

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

  .about-image {
    max-height: none;
  }

  .about-note {
    margin-top: -1px;
  }

  .booking-panel {
    padding: 22px;
  }

  .instagram-preview {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .instagram-preview .instagram-action {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }

  .compact-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .compact-services span {
    grid-column: 1 / -1;
  }

  .hours div {
    display: grid;
    gap: 4px;
  }

  .hours dd {
    text-align: left;
  }

  .footer-layout,
  .footer-bottom {
    display: grid;
    justify-items: start;
  }
}
