/* ============================================================
   GLOW TALENT MEDIA CO — Design System
   Edit colors, fonts, and spacing here in one place.
   ============================================================ */

:root {
  /* Brand palette — tweak these hex codes to restyle the whole site */
  --cream:      #FBF7F1;   /* page background */
  --cream-2:    #F3EAdf;   /* soft cards */
  --ink:        #2A211E;   /* main text (espresso) */
  --ink-soft:   #6B5D57;   /* muted text */
  --plum:       #5A2A43;   /* deep accent */
  --gold:       #C9A24B;   /* champagne gold */
  --gold-soft:  #E7D2A0;
  --blush:      #E8C9C1;
  --white:      #FFFFFF;
  --line:       #E9DFD4;

  --grad-glow:  linear-gradient(120deg, #E8C9C1 0%, #C9A24B 100%);
  --grad-warm:  linear-gradient(160deg, #FBF7F1 0%, #F3E7DA 100%);

  --shadow-sm:  0 2px 10px rgba(90, 42, 67, 0.06);
  --shadow-md:  0 12px 40px rgba(90, 42, 67, 0.10);
  --shadow-lg:  0 24px 70px rgba(90, 42, 67, 0.14);

  --radius:     18px;
  --radius-lg:  28px;
  --maxw:       1160px;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Poppins", -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.muted { color: var(--ink-soft); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: transform .18s ease, box-shadow .18s ease;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-glow { background: var(--grad-glow); color: var(--ink); }
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,162,75,.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px); background: rgba(251,247,241,0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: .01em; }
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 820px){ .nav-links a:not(.btn){ display:none; } }

/* ---------- Hero ---------- */
.hero { background: var(--grad-warm); padding: 84px 0 76px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); }
.hero h1 em { font-style: italic; color: var(--plum); }
.hero p.lead { font-size: 19px; color: var(--ink-soft); margin: 22px 0 30px; max-width: 30em; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); background: var(--grad-glow);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  display:flex; align-items:flex-end; padding: 26px;
}
.hero-visual .tag {
  background: rgba(255,255,255,.9); border-radius: 14px; padding: 12px 16px;
  font-size: 13px; font-weight: 600; box-shadow: var(--shadow-sm);
}
@media (max-width: 860px){ .hero-grid{ grid-template-columns:1fr; gap:36px; } }

/* ---------- Audience toggle (benefit-first) ---------- */
.audience { padding: 78px 0; }
.seg {
  display: inline-flex; background: var(--white); border:1px solid var(--line);
  border-radius: 100px; padding: 6px; gap: 4px; box-shadow: var(--shadow-sm);
}
.seg button {
  border: none; background: transparent; padding: 11px 22px; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: 14px; cursor: pointer; color: var(--ink-soft);
  transition: all .18s;
}
.seg button.active { background: var(--ink); color: var(--white); }
.benefit-panel { display: none; margin-top: 40px; }
.benefit-panel.active { display: block; animation: fade .35s ease; }
@keyframes fade { from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:none;} }
.benefit-head { max-width: 34em; margin: 0 auto 34px; }
.benefit-head h2 { font-size: clamp(28px,3.6vw,40px); }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-glow);
  display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 820px){ .cards{ grid-template-columns:1fr; } }

/* ---------- Section headers ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--grad-warm); }
.sec-head { max-width: 36em; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(28px,3.8vw,44px); }
.sec-head p { color: var(--ink-soft); font-size: 17px; margin-top: 14px; }

/* ---------- Featured creator ---------- */
.creator-feature { display:grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items:center; }
.creator-photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: var(--grad-glow);
  box-shadow: var(--shadow-lg); }
.stat-row { display:flex; gap: 30px; margin: 26px 0; flex-wrap: wrap; }
.stat b { font-family: var(--serif); font-size: 30px; display:block; color: var(--plum); }
.stat span { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 820px){ .creator-feature{ grid-template-columns:1fr; } }

/* ---------- Events strip ---------- */
.event-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.event-card { border-radius: var(--radius); overflow:hidden; background: var(--white);
  border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.event-card .thumb { aspect-ratio: 3/2; background: var(--grad-glow); }
.event-card .body { padding: 20px; }
.event-card h3 { font-size: 19px; }
@media (max-width: 820px){ .event-grid{ grid-template-columns:1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--white); border-radius: var(--radius-lg);
  padding: 56px; text-align:center; box-shadow: var(--shadow-lg); }
.cta-band h2 { font-size: clamp(26px,3.4vw,38px); color: var(--white); }
.cta-band p { color: #E7D9CF; margin: 14px auto 26px; max-width: 34em; }

/* ---------- Footer ---------- */
footer { padding: 52px 0 40px; border-top: 1px solid var(--line); margin-top: 40px; }
.foot-grid { display:flex; justify-content:space-between; gap: 24px; flex-wrap:wrap; align-items:center; }
footer small { color: var(--ink-soft); }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.p-hero { background: var(--grad-warm); padding: 56px 0 40px; }
.p-hero-grid { display:grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items:center; }
.p-avatar { aspect-ratio: 1/1; border-radius: 24px; background: var(--grad-glow); box-shadow: var(--shadow-lg); }
.p-hero h1 { font-size: clamp(34px,5vw,56px); }
.badge { display:inline-flex; align-items:center; gap:6px; background: var(--white);
  border:1px solid var(--line); border-radius: 100px; padding: 6px 14px; font-size:13px; font-weight:600;
  box-shadow: var(--shadow-sm); }
.socials { display:flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.social-pill { display:flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--line);
  border-radius: 100px; padding: 10px 16px; font-size:14px; font-weight:600; box-shadow: var(--shadow-sm);
  transition: transform .15s; }
.social-pill:hover { transform: translateY(-2px); }
.social-pill b { color: var(--plum); }
@media (max-width: 820px){ .p-hero-grid{ grid-template-columns:1fr; } }

/* insights */
.insights { display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.insight { background:var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); }
.insight b { font-family:var(--serif); font-size: 32px; color: var(--plum); display:block; }
.insight span { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 820px){ .insights{ grid-template-columns:repeat(2,1fr); } }

/* creative gallery */
.gallery { display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery .shot { aspect-ratio: 3/4; border-radius: var(--radius); background: var(--grad-glow);
  box-shadow: var(--shadow-sm); position: relative; overflow:hidden; }
.gallery .shot span { position:absolute; bottom:12px; left:12px; background: rgba(255,255,255,.9);
  border-radius: 8px; padding: 5px 10px; font-size:12px; font-weight:600; }
@media (max-width: 820px){ .gallery{ grid-template-columns:repeat(2,1fr); } }

/* media inside tiles */
.p-avatar img, .p-avatar video, .creator-photo img, .creator-photo video,
.gallery .shot img, .gallery .shot video, .hero-visual img { width:100%; height:100%; object-fit:cover; display:block; }
.gallery .shot { display:block; }

/* rate card */
.ratecard { background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding: 10px 30px; box-shadow: var(--shadow-sm); max-width: 620px; }
.rate-row { display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding: 16px 0; border-bottom:1px dashed var(--line); }
.rate-row:last-child { border-bottom:none; }
.rate-row .name { font-weight:500; }
.rate-row .amt { font-family:var(--serif); font-size:22px; color:var(--plum); white-space:nowrap; }
.pillrow { display:flex; flex-wrap:wrap; gap:10px; }
.pill { background:var(--white); border:1px solid var(--line); border-radius:100px; padding:9px 18px;
  font-size:14px; font-weight:500; box-shadow:var(--shadow-sm); }
.pill.gold { background:#FCF6E9; border-color:var(--gold-soft); }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
@media (max-width:820px){ .two-col{ grid-template-columns:1fr; } }
.cur-note { font-size:13px; color:var(--ink-soft); margin-top:10px; }

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.event-feature { display:grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items:center; }
.event-flyer { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); border:1px solid var(--line); }
.event-flyer img { width:100%; display:block; }
.detail-chips { display:grid; grid-template-columns: repeat(2,1fr); gap:14px; margin:24px 0; }
.dchip { background:var(--white); border:1px solid var(--line); border-radius:14px; padding:16px 18px; box-shadow:var(--shadow-sm); }
.dchip .k { font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); font-weight:600; }
.dchip .v { font-family:var(--serif); font-size:19px; margin-top:4px; }
@media (max-width:820px){ .event-feature{ grid-template-columns:1fr; } .detail-chips{ grid-template-columns:1fr; } }

.gallery.four { grid-template-columns: repeat(4,1fr); }
.gallery.four .shot { aspect-ratio:1/1; display:grid; place-items:center; }
.gallery.four .shot span { position:static; background:transparent; color:var(--ink-soft); font-size:13px; text-align:center; padding:0 10px; }
@media (max-width:820px){ .gallery.four{ grid-template-columns:repeat(2,1fr); } }

.gallery.wide { grid-template-columns: repeat(3,1fr); }
.gallery.wide .shot { aspect-ratio: 3/2; }
@media (max-width:820px){ .gallery.wide{ grid-template-columns:repeat(2,1fr); } }

.form-note { font-size:13px; color:var(--ink-soft); margin-top:14px; text-align:center; }
select.fld { width:100%; border:1.5px solid var(--line); border-radius:12px; padding:13px 15px; font-family:var(--sans); font-size:14px; background:var(--white); }
select.fld:focus { outline:none; border-color:var(--gold); }

/* collab logos */
.collabs { display:flex; flex-wrap:wrap; gap: 14px; }
.collab { background:var(--white); border:1px solid var(--line); border-radius: 14px;
  padding: 16px 24px; font-family:var(--serif); font-size:20px; box-shadow: var(--shadow-sm); }

/* ---------- Booking configurator ---------- */
.book-grid { display:grid; grid-template-columns: 1.4fr .9fr; gap: 34px; align-items:start; }
.book-form { background:var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 26px; }
.field > label.q { font-weight:600; font-size: 15px; display:block; margin-bottom: 12px; }
.opts { display:grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.opts.three { grid-template-columns: repeat(3,1fr); }
.opt { position: relative; }
.opt input { position:absolute; opacity:0; inset:0; cursor:pointer; }
.opt label { display:flex; flex-direction:column; gap:2px; border:1.5px solid var(--line);
  border-radius: 12px; padding: 13px 15px; cursor:pointer; transition: all .15s; font-size:14px; }
.opt label .price { font-size:12px; color: var(--ink-soft); font-weight:600; }
.opt input:checked + label { border-color: var(--gold); background: #FCF6E9; box-shadow: 0 0 0 3px rgba(201,162,75,.12); }
.field textarea, .field input[type=text] { width:100%; border:1.5px solid var(--line); border-radius:12px;
  padding: 13px 15px; font-family:var(--sans); font-size:14px; resize: vertical; }
.field textarea:focus, .field input[type=text]:focus { outline:none; border-color: var(--gold); }
.hint { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.preedit { display:none; margin-top: 14px; padding: 18px; background: var(--cream); border-radius: 14px; }
.preedit.show { display:block; }

/* summary rail */
.summary { position: sticky; top: 92px; background: var(--ink); color:var(--white);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.summary h3 { color:var(--white); font-size: 22px; margin-bottom: 4px; }
.summary .sub { color:#D9C9BE; font-size:13px; margin-bottom: 20px; }
.line { display:flex; justify-content:space-between; font-size:14px; padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.12); color:#EAD9CE; }
.line.total { border-bottom:none; padding-top:16px; font-size:20px; font-weight:700; color:var(--white);
  font-family:var(--serif); }
.line.total span:last-child { color: var(--gold-soft); }
.summary .deposit { font-size:13px; color:#D9C9BE; margin: 6px 0 18px; }
.summary .btn { width:100%; justify-content:center; }
.trust { display:flex; align-items:center; gap:8px; font-size:12px; color:#C9B8AD; margin-top:14px; justify-content:center; }

@media (max-width: 900px){ .book-grid{ grid-template-columns:1fr; } .summary{ position:static; } .opts{ grid-template-columns:1fr; } .opts.three{ grid-template-columns:1fr; } }
