/* ============================================================
   THE HOTEL NANNY SERVICE
   Premium childcare brand — stylesheet
   Palette: warm ivory / blush / dusty rose / taupe-gold / ink
   Type: Playfair Display (display) + Montserrat (text)
   ============================================================ */

:root {
  --ivory:      #F7F3EF;
  --ivory-deep: #F0E9E1;
  --blush:      #EAD9D5;
  --blush-soft: #F3E7E3;
  --rose:       #D8B4AC;
  --rose-deep:  #C79A8F;
  --taupe:      #C5B79F;
  --gold:       #B49A6F;
  --ink:        #2B2B2B;
  --ink-soft:   #5C5550;
  --line:       rgba(43, 43, 43, 0.12);
  --line-soft:  rgba(43, 43, 43, 0.07);
  --white:      #FFFFFF;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius: 4px;
  --radius-lg: 10px;

  --shadow-soft: 0 18px 50px -28px rgba(43, 43, 43, 0.35);
  --shadow-card: 0 30px 70px -40px rgba(43, 43, 43, 0.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--rose); color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--ink); letter-spacing: 0.01em; }
.h-display { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 500; line-height: 1.04; }
.h-1 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.h-2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.h-3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-rule::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); line-height: 1.85; }
.muted { color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }
.bg-white { background: var(--white); }
.bg-ivory { background: var(--ivory); }
.bg-blush { background: var(--blush-soft); }
.bg-ink { background: var(--ink); color: var(--ivory); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--ivory); }
.bg-ink .muted, .bg-ink .lead { color: rgba(247, 243, 239, 0.72); }

.center { text-align: center; }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .h-2 { margin-top: 18px; }
.section-head .lead { margin-top: 20px; }

.divider-heart {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 22px 0;
}
.divider-heart::before, .divider-heart::after {
  content: ""; height: 1px; width: 54px; background: var(--taupe);
}
.divider-heart svg { width: 14px; height: 14px; color: var(--rose); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 17px 34px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.4s var(--ease);
  z-index: 0;
}
.btn span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateY(0); }
.btn .arrow { transition: transform 0.45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--primary { background: var(--ink); color: var(--ivory); }
.btn--primary::before { background: var(--rose-deep); }
.btn--primary:hover { color: var(--white); }

.btn--rose { background: var(--rose); color: var(--white); }
.btn--rose::before { background: var(--ink); }

.btn--ghost { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: var(--ivory); }

.btn--light { border: 1px solid rgba(247,243,239,0.5); color: var(--ivory); background: transparent; }
.btn--light::before { background: var(--ivory); }
.btn--light:hover { color: var(--ink); }

.link-underline {
  position: relative; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 9px; color: var(--ink);
  padding-bottom: 5px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(1); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(0); transform-origin: left; }
.link-underline .arrow { transition: transform 0.45s var(--ease); }
.link-underline:hover .arrow { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 26px 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.header.scrolled {
  padding: 14px 0;
  background: rgba(247, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo (typographic lockup) */
.logo { display: flex; flex-direction: column; line-height: 1; transition: transform 0.5s var(--ease); }
.logo:hover { transform: translateY(-1px); }
.logo__top {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px; padding-left: 3px;
}
.logo__main {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.42rem; letter-spacing: 0.04em; color: var(--rose-deep);
  transition: color 0.5s var(--ease);
}
.header.scrolled .logo__main { color: var(--ink); }
.bg-ink-page .logo__main { color: var(--rose); }

/* Nav */
.nav { display: flex; align-items: center; gap: 38px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  position: relative; font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  padding: 6px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--rose-deep); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--rose-deep); }

/* Dropdown */
.nav__item { position: relative; }
.nav__item > .nav__link { display: inline-flex; align-items: center; gap: 6px; }
.nav__item > .nav__link .caret { width: 9px; height: 9px; transition: transform 0.4s var(--ease); }
.nav__item:hover > .nav__link .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 210px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 12px; margin-top: 14px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  z-index: 50;
}
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: 10px 16px; border-radius: var(--radius);
  font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.dropdown a:hover { background: var(--blush-soft); color: var(--rose-deep); padding-left: 22px; }

.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.08em; color: var(--ink);
}
.nav__phone svg { width: 15px; height: 15px; color: var(--gold); }

/* Burger */
.burger { display: none; width: 30px; height: 18px; position: relative; }
.burger span {
  position: absolute; left: 0; height: 1.6px; width: 100%; background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.4s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 72%; }
.burger span:nth-child(3) { bottom: 0; }
body.menu-open .burger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); width: 100%; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; overflow-y: auto; padding: 90px 24px 40px;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.7s var(--ease-out);
  pointer-events: none;
}
body.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 40px) 40px); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(1.6rem, 6vw, 2.4rem); color: var(--ink);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--rose-deep); font-style: italic; }
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.16s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.22s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.28s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.34s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.40s; }
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: 0.46s; }
body.menu-open .mobile-menu a:nth-child(7) { transition-delay: 0.52s; }
.mobile-menu__foot { margin-top: 40px; opacity: 0; transition: opacity 0.5s var(--ease) 0.5s; }
body.menu-open .mobile-menu__foot { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(150px, 22vh, 230px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__bg-word {
  position: absolute; top: 8%; right: -2%; font-family: var(--serif);
  font-size: clamp(8rem, 30vw, 26rem); color: var(--blush); opacity: 0.5;
  z-index: 0; pointer-events: none; user-select: none; line-height: 1; font-style: italic;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center;
}
.hero__eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .accent { color: var(--rose-deep); font-style: italic; }
.hero__lead { max-width: 480px; margin-bottom: 38px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero__media { position: relative; }
.hero__scroll {
  margin-top: 60px; display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft);
}
.hero__scroll .dot { width: 22px; height: 36px; border: 1px solid var(--taupe); border-radius: 12px; position: relative; }
.hero__scroll .dot::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 3px; background: var(--gold);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ---------- Image frames / placeholders ---------- */
.frame {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 30% 20%, var(--blush-soft) 0%, var(--blush) 45%, var(--rose) 120%);
}
.frame::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,0.45);
  border-radius: var(--radius); pointer-events: none; z-index: 3;
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.frame:hover img { transform: scale(1.06); }
.frame__ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; color: var(--rose-deep);
  text-align: center; padding: 24px; z-index: 2;
}
.frame__ph .mono-mark { font-family: var(--serif); font-size: 2.4rem; letter-spacing: 0.12em; opacity: 0.55; }
.frame__ph .ph-label { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.7; }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 11; }
.frame--square { aspect-ratio: 1 / 1; }
.frame--portrait { aspect-ratio: 3 / 4; }

.hero__media .frame--tall { box-shadow: var(--shadow-card); }
.hero__media .badge-float {
  position: absolute; bottom: -26px; left: -26px; z-index: 5;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 20px 26px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 16px;
}
.badge-float .num { font-family: var(--serif); font-size: 2.1rem; color: var(--rose-deep); line-height: 1; }
.badge-float .lbl { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); max-width: 110px; }

/* ============================================================
   INTRO / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__body p + p { margin-top: 18px; }
.split__body .btn, .split__body .link-underline { margin-top: 32px; }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--rose-deep); margin-top: 28px; }
.signature small { display: block; font-family: var(--sans); font-style: normal; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); }
.service-card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line-soft);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.service-card__media { aspect-ratio: 4 / 3; position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 30% 20%, var(--blush-soft), var(--blush) 55%, var(--rose) 130%); }
.service-card__media .ico {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep); transition: transform 0.7s var(--ease-out), color 0.5s var(--ease);
}
.service-card__media .ico svg { width: 56px; height: 56px; stroke-width: 1; }
.service-card:hover .ico { transform: scale(1.12) rotate(-3deg); color: var(--ink); }
.service-card__media::before {
  content: ""; position: absolute; inset: 0; background: var(--ink); opacity: 0;
  transition: opacity 0.6s var(--ease); z-index: 1;
}
.service-card:hover .service-card__media::before { opacity: 0.04; }
.service-card__body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { margin-bottom: 12px; transition: color 0.4s var(--ease); }
.service-card:hover .service-card__body h3 { color: var(--rose-deep); }
.service-card__body p { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.75; flex: 1; }
.service-card__more {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--gold);
}
.service-card__more .arrow { transition: transform 0.45s var(--ease); }
.service-card:hover .service-card__more .arrow { transform: translateX(6px); }
.service-card__index {
  position: absolute; top: 18px; right: 22px; z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.85);
}

/* Detailed service rows (services page) */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.service-row + .service-row { margin-top: clamp(56px, 8vw, 110px); }
.service-row--reverse .service-row__media { order: 2; }
.service-row__num { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold); }
.service-row h3 { margin: 12px 0 18px; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.service-row ul { margin-top: 22px; display: grid; gap: 12px; }
.service-row ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--ink-soft); }
.service-row ul li svg { width: 17px; height: 17px; color: var(--rose-deep); flex-shrink: 0; margin-top: 4px; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
.step {
  position: relative; padding: 38px 26px 34px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--rose); transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.step:hover::before { transform: scaleX(1); }
.step__num {
  font-family: var(--serif); font-size: 2.6rem; color: var(--blush); line-height: 1;
  transition: color 0.5s var(--ease); margin-bottom: 16px; display: block;
}
.step:hover .step__num { color: var(--rose); }
.step h4 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--rose); line-height: 1; }
.stat__num .suffix { color: var(--taupe); }
.stat__label { margin-top: 12px; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,243,239,0.7); }
.stat { position: relative; padding: 10px; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: rgba(247,243,239,0.16); }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(8px, 2vw, 20px); }
.feature {
  display: flex; gap: 22px; padding: 30px; border-radius: var(--radius-lg);
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}
.feature:hover { background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feature__icon {
  flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid var(--taupe); display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep); transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.feature:hover .feature__icon { background: var(--rose); color: var(--white); border-color: var(--rose); }
.feature__icon svg { width: 26px; height: 26px; stroke-width: 1.1; }
.feature h4 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.testi__track { position: relative; min-height: 250px; }
.testi__slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); pointer-events: none;
}
.testi__slide.active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.testi__quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.5; color: var(--ink); font-style: italic; }
.testi__mark { font-family: var(--serif); font-size: 5rem; color: var(--rose); line-height: 0.5; height: 40px; display: block; }
.testi__author { margin-top: 30px; font-weight: 600; letter-spacing: 0.04em; }
.testi__role { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.testi__stars { display: flex; justify-content: center; gap: 4px; margin-top: 18px; color: var(--rose); }
.testi__stars svg { width: 16px; height: 16px; }
.testi__dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testi__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--taupe); opacity: 0.4; transition: all 0.4s var(--ease); }
.testi__dot.active { opacity: 1; background: var(--rose-deep); width: 30px; border-radius: 5px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.cta-band h2 { margin: 18px 0 22px; }
.cta-band .btn { margin-top: 16px; }
.cta-band__word {
  position: absolute; bottom: -8%; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-style: italic; font-size: clamp(7rem, 22vw, 18rem);
  color: rgba(216, 180, 172, 0.12); z-index: 0; pointer-events: none; line-height: 1; white-space: nowrap;
}

/* ============================================================
   FORMS
   ============================================================ */
.form { display: grid; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { position: relative; }
.field label {
  display: block; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 9px; font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose-deep); box-shadow: 0 0 0 3px rgba(216,180,172,0.22);
}
.field input::placeholder, .field textarea::placeholder { color: #B7AFA8; }
.form__note { font-size: 0.78rem; color: var(--ink-soft); }
.form-success {
  display: none; align-items: center; gap: 12px; padding: 16px 20px; border-radius: var(--radius);
  background: var(--blush-soft); color: var(--rose-deep); font-size: 0.88rem; font-weight: 500;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; }

/* Contact info cards */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.info-list { display: grid; gap: 4px; margin-top: 10px; }
.info-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); align-items: flex-start; }
.info-item:last-child { border-bottom: none; }
.info-item__icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--taupe); display: flex; align-items: center; justify-content: center; color: var(--rose-deep); flex-shrink: 0; transition: all 0.4s var(--ease); }
.info-item:hover .info-item__icon { background: var(--rose); border-color: var(--rose); color: var(--white); }
.info-item__icon svg { width: 20px; height: 20px; }
.info-item h4 { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.info-item p, .info-item a { font-size: 0.98rem; color: var(--ink); line-height: 1.6; }
.info-item a:hover { color: var(--rose-deep); }

/* ============================================================
   PAGE HERO (sub pages)
   ============================================================ */
.page-hero { padding-top: clamp(160px, 22vh, 240px); padding-bottom: clamp(50px, 7vw, 90px); text-align: center; position: relative; overflow: hidden; }
.page-hero .breadcrumb { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 18px; }
.page-hero .breadcrumb a:hover { color: var(--rose-deep); }
.page-hero__word {
  position: absolute; top: 30%; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-style: italic; font-size: clamp(9rem, 26vw, 22rem);
  color: var(--blush); opacity: 0.4; z-index: 0; pointer-events: none; line-height: 1; white-space: nowrap;
}
.page-hero .container { position: relative; z-index: 2; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(247,243,239,0.7); padding: clamp(64px, 8vw, 96px) 0 0; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(30px, 4vw, 60px); padding-bottom: 60px; border-bottom: 1px solid rgba(247,243,239,0.12); }
.footer__brand .mono {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%; border: 1px solid var(--taupe); color: var(--rose);
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.1em; line-height: 1.05; margin-bottom: 22px;
}
.footer__brand p { font-size: 0.9rem; line-height: 1.8; max-width: 320px; }
.footer__col h5 { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory); margin-bottom: 22px; font-weight: 600; }
.footer__col ul { display: grid; gap: 13px; }
.footer__col a { font-size: 0.9rem; position: relative; transition: color 0.4s var(--ease), padding-left 0.4s var(--ease); }
.footer__col a:hover { color: var(--ivory); padding-left: 8px; }
.footer__col a::before { content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 1px; background: var(--rose); transition: width 0.4s var(--ease); }
.footer__col a:hover::before { width: 5px; }
.footer__news p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.footer__news form { display: flex; border: 1px solid rgba(247,243,239,0.2); border-radius: var(--radius); overflow: hidden; }
.footer__news input { flex: 1; background: transparent; border: none; padding: 13px 16px; color: var(--ivory); font-family: var(--sans); font-size: 0.85rem; }
.footer__news input::placeholder { color: rgba(247,243,239,0.4); }
.footer__news input:focus { outline: none; }
.footer__news button { background: var(--rose); color: var(--white); padding: 0 18px; display: flex; align-items: center; transition: background 0.4s var(--ease); }
.footer__news button:hover { background: var(--rose-deep); }
.footer__news button svg { width: 18px; height: 18px; }
.footer__socials { display: flex; gap: 14px; margin-top: 24px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(247,243,239,0.2); display: flex; align-items: center; justify-content: center; transition: all 0.4s var(--ease); }
.footer__socials a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); transform: translateY(-3px); }
.footer__socials svg { width: 17px; height: 17px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 0; font-size: 0.76rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--ivory); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.4s var(--ease), visibility 0.5s;
  box-shadow: var(--shadow-soft);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--rose-deep); transform: translateY(-4px); }
.to-top svg { width: 20px; height: 20px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Reveal elements are visible by default; only hidden once JS confirms support
   (the .js class is added to <html> immediately on load). This guarantees that
   content is never permanently invisible if JS is slow, fails or is disabled. */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
.reveal[data-d="5"] { transition-delay: 0.5s; }
.reveal[data-d="6"] { transition-delay: 0.6s; }

/* ============================================================
   BENEFITS LIST
   ============================================================ */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; margin-top: 28px; }
.benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
.benefits li svg { width: 18px; height: 18px; color: var(--rose-deep); flex-shrink: 0; margin-top: 3px; }
.benefits-head { font-family: var(--serif); font-size: 1.05rem; color: var(--gold); letter-spacing: 0.04em; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: 20px; }
.tl-item { position: relative; padding: 30px 26px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.tl-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.tl-year { font-family: var(--serif); font-size: 2.4rem; color: var(--rose); line-height: 1; margin-bottom: 12px; }
.tl-item p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   PRESS / TRUSTED BY
   ============================================================ */
.press { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px clamp(20px, 4vw, 54px); }
.press__item {
  font-family: var(--serif); font-size: clamp(1rem, 1.5vw, 1.3rem); letter-spacing: 0.08em;
  color: var(--ink-soft); opacity: 0.62; transition: opacity 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.press__item:hover { opacity: 1; color: var(--rose-deep); transform: translateY(-2px); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink);
  transition: color 0.4s var(--ease);
}
.faq__q:hover { color: var(--rose-deep); }
.faq__icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--rose-deep); transition: transform 0.4s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq__item.open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__a-inner { padding: 0 0 24px; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.8; }
.faq__a-inner p + p { margin-top: 12px; }

/* ============================================================
   MAP
   ============================================================ */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); line-height: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; filter: grayscale(0.2) contrast(0.96); }

/* ============================================================
   PROMO BADGE / VIDEO
   ============================================================ */
.promo-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--rose); color: var(--white); padding: 9px 20px; border-radius: 100px; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.video-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; background: radial-gradient(120% 120% at 30% 20%, var(--blush-soft), var(--blush) 55%, var(--rose) 130%); display: flex; align-items: center; justify-content: center; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.video-play { width: 86px; height: 86px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; transition: transform 0.4s var(--ease), background 0.4s var(--ease); position: relative; z-index: 2; }
.video-wrap:hover .video-play { transform: scale(1.08); background: var(--white); }
.video-play svg { width: 30px; height: 30px; color: var(--rose-deep); margin-left: 4px; }
.video-ph-label { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose-deep); opacity: 0.75; z-index: 2; }

/* Mobile submenu links */
.mobile-menu .sub { display: flex; flex-direction: column; align-items: center; gap: 2px; margin: 2px 0 8px; }
.mobile-menu .sub a { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.mobile-menu .sub a:hover { color: var(--rose-deep); font-style: normal; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer__brand, .footer__news { grid-column: span 2; }
}
@media (max-width: 920px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { display: none; }
  .split, .contact-grid, .service-row, .service-row--reverse .service-row__media { grid-template-columns: 1fr; }
  .split--reverse .split__media, .service-row--reverse .service-row__media { order: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 44px 20px; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .features { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid, .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand, .footer__news { grid-column: span 1; }
  .btn { width: 100%; justify-content: center; }
  .hero__cta { width: 100%; }
}

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