:root {
  --pearl: #fff9f2;
  --cocoa: #211a17;
  --champagne: #e8d5b7;
  --gold: #c7a15a;
  --blush: #e7bfc8;
  --rose: #f7e6e5;
  --taupe: #b9a189;
  --merlot: #5a2434;
  --cream-deep: #f2dfd0;
  --white: #fffdfa;
  --shadow: 0 24px 70px rgba(90, 36, 52, 0.14);
  --shadow-soft: 0 14px 38px rgba(33, 26, 23, 0.08);
  --border: 1px solid rgba(199, 161, 90, 0.36);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(231, 191, 200, 0.32), transparent 30%),
    linear-gradient(180deg, var(--pearl) 0%, #fffdfa 42%, var(--rose) 100%);
  color: var(--cocoa);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cocoa);
  color: var(--pearl);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(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;
}

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

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 249, 242, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(90, 36, 52, 0.08);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.64);
  box-shadow: 0 12px 40px rgba(90, 36, 52, 0.08);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff8ee, #efd5d6);
  border: 1px solid rgba(199, 161, 90, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(90, 36, 52, 0.1);
}

.brand-mark svg {
  width: 36px;
  height: 36px;
}

.mark-ring {
  fill: none;
  stroke: var(--merlot);
  stroke-width: 4;
  stroke-linecap: round;
}

.mark-ring.second {
  stroke: var(--gold);
}

.mark-nail {
  fill: rgba(255, 249, 242, 0.88);
  stroke: rgba(199, 161, 90, 0.88);
  stroke-width: 1.5;
}

.mark-spark {
  fill: var(--gold);
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  color: var(--merlot);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(33, 26, 23, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--merlot);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary {
  color: var(--pearl);
  background: linear-gradient(135deg, var(--merlot), #7c3548);
  box-shadow: 0 14px 28px rgba(90, 36, 52, 0.22);
}

.btn-secondary {
  color: var(--merlot);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(199, 161, 90, 0.46);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 96svh;
  padding-top: 124px;
  padding-bottom: 54px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255, 249, 242, 0.82) 0%, rgba(255, 249, 242, 0.45) 48%, rgba(247, 230, 229, 0.9) 100%),
    radial-gradient(circle at 72% 22%, rgba(232, 213, 183, 0.72), transparent 32%),
    radial-gradient(circle at 86% 74%, rgba(231, 191, 200, 0.38), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--merlot);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 20px;
  max-width: 700px;
  font-size: clamp(3.7rem, 6.9vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.2vw, 5.8rem);
}

h3 {
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.12;
}

.hero-lede {
  max-width: 660px;
  color: rgba(33, 26, 23, 0.72);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 12px;
}

.microcopy {
  color: var(--merlot);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.editorial-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 90, 0.48);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.editorial-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 249, 242, 0.62);
  border-radius: 26px;
}

.editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease, filter 0.75s ease;
}

.editorial-frame:hover img,
.gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.hero-frame {
  position: absolute;
  inset: 0 22px 34px 36px;
  transform: rotate(1.25deg);
}

.pos-center {
  object-position: center;
}

.pos-top {
  object-position: center top;
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 54px;
  z-index: 4;
  width: min(260px, 72%);
  padding: 20px 22px;
  border: 1px solid rgba(255, 249, 242, 0.7);
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 18px 46px rgba(33, 26, 23, 0.18);
  backdrop-filter: blur(16px);
}

.floating-card span {
  display: block;
  color: var(--merlot);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1.04;
}

.sparkle {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
  opacity: 0.8;
  animation: shimmer 3.2s ease-in-out infinite;
}

.sparkle-a {
  left: 8%;
  top: 28%;
}

.sparkle-b {
  right: 11%;
  bottom: 22%;
  animation-delay: 1.4s;
}

@keyframes shimmer {
  0%,
  100% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.2) rotate(24deg);
    opacity: 0.92;
  }
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(310px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.section-copy p,
.section-heading p {
  color: rgba(33, 26, 23, 0.7);
}

.section-copy p {
  max-width: 710px;
}

.tall-frame {
  height: 640px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.highlight-card,
.style-card,
.service-card,
.timeline article,
.faq-item {
  border: var(--border);
  background: rgba(255, 253, 250, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.highlight-card {
  min-height: 230px;
  padding: 30px;
  border-radius: 26px;
}

.highlight-card span,
.style-number,
.timeline span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.26rem;
  font-weight: 700;
}

.highlight-card h3,
.style-card h3,
.timeline h3 {
  margin: 18px 0 12px;
}

.highlight-card p,
.style-card p,
.timeline p {
  margin-bottom: 0;
  color: rgba(33, 26, 23, 0.68);
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.72), rgba(247, 230, 229, 0.42)),
    radial-gradient(circle at 20% 20%, rgba(199, 161, 90, 0.16), transparent 28%);
}

.section-heading {
  max-width: 900px;
  text-align: center;
}

.section-heading p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.66fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 52px;
}

.service-images {
  position: sticky;
  top: 124px;
  min-height: 620px;
}

.service-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.service-photo.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  overflow: hidden;
  border-radius: 24px;
}

.service-card + .service-card {
  margin-top: 12px;
}

.service-card button,
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--cocoa);
  cursor: pointer;
  text-align: left;
}

.service-card button span:first-child,
.faq-item button span:first-child {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.16;
}

.plus {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(199, 161, 90, 0.48);
  background: rgba(255, 249, 242, 0.8);
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 50%;
  height: 1.5px;
  background: var(--merlot);
}

.plus::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.open .plus::after,
.faq-item.open .plus::after {
  transform: rotate(0deg);
}

.service-detail,
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.service-card.open .service-detail,
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.service-detail > *,
.faq-answer > * {
  overflow: hidden;
}

.service-detail {
  padding: 0 24px;
}

.service-card.open .service-detail {
  padding-bottom: 24px;
}

.service-detail p {
  margin-bottom: 10px;
  color: rgba(33, 26, 23, 0.7);
}

.service-detail strong {
  color: var(--merlot);
  font-family: var(--serif);
  font-size: 1.26rem;
}

.pricing-note {
  margin: 22px 0 0;
  color: rgba(33, 26, 23, 0.64);
  font-size: 0.92rem;
  font-style: italic;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.style-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
}

.style-card.dark {
  color: var(--pearl);
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 161, 90, 0.25), transparent 36%),
    linear-gradient(145deg, var(--merlot), #211a17);
}

.style-card.dark p {
  color: rgba(255, 249, 242, 0.76);
}

.style-card strong {
  margin-top: auto;
  color: var(--merlot);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.style-card.dark strong {
  color: var(--champagne);
}

.quiz {
  background: linear-gradient(135deg, rgba(90, 36, 52, 0.94), rgba(33, 26, 23, 0.96));
  color: var(--pearl);
}

.quiz-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.58fr);
  gap: 34px;
  align-items: stretch;
}

.quiz .eyebrow,
.quiz-copy p {
  color: var(--champagne);
}

.quiz-copy {
  padding: 34px 0;
}

.mood-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.mood-btn {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(232, 213, 183, 0.42);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.06);
  color: rgba(255, 249, 242, 0.82);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.mood-btn.active,
.mood-btn:hover {
  background: var(--pearl);
  color: var(--merlot);
}

.recommendation-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(232, 213, 183, 0.52);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 249, 242, 0.98), rgba(247, 230, 229, 0.9)),
    var(--pearl);
  color: var(--cocoa);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease;
}

.recommendation-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 161, 90, 0.26), transparent 70%);
}

.recommendation-card.updating {
  transform: scale(0.985);
}

.recommendation-kicker {
  color: var(--merlot);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.recommendation-card h3 {
  margin: 22px 0 14px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.recommendation-card a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--merlot);
  font-weight: 850;
  text-decoration-color: rgba(199, 161, 90, 0.7);
  text-underline-offset: 6px;
}

.experience {
  background: rgba(255, 253, 250, 0.42);
}

.experience-grid {
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  padding: 24px 26px 24px 76px;
  border-radius: 24px;
}

.timeline span {
  position: absolute;
  left: 24px;
  top: 24px;
}

.lookbook {
  padding-top: 92px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.gallery-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(5),
.gallery-card:nth-child(7) {
  transform: translateY(24px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.68s ease, filter 0.68s ease;
}

.gallery-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 249, 242, 0.62);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.76);
  box-shadow: 0 14px 34px rgba(33, 26, 23, 0.12);
  backdrop-filter: blur(14px);
}

.gallery-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.08;
}

.gallery-card span {
  display: block;
  margin-top: 6px;
  color: rgba(33, 26, 23, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

.booking-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) 280px;
  gap: 44px;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid rgba(199, 161, 90, 0.48);
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 22%, rgba(231, 191, 200, 0.46), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.94), rgba(232, 213, 183, 0.38));
  box-shadow: var(--shadow);
}

.booking-shell h2 {
  max-width: 720px;
}

.booking-shell p {
  max-width: 650px;
  color: rgba(33, 26, 23, 0.7);
}

.booking-note {
  margin: 20px 0 0;
  font-size: 0.92rem;
}

.booking-card {
  min-height: 280px;
  display: grid;
  place-content: center;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(199, 161, 90, 0.52);
  background: linear-gradient(145deg, var(--merlot), #211a17);
  color: var(--pearl);
  text-align: center;
  box-shadow: 0 22px 54px rgba(90, 36, 52, 0.24);
}

.booking-card span {
  font-family: var(--serif);
  font-size: 5.4rem;
  line-height: 0.95;
}

.booking-card strong {
  max-width: 190px;
  margin: 18px auto 0;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.46rem;
  font-style: italic;
  line-height: 1.05;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.booking-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 26, 23, 0.58);
  backdrop-filter: blur(10px);
}

.booking-dialog {
  position: relative;
  width: min(1160px, calc(100vw - 16px));
  height: min(98svh, 1040px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(232, 213, 183, 0.72);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(231, 191, 200, 0.3), transparent 28%),
    linear-gradient(180deg, #fffdfa, var(--pearl));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
}

.booking-modal.open .booking-dialog {
  transform: translateY(0) scale(1);
}

.booking-dialog__header {
  padding: 10px 68px 8px 20px;
  border-bottom: 1px solid rgba(199, 161, 90, 0.2);
}

.booking-dialog__header .eyebrow {
  margin-bottom: 4px;
}

.booking-dialog__header h2 {
  margin-bottom: 2px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.booking-dialog__header > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 0.86rem;
  line-height: 1.35;
  margin-bottom: 0;
  color: rgba(33, 26, 23, 0.66);
}

.booking-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 161, 90, 0.48);
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.86);
  color: var(--merlot);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.booking-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.booking-close span:first-child {
  transform: rotate(45deg);
}

.booking-close span:last-child {
  transform: rotate(-45deg);
}

.jotform-shell {
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.jotform-shell iframe {
  width: 130%;
  height: calc(130% + 52px);
  display: block;
  border: 0;
  background: #fff;
  transform: translateY(-34px) scale(0.77);
  transform-origin: top center;
  margin-left: -15%;
}

.booking-fallback {
  display: inline-flex;
  margin-top: 2px;
  color: var(--merlot);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration-color: rgba(199, 161, 90, 0.7);
  text-underline-offset: 5px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.86fr);
  gap: 54px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
}

.faq-answer {
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  padding-bottom: 24px;
}

.faq-answer p {
  margin: 0;
  color: rgba(33, 26, 23, 0.7);
}

.site-footer {
  padding: 52px 0;
  background: var(--cocoa);
  color: var(--pearl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.5fr 0.65fr;
  gap: 34px;
  align-items: start;
}

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

.footer-grid p {
  margin: 18px 0 0;
  max-width: 440px;
  color: rgba(255, 249, 242, 0.68);
}

.footer-label {
  display: block;
  margin-bottom: 12px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand-lockup) {
  color: var(--pearl);
  text-decoration-color: rgba(199, 161, 90, 0.78);
  text-underline-offset: 5px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 161, 90, 0.52);
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.78);
  color: var(--merlot);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(14px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cursor-spark {
  position: fixed;
  z-index: 999;
  width: 14px;
  height: 14px;
  pointer-events: none;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.cursor-spark.visible {
  opacity: 0.82;
  transform: translate(-50%, -50%) scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

.delay-3 {
  transition-delay: 0.26s;
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 14px;
  }

  .hero-grid,
  .two-column,
  .quiz-shell,
  .faq-layout,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 590px;
  }

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

  .service-images {
    position: relative;
    top: auto;
    min-height: 500px;
  }

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

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

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

  .section-pad {
    padding: 76px 0;
  }

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

  .nav-shell {
    min-height: 62px;
    border-radius: 28px;
  }

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

  .brand-name {
    font-size: 1.13rem;
  }

  .brand-sub {
    font-size: 0.58rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(199, 161, 90, 0.38);
    border-radius: 50%;
    background: rgba(255, 253, 250, 0.82);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 1.5px;
    display: block;
    background: var(--merlot);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

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

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 88px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: var(--border);
    border-radius: 26px;
    background: #fffdfa;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-links a {
    padding: 12px 10px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 56px;
  }

  .hero-grid {
    gap: 36px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.45rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    min-height: 460px;
  }

  .hero-frame {
    inset: 12px 8px 18px;
    transform: rotate(0deg);
  }

  .floating-card {
    right: 8px;
    bottom: 36px;
    width: min(240px, 78%);
  }

  .highlight-grid,
  .style-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .tall-frame {
    height: 480px;
  }

  .service-images {
    min-height: 430px;
  }

  .style-card {
    min-height: auto;
  }

  .gallery-card,
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(7) {
    min-height: 420px;
    transform: none;
  }

  .booking-card {
    min-height: 220px;
  }

  .booking-card span {
    font-size: 4rem;
  }

  .booking-modal {
    padding: 6px;
  }

  .booking-dialog {
    width: calc(100vw - 12px);
    height: 98svh;
    border-radius: 20px;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .booking-dialog__header {
    padding: 10px 54px 8px 16px;
  }

  .booking-dialog__header h2 {
    font-size: clamp(1.7rem, 8.5vw, 2.6rem);
  }

  .booking-dialog__header > p:not(.eyebrow) {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .booking-close {
    right: 10px;
    top: 10px;
  }

  .jotform-shell iframe {
    width: 140%;
    height: calc(140% + 48px);
    transform: translateY(-28px) scale(0.71);
    margin-left: -20%;
  }


  .timeline article {
    padding-left: 24px;
  }

  .timeline span {
    position: static;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

  .cursor-spark {
    display: none;
  }
}

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

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