/* ============================================================
   RA Aesthetics : Aesthetics, Wellness & Beauty (Sheffield)
   Premium clinic theme. Wine, gold and blush.
   ============================================================ */

:root {
  --wine-900: #281520;
  --wine-800: #3a2030;
  --wine-700: #512c41;
  --wine-600: #6d3d57;
  --gold-700: #936b30;
  --gold-600: #b1853d;
  --gold-500: #c89a52;
  --gold-400: #ddbd84;
  --blush: #fbf4f1;
  --blush-2: #f4e7e1;
  --blush-3: #ecd9d1;
  --ink: #2a2026;
  --muted: #7c6a72;
  --line: #ecdcd6;
  --white: #ffffff;

  --radius: 20px;
  --radius-sm: 13px;
  --shadow-sm: 0 6px 22px rgba(58, 32, 48, .08);
  --shadow-md: 0 18px 50px rgba(58, 32, 48, .14);
  --shadow-lg: 0 34px 74px rgba(40, 21, 32, .22);
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
html, body { max-width: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--blush);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* Allow flex/grid children to shrink below intrinsic width on small screens */
.hero__inner > *, .about__grid > *, .faq__grid > *, .contact__grid > *,
.cards > *, .timeline > *, .menu > *, .pgrid > * { min-width: 0; }
.quickform input, .quickform select,
.contact__form input, .contact__form textarea { min-width: 0; max-width: 100%; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: var(--gold-400); }

.section { padding: 44px 0; }
.section__head { max-width: 720px; margin: 0 auto 30px; text-align: center; }
.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.08;
  color: var(--wine-800);
  letter-spacing: -.4px;
}
.section__title--left { text-align: left; }
.section__sub { margin-top: 18px; color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--wine-600), var(--wine-900));
  color: #fff; box-shadow: 0 12px 26px rgba(58, 32, 48, .28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(58, 32, 48, .36); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--wine-900); box-shadow: 0 12px 26px rgba(177, 133, 61, .32);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(177, 133, 61, .42); }
.btn--ghost {
  background: transparent; color: var(--wine-800);
  border-color: rgba(58, 32, 48, .25);
}
.btn--ghost:hover { background: var(--wine-800); color: #fff; border-color: var(--wine-800); }

/* ---------- Topbar ---------- */
.topbar { background: var(--wine-900); color: #ecdfe6; font-size: 13px; letter-spacing: .3px; }
.topbar__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; min-height: 42px; padding: 5px 0; gap: 6px 16px; }
.topbar__item { color: var(--gold-400); min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__socials { display: flex; gap: 9px; align-items: center; flex: none; }
.soc {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s;
}
.soc svg { width: 14px; height: 14px; }
.soc:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,.3); filter: brightness(1.08); }
.soc--ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 35%, #d6249f 60%, #285aeb 100%); }
.soc--tt { background: #010101; }
.soc--tt svg { color: #25f4ee; filter: drop-shadow(1px 1px 0 #fe2c55); }
.soc--fb { background: #1877f2; }
.soc--wa { background: #25d366; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 244, 241, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__emblem { height: 48px; width: 48px; flex: none; border-radius: 12px; object-fit: cover; background: #f6f5f1; box-shadow: 0 2px 8px rgba(58, 32, 48, .1); }
.footer__brand .brand__emblem { box-shadow: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--serif); font-size: 1.42rem; font-weight: 700; color: var(--wine-800); letter-spacing: .3px; }
.brand__text small { font-size: 9px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold-600); margin-top: 3px; }

.nav { display: flex; gap: 30px; }
.nav__link { font-size: 15px; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0; transition: color .25s; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold-500); transition: width .3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--wine-800); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--wine-800); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sun motif (decorative) ---------- */
.sun-rays { animation: spin-slow 48s linear infinite; transform-origin: 50% 50%; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .sun-rays { animation: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 18px 0 40px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 540px at 80% -12%, rgba(200, 154, 82, .26), transparent 60%),
    radial-gradient(860px 600px at -4% 100%, rgba(109, 61, 87, .16), transparent 55%),
    linear-gradient(180deg, var(--blush), var(--blush-2));
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(58, 32, 48, .05) 1px, transparent 1px);
  background-size: 22px 22px; mask-image: linear-gradient(180deg, #000, transparent 72%);
}
.hero__sun {
  position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; z-index: 0;
  color: rgba(200, 154, 82, .4); pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.7rem, 6.2vw, 4.8rem); line-height: 1.02; letter-spacing: -1px;
  color: var(--wine-800); margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--gold-600); }
.hero__lead { font-size: 1.16rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 26px; margin-top: 46px; flex-wrap: wrap; }
.trust__item { display: flex; flex-direction: column; }
.trust__item strong { font-family: var(--serif); font-size: 1.95rem; color: var(--wine-800); line-height: 1; }
.trust__item span { font-size: 13px; color: var(--muted); margin-top: 5px; }
.trust__divider { width: 1px; height: 40px; background: var(--line); }

/* hero quick form */
.hero__card { position: relative; }
.quickform {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-md); position: relative;
}
.quickform::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1px; background: linear-gradient(135deg, var(--gold-400), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.quickform h3 { font-family: var(--serif); font-size: 1.75rem; color: var(--wine-800); font-weight: 600; }
.quickform p { font-size: .92rem; color: var(--muted); margin: 6px 0 20px; }
.quickform form { display: flex; flex-direction: column; gap: 12px; }
.quickform input, .quickform select,
.contact__form input, .contact__form textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--blush); transition: border-color .25s, box-shadow .25s; outline: none;
}
.quickform input:focus, .quickform select:focus,
.contact__form input:focus, .contact__form textarea:focus {
  border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(200, 154, 82, .2); background: #fff;
}
.quickform__note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }

/* ---------- Marquee strip ---------- */
.marquee { background: var(--wine-800); color: #f4e7e1; overflow: hidden; }
.marquee__track {
  display: flex; gap: 48px; align-items: center; width: max-content;
  padding: 17px 0; font-size: 14px; letter-spacing: .8px;
  animation: marquee-scroll 30s linear infinite;
}
.marquee__track span { color: rgba(244, 231, 225, .92); white-space: nowrap; }
.marquee__track b { color: var(--gold-400); font-weight: 400; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } }

/* ---------- Explore cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(200,154,82,.18), rgba(109,61,87,.13));
  color: var(--wine-700); margin-bottom: 20px;
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--wine-800); margin-bottom: 10px; font-weight: 600; }
.card p { font-size: .95rem; color: var(--muted); margin-bottom: 16px; }
.card__link { font-size: 14px; font-weight: 600; color: var(--gold-600); transition: color .25s; }
.card__link:hover { color: var(--wine-700); }

/* ---------- Signature treatments (icon cards) ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pcard {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pcard__media { aspect-ratio: 16 / 11; display: grid; place-items: center; color: rgba(255,255,255,.95);
  background: linear-gradient(150deg, var(--wine-600), var(--wine-900)); position: relative; overflow: hidden; }
.pcard__media svg.icon { width: 56px; height: 56px; position: relative; z-index: 1; }
.pcard__media::after {
  content: ''; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,189,132,.4), transparent 65%); top: -60px; right: -60px;
}
.pcard__body { padding: 22px 24px 26px; }
.pcard__body h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--wine-800); margin-bottom: 8px; font-weight: 600; }
.pcard__body p { font-size: .94rem; color: var(--muted); margin-bottom: 14px; }
.pcard__body .card__link { display: inline-block; }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(135deg, var(--wine-800), var(--wine-900)); color: #fff; padding: 54px 0; position: relative; overflow: hidden; }
.stats .sun-rays { position: absolute; right: -160px; top: 50%; transform: translateY(-50%); width: 460px; height: 460px; color: rgba(221,189,132,.12); }
.stats__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 600; color: var(--gold-400); display: block; line-height: 1; }
.stat__label { font-size: 14px; color: rgba(255,255,255,.8); margin-top: 10px; display: block; }

/* ---------- Process / journey ---------- */
.process { background: var(--blush-2); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--white); border-radius: var(--radius); padding: 34px 28px; border: 1px solid var(--line); position: relative; overflow: hidden; }
.step::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); }
.step__no { font-family: var(--serif); font-size: 2.6rem; color: var(--blush-2); font-weight: 700; line-height: 1; display: block; margin-bottom: 8px; -webkit-text-stroke: 1px var(--gold-500); }
.step h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--wine-800); margin-bottom: 8px; font-weight: 600; }
.step p { font-size: .92rem; color: var(--muted); }

/* ---------- Treatments menu / price list ---------- */
.menu { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; align-items: start; }
.menu--single { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.mcat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-sm); scroll-margin-top: 110px;
}
.mcat__head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 6px; }
.mcat__icon {
  width: 52px; height: 52px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(200,154,82,.18), rgba(109,61,87,.13)); color: var(--wine-700);
}
.mcat__icon svg { width: 28px; height: 28px; }
.mcat__title { font-family: var(--serif); font-size: 1.6rem; color: var(--wine-800); font-weight: 600; line-height: 1.15; }
.mcat__blurb { color: var(--muted); font-size: .93rem; margin: 4px 0 18px; }
.price-list { list-style: none; display: grid; gap: 2px; }
.price-row { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row__name { font-size: .96rem; color: var(--ink); font-weight: 500; }
.price-row__note { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; margin-top: 2px; }
.tag-pop { display: inline-block; font-size: 9.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-700); border: 1px solid var(--gold-400); border-radius: 100px; padding: 1px 7px; margin-left: 8px; vertical-align: middle; }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 14px; }
.price-row__price { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--wine-700); white-space: nowrap; }
.price-row__price.is-soft { font-family: var(--sans); font-size: .82rem; font-style: italic; font-weight: 400; color: var(--muted); }

/* category quick nav (sticky chips) */
.catnav { position: sticky; top: 78px; z-index: 30; background: rgba(251,244,241,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.catnav__inner { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0; scrollbar-width: none; }
.catnav__inner::-webkit-scrollbar { display: none; }
.catnav a { white-space: nowrap; font-size: 13.5px; font-weight: 500; color: var(--muted); border: 1px solid var(--line); background: #fff; padding: 8px 16px; border-radius: 100px; transition: all .25s var(--ease); }
.catnav a:hover { color: var(--wine-800); border-color: var(--gold-400); }
.catnav a.active { background: var(--wine-800); color: #fff; border-color: var(--wine-800); }

.note-band { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 26px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; box-shadow: var(--shadow-sm); }
.note-band span { font-size: 14px; color: var(--muted); }
.note-band b { color: var(--gold-600); font-weight: 400; }
.disclaim { text-align: center; color: var(--muted); font-size: .92rem; max-width: 720px; margin: 22px auto 0; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__art {
  width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 6px solid #fff; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--wine-600), var(--wine-900));
  display: grid; place-items: center;
}
.about__art .sun-rays { width: 78%; height: 78%; color: rgba(221,189,132,.5); }
.about__art .emblem-lg { position: absolute; width: 110px; height: 110px; color: var(--gold-400); }
.about__badge {
  position: absolute; left: -10px; bottom: 24px; background: var(--white);
  border-radius: var(--radius-sm); padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; border: 1px solid var(--line);
}
.about__badge strong { font-family: var(--serif); font-size: 2rem; color: var(--gold-600); line-height: 1; }
.about__badge span { font-size: 12px; color: var(--muted); max-width: 130px; margin-top: 4px; }
.about__content .section__title { margin-bottom: 20px; }
.about__content p { color: var(--muted); margin-bottom: 16px; }
.about__lead { font-size: 1.12rem; color: var(--ink) !important; }
.about__lead strong { color: var(--wine-800); }
.ticks { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; font-size: .98rem; color: var(--ink); }
.ticks li::before { content: '\2713'; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; background: var(--wine-700); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 12px; }

/* values grid */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value { border-top: 2px solid var(--gold-400); padding-top: 18px; }
.value h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--wine-800); margin-bottom: 8px; font-weight: 600; }
.value p { font-size: .92rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--blush-2); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between; }
.quote__stars { color: var(--gold-500); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--wine-800); line-height: 1.45; margin-bottom: 20px; }
.quote figcaption strong { display: block; color: var(--ink); font-size: .95rem; }
.quote figcaption span { font-size: .85rem; color: var(--muted); }
.reviews-cta { max-width: 620px; margin: 40px auto 0; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow-md); }
.reviews-cta h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--wine-800); margin: 10px 0 8px; font-weight: 600; }
.reviews-cta p { color: var(--muted); margin-bottom: 24px; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq__intro p { color: var(--muted); margin: 16px 0 26px; }
.acc { border-bottom: 1px solid var(--line); padding: 4px 0; }
.acc summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative; font-weight: 600; font-size: 1.06rem; color: var(--wine-800); }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--gold-600); font-weight: 400; transition: transform .3s var(--ease); }
.acc[open] summary::after { content: '\2212'; }
.acc p { color: var(--muted); padding: 0 30px 22px 0; font-size: .97rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--blush), var(--blush-2)); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__info > p { color: var(--muted); margin: 14px 0 30px; max-width: 440px; }
.contact__list { list-style: none; display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--wine-700); }
.contact__ic svg { width: 20px; height: 20px; }
.contact__list strong { display: block; color: var(--wine-800); font-size: 14px; margin-bottom: 2px; }
.contact__list a, .contact__list div { color: var(--muted); font-size: .96rem; }
.contact__list a:hover { color: var(--wine-700); }

.contact__form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-md); }
.contact__form h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--wine-800); margin-bottom: 22px; font-weight: 600; }
.contact__form { display: grid; gap: 16px; }
.contact__form label { display: block; font-size: 13px; font-weight: 600; color: var(--wine-800); }
.contact__form input, .contact__form textarea { margin-top: 7px; font-weight: 400; }
.contact__form textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact__formnote { font-size: 13px; color: var(--muted); text-align: center; }
.contact__formnote.ok { color: var(--wine-700); font-weight: 600; }
.contact__formnote.err { color: #b3261e; font-weight: 600; }
.contact__formnote.err a { color: var(--wine-700); text-decoration: underline; }

.maps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.maps--one { grid-template-columns: 1fr; max-width: 860px; margin-left: auto; margin-right: auto; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; }
.map iframe { display: block; width: 100%; height: 300px; border: 0; filter: grayscale(.15); }
.map__label { padding: 14px 18px; font-size: 14px; font-weight: 600; color: var(--wine-800); }
.map__label span { display: block; font-weight: 400; color: var(--muted); font-size: 13px; margin-top: 2px; }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; overflow: hidden; padding: 64px 0 56px; background: linear-gradient(180deg, var(--blush), var(--blush-2)); }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(200,154,82,.22), transparent 60%),
    radial-gradient(700px 480px at -5% 120%, rgba(109,61,87,.14), transparent 55%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; text-align: center; margin: 0 auto; }
.page-hero h1 { font-family: var(--serif); font-weight: 600; letter-spacing: -1px; font-size: clamp(2.3rem, 5.4vw, 3.9rem); line-height: 1.05; color: var(--wine-800); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold-600); }
.page-hero p { font-size: 1.12rem; color: var(--muted); max-width: 600px; margin: 0 auto; }
.crumbs { font-size: 13px; letter-spacing: .4px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--gold-600); }
.crumbs a:hover { color: var(--wine-700); }
.crumbs span { margin: 0 8px; opacity: .6; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--wine-700), var(--wine-900)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band .sun-rays { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 520px; height: 520px; color: rgba(221,189,132,.1); }
.cta-band__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 18px 0; }
.cta-band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.1; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.84); margin-bottom: 26px; font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn--ghost:hover { background: #fff; color: var(--wine-800); border-color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--wine-900); color: #d8c8d0; padding: 56px 0 0; }

/* ---------- Instagram feed ---------- */
.ig-feed { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-tile { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 14px; display: block; box-shadow: var(--shadow-sm); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.ig-tile:hover img { transform: scale(1.09); }
.ig-tile__ov { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; opacity: 0; background: rgba(58, 32, 48, 0); transition: opacity .3s var(--ease), background .3s var(--ease); }
.ig-tile:hover .ig-tile__ov { opacity: 1; background: rgba(58, 32, 48, .42); }
.ig-tile__ov svg { width: 30px; height: 30px; }
.ig-cta { text-align: center; margin-top: 26px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.footer__brand .brand__text strong { color: #fff; }
.footer__brand .brand__emblem { color: var(--gold-400); }
.footer__brand p { font-size: .92rem; max-width: 300px; color: rgba(216,200,208,.82); margin-top: 18px; }
.socials { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.socials a { font-size: 13px; color: var(--gold-400); border: 1px solid rgba(200,154,82,.32); padding: 7px 14px; border-radius: 100px; transition: .25s; }
.socials a:hover { background: var(--gold-500); color: var(--wine-900); border-color: var(--gold-500); }
.footer__col > summary { font-family: var(--serif); font-size: 1.2rem; color: #fff; margin-bottom: 16px; font-weight: 600; list-style: none; }
.footer__col > summary::-webkit-details-marker { display: none; }
.footer__col > summary::marker { content: ""; }
.footer__col a, .footer__col p { display: block; font-size: .92rem; color: rgba(216,200,208,.84); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold-400); }
/* Desktop: keep columns expanded and non-collapsible */
@media (min-width: 721px) {
  .footer__col > summary { pointer-events: none; }
}
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 64px; padding: 10px 0; font-size: 12.5px; color: rgba(216,200,208,.6); flex-wrap: wrap; gap: 8px 16px; }
.built-by { display: inline-flex; align-items: center; gap: 7px; color: rgba(216,200,208,.6); transition: color .2s; }
.built-by img { width: 18px; height: 18px; display: block; }
.built-by strong { font-weight: 600; color: rgba(216,200,208,.85); transition: color .2s; }
.built-by:hover, .built-by:hover strong { color: var(--gold-400); }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.42); transition: transform .3s var(--ease); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards, .timeline, .stats__grid, .values { grid-template-columns: repeat(2, 1fr); }
  .pgrid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .menu, .maps { grid-template-columns: 1fr; }
  .ig-feed { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .header__cta { display: none; }
  .topbar__item { display: none; }
  .topbar__inner { justify-content: center; }
  .nav__toggle { display: flex; }
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--blush); padding: 12px 24px 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 40px 0; }
  .brand__emblem { height: 42px; width: 42px; }
  .brand__text strong { font-size: 1.24rem; }
  .brand__text small { font-size: 8px; letter-spacing: 1.5px; white-space: nowrap; }
  .topbar__item { display: none; }
  .topbar__inner { justify-content: center; }
  .values, .quotes, .field-row { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  /* Swipe carousels on mobile: Explore, Signature treatments, Your journey */
  .cards, .pgrid, .timeline {
    display: flex; gap: 14px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin: 0 -24px; padding: 2px 24px 16px;
  }
  .cards::-webkit-scrollbar, .pgrid::-webkit-scrollbar, .timeline::-webkit-scrollbar { display: none; }
  .cards > *, .pgrid > *, .timeline > * { flex: 0 0 80%; scroll-snap-align: start; }
  .hero__trust { gap: 12px; flex-wrap: nowrap; margin-top: 34px; }
  .trust__item { flex: 1; min-width: 0; }
  .trust__item strong { font-size: 1.5rem; }
  .trust__item span { font-size: 11px; line-height: 1.25; }
  .trust__divider { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__badge { position: static; margin-top: 16px; display: inline-flex; flex-direction: row; gap: 12px; align-items: center; }
  .about__badge span { max-width: none; }
  .hero__sun { width: 280px; height: 280px; top: -70px; right: -80px; }
  /* Footer columns become collapsible dropdowns to save space */
  .footer__grid { grid-template-columns: 1fr; gap: 0; }
  .footer__brand { margin-bottom: 18px; }
  .footer__col { border-top: 1px solid rgba(255, 255, 255, .12); }
  .footer__col > summary { position: relative; margin-bottom: 0; padding: 16px 36px 16px 0; cursor: pointer; }
  .footer__col[open] > summary { margin-bottom: 4px; }
  .footer__col > summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; line-height: 1; color: var(--gold-400); }
  .footer__col[open] > summary::after { content: "\2212"; }
  .footer__col a, .footer__col p { padding: 6px 0; }
  .footer__col > :last-child { padding-bottom: 16px; }
}
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
