/* ============================================================
   Express Yourself — Design System
   ============================================================ */

:root {
  --navy-900: #0c2340;
  --navy-800: #12304f;
  --navy-700: #1a3f66;
  --navy-600: #24507d;
  --cream: #eef1f7;
  --cream-soft: #f4f6fb;
  --gold: #c6a13a;
  --gold-light: #e3c869;
  --gold-dark: #a9852a;
  --ink: #1c2a3a;
  --ink-soft: #4c5b6d;
  --white: #ffffff;
  --border-soft: rgba(12, 35, 64, 0.12);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(12, 35, 64, 0.14);
  --shadow-soft: 0 10px 30px rgba(12, 35, 64, 0.08);
}

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

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 8% -8%, rgba(198, 161, 58, 0.14), transparent 60%),
    radial-gradient(1100px 650px at 100% 12%, rgba(12, 35, 64, 0.10), transparent 60%),
    radial-gradient(900px 500px at 20% 100%, rgba(12, 35, 64, 0.07), transparent 60%),
    var(--cream-soft);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
section { position: relative; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.12;
  margin: 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.eyebrow.on-dark { color: var(--gold-light); }

.section-head {
  max-width: 680px;
  margin: 0 0 52px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-top: 14px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.italic { font-style: italic; font-weight: 600; color: var(--gold-dark); }
.italic.on-dark { color: var(--gold-light); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(198, 161, 58, 0.35);
}
.btn-gold:hover { box-shadow: 0 16px 36px rgba(198, 161, 58, 0.45); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }

.btn-navy {
  background: var(--navy-900);
  color: var(--cream);
}
.btn-navy:hover { background: var(--navy-700); }

.btn-outline-navy {
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--cream); }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.scrolled {
  background: rgba(244, 246, 251, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
  padding: 12px 0;
}

.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s ease;
}
.site-header.scrolled .logo { color: var(--navy-900); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.3s ease;
  position: relative;
}
.site-header.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold-light); }
.site-header.scrolled .nav-links a:hover { color: var(--gold-dark); }

.nav-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.site-header.scrolled .nav-ig { border-color: var(--navy-900); color: var(--navy-900); }
.nav-ig svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

.nav-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--navy-900); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-open .nav-toggle span { background: var(--navy-900) !important; }

@media (max-width: 1150px) and (min-width: 901px) {
  .nav-ig span { display: none; }
  .nav-ig { padding: 8px; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links a { color: var(--navy-900) !important; font-size: 1.3rem; font-family: var(--serif); }
  .nav-ig { border-color: var(--navy-900) !important; color: var(--navy-900) !important; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,35,64,0.55) 0%, rgba(12,35,64,0.45) 40%, rgba(12,35,64,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 90px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.hero p.lede {
  margin-top: 22px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
}

.hero-ctas {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div { font-size: 0.86rem; color: rgba(255,255,255,0.78); }
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   Why it matters
   ============================================================ */

.matters {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(198, 161, 58, 0.10), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(12, 35, 64, 0.06), transparent 60%),
    var(--cream-soft);
  padding: 110px 0;
}

.matters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.matters-list { display: flex; flex-direction: column; gap: 20px; }

.matters-item {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.matters-item .mark {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
}

.matters-item p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 900px) {
  .matters-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Ways to work together (cards)
   ============================================================ */

.ways {
  background: var(--navy-900);
  padding: 110px 0;
  color: var(--white);
}

.ways .section-head h2 { color: var(--white); }
.ways .section-head p { color: rgba(255,255,255,0.72); }

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.way-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.way-card:hover { transform: translateY(-6px); border-color: rgba(230,197,105,0.4); }

.way-card.featured {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border-color: rgba(230,197,105,0.5);
}

.way-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.way-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.way-card p.desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0 0 20px; flex-grow: 1; }

.way-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.way-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.way-list li svg { flex-shrink: 0; margin-top: 3px; width: 14px; height: 14px; fill: var(--gold-light); }

@media (max-width: 980px) {
  .ways-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Gallery
   ============================================================ */

.gallery {
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(12, 35, 64, 0.07), transparent 60%),
    radial-gradient(800px 450px at 100% 100%, rgba(198, 161, 58, 0.09), transparent 60%),
    var(--cream-soft);
  padding: 110px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  grid-template-areas:
    "a a b c"
    "a a d d";
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(12,35,64,0.85), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

.gallery-item.ga { grid-area: a; }
.gallery-item.gb { grid-area: b; }
.gallery-item.gc { grid-area: c; }
.gallery-item.gd { grid-area: d; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 210px;
    grid-template-areas: none;
  }
  .gallery-item.ga, .gallery-item.gb, .gallery-item.gc, .gallery-item.gd {
    grid-area: auto;
  }
  .gallery-item.ga { grid-column: span 2; grid-row: span 1; }
}

/* ============================================================
   Testimonials
   ============================================================ */

.testimonials { padding: 110px 0; background: var(--navy-900); color: var(--white); overflow: hidden; }
.testimonials .section-head h2 { color: var(--white); }
.testimonials .section-head p { color: rgba(255,255,255,0.72); }

.t-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.t-track::-webkit-scrollbar { display: none; }

.t-card {
  scroll-snap-align: start;
  flex: 0 0 min(400px, 82vw);
  border-radius: var(--radius);
  padding: 38px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.t-card.navy { background: var(--navy-800); }
.t-card.cream { background: var(--cream); color: var(--ink); }
.t-card.gold { background: linear-gradient(150deg, var(--gold-light), var(--gold)); color: var(--navy-900); }

.t-quote-mark { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--gold-light); margin-bottom: 6px; }
.t-card.cream .t-quote-mark, .t-card.gold .t-quote-mark { color: var(--navy-700); }

.t-card p.quote {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.42;
  flex-grow: 1;
  margin: 0 0 22px;
}

.t-name { font-weight: 700; }
.t-role { font-size: 0.85rem; opacity: 0.72; }

.t-controls { display: flex; gap: 12px; margin-top: 34px; justify-content: center; }
.t-controls button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.t-controls button:hover { background: rgba(255,255,255,0.12); }
.t-controls svg { width: 16px; height: 16px; fill: var(--white); }

/* ============================================================
   About / Meet Kaya
   ============================================================ */

.about {
  padding: 110px 0;
  background:
    radial-gradient(1000px 550px at 100% 0%, rgba(198, 161, 58, 0.11), transparent 60%),
    radial-gradient(800px 450px at 0% 100%, rgba(12, 35, 64, 0.07), transparent 60%),
    var(--cream-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 78% center; }

.about-copy p { color: var(--ink-soft); font-size: 1.05rem; margin: 18px 0; }

.credentials {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.credential {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}
.credential .ico { font-size: 1.3rem; line-height: 1; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr; }
}

/* ============================================================
   Book
   ============================================================ */

.book {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}

.book-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 64px;
  align-items: center;
}

.book-cover {
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: rotate(-3deg);
  max-width: 320px;
  margin: 0 auto;
}

.book-copy h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-top: 10px; }
.book-copy .subtitle { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-light); margin-top: 10px; }
.book-copy p.desc { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin: 20px 0 30px; max-width: 520px; }

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; text-align: center; }
  .book-copy p.desc { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   Instagram banner
   ============================================================ */

.ig-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  text-align: center;
}
.ig-banner h2 { color: var(--white); font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-top: 10px; }
.ig-banner p.sub { color: rgba(255,255,255,0.75); margin: 16px auto 30px; max-width: 480px; font-size: 1.05rem; }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 110px 0;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(12, 35, 64, 0.07), transparent 60%),
    radial-gradient(800px 450px at 100% 100%, rgba(198, 161, 58, 0.10), transparent 60%),
    var(--cream-soft);
}

.faq-list { max-width: 780px; }

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 8px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-900);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  margin-left: 20px;
}
.faq-item[open] .plus { transform: rotate(45deg); background: var(--navy-900); color: var(--gold-light); }

.faq-item .a {
  padding: 0 4px 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 680px;
}

.faq-contact {
  margin-top: 40px;
  padding: 26px 30px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-contact p { margin: 0; font-family: var(--serif); font-size: 1.2rem; }

/* ============================================================
   Final CTA
   ============================================================ */

.final-cta {
  padding: 110px 0 130px;
  text-align: center;
  background:
    radial-gradient(1000px 550px at 50% 0%, rgba(198, 161, 58, 0.12), transparent 65%),
    var(--cream);
}
.final-cta .section-head { margin-left: auto; margin-right: auto; }

.final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo { color: var(--white); font-size: 1.5rem; }
.footer-brand p { max-width: 320px; margin-top: 14px; font-size: 0.92rem; }

.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-family: var(--sans); font-weight: 700; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 0.9rem; margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  font-size: 0.82rem;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.85); }

/* ============================================================
   Utility / reveal animation
   ============================================================ */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .matters, .ways, .gallery, .testimonials, .about, .book, .faq, .final-cta { padding: 72px 0; }
  .hero-content { padding-top: 130px; padding-bottom: 60px; }
  .hero-badge { font-size: 0.76rem; padding: 8px 14px; }
}
