/* ============================================================
   OkcNest — style.css
   Theme: Nordic Brutalist Warmth
   Palette: Warm Cream + Terracotta Rose + Sage Moss + Slate Stone
   Fonts: Playfair Display + Space Grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500;1,700;1,900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --cream:         #F7F3EE;
  --parchment:     #EDE5D8;
  --parchment-dk:  #E0D5C5;
  --paper:         #F9F6F1;
  --terra:         #C4855A;
  --terra-dark:    #A86B44;
  --terra-pale:    rgba(196,133,90,0.10);
  --terra-medium:  rgba(196,133,90,0.25);
  --sage:          #7A9471;
  --sage-dark:     #5E7459;
  --sage-pale:     rgba(122,148,113,0.12);
  --sage-light:    #D4E0D0;
  --slate:         #4A4540;
  --slate-75:      rgba(74,69,64,0.75);
  --slate-40:      rgba(74,69,64,0.40);
  --slate-10:      rgba(74,69,64,0.08);
  --warm-gray:     #726960;
  --line:          rgba(74,69,64,0.12);
  --white:         #FFFFFF;

  /* Special */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Space Grotesk', 'Helvetica Neue', sans-serif;

  --r-xs:   3px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-pill: 100px;

  --sh-soft:  0 2px 16px rgba(74,69,64,0.05);
  --sh-mid:   0 10px 40px rgba(74,69,64,0.09);
  --sh-deep:  0 22px 70px rgba(74,69,64,0.11);
  --sh-terra: 0 8px 30px rgba(196,133,90,0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:  0.45s var(--ease);
  --tf: 0.22s ease;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; font-size:16px }
body {
  font-family: var(--sans);
  color: var(--slate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}
img { display:block; width:100%; object-fit:cover }
a { text-decoration:none; color:inherit }
ul { list-style:none; padding:0; margin:0 }
button { font-family:inherit; cursor:pointer; border:none }
input,select,textarea { font-family:inherit }

/* ── LAYOUT ── */
.ak-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px }
.ak-section { padding: 120px 0 }

/* ── TYPOGRAPHY ── */
.ak-label {
  display: inline-block; font-family: var(--sans);
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 20px;
  padding-bottom: 6px; border-bottom: 1px solid var(--terra-pale);
}

.ak-display {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 400; line-height: 0.95; letter-spacing: -2px; color: var(--slate);
}
.ak-display span { font-weight: 400 }
.ak-display--cream { color: var(--cream) }

.ak-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  font-weight: 400; line-height: 1.04; letter-spacing: -1px; color: var(--slate);
}
.ak-heading span { font-style: italic }

.ak-subhead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; color: var(--slate); line-height: 1.22;
}

.ak-body {
  font-family: var(--sans); font-size: 15px; line-height: 1.88;
  color: var(--warm-gray); max-width: 580px; font-weight: 300;
}
.ak-body--center { margin: 0 auto; text-align: center }
.ak-body--light { color: rgba(247,243,238,0.75) }

/* ── BUTTONS ── */
.ak-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 34px; border-radius: 2px;
  transition: var(--t); cursor: pointer; border: none; white-space: nowrap;
}
.ak-btn--terra { background: var(--terra); color: var(--white); box-shadow: var(--sh-terra) }
.ak-btn--terra:hover { background: var(--terra-dark); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(196,133,90,0.40); color: var(--white) }
.ak-btn--outline { background: transparent; color: var(--slate); border: 1px solid var(--slate) }
.ak-btn--outline:hover { background: var(--slate); color: var(--cream); transform: translateY(-2px) }
.ak-btn--outline-cream { background: transparent; color: var(--cream); border: 1px solid rgba(247,243,238,0.50) }
.ak-btn--outline-cream:hover { background: rgba(247,243,238,0.12); border-color: var(--cream); transform: translateY(-2px); color: var(--cream) }
.ak-btn--cream-solid { background: var(--cream); color: var(--slate) }
.ak-btn--cream-solid:hover { background: var(--parchment); transform: translateY(-2px) }

.ak-arrow-link {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--terra);
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--tf); border-bottom: 1px solid var(--terra-pale); padding-bottom: 2px;
}
.ak-arrow-link:hover { gap: 14px; border-bottom-color: var(--terra) }

/* ── REVEALS ── */
.ak-rv { opacity:0; transform:translateY(26px); transition:opacity 0.72s var(--ease), transform 0.72s var(--ease) }
.ak-rv.in { opacity:1; transform:translateY(0) }
.ak-rv-l { opacity:0; transform:translateX(-26px); transition:opacity 0.72s var(--ease), transform 0.72s var(--ease) }
.ak-rv-l.in { opacity:1; transform:translateX(0) }
.ak-rv-r { opacity:0; transform:translateX(26px); transition:opacity 0.72s var(--ease), transform 0.72s var(--ease) }
.ak-rv-r.in { opacity:1; transform:translateX(0) }
.d1{transition-delay:.10s} .d2{transition-delay:.22s} .d3{transition-delay:.34s}
.d4{transition-delay:.46s} .d5{transition-delay:.58s}

/* ══════════════════════════════════
   FLOATING NAVBAR
══════════════════════════════════ */
.ak-nav-wrap {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 9999;
  display: flex; justify-content: center; pointer-events: none;
  transition: var(--t);
}
.ak-nav-wrap.scrolled { top: 10px }
.ak-nav {
  pointer-events: all; max-width: 960px; width: calc(100% - 48px);
  background: rgba(247,243,238,0.90);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(74,69,64,0.10);
  border-radius: 2px;
  box-shadow: var(--sh-mid);
  padding: 12px 16px 12px 28px;
  display: flex; align-items: center; gap: 8px; transition: var(--t);
}
.ak-logo {
  font-family: var(--serif); font-size: 19px; font-weight: 700;
  color: var(--slate); letter-spacing: 1px; flex-shrink: 0;
  display: flex; align-items: center; gap: 10px;
}
.ak-logo__sq {
  width: 24px; height: 24px; background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--white); font-weight: 700;
  flex-shrink: 0;
}
.ak-nav-links {
  display: flex; align-items: center; gap: 0; flex: 1; justify-content: center;
}
.ak-nav-links a {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--warm-gray); padding: 8px 18px;
  transition: var(--tf); position: relative;
}
.ak-nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--terra); transition: var(--tf);
}
.ak-nav-links a:hover { color: var(--slate) }
.ak-nav-links a:hover::after, .ak-nav-links a.active::after { width: 16px }
.ak-nav-links a.active { color: var(--slate) }
.ak-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; padding: 8px; margin-left: auto;
}
.ak-nav-toggle span { display:block; width:18px; height:1px; background:var(--slate); transition:var(--tf) }
.ak-nav-mob {
  display:none; position:fixed; inset:0; z-index:9998;
  background:var(--cream); flex-direction:column; align-items:center; justify-content:center; gap:20px;
}
.ak-nav-mob.open { display:flex }
.ak-nav-mob a {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 400;
  color: var(--slate); transition: var(--tf);
}
.ak-nav-mob a:hover { color: var(--terra); font-style: italic }
.ak-nav-mob__close { position:absolute; top:24px; right:40px; background:transparent; font-size:22px; color:var(--warm-gray) }

/* ══════════════════════════════════
   TICKER STRIP
══════════════════════════════════ */
.ak-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
  background: var(--terra); overflow: hidden; height: 44px;
  display: flex; align-items: center;
}
.ak-ticker__track {
  display: flex; gap: 0; white-space: nowrap;
  animation: tickerRoll 28s linear infinite;
}
@keyframes tickerRoll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ak-ticker__item {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(247,243,238,0.85);
  padding: 0 36px; display: flex; align-items: center; gap: 12px;
}
.ak-ticker__item::after { content: '✦'; color: rgba(247,243,238,0.40); font-size: 8px }

/* ══════════════════════════════════
   IMMERSIVE HERO — FULL VIEWPORT
══════════════════════════════════ */
.ak-hero {
  position: relative; width: 100%; min-height: 100vh;
  overflow: hidden; background: var(--slate);
  display: grid;
  grid-template-rows: 1fr auto;
}
/* Angled background panels — diagonal clip-path */
.ak-hero__panel-l {
  position: absolute; inset: 0; z-index: 0;
  background: var(--parchment);
  clip-path: polygon(0 0, 55% 0, 40% 100%, 0 100%);
  opacity: 0.35;
}
.ak-hero__panel-r {
  position: absolute; inset: 0; z-index: 0;
  background: var(--sage-pale);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 75% 100%);
  opacity: 0.20;
}
/* Full-bleed background image */
.ak-hero__bg {
  position: absolute; inset: 0; z-index: 1;
}
.ak-hero__bg img { width:100%; height:100%; object-fit:cover }
/* Cinematic overlays */
.ak-hero__grad {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to bottom, rgba(74,69,64,0.18) 0%, rgba(74,69,64,0.50) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 35%, rgba(74,69,64,0.22) 100%);
}
/* Diagonal tint slice — bottom left */
.ak-hero__slice {
  position: absolute; bottom: 0; left: 0; z-index: 3;
  width: 40%; height: 50%;
  background: linear-gradient(135deg, rgba(196,133,90,0.12) 0%, transparent 100%);
}

/* CONTENT — centered editorial */
.ak-hero__body {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 140px 40px 80px;
  min-height: calc(100vh - 44px);
}
.ak-hero__pre {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: rgba(247,243,238,0.75);
  margin-bottom: 32px;
  border: 1px dashed rgba(247,243,238,0.30);
  padding: 8px 20px; border-radius: 2px;
}
.ak-hero__pre::before, .ak-hero__pre::after { content:'—'; opacity:0.40 }
.ak-hero__title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 9rem);
  font-weight: 400; line-height: 0.92; letter-spacing: -3px;
  color: var(--cream); margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(74,69,64,0.30);
}
.ak-hero__title span { font-weight: 400; color: rgba(247,243,238,0.80) }
.ak-hero__sub {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: rgba(247,243,238,0.70); max-width: 500px; margin: 0 auto 44px;
  line-height: 1.75;
}
.ak-hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }

/* Floating cards — DASHED BORDER STYLE (distinct from Canvara glass) */
.ak-float-card {
  position: absolute; z-index: 11;
  background: rgba(247,243,238,0.12);
  border: 1px dashed rgba(247,243,238,0.45);
  border-radius: 2px; padding: 16px 22px;
  font-family: var(--sans); font-size: 12px; font-weight: 500; color: var(--cream);
  letter-spacing: 0.5px; white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
  animation: cardDrift 5s ease-in-out infinite;
}
.ak-float-card:nth-child(2) { animation-delay: 0.6s }
.ak-float-card:nth-child(3) { animation-delay: 1.2s }
.ak-float-card:nth-child(4) { animation-delay: 1.8s }
@keyframes cardDrift { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(0.3deg)} }
.ak-float-card__dot { width: 6px; height: 6px; background: var(--terra); border-radius: 50%; flex-shrink: 0 }
/* Diagonal corner positions */
.ak-float-card--tl { top: 18%; left: 4%; transform: rotate(-1.5deg) }
.ak-float-card--tr { top: 22%; right: 4%; transform: rotate(1.2deg) }
.ak-float-card--bl { bottom: 28%; left: 4%; transform: rotate(0.8deg) }
.ak-float-card--br { bottom: 26%; right: 4%; transform: rotate(-1deg) }

/* ══════════════════════════════════
   INTRO STRIP — TYPOGRAPHIC
══════════════════════════════════ */
.ak-intro { background: var(--slate); padding: 80px 0 }
.ak-intro__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.ak-intro__headline {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400;
  color: var(--cream); line-height: 1.15; flex: 1; max-width: 560px;
}
.ak-intro__headline span { color: rgba(196,133,90,0.85) }
.ak-intro__text {
  font-family: var(--sans); font-size: 15px; font-weight: 300; color: rgba(247,243,238,0.60);
  line-height: 1.82; max-width: 400px;
}

/* ══════════════════════════════════
   LIFESTYLE PATHWAYS — DIAGONAL GRID
══════════════════════════════════ */
.ak-pathways { background: var(--cream) }
.ak-pathways__head { margin-bottom: 72px }
/* Masonry-style offset grid — NOT standard grid */
.ak-pathway-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}
/* Varying heights via row spans */
.ak-pathway-mosaic > :nth-child(1) { grid-row: span 2 }
.ak-pathway-tile {
  position: relative; overflow: hidden; border-radius: 2px;
  min-height: 280px; cursor: default;
  transition: var(--t);
}
.ak-pathway-tile:hover { transform: scale(1.01) }
.ak-pathway-tile__img { position:absolute; inset:0; z-index:0 }
.ak-pathway-tile__img img { width:100%; height:100%; object-fit:cover; transition: transform 0.7s ease }
.ak-pathway-tile:hover .ak-pathway-tile__img img { transform: scale(1.05) }
.ak-pathway-tile__fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(74,69,64,0.05) 40%, rgba(74,69,64,0.72) 100%);
}
.ak-pathway-tile__content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px 26px }
.ak-pathway-tile__num {
  display: inline-block; font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--terra);
  border: 1px solid rgba(196,133,90,0.50); padding: 3px 8px; margin-bottom: 8px;
}
.ak-pathway-tile__name {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  color: var(--cream); line-height: 1.20;
}

/* ══════════════════════════════════
   EQUITY OPTIONS — OFFSET COLUMNS
══════════════════════════════════ */
.ak-options { background: var(--parchment) }
.ak-options__head { text-align: center; margin-bottom: 88px }
/* Alternating content panels with diagonal accents */
.ak-option-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 60px; border: 1px solid var(--line); border-radius: 2px;
  overflow: hidden; box-shadow: var(--sh-mid);
}
.ak-option-row:last-child { margin-bottom: 0 }
.ak-option-row--rev .ak-opt-vis { order: 2 }
.ak-option-row--rev .ak-opt-copy { order: 1 }
.ak-opt-vis { position: relative; min-height: 420px; overflow: hidden }
.ak-opt-vis img { width:100%; height:100%; object-fit:cover; transition: transform 0.7s ease }
.ak-option-row:hover .ak-opt-vis img { transform: scale(1.04) }
/* Diagonal accent overlay on image */
.ak-opt-vis::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; top: 0;
  background: linear-gradient(135deg, rgba(196,133,90,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.ak-opt-vis__tag {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  background: var(--terra); color: var(--white);
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; padding: 6px 12px;
}
.ak-opt-copy {
  background: var(--cream); padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.ak-opt-copy .ak-label { margin-bottom: 14px }
.ak-opt-copy .ak-subhead { margin-bottom: 16px }
.ak-opt-copy .ak-body { font-size: 14.5px; max-width: 100%; margin-bottom: 22px }
.ak-opt-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px }
.ak-opt-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--sans); font-size: 13.5px; color: var(--warm-gray); font-weight: 300;
}
.ak-opt-bullet::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--terra); flex-shrink: 0; margin-top: 8px;
}

/* ══════════════════════════════════
   APPLICATION JOURNEY
══════════════════════════════════ */
.ak-journey { background: var(--cream); position: relative; overflow: hidden }
.ak-journey__bg-text {
  position: absolute; font-family: var(--serif); font-size: 20vw; font-weight: 900;
  color: rgba(74,69,64,0.03); top: 50%; left: 50%;
  transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; user-select: none;
  z-index: 0;
}
.ak-journey__head { text-align: center; margin-bottom: 88px; position: relative; z-index: 1 }
.ak-journey-steps {
  display: flex; align-items: flex-start; gap: 0; position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
}
.ak-journey-step { flex: 1; text-align: center; padding: 0 28px; position: relative }
/* Connector dots */
.ak-journey-step:not(:last-child)::after {
  content: '· · · · ·'; position: absolute; top: 40px; right: -10px;
  font-size: 12px; letter-spacing: 6px; color: rgba(196,133,90,0.40);
  width: 60px; overflow: hidden; white-space: nowrap;
}
.ak-journey-step__num {
  width: 72px; height: 72px;
  background: var(--cream); border: 1.5px solid var(--parchment-dk);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: var(--serif); font-size: 1.8rem; font-style: italic;
  color: var(--terra); font-weight: 400; transition: var(--t);
  box-shadow: var(--sh-soft);
}
.ak-journey-step:hover .ak-journey-step__num {
  background: var(--terra); color: var(--cream); border-color: var(--terra); transform: scale(1.10);
}
.ak-journey-step__title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--slate); margin-bottom: 12px;
}
.ak-journey-step__text { font-size: 14px; color: var(--warm-gray); line-height: 1.72; font-weight: 300 }

/* ══════════════════════════════════
   BENEFITS — IRREGULAR BENTO
══════════════════════════════════ */
.ak-benefits { background: var(--parchment) }
.ak-benefits__head { margin-bottom: 72px }
.ak-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.ak-bento-tile {
  background: var(--cream); border-radius: 2px;
  padding: 40px 34px; border: 1px solid var(--line);
  transition: var(--t); position: relative; overflow: hidden;
}
.ak-bento-tile:hover { transform: translateY(-5px); box-shadow: var(--sh-mid); border-color: var(--terra-medium) }
/* Row 1, tile 1 — tall */
.ak-bento-tile:nth-child(1) { grid-row: span 2; background: var(--slate) }
.ak-bento-tile:nth-child(3) { background: rgba(122,148,113,0.12) }
.ak-bento-tile:nth-child(5) { background: var(--terra-pale) }
/* Ghost serif number */
.ak-bento-tile__ghost {
  position: absolute; top: -20px; right: -10px;
  font-family: var(--serif); font-size: 7rem; font-weight: 900; font-style: italic;
  color: rgba(74,69,64,0.05); user-select: none; pointer-events: none; line-height: 1;
}
.ak-bento-tile:nth-child(1) .ak-bento-tile__ghost { color: rgba(247,243,238,0.06) }
.ak-bento-icon {
  width: 44px; height: 44px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  margin-bottom: 18px; transition: var(--t);
}
.ak-bento-icon--terra { background: var(--terra-pale) }
.ak-bento-icon--sage { background: var(--sage-pale) }
.ak-bento-icon--parch { background: var(--parchment) }
.ak-bento-tile:hover .ak-bento-icon { transform: scale(1.08) }
.ak-bento-tile:nth-child(1) .ak-bento-icon--terra { background: rgba(196,133,90,0.20) }
.ak-bento-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--slate); margin-bottom: 10px;
}
.ak-bento-tile:nth-child(1) .ak-bento-title { color: var(--cream) }
.ak-bento-desc { font-size: 13.5px; color: var(--warm-gray); line-height: 1.72; font-weight: 300 }
.ak-bento-tile:nth-child(1) .ak-bento-desc { color: rgba(247,243,238,0.60) }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.ak-stories { background: var(--cream) }
.ak-stories__head { text-align: center; margin-bottom: 72px }
.ak-story-card {
  background: var(--paper); border-radius: 2px;
  padding: 48px 44px; height: 100%; border: 1px solid var(--line); transition: var(--t);
  position: relative;
}
.ak-story-card:hover { border-color: var(--terra); box-shadow: var(--sh-mid); transform: translateY(-5px) }
.ak-story-mark {
  font-family: var(--serif); font-size: 64px; color: var(--terra); opacity: 0.25;
  line-height: 0.7; display: block; margin-bottom: 14px; font-weight: 700;
}
.ak-story-stars { color: var(--terra); font-size: 11px; letter-spacing: 4px; margin-bottom: 18px }
.ak-story-quote {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  line-height: 1.90; color: var(--slate); margin-bottom: 30px;
}
.ak-story-author { display: flex; align-items: center; gap: 14px }
.ak-story-avatar {
  width: 48px; height: 48px; border-radius: 2px;
  background: linear-gradient(135deg, var(--sage-light), var(--parchment));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--slate); flex-shrink: 0;
}
.ak-story-name { font-family: var(--serif); font-size: 15px; font-weight: 500; color: var(--slate) }
.ak-story-city { font-size: 11px; color: var(--warm-gray); margin-top: 3px; letter-spacing: 0.5px }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.ak-faq { background: var(--parchment) }
.ak-faq__inner { max-width: 820px; margin: 0 auto }
.ak-faq-items { display: flex; flex-direction: column; gap: 0 }
.ak-faq-item {
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.ak-faq-item:first-child { border-top: 1px solid var(--line) }
.ak-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; cursor: pointer;
  font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--slate);
  gap: 16px; transition: var(--tf); background: transparent; border: none; width: 100%;
  text-align: left;
}
.ak-faq-q:hover { color: var(--terra) }
.ak-faq-indicator {
  font-family: var(--sans); font-size: 16px; font-weight: 300; color: var(--terra);
  flex-shrink: 0; transition: var(--tf); line-height: 1; width: 22px; text-align: center;
}
.ak-faq-item.open .ak-faq-indicator { transform: rotate(45deg) }
.ak-faq-answer {
  font-size: 15px; color: var(--warm-gray); line-height: 1.82; font-weight: 300;
  max-height: 0; overflow: hidden; transition: max-height 0.44s ease, padding 0.30s ease;
}
.ak-faq-item.open .ak-faq-answer { max-height: 240px; padding-bottom: 24px }

/* ══════════════════════════════════
   CINEMATIC CTA
══════════════════════════════════ */
.ak-cta {
  position: relative; min-height: 80vh; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.ak-cta__bg { position: absolute; inset: 0; z-index: 0 }
.ak-cta__bg img { width:100%; height:100%; object-fit:cover }
.ak-cta__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(74,69,64,0.60) 0%, rgba(196,133,90,0.35) 100%);
}
/* Diagonal frame lines */
.ak-cta__frame {
  position: absolute; inset: 30px; z-index: 2;
  border: 1px dashed rgba(247,243,238,0.20); border-radius: 2px;
  pointer-events: none;
}
.ak-cta__content { position: relative; z-index: 3; max-width: 740px; padding: 60px 40px }
.ak-cta__label {
  display: inline-block; font-family: var(--sans);
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(247,243,238,0.65); margin-bottom: 28px;
  border-bottom: 1px solid rgba(247,243,238,0.25); padding-bottom: 8px;
}
.ak-cta .ak-display { color: var(--cream); font-size: clamp(3rem,6vw,7rem); margin-bottom: 22px }
.ak-cta .ak-body { margin: 0 auto 42px; color: rgba(247,243,238,0.72) }
.ak-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.ak-footer { background: var(--slate) }
.ak-footer__top { padding: 80px 0 60px }
.ak-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 48px }
.ak-footer__bio { font-size: 14px; color: rgba(247,243,238,0.55); line-height: 1.80; margin-top: 16px; max-width: 280px; font-weight: 300 }
.ak-footer-col__title {
  font-family: var(--serif); font-size: 15px; font-weight: 500;
  color: var(--cream); margin-bottom: 20px;
}
.ak-footer-links { display: flex; flex-direction: column; gap: 12px }
.ak-footer-links a { font-size: 13px; color: rgba(247,243,238,0.50); transition: var(--tf); font-weight: 300 }
.ak-footer-links a:hover { color: var(--terra) }
.ak-footer-contact { display: flex; flex-direction: column; gap: 12px }
.ak-footer-contact-item { display: flex; align-items: flex-start; gap: 10px }
.ak-footer-contact-icon { font-size: 14px; color: var(--terra); flex-shrink: 0; margin-top: 1px }
.ak-footer-contact-text { font-size: 13px; color: rgba(247,243,238,0.50); font-weight: 300; line-height: 1.55 }
.ak-footer-contact-text a { color: rgba(247,243,238,0.50); transition: var(--tf) }
.ak-footer-contact-text a:hover { color: var(--terra) }
.ak-footer-email { display: flex; gap: 0; margin-top: 8px }
.ak-footer-email input {
  flex: 1; padding: 11px 16px; background: rgba(247,243,238,0.06);
  border: 1px solid rgba(247,243,238,0.12); border-right: none;
  font-family: var(--sans); font-size: 13px; color: var(--cream); outline: none;
  font-weight: 300;
}
.ak-footer-email input::placeholder { color: rgba(247,243,238,0.30) }
.ak-footer-email input:focus { border-color: var(--terra) }
.ak-footer-email button {
  padding: 11px 18px; background: var(--terra); color: var(--white);
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; transition: var(--tf);
}
.ak-footer-email button:hover { background: var(--terra-dark) }
.ak-footer-social { display: flex; gap: 10px; margin-top: 20px }
.ak-social {
  width: 34px; height: 34px; border-radius: 2px;
  background: rgba(247,243,238,0.06); border: 1px solid rgba(247,243,238,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(247,243,238,0.50); transition: var(--tf);
}
.ak-social:hover { background: var(--terra); color: var(--white); border-color: var(--terra) }
.ak-footer__bottom { padding: 20px 0; border-top: 1px solid rgba(247,243,238,0.08) }
.ak-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px }
.ak-footer__copy { font-size: 12px; color: rgba(247,243,238,0.35); font-weight: 300 }
.ak-footer__copy a { color: var(--terra) }
.ak-footer__legal { display: flex; gap: 20px }
.ak-footer__legal a { font-size: 12px; color: rgba(247,243,238,0.35); transition: var(--tf); font-weight: 300 }
.ak-footer__legal a:hover { color: var(--terra) }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.ak-page-hero {
  position: relative; min-height: 55vh; display: flex; align-items: flex-end; overflow: hidden;
  background: var(--slate);
}
.ak-page-hero__bg { position: absolute; inset: 0; z-index: 0 }
.ak-page-hero__bg img { width:100%; height:100%; object-fit:cover }
.ak-page-hero__overlay { position:absolute; inset:0; z-index:1; background: linear-gradient(to bottom, rgba(74,69,64,0.20) 0%, rgba(74,69,64,0.62) 100%) }
.ak-page-hero__wave { position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; z-index: 3 }
.ak-page-hero__wave svg { width:100%; height:100% }
.ak-page-hero__content { position: relative; z-index: 2; padding: 60px 0 80px; width: 100% }

/* ══════════════════════════════════
   EXPERIENCE PAGE
══════════════════════════════════ */
.ak-exp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center }
.ak-exp-img { overflow: hidden; border-radius: 2px }
.ak-exp-img--tall { height: 560px }
.ak-exp-img--med { height: 440px }
.ak-exp-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease }
.ak-exp-split:hover .ak-exp-img img { transform: scale(1.03) }
.ak-exp-points { margin-top: 28px; display: flex; flex-direction: column; gap: 0 }
.ak-exp-point { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line) }
.ak-exp-point:last-child { border-bottom: none }
.ak-exp-point__icon { font-size: 18px; flex-shrink: 0; margin-top: 2px }
.ak-exp-point__title { font-family: var(--serif); font-size: 16px; font-weight: 500; color: var(--slate); margin-bottom: 4px }
.ak-exp-point__text { font-size: 13.5px; color: var(--warm-gray); line-height: 1.68; font-weight: 300 }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.ak-contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start }
.ak-contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line) }
.ak-contact-item:first-child { padding-top: 0 }
.ak-contact-item:last-of-type { border-bottom: none }
.ak-contact-ico { width: 38px; height: 38px; background: var(--terra-pale); border: 1px solid var(--terra-medium); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0 }
.ak-contact-label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terra); margin-bottom: 4px }
.ak-contact-val { font-size: 15px; color: var(--slate) }
.ak-contact-val a { color: var(--slate); transition: var(--tf) }
.ak-contact-val a:hover { color: var(--terra) }
.ak-map { height: 200px; background: var(--parchment); border: 1px solid var(--parchment-dk); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--warm-gray); font-size: 14px; margin-top: 22px }
.ak-form-wrap { background: var(--paper); border: 1px solid var(--line); padding: 52px; box-shadow: var(--sh-deep) }
.ak-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.ak-form-group { margin-bottom: 18px }
.ak-form-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 8px }
.ak-form-input {
  width: 100%; padding: 14px 16px;
  background: var(--cream); border: 1px solid var(--parchment-dk);
  font-family: var(--sans); font-size: 15px; color: var(--slate); outline: none;
  transition: var(--tf); appearance: none; border-radius: 0;
}
.ak-form-input::placeholder { color: var(--warm-gray) }
.ak-form-input:focus { border-color: var(--terra); background: var(--white) }
.ak-form-textarea { resize: vertical; min-height: 120px }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:1100px){
  .ak-pathway-mosaic { grid-template-columns: 1fr 1fr }
  .ak-pathway-mosaic > :nth-child(1) { grid-row: auto }
  .ak-bento { grid-template-columns: 1fr 1fr }
  .ak-bento-tile:nth-child(1) { grid-row: auto }
  .ak-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px }
}
@media(max-width:991px){
  .ak-nav-links, .ak-nav > .ak-btn { display: none }
  .ak-nav-toggle { display: flex }
  .ak-nav { padding: 14px 18px }
  .ak-float-card--tl, .ak-float-card--tr { top: 12% }
  .ak-float-card--bl, .ak-float-card--br { bottom: 20% }
  .ak-intro__inner, .ak-exp-split, .ak-contact-grid { grid-template-columns: 1fr; gap: 44px }
  .ak-option-row { grid-template-columns: 1fr }
  .ak-option-row--rev .ak-opt-vis, .ak-option-row--rev .ak-opt-copy { order: unset }
  .ak-journey-steps { flex-direction: column; gap: 40px; align-items: center }
  .ak-journey-step:not(:last-child)::after { display: none }
}
@media(max-width:767px){
  .ak-section { padding: 80px 0 }
  .ak-wrap { padding: 0 22px }
  .ak-pathway-mosaic, .ak-bento { grid-template-columns: 1fr }
  .ak-footer__grid { grid-template-columns: 1fr; gap: 28px }
  .ak-footer__bottom-inner { flex-direction: column; text-align: center; gap: 12px }
  .ak-form-row { grid-template-columns: 1fr }
  .ak-form-wrap { padding: 28px }
  .ak-float-card { display: none }
  .ak-float-card--tl, .ak-float-card--br { display: flex; position: static; margin: 0; transform: none; animation: none; border-radius: 2px }
  .ak-hero__btns { gap: 10px }
  .ak-hero__title { font-size: clamp(2.6rem,8vw,4.4rem); letter-spacing: -1.5px }
}

/* Swiper */
.swiper-pagination-bullet { background: var(--terra); opacity: 0.30 }
.swiper-pagination-bullet-active { opacity: 1; width: 22px; border-radius: 2px }
.swiper-button-next, .swiper-button-prev { color: var(--terra) !important }