/* ============================================================
   Youniquerise — Teal + Warm Gold + Soft Ivory
   ============================================================ */

:root {
  --violet: #0f766e;        /* primary — teal */
  --violet-dark: #0a5852;   /* deep teal */
  --magenta: #c8963e;       /* accent — warm gold */
  --coral: #d9a441;         /* soft gold */
  --amber: #e6c169;         /* light gold */
  --ink: #14322e;           /* deep teal ink */
  --ink-soft: #4a635f;      /* muted teal-grey */
  --paper: #fffdf7;         /* soft ivory */
  --mist: #f5f1e6;          /* warm ivory mist */
  --mist-2: #e5efec;        /* soft teal-ivory tint */
  --line: #d6e2df;          /* subtle teal border */

  --grad-hero: linear-gradient(120deg, #0a5852 0%, #0f766e 55%, #159f8f 100%);
  --grad-accent: linear-gradient(90deg, #c8963e, #e6c169);
  --grad-warm: linear-gradient(90deg, #e6c169, #d9a441);

  /* warm gold texture used on tiles/cards */
  --tex-gold:
    linear-gradient(135deg, rgba(230, 193, 105, 0.16) 0%, rgba(200, 150, 62, 0.06) 100%),
    repeating-linear-gradient(45deg, rgba(200, 150, 62, 0.05) 0, rgba(200, 150, 62, 0.05) 1px, transparent 1px, transparent 9px);

  --shadow-sm: 0 4px 14px rgba(15, 118, 110, 0.10);
  --shadow-md: 0 14px 40px rgba(15, 118, 110, 0.15);
  --shadow-lg: 0 26px 60px rgba(15, 118, 110, 0.20);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1160px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); }

.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}

.section { padding: 90px 0; }
.section--mist { background: var(--mist); }
.section--tint {
  background: linear-gradient(180deg, var(--mist-2), var(--mist));
}
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--grad-accent);
  color: #3a2a08;
  box-shadow: 0 12px 26px rgba(200, 150, 62, 0.32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(200, 150, 62, 0.42); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.24); transform: translateY(-3px); }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline {
  border-color: var(--violet);
  color: var(--violet);
  background: #fff;
}
.btn--outline:hover { background: var(--violet); color: #fff; transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 68px; height: 68px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__mark-letter { display: none; font-size: 2rem; }
.brand__mark--text {
  border-radius: 16px;
  background: var(--grad-hero);
  box-shadow: var(--shadow-sm);
}
.brand__mark--text .brand__mark-letter { display: block; }
.brand__name span { color: var(--magenta); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--violet); background: var(--mist-2); }
.nav__links a.active { color: var(--violet); background: var(--mist-2); }
.nav__links .btn { color: #3a2a08; }
.nav__links .btn.active { background: var(--grad-accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.35;
}
.hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #e6c169, transparent 60%);
  top: -120px; right: -80px;
}
.hero::after {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #0f766e, transparent 60%);
  bottom: -140px; left: -60px;
}
.hero .container { position: relative; z-index: 2; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 { margin-bottom: 18px; }
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual card */
.hero__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero__visual-img--logo {
  object-fit: contain;
  padding: 12%;
  background: rgba(255, 255, 255, 0.9);
}
.hero__visual-inner {
  text-align: center;
  padding: 30px;
}
.hero__visual-inner .big {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
}
.hero__visual-inner .small {
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.9;
}
.hero__note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* Wave divider */
.wave {
  display: block;
  width: 100%;
  margin-top: -1px;
  line-height: 0;
}
.wave svg { display: block; width: 100%; height: 60px; }

/* ---------- Feature cards ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  position: relative;
  background: var(--tex-gold), #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--grad-hero);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  background: var(--grad-accent);
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Intro / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--mist-2);
  color: var(--violet-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--line);
}
.media-card {
  border-radius: var(--radius-lg);
  background: var(--grad-hero);
  color: #fff;
  padding: 42px;
  box-shadow: var(--shadow-md);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.media-card .quote { font-size: 1.3rem; font-weight: 600; }

/* ---------- Focus areas grid ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.focus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--tex-gold), #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--violet);
  border-radius: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s;
}
.focus-item:hover { transform: translateY(-4px); border-color: var(--magenta); }
.focus-item .dot {
  flex: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad-accent);
}

/* ---------- Program cards ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.program {
  background: var(--tex-gold), #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.program::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--grad-hero);
}
.program:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program__emoji { font-size: 2rem; margin-bottom: 14px; }
.program h3 { margin-bottom: 6px; }
.program__tag {
  display: inline-block;
  font-weight: 600;
  color: var(--magenta);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.program p { color: var(--ink-soft); margin-bottom: 16px; }
.check-list { display: grid; gap: 10px; margin-bottom: 18px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "✓";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mist-2);
  color: var(--violet);
  font-weight: 800;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
  margin-top: 3px;
}
.program__result {
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--mist);
  border: 1px dashed var(--line);
  font-weight: 600;
  color: var(--violet-dark);
}

/* ---------- Method (A-B-C) ---------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.method-step {
  background: var(--tex-gold), #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--violet);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.method-step__letter {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.method-step h3 { margin-bottom: 10px; }
.method-step p { color: var(--ink-soft); margin-bottom: 14px; }

/* ---------- Coach / profile ---------- */
.coach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.coach__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: var(--grad-hero);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.coach__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach__fallback { display: grid; place-items: center; }
.coach__photo .initials {
  font-size: 4rem;
  font-weight: 800;
}
.coach__role {
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 16px;
}
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.badge {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--mist-2);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet-dark);
}

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.mv-card--mission { background: linear-gradient(140deg, var(--violet), var(--magenta)); }
.mv-card--vision { background: linear-gradient(140deg, var(--coral), var(--amber)); }
.mv-card h3 { font-size: 1.6rem; margin-bottom: 12px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--grad-hero);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { max-width: 600px; margin: 0 auto 26px; opacity: 0.95; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: grid; gap: 18px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--tex-gold), #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--violet);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.contact-item .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-accent);
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex: none;
}
.contact-item h4 { margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--ink-soft); }
.contact-item a:hover { color: var(--violet); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--mist);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #e9fbf0;
  border: 1px solid #b7ecca;
  color: #1a7f47;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 70px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 193, 105, 0.45), transparent 60%);
  top: -140px; right: -80px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero p { max-width: 640px; margin: 16px auto 0; color: rgba(255,255,255,0.92); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer p { font-size: 0.95rem; }
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}
.social { display: flex; gap: 12px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.social a:hover { background: var(--grad-accent); transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin-inline: auto; aspect-ratio: 16/10; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .split, .coach, .contact-grid, .mv-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .focus-grid, .method-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav { height: 78px; }
  .brand { font-size: 1.4rem; gap: 12px; }
  .brand__mark { width: 52px; height: 52px; }
  .nav__links {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 18px 24px 26px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 16px; }
  .nav__toggle { display: flex; }
  .features, .focus-grid, .method-grid, .footer-grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .cta-banner, .form-card, .media-card { padding: 34px 24px; }
  .footer-bottom { flex-direction: column; }
}
