/* ===================== TOKENS ===================== */
:root {
  --blue: #8FB6C4;
  --blue-deep: #6F9DAE;
  --blue-soft: #A8C6D4;
  --pink: #E8A0B8;
  --pink-deep: #DA8AA4;
  --pink-soft: #F1B6C8;
  --cream: #FAF7F3;
  --white: #FFFFFF;
  --ink: #5A6670;
  --ink-soft: #7C8893;
  --line: #E9E2DA;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --maxw: 1160px;
  --radius: 22px;
  --shadow-sm: 0 1px 3px rgba(90,102,112,.06);
  --shadow: 0 18px 50px -22px rgba(111,157,174,.35);
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2.5px solid var(--pink-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(250,247,243,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 14px 24px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.nav__mark { width: 38px; height: 38px; flex: none; }
.nav__word { display: flex; align-items: baseline; gap: 6px; line-height: 1; white-space: nowrap; }
.nav__word-touch { font-family: var(--font-serif); font-size: 21px; color: var(--blue-deep); letter-spacing: .02em; font-weight: 500; }
.nav__word-clean { font-family: var(--font-display); font-size: 20px; color: var(--pink-deep); letter-spacing: .06em; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 15px; color: var(--ink); position: relative; padding: 4px 0; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--pink-deep); transition: right .3s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--blue-deep); }
.nav__links a.is-active::after, .nav__links a:hover::after { right: 0; }

.nav__phone {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--pink); color: var(--white);
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  padding: 9px 17px; border-radius: 999px;
  transition: background .25s, transform .25s var(--ease);
  white-space: nowrap;
}
.nav__phone:hover { background: var(--pink-deep); transform: translateY(-1px); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  padding: 14px 28px; border-radius: 999px;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
}
.btn--lg { padding: 17px 34px; font-size: 17px; }
.btn--pink { background: var(--pink); color: var(--white); box-shadow: 0 12px 28px -12px rgba(218,138,164,.7); }
.btn--pink:hover { background: var(--pink-deep); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--blue-deep); border-color: var(--blue-soft); }
.btn--outline:hover { background: var(--white); border-color: var(--blue); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--blue-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===================== CHIPS ===================== */
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.chips--center { justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.chip--soft { background: rgba(143,182,196,.1); border-color: rgba(143,182,196,.28); color: var(--blue-deep); }
.chip__star {
  width: 11px; height: 11px; flex: none;
  background: var(--pink);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}

/* ===================== HERO ===================== */
.hero { position: relative; padding: 64px 0 88px; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 0 24px; text-align: center; }

.logo { margin: 0 auto 26px; max-width: 440px; }
.logo__svg { width: 100%; height: auto; }
.logo__touch { font-family: var(--font-serif); font-size: 78px; fill: var(--blue-deep); letter-spacing: .01em; font-weight: 500; }
.logo__clean { font-family: var(--font-display); font-size: 116px; fill: var(--pink); letter-spacing: .04em; }
.logo__tag { font-family: var(--font-body); font-size: 20px; fill: var(--ink-soft); font-weight: 300; letter-spacing: .04em; }

.hero__headline {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.12; color: var(--ink); letter-spacing: .005em;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.16rem); color: var(--ink-soft);
  max-width: 600px; margin: 0 auto 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 26px; }

.hero__decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__decor svg { position: absolute; }
.drift--1 { width: 30px; top: 14%; left: 12%; }
.drift--2 { width: 20px; top: 60%; left: 8%; }
.drift--3 { width: 64px; top: 22%; right: 9%; }
.drift--4 { width: 38px; top: 68%; right: 14%; }
.drift--5 { width: 26px; top: 8%; right: 26%; }
.drift--6 { width: 22px; top: 78%; left: 40%; }

/* ===================== SECTION SHELL ===================== */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); line-height: 1.14; color: var(--ink);
  margin-bottom: 14px; letter-spacing: .005em;
}
.section__lead, .section__head p { font-size: 1.05rem; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-deep); font-weight: 500; margin-bottom: 16px;
}
.eyebrow__star, .card__icon, .stat__star {
  width: 14px; height: 14px; flex: none; background: var(--pink);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}

/* ===================== SERVICES ===================== */
.grid--services { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon { width: 22px; height: 22px; margin-bottom: 16px; background: var(--blue); }
.card__title { font-family: var(--font-serif); font-weight: 600; font-size: 1.42rem; color: var(--ink); line-height: 1.2; margin-bottom: 10px; }
.card__desc { font-size: .98rem; color: var(--ink-soft); margin-bottom: 18px; }
.card__includes-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 10px; font-weight: 500; }
.card__list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.card__list li { position: relative; padding-left: 20px; font-size: .94rem; color: var(--ink); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px;
  background: var(--pink-soft);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}

/* ===================== PRICING ===================== */
.pricing { background: linear-gradient(180deg, var(--cream), #F3EFEA); }
.price-note { font-size: .98rem; color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

.estimate-note {
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(135deg, #FDF3F6, var(--white));
  border: 1px solid var(--pink-soft); border-left: 4px solid var(--pink-deep);
  border-radius: var(--radius); padding: 22px 26px; margin: 0 auto 28px;
  max-width: 720px; box-shadow: var(--shadow-sm);
}
.estimate-note__star {
  flex: none; width: 22px; height: 22px; margin-top: 3px;
  background: var(--pink-deep);
  clip-path: polygon(50% 0%, 55% 45%, 100% 50%, 55% 55%, 50% 100%, 45% 55%, 0% 50%, 45% 45%);
}
.estimate-note__body { display: flex; flex-direction: column; gap: 6px; }
.estimate-note__title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 1.18rem; color: var(--blue-deep); line-height: 1.3;
}
.estimate-note__desc { font-size: .98rem; color: var(--ink); line-height: 1.55; }
.estimate-note__cta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 6px; font-weight: 600; color: var(--pink-deep);
  text-decoration: none; font-size: .96rem;
  transition: gap .18s ease, color .18s ease;
}
.estimate-note__cta:hover { gap: 10px; color: var(--blue-deep); }
@media (max-width: 520px) {
  .estimate-note { padding: 18px 20px; gap: 14px; }
  .estimate-note__title { font-size: 1.08rem; }
}

.pricecard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow);
}
.pricelist { list-style: none; }
.priceline {
  display: flex; align-items: baseline; gap: 10px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.priceline:last-child { border-bottom: none; }
.priceline__name { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ink); font-weight: 500; flex: none; max-width: 60%; }
.priceline__dots { flex: 1; border-bottom: 1px dotted #CFC7BD; transform: translateY(-4px); min-width: 12px; }
.priceline__price { font-size: 1rem; font-weight: 500; color: var(--blue-deep); white-space: nowrap; text-align: right; flex: none; }
.priceline__unit { color: var(--ink-soft); font-weight: 300; }
.priceline__min { color: var(--ink-soft); font-weight: 300; font-size: .88rem; }

.addons { margin-top: 28px; padding-top: 26px; border-top: 1px dashed var(--line); }
.addons__label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-deep); font-weight: 500; margin-bottom: 14px; }
.addons__note { text-transform: none; letter-spacing: 0; color: var(--ink-soft); font-weight: 300; }
.price-footnote { text-align: center; margin-top: 30px; font-size: 1.02rem; color: var(--ink-soft); }
.price-footnote a { color: var(--pink-deep); font-weight: 500; border-bottom: 1px solid var(--pink-soft); }

/* ===================== WHAT'S INCLUDED (TABS) ===================== */
.tabs { max-width: 960px; margin: 0 auto; }
.tabs__list {
  display: flex; gap: 10px; margin-bottom: 30px;
  background: rgba(143,182,196,.1); border: 1px solid rgba(143,182,196,.24);
  padding: 6px; border-radius: 999px;
}
.tabs__tab {
  flex: 1 1 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink-soft);
  background: transparent; border: none; cursor: pointer;
  padding: 12px 18px; border-radius: 999px;
  transition: background .25s var(--ease), color .25s, box-shadow .25s; white-space: nowrap;
}
.tabs__tab:hover { color: var(--blue-deep); }
.tabs__tab.is-active { background: var(--white); color: var(--blue-deep); box-shadow: var(--shadow-sm); }
.tabs__tab:focus-visible { outline: 2.5px solid var(--pink-deep); outline-offset: 2px; }
.tabs__star {
  width: 12px; height: 12px; flex: none; background: var(--pink);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}
.tabs__panel { animation: fadePanel .5s var(--ease); }
.tabs__panel[hidden] { display: none; }
@keyframes fadePanel { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tabs__banner {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(232,160,184,.12); border: 1px solid rgba(232,160,184,.32);
  color: var(--ink); border-radius: 16px; padding: 14px 18px; margin-bottom: 28px;
  font-size: .98rem;
}
.tabs__banner-star {
  width: 13px; height: 13px; flex: none; margin-top: .3em; background: var(--pink);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}
.checklist { display: flex; flex-direction: column; gap: 20px; }
.roomgroup {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow-sm);
}
.roomgroup__title {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.28rem; color: var(--blue-deep);
  line-height: 1.2; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.checklist__list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 22px; }
.checklist__list li { position: relative; padding-left: 20px; font-size: .94rem; color: var(--ink); line-height: 1.5; }
.checklist__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; flex: none;
  background: var(--pink-soft);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}
.checklist__note { color: var(--ink-soft); font-weight: 300; font-style: italic; }

/* ===================== PREP ===================== */
.grid--prep { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.prep__card { display: flex; flex-direction: column; }
.prep__title { font-family: var(--font-serif); font-weight: 600; font-size: 1.32rem; color: var(--blue-deep); line-height: 1.2; margin-bottom: 10px; }
.prep__desc { font-size: .99rem; color: var(--ink-soft); }

/* ===================== ABOUT ===================== */
.about__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about__visual {
  background: linear-gradient(160deg, #EAF2F5, #F7EDF1);
  border-radius: var(--radius); padding: 30px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
}
.about__art { width: 100%; max-width: 300px; height: auto; }
.jeanie {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px dashed var(--line); border-radius: 999px;
  padding: 8px 18px; box-shadow: var(--shadow-sm);
}
.jeanie__text { display: flex; }
.jeanie__desc {
  font-family: var(--font-serif); font-style: italic;
  font-size: .92rem; color: var(--ink-soft); letter-spacing: .01em;
}
.about__text p { font-size: 1.06rem; color: var(--ink); margin-bottom: 16px; }
.about__quote {
  font-family: var(--font-serif); font-style: italic; font-size: 1.24rem !important;
  color: var(--blue-deep) !important; line-height: 1.4; margin-top: 6px;
  padding-left: 18px; border-left: 3px solid var(--pink-soft);
}
.stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.stat {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 18px; box-shadow: var(--shadow-sm); font-weight: 500; font-size: .96rem;
}

/* ===================== AREA ===================== */
.area { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area__inner { text-align: center; }
.area__chips { margin: 8px auto 22px; max-width: 660px; }
.area__chips .chip { background: var(--cream); }
.area__note { color: var(--ink-soft); font-size: 1.02rem; }

/* ===================== CONTACT ===================== */
.contact { position: relative; background: linear-gradient(155deg, var(--blue), var(--blue-deep)); color: var(--white); overflow: hidden; text-align: center; }
.contact__inner { position: relative; z-index: 2; }
.contact__headline { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem, 5.5vw, 3.2rem); line-height: 1.12; margin-bottom: 14px; }
.contact__sub { font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 480px; margin: 0 auto 30px; font-weight: 300; }
.contact .hero__cta { margin-bottom: 30px; }
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 1.05rem; color: rgba(255,255,255,.92); }
.contact__details a { border-bottom: 1px solid rgba(255,255,255,.35); }
.contact__decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; }
.contact__decor svg { position: absolute; }
.drift--7 { width: 26px; top: 16%; left: 10%; }
.drift--8 { width: 56px; top: 60%; right: 8%; }
.drift--9 { width: 22px; top: 70%; left: 16%; }

/* ===================== FOOTER ===================== */
.footer { background: var(--cream); padding: 34px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__mark { width: 32px; height: 32px; }
.footer__word { display: flex; align-items: baseline; gap: 5px; }
.footer__word .nav__word-touch { font-size: 18px; }
.footer__word .nav__word-clean { font-size: 17px; }
.footer__copy { font-size: .9rem; color: var(--ink-soft); }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* drift animation */
@keyframes drift { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(8deg); } }
.drift { animation: drift 9s ease-in-out infinite; }
.drift--2 { animation-duration: 11s; animation-delay: -2s; }
.drift--3 { animation-duration: 13s; animation-delay: -4s; }
.drift--4 { animation-duration: 10s; animation-delay: -1s; }
.drift--5 { animation-duration: 12s; animation-delay: -3s; }
.drift--6 { animation-duration: 14s; animation-delay: -5s; }
.drift--7 { animation-duration: 11s; }
.drift--8 { animation-duration: 15s; animation-delay: -3s; }
.drift--9 { animation-duration: 12s; animation-delay: -6s; }

.br-desktop { display: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .grid--prep { grid-template-columns: 1fr; }
  .checklist__list { grid-template-columns: 1fr; gap: 8px; }
  .tabs__list { flex-direction: column; border-radius: 20px; }
  .tabs__tab { flex: 1 1 auto; }
  .tabs__tab.is-active { box-shadow: var(--shadow-sm); }
}
@media (min-width: 760px) { .br-desktop { display: block; } }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__word-touch { font-size: 18px; }
  .nav__word-clean { font-size: 17px; }
  .nav__phone { font-size: 13px; padding: 8px 13px; }
}

@media (max-width: 560px) {
  .grid--services { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 64px; }
  .priceline { flex-wrap: wrap; gap: 2px 10px; }
  .priceline__name { max-width: 100%; flex: 1 1 auto; }
  .priceline__dots { display: none; }
  .priceline__price { text-align: left; width: 100%; flex: 1 0 100%; color: var(--pink-deep); }
  .nav__phone span.hide-xs { display: none; }
}

@media (max-width: 380px) {
  .nav__brand .nav__word { font-size: 0; gap: 4px; }
  .nav__word-touch { font-size: 16px; }
  .nav__word-clean { font-size: 15px; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .drift { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
