/* ============================================================
   RADIANCE REJUVENATION — STYLES
   EDIT BRAND COLORS HERE (these variables flow through the whole site)
   ============================================================ */
:root {
  --gold:        #5b2a86;   /* primary accent (brand purple) */
  --gold-dark:   #43205f;   /* deeper purple */
  --lavender:    #b9a3d6;   /* lavender accent */
  --blush:       #f4eefa;   /* soft section background */
  --cream:       #fbf9fd;   /* page background */
  --ink:         #2e2538;   /* main text (plum-tinted charcoal) */
  --ink-soft:    #6a6175;   /* secondary text */
  --white:       #ffffff;
  --shadow:      0 12px 40px rgba(67, 32, 95, 0.12);
  --radius:      14px;
  --maxw:        1180px;
  --serif:       "Cormorant Garamond", Georgia, serif;
  --sans:        "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

/* ---------- Pre-launch password gate ---------- */
#rr-gate { position: fixed; inset: 0; z-index: 2147483647; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: linear-gradient(135deg, #43205f, #2e2538); color: #fff;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif; }
#rr-gate .rr-gate-box { max-width: 420px; width: 100%; text-align: center; }
#rr-gate h1 { font-family: "Cormorant Garamond", Georgia, serif; color: #fff; font-size: 2.2rem; margin-bottom: 0.6rem; }
#rr-gate p { color: #e0d2f0; margin-bottom: 1.2rem; font-weight: 300; }
#rr-gate input { width: 100%; padding: 0.9rem 1rem; border-radius: 8px; border: none; font-size: 1rem; margin-bottom: 0.8rem; }
#rr-gate button { background: #b9a3d6; color: #2e2538; border: none; border-radius: 40px; padding: 0.8rem 2.2rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
#rr-gate button:hover { background: #cdb6e8; }
#rr-gate #rr-gate-err { color: #ffd2d2; min-height: 1.2em; margin: 0.6rem 0 0; font-size: 0.9rem; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.95rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
  border: 1px solid var(--gold);
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-small { padding: 0.6rem 1.3rem; font-size: 0.72rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(185, 150, 107, 0.18);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-mark { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold); letter-spacing: 0.01em; }
.brand-sub { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.brand-mark.light { color: var(--white); }
.brand-sub.light { color: var(--lavender); }
.brand-logo { height: 64px; width: auto; display: block; }
.footer-logo { height: 104px; width: auto; margin-bottom: 0.6rem; }
@media (max-width: 720px) { .brand-logo { height: 50px; } }

.nav-links { list-style: none; display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { text-decoration: none; color: var(--ink); font-size: 0.86rem; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { color: var(--white); }
.nav-links .btn:hover { color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(43,18,66,0.74), rgba(67,32,95,0.38)); }
.hero-content { position: relative; color: var(--white); max-width: 720px; }
.hero-content .eyebrow { color: var(--lavender); }
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-lead { font-size: 1.15rem; font-weight: 300; max-width: 540px; margin-bottom: 2rem; color: #f1ebf7; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-tag { margin-top: 1.6rem; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--lavender); }

/* ---------- Strip ---------- */
.strip { background: var(--ink); color: var(--white); padding: 2.4rem 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.strip-num { display: block; font-family: var(--serif); font-size: 2.3rem; color: var(--gold); }
.strip-label { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: #cfc6bd; }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section-alt { background: var(--blush); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-intro { color: var(--ink-soft); margin-top: 0.8rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(58,50,44,0.16); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.6rem 1.6rem 1.8rem; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.link-arrow { color: var(--gold); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.link-arrow:hover { color: var(--gold-dark); }
.services-note { text-align: center; max-width: 760px; margin: 2.6rem auto 0; color: var(--ink-soft); font-size: 0.96rem; }
.services-note a { color: var(--gold); text-decoration: none; font-weight: 500; }
.services-note a:hover { color: var(--gold-dark); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; max-height: 560px; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.about-text .btn { margin-top: 0.6rem; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.feature { text-align: center; padding: 2rem 1.2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 0.8rem; }
.feature h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 860px; margin: 0 auto; }
.team-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; text-align: center; transition: transform 0.3s ease; }
.team-card:hover { transform: translateY(-6px); }
.team-card img { width: 100%; height: 360px; object-fit: cover; object-position: top center; }
.team-body { padding: 1.6rem 1.6rem 2rem; }
.team-body h3 { margin-bottom: 0.2rem; }
.team-role { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.8rem; }
.team-bio { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 720px) { .team { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; transition: transform 0.4s ease; }
.gallery img:hover { transform: scale(1.04); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.quote { background: var(--white); padding: 2.2rem; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.quote p { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--ink); margin-bottom: 1rem; }
.quote cite { font-style: normal; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.06em; }

/* ---------- Booking ---------- */
.section-book { background: var(--blush); }
.booking-embed { max-width: 900px; margin: 0 auto; }
.booking-embed iframe { width: 100%; min-height: 720px; border: none; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.booking-placeholder {
  background: var(--white); border: 2px dashed var(--gold);
  border-radius: var(--radius); padding: 3.5rem 2rem; text-align: center;
  color: var(--ink-soft);
}
.booking-placeholder p { margin-bottom: 0.6rem; }
.booking-placeholder code { background: var(--blush); padding: 2px 6px; border-radius: 4px; font-size: 0.85em; color: var(--gold-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d8cfc6; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding: 4rem 0 3rem; }
.footer-about { margin-top: 1rem; font-size: 0.92rem; max-width: 280px; }
.site-footer h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 1rem; }
.site-footer a { color: #d8cfc6; text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--gold); }
.site-footer .btn { color: var(--white); margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.4rem 0; font-size: 0.8rem; color: #9a9089; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards, .features { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); padding: 1rem 6%;
    border-bottom: 1px solid rgba(185,150,107,0.18);
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 460px; }
  .nav-links li { width: 100%; padding: 0.6rem 0; }
  .nav-links .btn { margin-top: 0.4rem; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .cards, .features, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .section { padding: 4rem 0; }
}
