/* ===========================================================
   Bulut Tenis Akademisi — Concept Site
   Northlio Studio
   =========================================================== */

:root{
  --navy: #0F1D17;
  --navy-2: #16271F;
  --navy-3: #1D3327;
  --cream: #F4F0E3;
  --cream-2: #EBE4D0;
  --lime: #C6DC3E;
  --lime-dim: #9AAE33;
  --ink: #12201A;
  --ink-soft: #4A5850;
  --line-dark: rgba(244,240,227,0.16);
  --line-light: rgba(18,32,26,0.14);
  --shadow: 0 20px 50px -25px rgba(0,0,0,0.45);

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1220px;
  --pad: clamp(20px, 5vw, 64px);
  --radius-s: 4px;
  --radius-m: 10px;
}

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

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight:700; letter-spacing: 0.01em; }
p{ margin:0; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---- Court-line signature rule ---- */
.court-rule{
  display:flex;
  flex-direction:column;
  gap:3px;
  width: 46px;
}
.court-rule span{ display:block; height:2px; background: currentColor; }
.court-rule span:last-child{ width: 60%; }

.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight:600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 18px;
}
.eyebrow .court-rule{ color: var(--lime-dim); }
.on-dark .eyebrow{ color: var(--lime); }
.on-dark .eyebrow .court-rule{ color: var(--lime); }

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight:600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--lime);
  color: var(--navy);
}
.btn-primary:hover{ background: #d6ec5a; }
.btn-ghost-dark{
  background: transparent;
  border-color: var(--line-dark);
  color: var(--cream);
}
.btn-ghost-dark:hover{ border-color: var(--lime); color: var(--lime); }
.btn-ghost-light{
  background: transparent;
  border-color: var(--line-light);
  color: var(--ink);
}
.btn-ghost-light:hover{ border-color: var(--navy); }
.btn-outline-navy{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover{ background: var(--navy); color: var(--cream); }
.btn-sm{ padding: 11px 18px; font-size: 13px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:0.4; cursor:not-allowed; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.site-header.is-scrolled{
  background: rgba(15,29,23,0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}

.brand{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  display:flex;
  align-items:baseline;
  gap: 8px;
}
.brand .dot{ color: var(--lime); }

.main-nav{ display:none; }
.main-nav ul{ display:flex; align-items:center; gap: 34px; }
.main-nav a{
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position:relative;
  padding: 4px 0;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:0;
  height:1px; background: var(--lime);
  transition: right 0.3s ease;
}
.main-nav a:hover::after{ right:0; }

.header-cta{ display:none; }

.menu-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width: 40px; height: 40px;
  background:transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-s);
  align-items:center;
  cursor:pointer;
}
.menu-toggle span{ display:block; width:18px; height:1.5px; background: var(--cream); transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-toggle.is-open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity:0; }
.menu-toggle.is-open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav{
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 490;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 100px var(--pad) 60px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.65,0,.35,1);
}
.mobile-nav.is-open{ transform: translateY(0); }
.mobile-nav ul{ display:flex; flex-direction:column; gap: 6px; margin-bottom: 40px; }
.mobile-nav a{
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight:700;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  display:block;
}
.mobile-nav .btn{ width:100%; }

@media (min-width: 900px){
  .main-nav{ display:block; }
  .header-cta{ display:inline-flex; }
  .menu-toggle{ display:none; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex;
  align-items:flex-end;
  color: var(--cream);
  overflow:hidden;
  background: var(--navy);
}
.hero-media{
  position:absolute; inset:0;
  z-index:0;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  object-position: center 30%;
  filter: saturate(0.92);
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(15,29,23,0.55) 0%, rgba(15,29,23,0.35) 32%, rgba(15,29,23,0.88) 88%, rgba(15,29,23,0.98) 100%);
}
.hero-content{
  position:relative; z-index:2;
  width:100%;
  padding-top: 160px;
  padding-bottom: 56px;
}
.hero-eyebrow{
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 22px;
}
.hero h1{
  font-size: clamp(44px, 11vw, 108px);
  line-height: 0.94;
  color: var(--cream);
  margin-bottom: 26px;
  max-width: 15ch;
}
.hero-sub{
  font-size: clamp(16px, 2.4vw, 19px);
  color: rgba(244,240,227,0.82);
  max-width: 46ch;
  margin-bottom: 34px;
  font-weight: 400;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap: 14px; margin-bottom: 40px; }
.hero-tags{
  display:flex; flex-wrap:wrap; gap: 10px 22px;
  font-size: 13px;
  color: rgba(244,240,227,0.65);
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.hero-tags span::after{ content:"—"; margin-left:22px; color: var(--lime-dim); }
.hero-tags span:last-child::after{ content:""; margin-left:0; }

/* ===========================================================
   SECTION SCAFFOLDING
   =========================================================== */
section{ position:relative; }
.section{ padding: 96px 0; }
.section-tight{ padding: 72px 0; }
.on-dark{ background: var(--navy); color: var(--cream); }
.on-cream2{ background: var(--cream-2); }

.section-head{ max-width: 640px; margin-bottom: 52px; }
.section-head h2{
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
  color: inherit;
}
.section-head p{
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
}
.on-dark .section-head p{ color: rgba(244,240,227,0.72); }

.reveal{ opacity:1; transform:none; }
.js-ready .reveal{ opacity:0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.js-ready .reveal.is-visible{ opacity:1; transform:none; }

/* ===========================================================
   INTRO
   =========================================================== */
.intro-grid{
  display:grid;
  gap: 40px;
}
.intro-lead{
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
}
.intro-lead strong{ color: var(--navy); font-weight:700; }
.intro-paths{
  display:grid;
  gap: 18px;
  margin-top: 8px;
}
.intro-path{
  display:flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-light);
}
.intro-path .num{
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--lime-dim);
  min-width: 26px;
}
.intro-path h4{ font-size: 16px; font-weight:700; margin-bottom:4px; }
.intro-path p{ font-size: 14.5px; color: var(--ink-soft); line-height:1.5; }

@media (min-width: 860px){
  .intro-grid{ grid-template-columns: 1.05fr 0.95fr; align-items:start; }
}

/* ===========================================================
   PROGRAM CARDS
   =========================================================== */
.program-grid{
  display:grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.program-card{
  position:relative;
  border-radius: var(--radius-m);
  overflow:hidden;
  background: var(--navy);
  min-height: 360px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  isolation:isolate;
}
.program-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  z-index:-2;
}
.program-card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,29,23,0.05) 0%, rgba(15,29,23,0.92) 100%);
  z-index:-1;
}
.program-card:hover img{ transform: scale(1.06); }
.program-card-body{ padding: 26px; color: var(--cream); }
.program-tag{
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight:600;
  margin-bottom: 10px;
  display:block;
}
.program-card h3{ font-size: 26px; margin-bottom: 10px; }
.program-card p{ font-size: 14px; color: rgba(244,240,227,0.78); line-height:1.55; margin-bottom: 18px; max-width: 34ch; }
.program-link{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13.5px; font-weight:600; color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.program-link svg{ width:14px; height:14px; transition: transform 0.25s ease; }
.program-card:hover .program-link{ color: var(--lime); border-color: var(--lime); }
.program-card:hover .program-link svg{ transform: translateX(3px); }

@media (min-width: 700px){
  .program-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px){
  .program-grid{ grid-template-columns: repeat(3, 1fr); }
  .program-card:nth-child(1){ grid-column: span 2; }
}

/* ===========================================================
   COURT EXPERIENCE
   =========================================================== */
.court-section{
  display:grid;
  gap: 44px;
}
.court-media{
  position:relative;
  border-radius: var(--radius-m);
  overflow:hidden;
  min-height: 320px;
}
.court-media img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.court-media-note{
  position:relative; z-index:1;
  align-self:flex-end;
  margin: 18px;
  padding: 10px 14px;
  background: rgba(15,29,23,0.82);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-radius: var(--radius-s);
  width:fit-content;
}
.court-steps{ display:grid; gap: 14px; }
.court-step{
  display:flex; align-items:center; gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-s);
}
.court-step .score{
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--lime);
  min-width: 52px;
}
.court-step p{ font-size: 15px; color: var(--cream); font-weight:500; }
.court-step small{ display:block; font-size: 12.5px; color: rgba(244,240,227,0.6); margin-top:2px; font-weight:400; }

@media (min-width: 900px){
  .court-section{ grid-template-columns: 1.1fr 0.9fr; align-items:stretch; }
  .court-media{ min-height: 100%; display:flex; }
}

/* ===========================================================
   BOOKING DEMO
   =========================================================== */
.demo-panel{
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-m);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.demo-panel-head{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 20px 24px;
  background: var(--navy);
  color: var(--cream);
}
.demo-panel-head h3{ font-size: 18px; font-weight:600; font-family: var(--font-body); }
.demo-badge{
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight:700;
  background: var(--lime);
  color: var(--navy);
  padding: 5px 10px;
  border-radius: 3px;
}
.demo-score-track{
  display:flex;
  border-bottom: 1px solid var(--line-light);
}
.demo-score-item{
  flex:1;
  text-align:center;
  padding: 16px 8px;
  font-family: var(--font-display);
  font-size: 20px;
  color: #C7C0AA;
  position:relative;
  border-right: 1px solid var(--line-light);
}
.demo-score-item:last-child{ border-right:none; }
.demo-score-item small{
  display:block;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight:600;
  margin-top: 3px;
  color: #A79F87;
}
.demo-score-item.is-active{ color: var(--navy); }
.demo-score-item.is-active small{ color: var(--lime-dim); }
.demo-score-item.is-done{ color: var(--lime-dim); }
.demo-score-item.is-active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-1px; height:2px; background: var(--lime);
}

.demo-body{ padding: 26px 24px 28px; }
.demo-step-title{ font-size: 13px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color: var(--ink-soft); margin-bottom:16px; }

.chip-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.chip-grid.dates{ grid-template-columns: repeat(4, 1fr); }
.chip{
  padding: 12px 6px;
  text-align:center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-s);
  font-size: 13.5px;
  font-weight:600;
  cursor:pointer;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.chip span{ display:block; font-size: 10.5px; font-weight:500; color: var(--ink-soft); text-transform:uppercase; margin-top:2px; }
.chip:hover{ border-color: var(--navy); }
.chip.is-selected{ background: var(--navy); border-color: var(--navy); color: var(--cream); }
.chip.is-selected span{ color: rgba(244,240,227,0.7); }
.chip.is-full{ opacity:0.35; cursor:not-allowed; text-decoration: line-through; }

.court-pick-list{ display:grid; gap:10px; }
.court-pick{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-s);
  cursor:pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.court-pick:hover{ border-color: var(--navy); }
.court-pick.is-selected{ border-color: var(--navy); background: var(--cream-2); }
.court-pick .name{ font-weight:600; font-size: 14.5px; }
.court-pick .meta{ font-size: 12.5px; color: var(--ink-soft); margin-top:2px; }
.court-pick .status{
  font-size: 11.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.04em;
  padding: 5px 10px; border-radius: 3px;
  background: rgba(198,220,62,0.25); color: var(--lime-dim);
}

.demo-summary{
  background: var(--cream-2);
  border-radius: var(--radius-s);
  padding: 18px;
  margin-bottom: 20px;
}
.demo-summary-row{ display:flex; justify-content:space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--line-light); }
.demo-summary-row:last-child{ border-bottom:none; }
.demo-summary-row span:first-child{ color: var(--ink-soft); }
.demo-summary-row span:last-child{ font-weight:600; }

.demo-nav{ display:flex; gap: 10px; margin-top: 22px; }

.demo-confirm{ text-align:center; padding: 12px 0 4px; }
.demo-confirm .icon{
  width: 56px; height:56px; border-radius:50%;
  background: var(--lime);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 20px;
}
.demo-confirm h3{ font-family: var(--font-body); font-size: 19px; font-weight:700; margin-bottom:8px; }
.demo-confirm p{ font-size: 14px; color: var(--ink-soft); max-width: 40ch; margin: 0 auto 22px; line-height:1.55; }

/* ===========================================================
   MEMBER DASHBOARD PREVIEW
   =========================================================== */
.dash-mock{
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  overflow:hidden;
}
.dash-mock-top{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
}
.dash-mock-top .who{ display:flex; align-items:center; gap:12px; }
.dash-avatar{
  width:38px; height:38px; border-radius:50%;
  background: var(--lime);
  color: var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size: 16px;
}
.dash-mock-top .name{ font-size: 14.5px; font-weight:600; color: var(--cream); }
.dash-mock-top .plan{ font-size: 12px; color: rgba(244,240,227,0.55); }

.dash-grid{ display:grid; gap: 1px; background: var(--line-dark); }
.dash-widget{ background: var(--navy-2); padding: 22px; }
.dash-widget h4{
  font-family: var(--font-body);
  font-size: 12px; letter-spacing:0.08em; text-transform:uppercase; font-weight:600;
  color: rgba(244,240,227,0.55);
  margin-bottom: 14px;
}
.dash-widget .big{ font-family: var(--font-display); font-size: 40px; color: var(--cream); line-height:1; }
.dash-widget .big small{ font-family: var(--font-body); font-size: 13px; color: rgba(244,240,227,0.5); font-weight:500; margin-left:6px; }
.dash-lesson-row{ display:flex; justify-content:space-between; align-items:flex-start; margin-top:10px; }
.dash-lesson-row .day{ font-size: 13px; color: rgba(244,240,227,0.55); }
.dash-lesson-row .with{ font-size: 15px; color: var(--cream); font-weight:600; margin-top:2px; }
.dash-tag{ font-size: 11px; padding: 4px 8px; border-radius:3px; background: rgba(198,220,62,0.16); color: var(--lime); font-weight:600; }
.dash-list{ display:grid; gap:12px; }
.dash-list li{ display:flex; justify-content:space-between; font-size: 13.5px; color: rgba(244,240,227,0.85); border-bottom:1px solid var(--line-dark); padding-bottom:10px; }
.dash-list li span{ color: rgba(244,240,227,0.5); font-size:12.5px; }
.dash-progress{ height:6px; background: rgba(244,240,227,0.12); border-radius:4px; overflow:hidden; margin-top:14px; }
.dash-progress i{ display:block; height:100%; background: var(--lime); border-radius:4px; }

@media (min-width: 780px){
  .dash-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 779px){
  .dash-grid{ grid-template-columns: repeat(2, 1fr); }
}

.concept-note{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 12px; color: rgba(244,240,227,0.55);
  margin-top: 18px;
}
.concept-note .dot{ width:6px; height:6px; border-radius:50%; background: var(--lime); }

/* ===========================================================
   DEVELOPMENT / PROGRESS
   =========================================================== */
.progress-layout{ display:grid; gap: 32px; }
.progress-card{
  background: var(--cream); border-radius: var(--radius-m); overflow:hidden; box-shadow: var(--shadow);
}
.progress-card-head{
  display:flex; align-items:center; gap:14px;
  padding: 20px 24px; border-bottom: 1px solid var(--line-light);
}
.progress-card-head .dash-avatar{ background: var(--navy); color: var(--lime); }
.progress-card-head .name{ font-weight:700; font-size: 15px; }
.progress-card-head .sub{ font-size: 12.5px; color: var(--ink-soft); }
.progress-rows{ padding: 6px 24px; }
.progress-row{ display:flex; justify-content:space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.progress-row:last-child{ border-bottom:none; }
.progress-row .label{ font-size: 12.5px; text-transform:uppercase; letter-spacing:0.05em; color: var(--ink-soft); font-weight:600; min-width: 118px; }
.progress-row .value{ font-size: 14.5px; text-align:right; max-width: 30ch; }

.timeline{ display:grid; gap: 0; }
.timeline-item{ display:flex; gap: 18px; padding-bottom: 26px; position:relative; }
.timeline-item::before{
  content:""; position:absolute; left:5px; top:16px; bottom:-2px; width:1px; background: var(--line-dark);
}
.timeline-item:last-child::before{ display:none; }
.timeline-dot{ width:11px; height:11px; border-radius:50%; background: var(--lime); margin-top:4px; flex-shrink:0; }
.timeline-item .when{ font-size: 12px; color: rgba(244,240,227,0.55); margin-bottom:4px; }
.timeline-item .what{ font-size: 14.5px; color: var(--cream); font-weight:500; }

@media (min-width: 900px){
  .progress-layout{ grid-template-columns: 1fr 1fr; align-items:start; }
}

/* ===========================================================
   ACADEMY LIFESTYLE
   =========================================================== */
.lifestyle-section{ position:relative; color: var(--cream); overflow:hidden; }
.lifestyle-media{ position:absolute; inset:0; z-index:0; }
.lifestyle-media img{ width:100%; height:100%; object-fit:cover; }
.lifestyle-media::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(15,29,23,0.55), rgba(15,29,23,0.9)); }
.lifestyle-content{ position:relative; z-index:1; max-width: 680px; }
.lifestyle-content h2{ font-size: clamp(32px,5.5vw,52px); margin-bottom: 22px; }
.lifestyle-points{ display:grid; grid-template-columns: repeat(2,1fr); gap: 18px 28px; margin-top: 30px; }
.lifestyle-points li{ font-size: 14.5px; color: rgba(244,240,227,0.85); padding-top: 14px; border-top: 1px solid var(--line-dark); }

/* ===========================================================
   CTA
   =========================================================== */
.cta-section{ text-align:left; }
.cta-section h2{ font-size: clamp(38px, 8vw, 76px); max-width: 14ch; margin-bottom: 30px; }
.cta-buttons{ display:flex; flex-wrap:wrap; gap: 14px; }
.cta-note{ margin-top: 22px; font-size: 12.5px; color: rgba(244,240,227,0.5); }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer{ background: var(--navy); color: var(--cream); padding: 56px 0 28px; }
.footer-top{ display:flex; flex-direction:column; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--line-dark); }
.footer-brand{ font-family: var(--font-display); font-size: 26px; }
.footer-nav ul{ display:flex; flex-wrap:wrap; gap: 20px 28px; }
.footer-nav a{ font-size: 14px; color: rgba(244,240,227,0.72); }
.footer-nav a:hover{ color: var(--lime); }
.footer-bottom{ display:flex; flex-direction:column; gap: 10px; padding-top: 22px; font-size: 12.5px; color: rgba(244,240,227,0.45); }

@media (min-width: 760px){
  .footer-top{ flex-direction:row; align-items:center; justify-content:space-between; }
  .footer-bottom{ flex-direction:row; justify-content:space-between; }
}

/* ===========================================================
   UTIL / RESPONSIVE GUARDS
   =========================================================== */
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

:focus-visible{ outline: 2px solid var(--lime); outline-offset: 3px; }

@media (max-width: 389px){
  .hero h1{ font-size: 40px; }
}
