/* =========================================================
   TONE & TEXTURE — Color & Texture Studio
   Design tokens: ink-plum ground with ivory text, rose-gold and
   blush accents pulled from an actual colorist's tone ring.
   Structural device: sections are introduced by a numbered swatch
   chip (Level 01–08) echoing the hair-color level system colorists
   use daily, rather than a decorative numeral.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #241c1f;
  --ink-soft: #2d2226;
  --surface: #3a2b32;
  --line: rgba(245, 237, 230, 0.12);
  --ivory: #f5ede6;
  --muted: #cdb9b0;
  --rose-gold: #b8896f;
  --rose-gold-bright: #d3a184;
  --plum: #6b3f52;
  --blush: #e8c4b8;
  --radius: 6px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --nav-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.no-scroll { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rose-gold-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Swatch eyebrow (signature numbering device) ---------- */
.swatch-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--rose-gold-bright);
  margin-bottom: 16px;
}
.swatch-tag__chip {
  width: 22px; height: 22px;
  border-radius: 4px;
  border: 1px solid rgba(245,237,230,0.3);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.section-lede { color: var(--muted); max-width: 540px; font-size: 16.5px; }
.section { padding: 100px 0; border-bottom: 1px solid var(--line); }
.section--alt { background: var(--ink-soft); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-height); display: flex; align-items: center; transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease; }
.nav.is-scrolled { background: rgba(36, 28, 31, 0.94); backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--line); height: 68px; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__brand { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.01em; }
.nav__brand span { color: var(--rose-gold-bright); font-style: italic; }
.nav__menu { display: flex; align-items: center; gap: 34px; }
.nav__menu a { font-size: 14px; letter-spacing: 0.02em; color: var(--muted); transition: color 0.2s ease; }
.nav__menu a:hover { color: var(--rose-gold-bright); }
.nav__cta { border: 1px solid var(--rose-gold); color: var(--rose-gold-bright) !important; padding: 10px 22px; border-radius: 30px; }
.nav__cta:hover { background: var(--rose-gold); color: var(--ink) !important; }

.nav__toggle { display: none; background: none; border: none; width: 32px; height: 24px; position: relative; }
.nav__toggle span, .nav__toggle::before, .nav__toggle::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--ivory); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav__toggle::before { top: 2px; } .nav__toggle span { top: 11px; } .nav__toggle::after { bottom: 2px; }
.nav__toggle.is-active::before { transform: translateY(9px) rotate(45deg); }
.nav__toggle.is-active::after { transform: translateY(-9px) rotate(-45deg); }
.nav__toggle.is-active span { opacity: 0; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 700px 500px at 82% 30%, rgba(184,137,111,0.18), transparent 60%), var(--ink);
}
.hero__swatches { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); display: grid; gap: 14px; opacity: 0.9; }
.hero__swatches div { width: 92px; height: 92px; border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.hero__inner { position: relative; z-index: 2; max-width: 600px; }
.hero__kicker { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-gold-bright); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero__kicker::before { content: ''; width: 36px; height: 1px; background: var(--rose-gold); }
.hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 6.2vw, 72px); line-height: 1.05; margin: 0 0 24px; letter-spacing: -0.01em; }
.hero h1 em { font-style: italic; color: var(--rose-gold-bright); }
.hero p { color: var(--muted); font-size: 17.5px; max-width: 460px; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 28px; font-size: 14.5px; letter-spacing: 0.01em; border-radius: 30px; transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease; font-weight: 600; }
.btn--primary { background: var(--rose-gold); color: var(--ink); border: 1px solid var(--rose-gold); }
.btn--primary:hover { background: var(--rose-gold-bright); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ivory); }
.btn--ghost:hover { border-color: var(--rose-gold); color: var(--rose-gold-bright); }

.hero__stats { display: flex; gap: 40px; }
.hero__stat strong { display: block; font-family: var(--font-display); font-size: 28px; color: var(--rose-gold-bright); }
.hero__stat span { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__visual { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; position: relative; }
.about__body p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.about__list { margin-top: 26px; display: grid; gap: 13px; }
.about__list li { display: flex; align-items: baseline; gap: 12px; font-size: 14.5px; }
.about__list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--rose-gold); flex-shrink: 0; }

/* ---------- Services ---------- */
.services__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--ink-soft); border: 1px solid var(--line); padding: 34px 28px; border-radius: var(--radius); transition: border-color 0.25s ease, transform 0.25s ease; }
.service-card:hover { border-color: var(--rose-gold); transform: translateY(-4px); }
.service-card__chip { width: 30px; height: 30px; border-radius: 6px; margin-bottom: 18px; }
.service-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin: 0 0 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Why choose us ---------- */
.edge { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.edge__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 26px; }
.edge-item strong { display: block; font-family: var(--font-display); font-size: 30px; color: var(--rose-gold-bright); margin-bottom: 6px; }
.edge-item span { color: var(--muted); font-size: 13.5px; }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 12px; }
.gallery__item { border-radius: var(--radius); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 16px; }
.gallery__item span { font-size: 13px; letter-spacing: 0.04em; color: var(--ivory); position: relative; z-index: 2; font-weight: 600; }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Testimonials ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { background: var(--ink-soft); border: 1px solid var(--line); padding: 32px; border-radius: var(--radius); }
.testimonial-card__stars { color: var(--rose-gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 14px; }
.testimonial-card p { color: var(--ivory); font-size: 14.5px; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; color: var(--ink); background: var(--rose-gold); flex-shrink: 0; }
.testimonial-card__author strong { display: block; font-size: 14px; font-weight: 600; }
.testimonial-card__author span { font-size: 12px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: var(--ink-soft); border: 1px solid var(--line); padding: 40px 32px; border-radius: var(--radius); display: flex; flex-direction: column; }
.price-card--featured { border-color: var(--rose-gold); position: relative; }
.price-card--featured::before { content: 'Most Booked'; position: absolute; top: -13px; left: 32px; background: var(--rose-gold); color: var(--ink); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 14px; border-radius: 20px; }
.price-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; margin: 0 0 6px; }
.price-card__amount { font-family: var(--font-display); font-size: 40px; color: var(--rose-gold-bright); margin: 14px 0; }
.price-card__amount span { font-size: 14px; color: var(--muted); font-family: var(--font-body); }
.price-card ul { display: grid; gap: 12px; margin: 24px 0 32px; flex-grow: 1; }
.price-card ul li { font-size: 14px; color: var(--muted); display: flex; gap: 10px; }
.price-card ul li::before { content: '✓'; color: var(--rose-gold); flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q { width: 100%; text-align: left; background: none; border: none; color: var(--ivory); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 18px; }
.faq-item__q::after { content: '+'; font-size: 22px; color: var(--rose-gold); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.is-open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--muted); font-size: 14.5px; }
.faq-item.is-open .faq-item__a { max-height: 200px; padding-bottom: 22px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact__info { display: grid; gap: 24px; align-content: start; }
.contact__row { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.contact__row strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact__row span, .contact__row a { color: var(--muted); font-size: 14px; }
.contact__row a:hover { color: var(--rose-gold-bright); }
.contact__socials { display: flex; gap: 12px; margin-top: 8px; }
.contact__socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s ease, color 0.2s ease; }
.contact__socials a:hover { border-color: var(--rose-gold); color: var(--rose-gold-bright); }
.contact__map { margin-top: 8px; border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 16/10; overflow: hidden; }
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9) hue-rotate(180deg); }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; letter-spacing: 0.03em; color: var(--muted); margin-bottom: 8px; }
.form-field input, .form-field textarea { width: 100%; background: var(--ink-soft); border: 1px solid var(--line); color: var(--ivory); padding: 13px 14px; font-family: var(--font-body); font-size: 15px; border-radius: var(--radius); transition: border-color 0.2s ease; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--rose-gold); outline: none; }
.form-field input.is-invalid, .form-field textarea.is-invalid { border-color: #c47a7a; }
.form-field [data-error] { display: block; color: #d9a3a3; font-size: 12px; margin-top: 6px; min-height: 16px; }
.form-status { font-size: 14px; margin-top: 4px; min-height: 20px; }
.form-status--success { color: var(--rose-gold-bright); }
.form-status--error { color: #d9a3a3; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-soft); padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer__brand { font-family: var(--font-display); font-size: 22px; margin-bottom: 14px; }
.footer__brand span { color: var(--rose-gold-bright); font-style: italic; }
.footer p { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose-gold-bright); margin: 0 0 16px; font-weight: 700; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { color: var(--muted); font-size: 14px; }
.footer ul a:hover { color: var(--rose-gold-bright); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; color: var(--muted); font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ---------- Floating buttons ---------- */
.float-stack { position: fixed; right: 22px; bottom: 22px; display: grid; gap: 12px; z-index: 90; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.35); transition: transform 0.2s ease; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-btn--whatsapp { background: #25D366; color: #0b2b16; }
.float-btn--call { background: var(--rose-gold); color: var(--ink); }
.back-to-top { opacity: 0; pointer-events: none; background: var(--ink-soft); border: 1px solid var(--line); color: var(--ivory); transition: opacity 0.25s ease, transform 0.2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .edge, .contact { grid-template-columns: 1fr; }
  .services__grid, .testimonials__grid, .pricing__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .edge__grid { grid-template-columns: 1fr 1fr; }
  .hero__swatches { display: none; }
}
@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .nav__menu.is-open { display: flex; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: var(--ink); padding: 40px 24px; gap: 24px; overflow-y: auto; }
  .hero__stats { flex-wrap: wrap; row-gap: 20px; }
  .services__grid, .testimonials__grid, .pricing__grid, .edge__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
