/* Transformations Massage & Wellness — Indigo-inspired redesign */

:root {
  --charcoal: #1E1A1D;
  --plum-black: #241E24;
  --warm-ivory: #FFF8F3;
  --blush-ivory: #FFF3F1;
  --soft-blush: #F4C7C3;
  --dusty-blush: #DFA39D;
  --rose-gold: #C9826B;
  --deep-rose-gold: #A85F50;
  --champagne: #E7C6B4;
  --text-dark: #2B2528;
  --text-muted: #6F6268;
  --text-light: #FFF8F3;
  --border-rose: rgba(201, 130, 107, 0.25);
  --shadow-soft: 0 18px 50px rgba(30, 26, 29, 0.07);
  --shadow-card: 0 10px 30px rgba(168, 95, 80, 0.08);
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--warm-ivory);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--text-dark); line-height: 1.16; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); font-weight: 500; line-height: 1.08; }
h2 { font-size: clamp(2rem, 3.6vw, 2.95rem); }
h3 { font-size: 1.42rem; letter-spacing: -.005em; }
.center h2, .hero--center h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.center .lead { margin-top: 4px; }
h2 em, h1 em { font-style: italic; color: var(--deep-rose-gold); }
p { margin-bottom: 1rem; }
a { color: var(--deep-rose-gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rose-gold); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--rose-gold); margin-bottom: 18px; display: block;
}
.lead { font-size: 1.18rem; line-height: 1.8; color: var(--text-muted); }
.center .lead { max-width: 680px; margin-left: auto; margin-right: auto; }

/* Sections: light vs dark */
.section--ivory { background: var(--warm-ivory); }
.section--blush { background: #F8E4DF; }
.section--dark { background: var(--charcoal); }
.section--plum { background: var(--plum-black); }
.section--dark, .section--plum { color: var(--text-light); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--plum h1, .section--plum h2, .section--plum h3 { color: var(--text-light); }
.section--dark em, .section--plum em { color: var(--soft-blush); }
.section--dark .lead, .section--plum .lead { color: var(--champagne); }
.section--dark .eyebrow, .section--plum .eyebrow { color: var(--dusty-blush); }

/* Decorative soft blush blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; z-index: 0; }
.blob--blush { background: var(--soft-blush); }
.blob--rose { background: var(--dusty-blush); }
.section > .container { position: relative; z-index: 1; }

/* Divider accent */
.accent-line { width: 54px; height: 1px; background: var(--rose-gold); margin: 22px 0; }
.center .accent-line { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600; font-size: .9rem;
  letter-spacing: .02em; padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all .22s ease; text-align: center;
}
.btn-primary { background: var(--rose-gold); color: var(--text-light); }
.btn-primary:hover { background: var(--deep-rose-gold); color: var(--text-light); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-secondary-dark { background: transparent; color: var(--text-light); border-color: var(--champagne); }
.btn-secondary-dark:hover { background: rgba(255,255,255,.07); color: var(--text-light); }
.btn-secondary-light { background: transparent; color: var(--deep-rose-gold); border-color: var(--rose-gold); }
.btn-secondary-light:hover { background: rgba(201,130,107,.08); color: var(--deep-rose-gold); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--charcoal);
  border-bottom: 1px solid rgba(231, 198, 180, 0.12);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; max-width: 1280px; margin: 0 auto; }
.nav__logo .logomark { font-family: var(--serif); font-weight: 500; font-size: 25px; color: var(--warm-ivory); letter-spacing: .02em; display: inline-block; }
.nav__logo .logomark span { color: var(--rose-gold); }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav__links a { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: var(--champagne); }
.nav__links a:hover, .nav__links a.active { color: var(--warm-ivory); }
.nav__cta { padding: 11px 22px; font-size: .76rem; color: var(--text-light); }
.nav__cta:hover { color: var(--text-light); }
.nav__toggle { display: none; background: none; border: none; color: var(--champagne); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { background: var(--charcoal); color: var(--text-light); padding: clamp(72px, 11vw, 140px) 0; position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: var(--warm-ivory); margin-bottom: 22px; }
.hero h1 em { color: var(--soft-blush); }
.hero__sub { font-size: 1.2rem; color: var(--champagne); margin-bottom: 32px; max-width: 520px; line-height: 1.75; }
.hero__meta { margin-top: 30px; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dusty-blush); }
.hero--center { text-align: center; }
.hero--center .hero__inner { grid-template-columns: 1fr; }
.hero--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero--center .btn-row { justify-content: center; }

/* Photo placeholders */
.photo {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 340px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    radial-gradient(130% 100% at 28% 18%, rgba(255,255,255,.55), transparent 58%),
    linear-gradient(150deg, var(--blush-ivory) 0%, var(--soft-blush) 70%, var(--dusty-blush) 130%);
  border: 1px solid rgba(201,130,107,.32); color: var(--deep-rose-gold);
}
.photo::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(201,130,107,.3); border-radius: 16px; pointer-events: none; }
.section--dark .photo, .hero .photo {
  background:
    radial-gradient(130% 100% at 28% 18%, rgba(255,255,255,.07), transparent 58%),
    linear-gradient(150deg, #2c2329 0%, #3a2c30 100%);
  border-color: rgba(231,198,180,.22); color: var(--champagne);
}
.section--dark .photo::after, .hero .photo::after { border-color: rgba(231,198,180,.24); }
.photo span.inner { max-width: 80%; padding: 24px; position: relative; z-index: 1; }
.photo .photo__tag { display: block; font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; opacity: .9; }
.photo .photo__desc { font-family: var(--serif); font-style: italic; font-size: 1.08rem; line-height: 1.5; }
.photo--tall { min-height: 460px; }
.photo--full { width: 100%; min-height: 300px; }

/* Two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__copy .accent-line { margin-top: 22px; }

/* Cards grid */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--blush-ivory); border: 1px solid rgba(201,130,107,.3); border-radius: 22px;
  padding: 40px 34px; box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(168,95,80,.16); border-color: rgba(201,130,107,.55); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: .98rem; margin-bottom: 20px; }
.card__icon {
  width: 60px; height: 60px; margin-bottom: 24px; border-radius: 50%;
  background: var(--soft-blush); display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.card:hover .card__icon { background: var(--dusty-blush); }
.card__icon svg { width: 28px; height: 28px; stroke: var(--deep-rose-gold); fill: none; stroke-width: 1.5; }
.card__link { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--deep-rose-gold); }
.card__link::after { content: " \2192"; transition: margin .2s ease; }
.card:hover .card__link::after { margin-left: 4px; }

/* Feature blocks (on dark) */
.feature { padding: 8px 0; }
.feature__icon { width: 56px; height: 56px; margin-bottom: 18px; border-radius: 50%; background: rgba(244,199,195,.13); display: flex; align-items: center; justify-content: center; }
.feature__icon svg { width: 27px; height: 27px; stroke: var(--soft-blush); fill: none; stroke-width: 1.5; }
.feature h3 { font-size: 1.3rem; margin-bottom: 8px; }
.feature p { color: var(--champagne); font-size: .98rem; }

/* Service detail blocks (services page) */
.svc { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: center; padding: clamp(40px, 6vw, 72px) 0; border-bottom: 1px solid var(--border-rose); }
.svc:last-child { border-bottom: none; }
.svc--reverse .svc__media { order: 2; }
.svc__copy h2 { margin-bottom: 6px; }
.svc__copy .meta { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rose-gold); font-weight: 600; margin-bottom: 16px; display: block; }
.svc__copy .who { background: var(--blush-ivory); border-left: 2px solid var(--rose-gold); padding: 12px 18px; border-radius: 0 10px 10px 0; font-size: .96rem; color: var(--text-muted); margin: 18px 0; }

/* Testimonials */
.quote { background: var(--warm-ivory); border: 1px solid var(--border-rose); border-radius: 24px; padding: 38px 34px; box-shadow: var(--shadow-card); position: relative; }
.quote::before { content: "\201C"; font-family: var(--serif); font-size: 4.5rem; color: var(--soft-blush); position: absolute; top: 6px; left: 24px; line-height: 1; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.18rem; line-height: 1.55; color: var(--text-dark); margin: 22px 0 18px; position: relative; }
.quote cite { font-family: var(--sans); font-style: normal; font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-gold); }
.placeholder-tag { display: inline-block; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dusty-blush); border: 1px dashed var(--dusty-blush); border-radius: 20px; padding: 3px 10px; margin-bottom: 8px; }

/* FAQ accordion */
.faq { max-width: 840px; margin: 0 auto; }
.faq__group-label { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-gold); font-weight: 600; margin: 36px 0 14px; }
.faq details { background: var(--warm-ivory); border: 1px solid var(--border-rose); border-radius: 16px; padding: 22px 26px; margin-bottom: 12px; box-shadow: var(--shadow-card); }
.section--blush .faq details { background: #fff; }
.faq summary { font-family: var(--serif); font-size: 1.22rem; color: var(--text-dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--rose-gold); font-family: var(--sans); flex-shrink: 0; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--text-muted); margin: 14px 0 0; font-size: 1rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); }
.info-line { margin-bottom: 22px; }
.info-line .label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-gold); font-weight: 700; display: block; margin-bottom: 4px; }
.info-line .val { color: var(--text-dark); font-size: 1.05rem; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border-rose); font-size: .98rem; }
.hours-list li span:last-child { color: var(--deep-rose-gold); font-weight: 500; }
.form-card { background: var(--blush-ivory); border: 1px solid var(--border-rose); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-card); }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--deep-rose-gold); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border-rose); border-radius: 12px;
  font-family: var(--sans); font-size: 1rem; background: #fff; color: var(--text-dark);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--rose-gold); }
.note { background: var(--soft-blush); color: var(--deep-rose-gold); border-radius: 12px; padding: 14px 18px; font-size: .9rem; }

/* Footer */
.site-footer { background: var(--plum-black); color: var(--champagne); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer .logomark { font-family: var(--serif); font-size: 26px; color: var(--warm-ivory); display: inline-block; margin-bottom: 16px; }
.site-footer .logomark span { color: var(--rose-gold); }
.site-footer h4 { font-family: var(--sans); color: var(--soft-blush); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer p, .site-footer a, .site-footer li { color: var(--champagne); font-size: .92rem; }
.site-footer a:hover { color: var(--warm-ivory); }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; }
.footer-bottom { border-top: 1px solid rgba(231,198,180,.14); padding-top: 24px; text-align: center; font-size: .8rem; color: var(--dusty-blush); }
.footer-bottom p { margin-bottom: 4px; }

/* Footer CTA */
.footer-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid rgba(231,198,180,.16);
}
.footer-cta__text h3 { color: var(--warm-ivory); font-size: 1.7rem; margin-bottom: 4px; }
.footer-cta__text p { color: var(--champagne); margin: 0; font-size: .98rem; }

/* Scroll reveal (applied via JS; safe no-op without it) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Accessibility focus */
a:focus-visible, .btn:focus-visible, summary:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rose-gold); outline-offset: 3px; border-radius: 4px;
}
.nav__links a { transition: color .2s ease; }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner, .split, .svc, .contact-grid, .grid--2, .grid--3, .grid--4, .footer-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media, .svc--reverse .svc__media { order: 0; }
  .footer-grid { gap: 32px; }
  .nav__links { display: none; }
  .nav__links.open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 70px; left: 0; right: 0; background: var(--charcoal); padding: 22px 28px; gap: 18px; border-bottom: 1px solid rgba(231,198,180,.12); }
  .nav__toggle { display: block; }
  .btn-row .btn { flex: 1 1 auto; text-align: center; }
}
