/* ============ TOKENS ============ */
:root {
  --rose-50:  #fdf6f3;
  --rose-100: #fbe9e3;
  --rose-200: #f5ccc0;
  --rose-300: #eaa996;
  --rose-400: #d98b76;
  --rose-500: #c06b55;
  --rose-600: #9a4d3c;
  --blush:    #f8d8cc;
  --cream:    #fbf4ed;
  --ivory:    #fffaf5;
  --ink:      #2a1a15;
  --ink-soft: #6b4e46;
  --gold-300: #e5c99a;
  --gold-400: #cfa866;
  --gold-500: #b08842;
  --gold-600: #8a6a2f;
  --shadow-sm: 0 1px 2px rgba(80,40,30,.06), 0 2px 8px rgba(80,40,30,.04);
  --shadow-md: 0 8px 28px rgba(150,80,60,.12), 0 2px 6px rgba(80,40,30,.06);
  --shadow-lg: 0 30px 80px rgba(150,80,60,.18);
  --serif: "Cormorant Garamond", "Italiana", Georgia, serif;
  --display: "Italiana", "Cormorant Garamond", serif;
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --script: "Dancing Script", cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ============ GLOBAL / LAYOUT ============ */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold-400);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
}
.eyebrow.center::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold-400);
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 3px;
}

h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: -0.01em; }
h1 { font-family: var(--display); font-weight: 400; }
h2 { font-family: var(--serif); font-weight: 500; }

.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } .section--tight { padding: 44px 0; } }

.section-head { scroll-margin-top: 80px; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(40px, 5.4vw, 62px);
  line-height: 1.05;
  margin-top: 14px;
}
.section-head p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* Unified section headings — single solid color, single font (overrides inline em styles) */
.section-head h2,
.section-head h2 em,
.about h2,
.about h2 em {
  color: var(--ink) !important;
  font-family: var(--serif) !important;
  font-style: normal !important;
  font-weight: 500;
}
.about h2 {
  font-size: clamp(40px, 5vw, 58px);
}

/* Hero & page-head titles — em inherits parent color/font (no italic, no accent color) */
.hero__title em,
.hero--photo .hero__title em,
.page-head h1 em {
  color: var(--ink) !important;
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: inherit;
}

/* Compact hero title size */
.hero__title--sm {
  font-size: clamp(36px, 4.6vw, 62px) !important;
  line-height: 1.04;
}

/* Multi-paragraph hero subtitle block */
.hero__sub h3.hero__subheading {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: .01em;
}
.hero__sub p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.hero__sub p:last-child { margin-bottom: 0; }
.hero--photo .hero__sub { max-width: 600px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all .28s cubic-bezier(.2,.8,.2,1);
  background: transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-500) 55%, var(--gold-500) 140%);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(192,107,85,.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -12px rgba(192,107,85,.7), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--gold {
  border-color: var(--gold-400);
  color: var(--gold-600);
  background: rgba(255,255,255,.4);
}
.btn--gold:hover { background: var(--gold-400); color: #fff; }
.btn .arr { transition: transform .3s; }
.btn:hover .arr { transform: translateX(4px); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s, padding .35s;
  padding: 14px 0;
  background: rgba(42,26,21,.82);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
}
.nav--scrolled {
  background: rgba(42,26,21,.94);
  box-shadow: 0 1px 0 rgba(207,168,102,.18), 0 6px 24px rgba(0,0,0,.2);
  padding: 10px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand__logo {
  height: 64px; width: auto;
  display: block;
  transition: height .35s;
  filter: drop-shadow(0 2px 8px rgba(176,136,66,.25));
}
.nav--scrolled .brand__logo { height: 52px; }
.brand__logo--footer { height: 96px; filter: drop-shadow(0 4px 18px rgba(207,168,102,.35)) brightness(1.05); }
@media (max-width: 640px) {
  .brand__logo { height: 52px; }
  .nav--scrolled .brand__logo { height: 44px; }
}

.nav__links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .82;
  transition: opacity .2s;
  position: relative;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: all .3s;
  transform: translateX(-50%);
}
.nav__links a:hover::after { width: 100%; }

.nav__links li.has-sub { position: relative; }
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: rgba(42,26,21,.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(207,168,102,.22);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
}
.submenu.is-open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.submenu a {
  padding: 10px 14px !important;
  border-radius: 8px;
  font-size: 11px !important;
  letter-spacing: .14em !important;
  white-space: nowrap;
  color: var(--cream) !important;
}
.submenu a:hover { background: rgba(207,168,102,.16); color: var(--gold-400) !important; }
.submenu a::after { display: none !important; }

.nav__cta { padding: 11px 22px; font-size: 11px; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 22px; height: 1.5px; background: var(--cream);
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav__links { gap: 24px; }
  .nav__links a { font-size: 11px; letter-spacing: .18em; }
}
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(180deg, #2a1a15 0%, #1c110d 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  padding: 80px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  padding: 6px 0;
}
.mobile-menu a:hover { color: var(--gold-400); }
.mobile-menu .btn { margin-top: 16px; }

/* ============ HERO ============ */
.hero { position: relative; padding: 140px 0 100px; overflow: hidden; }
@media (max-width: 720px) { .hero { padding: 110px 0 60px; } }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(245,204,192,.55), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(229,201,154,.35), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  z-index: -1;
}

/* Hero with photo background (classic variant) */
.hero--photo { padding: 180px 0 140px; min-height: 720px; display: flex; align-items: center; }
.hero--photo .hero__bg {
  background:
    radial-gradient(70% 80% at 85% 30%, rgba(245,204,192,.55) 0%, transparent 60%),
    radial-gradient(60% 70% at 15% 90%, rgba(229,201,154,.30) 0%, transparent 60%),
    linear-gradient(120deg, var(--ivory) 0%, #fbe9e3 50%, #f5ccc0 100%);
}
.hero--photo .hero__visual { display: none; }
.hero--photo .hero__grid { grid-template-columns: minmax(0, 640px); }
.hero--photo .hero__sub { max-width: 540px; }
.hero--photo .hero__title em { color: var(--rose-500); }
.hero--photo .hero__meta { border-top-color: rgba(157,123,95,.3); }

@media (max-width: 900px) {
  .hero--photo { padding: 130px 0 90px; min-height: 0; }
  .hero--photo .hero__bg {
    background:
      radial-gradient(60% 60% at 90% 20%, rgba(245,204,192,.55) 0%, transparent 60%),
      linear-gradient(160deg, var(--ivory) 0%, #fbe9e3 60%, #f5ccc0 100%);
  }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 48px; } }

.hero__copy .eyebrow { margin-bottom: 24px; display: inline-block; }
.hero__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--rose-500);
}
.hero__script {
  font-family: var(--script);
  font-weight: 500;
  color: var(--gold-500);
  font-size: 1.15em;
  line-height: 1;
  display: inline-block;
  transform: translateY(-4px);
}
.hero__sub {
  max-width: 460px;
  margin: 32px 0 40px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__meta {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(176,136,66,.25);
  flex-wrap: wrap;
}
@media (max-width: 520px) { .hero__meta { gap: 24px; margin-top: 40px; } }
.hero__meta div { font-size: 13px; color: var(--ink-soft); }
.hero__meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 560px;
  margin-left: auto;
}
.hero__frame {
  position: absolute; inset: 0;
  border-radius: 300px 300px 40px 40px;
  background: linear-gradient(160deg, var(--blush) 0%, var(--rose-200) 60%, var(--rose-300) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.5);
  pointer-events: none;
}
.hero__hand {
  position: absolute;
  inset: 10% 5% 0 5%;
}
.hero__badge {
  position: absolute;
  bottom: 24px; left: -30px;
  background: var(--ivory);
  border-radius: 100px;
  padding: 14px 22px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .hero__badge { left: 10px; bottom: 12px; padding: 10px 16px; }
  .hero__chip { right: 10px; top: 20px; padding: 14px 16px; max-width: 160px; }
  .hero__chip b { font-size: 18px; }
}
.hero__badge .stars { color: var(--gold-500); letter-spacing: 2px; font-size: 14px; }
.hero__badge small { display: block; color: var(--ink-soft); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero__badge b { font-family: var(--serif); font-size: 18px; font-weight: 500; }

.hero__chip {
  position: absolute;
  top: 40px; right: -30px;
  padding: 20px 24px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  font-family: var(--serif);
  line-height: 1.2;
  max-width: 200px;
}
.hero__chip b { display:block; font-size: 22px; color: var(--rose-500); font-weight: 500; }
.hero__chip small { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }

/* Hero variant: centered editorial */
.hero--editorial .hero__grid {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero--editorial .hero__sub { margin-left: auto; margin-right: auto; }
.hero--editorial .hero__meta { justify-content: center; }
.hero--editorial .eyebrow { display: inline-block; }
.hero--editorial .hero__ctas { justify-content: center; }
.hero--editorial .hero__visual {
  margin: 56px auto 0;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hero--editorial .hero__frame { border-radius: 240px 240px 20px 20px; position: relative; }
.hero--editorial .hero__frame:nth-child(2) { transform: translateY(30px); }
.hero--editorial .hero__frame:nth-child(3) { transform: translateY(0px); }

/* Hero variant: split asymmetric */
.hero--split .hero__grid { grid-template-columns: 1fr 1.2fr; gap: 40px; }
.hero--split .hero__visual {
  aspect-ratio: 3/4;
  max-width: none;
}
.hero--split .hero__frame { border-radius: 20px; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(207,168,102,.3);
  border-bottom: 1px solid rgba(207,168,102,.3);
}
.marquee__track {
  display: flex; gap: 60px;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  width: max-content;
}
@media (max-width: 720px) { .marquee__track { font-size: 17px; gap: 40px; } }
.marquee__track span { display: flex; align-items: center; gap: 60px; }
.marquee__track i {
  color: var(--gold-400);
  font-family: var(--script);
  font-style: normal;
  font-size: 0.9em;
}
.marquee__track em {
  font-style: italic;
  color: var(--rose-300);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SERVICES ============ */
.svc-tabs {
  display: flex; gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.svc-tab {
  padding: 12px 22px;
  border: 1px solid rgba(176,136,66,.3);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
.svc-tab:hover { color: var(--ink); border-color: var(--gold-400); }
.svc-tab.is-active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.svc-card {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(176,136,66,.15);
  border-radius: 18px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-300), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(176,136,66,.3); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-card__art {
  width: 72px; height: 72px; margin-bottom: 22px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream), var(--blush));
}
.svc-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.svc-card__name { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); }
.svc-card__price { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--rose-500); white-space: nowrap; }
.svc-card__desc { color: var(--ink-soft); font-size: 14px; line-height: 1.65; margin: 0 0 20px; }
.svc-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px dashed rgba(176,136,66,.3);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.svc-card__duration { display: flex; align-items: center; gap: 6px; }
.svc-card__book {
  background: transparent; border: 0; color: var(--rose-500);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 6px;
}
.svc-card__book:hover { color: var(--gold-500); }

/* ============ PLACEHOLDER IMG ============ */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.ph svg { display: block; width: 100%; height: 100%; }
.ph__label {
  position: absolute;
  left: 16px; bottom: 14px;
  color: #fff;
  text-shadow: 0 1px 12px rgba(42,26,21,.4);
  pointer-events: none;
}
.ph__label small {
  display: block;
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .78;
  margin-bottom: 2px;
}
.ph__label b {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .01em;
}

/* ============ SVC CATEGORY (image cards) ============ */
.svc-cat:nth-of-type(even) { background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); }
.svc-cat { scroll-margin-top: 80px; }

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .svc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-cards { grid-template-columns: 1fr; } }

.svc-card-img {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(176,136,66,.12);
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  display: flex;
  flex-direction: column;
}
.svc-card-img:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card-img__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.svc-card-img__media .ph { border-radius: 0; }
.svc-card-img__body { padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card-img__body h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.svc-card-img__body p { color: var(--ink-soft); font-size: 14px; line-height: 1.65; margin: 0; flex: 1; }
.svc-card-img__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; margin-top: 6px;
  border-top: 1px dashed rgba(176,136,66,.3);
  font-size: 12px; color: var(--ink-soft); letter-spacing: .04em;
}
.svc-card-img__benefits-title {
  font-size: 13px !important; color: var(--ink) !important;
  margin: 4px 0 -4px !important; flex: none !important;
  letter-spacing: .02em;
}
.svc-card-img__benefits {
  margin: 0; padding-left: 18px;
  color: var(--ink-soft); font-size: 13.5px; line-height: 1.6;
  display: flex; flex-direction: column; gap: 4px;
}
.svc-card-img__benefits li { padding-left: 2px; }

/* ============ WHY US ============ */
.why { background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why__grid { grid-template-columns: 1fr; } }
.why__item {
  background: #fff;
  border: 1px solid rgba(176,136,66,.14);
  border-radius: 18px;
  padding: 36px 30px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.why__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176,136,66,.3);
}
.why__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blush), var(--rose-200));
  color: var(--rose-500);
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.why__item h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.why__item p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin: 0; }

/* ============ GALLERY ============ */
.gal-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--cream);
  transition: transform .5s;
}
.gal-item:nth-child(5n+1) { grid-row: span 2; }
.gal-item:nth-child(7n+4) { grid-column: span 2; }
.gal-item__canvas { width: 100%; height: 100%; display: block; }
.gal-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,26,21,.75) 100%);
  opacity: 0;
  transition: opacity .35s;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gal-item:hover .gal-item__overlay { opacity: 1; }
.gal-item:hover { transform: scale(1.01); }
.gal-item__label {
  color: #fff; font-family: var(--serif); font-size: 20px;
  font-weight: 500;
}
.gal-item__label small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-bottom: 4px; }

@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } }
@media (max-width: 500px) { .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; } .gal-item:nth-child(5n+1), .gal-item:nth-child(7n+4) { grid-column: auto; grid-row: auto; } }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,12,10,.85);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lb.is-open { opacity: 1; pointer-events: auto; }
.lb__box {
  background: var(--ivory);
  border-radius: 18px;
  overflow: hidden;
  max-width: 720px; width: 100%;
  display: grid; grid-template-columns: 1fr 320px;
  box-shadow: var(--shadow-lg);
  max-height: 80vh;
}
.lb__canvas { background: var(--cream); aspect-ratio: 1; }
.lb__info { padding: 36px 30px; display: flex; flex-direction: column; gap: 14px; }
.lb__info h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; }
.lb__info p { color: var(--ink-soft); line-height: 1.7; font-size: 14px; }
.lb__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer; font-size: 20px;
}
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; font-size: 20px;
  display: grid; place-items: center;
}
.lb__nav--prev { left: 24px; }
.lb__nav--next { right: 24px; }
.lb__nav:hover { background: rgba(255,255,255,.2); }
@media (max-width: 720px) {
  .lb__box { grid-template-columns: 1fr; max-height: 90vh; overflow: auto; }
}

/* ============ ABOUT ============ */
.about { background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 48px; } }
.about__imgs { position: relative; aspect-ratio: 1; }
.about__imgs > div {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__imgs > div:nth-child(1) {
  top: 0; left: 0; width: 60%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--rose-200), var(--rose-400));
}
.about__imgs > div:nth-child(2) {
  bottom: 0; right: 0; width: 55%; aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--gold-300), var(--rose-300));
}
.about__imgs > div:nth-child(3) {
  top: 30%; right: 10%; width: 160px; aspect-ratio: 1;
  background: var(--ivory); border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--script);
  font-size: 52px;
  color: var(--rose-500);
  transform: rotate(-6deg);
  text-align: center; line-height: 1;
}
.about__imgs > div:nth-child(3) small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 2px;
}

.about h2 { font-size: clamp(36px, 4.6vw, 54px); line-height: 1.08; margin: 16px 0 24px; }
.about p { color: var(--ink-soft); line-height: 1.85; font-size: 16px; margin: 0 0 18px; }
.about__sig { font-family: var(--script); font-size: 42px; color: var(--rose-500); margin-top: 28px; }
.about__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(176,136,66,.25); }
.about__stats b { display: block; font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.about__stats span { font-size: 12px; color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase; }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-card__portrait {
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
  transition: transform .4s;
}
.team-card:hover .team-card__portrait { transform: translateY(-4px); }
.team-card__bg {
  position: absolute; inset: 0;
}
.team-card__social {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(42,26,21,.85), transparent);
  padding: 40px 20px 16px;
  display: flex; gap: 10px; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.team-card:hover .team-card__social { opacity: 1; }
.team-card__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: 13px;
}
.team-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.team-card .role { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-500); margin-top: 4px; }
.team-card .spec { font-size: 13px; color: var(--ink-soft); margin-top: 8px; font-style: italic; }

/* ============ BOOKING ============ */
.book { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.book::before {
  content: "";
  position: absolute; top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(207,168,102,.18), transparent 70%);
  border-radius: 50%;
}
.book::after {
  content: "";
  position: absolute; bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(234,169,150,.15), transparent 70%);
  border-radius: 50%;
}
.book .wrap { position: relative; z-index: 1; }
.book .section-head h2 { color: var(--cream); }
.book .section-head p { color: rgba(251,244,237,.7); }
.book .eyebrow { color: var(--gold-400); }

.book-form {
  max-width: 780px; margin: 0 auto;
  background: rgba(251,244,237,.06);
  border: 1px solid rgba(207,168,102,.25);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(12px);
}
@media (max-width: 720px) { .book-form { padding: 28px 20px; border-radius: 14px; } }
.book-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .book-form__grid { grid-template-columns: 1fr; } .book-form { padding: 32px 24px; } }
.book-form__field { display: flex; flex-direction: column; gap: 8px; }
.book-form__field--full { grid-column: 1 / -1; }
.book-form__field label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(251,244,237,.75);
}
.book-form__field input,
.book-form__field select,
.book-form__field textarea {
  background: rgba(251,244,237,.08);
  border: 1px solid rgba(207,168,102,.3);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: all .2s;
}
.book-form__field input::placeholder,
.book-form__field textarea::placeholder { color: rgba(251,244,237,.4); }
.book-form__field input:focus,
.book-form__field select:focus,
.book-form__field textarea:focus {
  border-color: var(--gold-400);
  background: rgba(251,244,237,.12);
}
.book-form__field select option { background: var(--ink); color: var(--cream); }
.book-form__err { color: var(--rose-300); font-size: 12px; margin-top: 4px; }
.book-form__submit {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
}
.book-form__submit p { font-size: 13px; color: rgba(251,244,237,.55); margin: 0; max-width: 320px; line-height: 1.5; }
@media (max-width: 640px) { .book-form__submit { flex-direction: column; gap: 16px; align-items: stretch; } }

.book-success {
  text-align: center; padding: 40px 0;
}
.book-success__icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-300), var(--gold-400));
  margin: 0 auto 28px;
  display: grid; place-items: center;
  font-size: 40px; color: #fff;
}
.book-success h3 { font-family: var(--serif); font-size: 36px; color: var(--cream); margin-bottom: 14px; }
.book-success p { color: rgba(251,244,237,.75); max-width: 420px; margin: 0 auto; line-height: 1.7; }

/* ============ INSTA ============ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 8px;
}
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3,1fr); } }
.insta-item {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .4s;
}
.insta-item:hover { transform: scale(1.03); }
.insta-item::after {
  content: "♡";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: #fff; font-size: 26px;
  background: rgba(42,26,21,.4);
  opacity: 0;
  transition: opacity .3s;
}
.insta-item:hover::after { opacity: 1; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 560px) { .contact-card { padding: 24px; } }
.contact-card {
  background: #fff;
  border: 1px solid rgba(176,136,66,.15);
  border-radius: 18px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 26px;
  box-shadow: var(--shadow-sm);
}
.contact-row { display: flex; gap: 18px; align-items: flex-start; }
.contact-row__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream), var(--blush));
  color: var(--rose-500); font-size: 18px;
  flex-shrink: 0;
}
.contact-row small { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 4px; }
.contact-row b { font-family: var(--sans); font-size: 17px; font-weight: 600; line-height: 1.4; display: block; letter-spacing: .01em; color: var(--ink); }
.contact-row span { display: block; color: var(--ink-soft); font-size: 14px; margin-top: 2px; }

.map {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 440px;
  background: linear-gradient(180deg, #e8ddd0 0%, #d4c3b2 100%);
  box-shadow: var(--shadow-sm);
}
.map__svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.map__pin {
  position: absolute;
  top: 44%; left: 52%;
  width: 40px; height: 40px;
  transform: translate(-50%,-100%);
}
.map__pin::before {
  content: "";
  position: absolute; bottom: -8px; left: 50%;
  width: 40px; height: 10px;
  background: radial-gradient(ellipse, rgba(0,0,0,.2), transparent 70%);
  transform: translateX(-50%);
  animation: pin-pulse 2s ease-in-out infinite;
}
.map__pin-body {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--rose-400), var(--rose-600));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 6px 20px rgba(154,77,60,.5);
  display: grid; place-items: center;
}
.map__pin-body::after {
  content: "";
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ivory);
}
@keyframes pin-pulse {
  0%,100% { opacity: .4; transform: translateX(-50%) scale(1); }
  50% { opacity: .1; transform: translateX(-50%) scale(1.4); }
}
.map__card {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,250,245,.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  box-shadow: var(--shadow-md);
}
.map__card b { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.map__card small { color: var(--ink-soft); font-size: 13px; }
.map__card a {
  background: var(--ink); color: var(--ivory);
  padding: 10px 18px; border-radius: 999px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}

/* ============ FOOTER ============ */
.footer {
  background: rgba(42,26,21,.94);
  color: rgba(251,244,237,.78);
  padding: 72px 0 24px;
  border-top: 1px solid rgba(207,168,102,.22);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer .brand { color: var(--cream); margin-bottom: 20px; }
.footer h4 { font-family: var(--serif); font-weight: 500; color: var(--cream); font-size: 17px; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer a { color: rgba(251,244,237,.78); }
.footer a:hover { color: var(--gold-400); }
.footer p { line-height: 1.7; font-size: 14px; color: rgba(251,244,237,.78); }
.brand__logo--footer { height: 144px; filter: drop-shadow(0 4px 18px rgba(207,168,102,.35)) brightness(1.05); }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(207,168,102,.4);
  display: grid; place-items: center;
  font-size: 17px;
  color: var(--cream);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer__social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--ink); transform: translateY(-2px); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(207,168,102,.18);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(251,244,237,.55);
}

/* ============ REVIEWS CAROUSEL ============ */
.reviews { background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); }
.reviews__carousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews__viewport { flex: 1; overflow: hidden; border-radius: 18px; }
.reviews__track {
  display: flex;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.reviews__card {
  min-width: 100%;
  background: #fff;
  border: 1px solid rgba(176,136,66,.18);
  border-radius: 18px;
  padding: 36px 38px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
@media (max-width: 720px) { .reviews__card { padding: 26px 22px; min-height: 240px; } }
.reviews__stars {
  color: var(--gold-500);
  font-size: 18px;
  display: flex;
  gap: 4px;
}
.reviews__text {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  flex: 1;
}
@media (max-width: 720px) { .reviews__text { font-size: 16px; } }
.reviews__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--sans);
  margin-top: auto;
}
.reviews__source { color: var(--gold-500); font-size: 16px; }
.reviews__badge {
  background: var(--rose-500);
  color: #fff;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.reviews__nav {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(176,136,66,.35);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.reviews__nav:hover { background: var(--rose-500); border-color: var(--rose-500); color: #fff; transform: scale(1.05); }
@media (max-width: 560px) {
  .reviews__carousel { gap: 8px; }
  .reviews__nav { width: 36px; height: 36px; font-size: 12px; }
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.reviews__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(176,136,66,.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.reviews__dot:hover { background: rgba(176,136,66,.55); }
.reviews__dot.is-active { background: var(--rose-500); transform: scale(1.25); }
.reviews__cta { text-align: center; margin-top: 28px; }

/* ============ MAP WRAP + CAPTION ============ */
.map-wrap { display: flex; flex-direction: column; gap: 14px; }
.map__caption {
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  letter-spacing: .01em;
}

/* ============ SVC CARD NO-MEDIA VARIANT ============ */
.svc-card-img--no-media { display: flex; flex-direction: column; }
.svc-card-img--no-media .svc-card-img__body { padding-top: 28px; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

/* Float animation */
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-8px) rotate(1deg); }
}
.floaty { animation: float 6s ease-in-out infinite; }
.floaty--slow { animation: float 9s ease-in-out infinite; }

/* Nail polish bottle deco */
.deco-bottle {
  position: absolute;
  pointer-events: none;
  opacity: .4;
}


/* ============ PAGE HEAD (inner pages hero) ============ */
.page-head {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
}
.page-head--rose::before     { background: radial-gradient(ellipse at 30% 40%, #fbe9e3 0%, var(--ivory) 55%, var(--cream) 100%); }
.page-head--nude::before     { background: radial-gradient(ellipse at 70% 40%, #fbf4ed 0%, var(--ivory) 55%, var(--cream) 100%); }
.page-head--gold::before     { background: radial-gradient(ellipse at 40% 30%, #f9e9cf 0%, var(--ivory) 60%, var(--cream) 100%); }
.page-head--burgundy::before { background: radial-gradient(ellipse at 70% 30%, #e8c4ba 0%, var(--ivory) 60%, var(--cream) 100%); }
.page-head--berry::before    { background: radial-gradient(ellipse at 30% 30%, #f5ccc0 0%, var(--ivory) 55%, var(--cream) 100%); }
.page-head--milky::before    { background: radial-gradient(ellipse at 50% 40%, #fff8f3 0%, var(--ivory) 60%, var(--cream) 100%); }
.page-head--mocha::before    { background: radial-gradient(ellipse at 30% 30%, #efe0d2 0%, var(--ivory) 60%, var(--cream) 100%); }

/* Photo hero for inner pages */
.page-head--photo { padding: 220px 0 140px; min-height: 560px; display: flex; align-items: center; }
.page-head__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-head--photo::before {
  background: linear-gradient(180deg,
    rgba(255,250,244,.55) 0%,
    rgba(255,250,244,.35) 35%,
    rgba(255,250,244,.45) 70%,
    rgba(255,250,244,.88) 100%
  );
}
.page-head--photo .page-head__inner { max-width: 900px; }
.page-head--photo h1 { text-shadow: 0 2px 30px rgba(255,250,244,.7); }
.page-head--photo p {
  color: var(--ink);
  text-shadow: 0 2px 20px rgba(255,250,244,.85);
}
@media (max-width: 760px) {
  .page-head--photo { padding: 150px 0 90px; min-height: 0; }
  .page-head--photo::before {
    background: linear-gradient(180deg,
      rgba(255,250,244,.72) 0%,
      rgba(255,250,244,.55) 45%,
      rgba(255,250,244,.92) 100%
    );
  }
}

.page-head__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.page-head h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 22px;
  color: var(--ink);
}
.page-head h1 em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 600;
  color: var(--rose-500);
}
.page-head p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.page-head__deco {
  position: absolute;
  top: 120px;
  right: -140px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(192,107,85,.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 14s ease-in-out infinite;
  z-index: -1;
}
@media (max-width: 760px) {
  .page-head { padding: 140px 0 60px; }
}

/* ============ SERVICE DETAIL — INTRO BLOCK ============ */
.svc-intro__copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.svc-intro__copy { max-width: 900px; margin: 0 auto; }
.svc-intro__sub {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.2;
}
.svc-intro__highlight {
  font-weight: 600 !important;
  color: var(--rose-500) !important;
  font-size: 17px !important;
  margin-top: 8px;
}
.svc-intro__list {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}
.svc-intro__list li { margin-bottom: 6px; }

/* Simple inner-page title — sits below the fixed nav, no decorative header */
.page-title-section {
  padding: 140px 0 24px;
}
.page-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 54px);
  text-align: center;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.page-title em {
  font-family: inherit !important;
  font-style: normal !important;
  color: var(--ink) !important;
  font-weight: inherit;
}
@media (max-width: 720px) {
  .page-title-section { padding: 110px 0 16px; }
}

/* Reduce the top padding of section right after a page-title-section */
.page-title-section + .section { padding-top: 40px; }
.page-title-section + .section--tight { padding-top: 32px; }

.svc-card__book {
  color: var(--rose-500);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
}
.svc-card__book:hover { color: var(--gold-500); }

/* ============ FAQ ============ */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border-radius: 14px;
  padding: 4px 24px;
  border: 1px solid rgba(176,136,66,.14);
  transition: box-shadow .25s, border-color .25s;
}
.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(192,107,85,.2);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 30px 20px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--rose-500);
  font-weight: 300;
  transition: transform .25s;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  padding: 0 0 22px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 15px;
}

/* ============ SERVICE CROSS-LINK ============ */
.svc-xlink__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-xlink__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  border: 1px solid rgba(176,136,66,.14);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-xlink__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-400);
}
.svc-xlink__card .arr { color: var(--rose-500); }
@media (max-width: 760px) { .svc-xlink__row { grid-template-columns: 1fr; } }

/* ============ HIZMETLER — SUMMARY CARDS ============ */
.svc-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1000px) { .svc-summary__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .svc-summary__grid { grid-template-columns: 1fr; } }

.svc-summary__cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
@media (max-width: 640px) { .svc-summary__cta { margin-top: 40px; } }

.svc-sum-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(176,136,66,.12);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.svc-sum-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-sum-card__media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.svc-sum-card__media .ph { border-radius: 0; height: 100%; }
.svc-sum-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.svc-sum-card:hover .svc-sum-card__img { transform: scale(1.06); }
.svc-sum-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(62,30,22,.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .02em;
  opacity: 0;
  transition: opacity .3s;
}
.svc-sum-card:hover .svc-sum-card__hover { opacity: 1; }
.svc-sum-card__body { padding: 28px 28px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-sum-card__body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}
.svc-sum-card__body p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.svc-sum-card__link {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--rose-500);
}

/* ============ GALLERY PAGE ============ */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.chip {
  background: #fff;
  border: 1px solid rgba(176,136,66,.2);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .22s;
}
.chip:hover { color: var(--rose-500); border-color: var(--rose-400); }
.chip.is-active {
  background: var(--rose-500);
  color: #fff;
  border-color: var(--rose-500);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
  cursor: zoom-in;
  transition: transform .3s, box-shadow .3s;
}
.gallery-card:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery-card .ph { border-radius: 0; height: 100%; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ BOOKING ============ */
.booking__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 860px) { .booking__grid { grid-template-columns: 1fr; gap: 40px; } }

.booking h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  margin-top: 14px;
}
.booking__contacts {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking__contacts a {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color .22s;
  letter-spacing: .01em;
}
.booking__contacts a:hover { color: var(--rose-500); }

.booking__form {
  background: #fff;
  border: 1px solid rgba(176,136,66,.14);
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.booking__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.booking__form input,
.booking__form select,
.booking__form textarea {
  padding: 13px 14px;
  border: 1px solid rgba(176,136,66,.25);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  background: var(--ivory);
  transition: border-color .22s, background .22s;
}
.booking__form input:focus,
.booking__form select:focus,
.booking__form textarea:focus {
  outline: none;
  border-color: var(--rose-500);
  background: #fff;
}
.booking__form textarea { resize: vertical; font-family: var(--sans); }
