/* Hero (anasayfa) — editorial, word-cycling ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: calc(var(--header-h) + 24px) var(--gutter) 64px;
  display: flex;
  flex-direction: column;
}

.hero-topbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: clamp(40px, 6vw, 80px);
  gap: 16px;
}
.hero-topbar .center { text-align: center; }
.hero-topbar .end { text-align: right; }
.hero-topbar .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  margin: 0 8px;
  vertical-align: middle;
}

.hero-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(420px, 60vh, 720px);
}

.hero-canvas {
  /* Covers the entire hero from just under the menu to the very bottom.
     Now positioned against .hero (not .hero-stage) so it can span the full
     section — particles ve R tüm alana yayılır. */
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  bottom: 0;
  z-index: 2;             /* above bg-text */
  pointer-events: none;
}

.hero-canvas canvas { width: 100% !important; height: 100% !important; }

.hero-fragment {
  position: absolute;
  max-width: 280px;
  z-index: 2;
}
.hero-fragment .num {
  font-family: var(--font-sans);
  
  font-size: 14px;
  opacity: 0.55;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-fragment .num::after {
  content: "";
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--amber);
  vertical-align: middle;
}
.hero-fragment h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.hero-fragment p {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.hero-fragment.top-left { top: 6%; left: 0; }
.hero-fragment.bot-right { bottom: 8%; right: 0; text-align: right; }
.hero-fragment.bot-right .num { flex-direction: row-reverse; }
.hero-fragment.bot-right .num::after { background: var(--amber); }

@media (max-width: 900px) {
  .hero-fragment { position: static; max-width: 100%; margin-top: 24px; }
  .hero-fragment.bot-right { text-align: left; }
  .hero-fragment.bot-right .num { flex-direction: row; }
  .hero-stage { display: flex; flex-direction: column; gap: 32px; }
  .hero-canvas { position: relative; left: auto; top: auto; transform: none; width: 100%; height: 280px; }
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-top: clamp(40px, 6vw, 64px);
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  position: relative;
  z-index: 3;
}
/* Single-line lowercase serif tagline, matching the right column's size */
.hero-foot .tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  opacity: 0.85;
  white-space: nowrap;
}
.hero-foot .end { text-align: right; }

/* Vertical scroll cue — centered, no text */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: rgba(244, 241, 234, 0.18);
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.hero-scroll-cue::after {
  content: "";
  position: absolute;
  top: -64px;
  left: 0;
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent 0%, var(--amber) 60%, var(--paper) 100%);
  animation: cue-drop 2.6s cubic-bezier(0.6, 0, 0.2, 1) infinite;
}
@keyframes cue-drop {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(128px); opacity: 0; }
}

@media (max-width: 760px) {
  .hero-topbar, .hero-foot { grid-template-columns: 1fr; text-align: left; }
  .hero-topbar .center, .hero-topbar .end,
  .hero-foot .end { text-align: left; }
}

/* Background kinetic typography — scroll-coupled, fills the hero vertically */
.hero-bg-text {
  position: absolute;
  /* Sit right under the header, fill to the bottom of the hero */
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Distribute the two lines across the full hero height */
  justify-content: space-around;
}
.hero-bg-line {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(160px, 26vw, 420px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  white-space: nowrap;
  text-transform: lowercase;
  /* Subtle off-white, very faint on the dark hero */
  color: rgba(244, 241, 234, 0.07);
  will-change: transform;
  user-select: none;
}
.hero-bg-line.dir-left  { transform: translate3d(-10%, 0, 0); }
.hero-bg-line.dir-right { transform: translate3d(-40%, 0, 0); }

/* hairline decorations */
.hero-rule {
  position: absolute;
  background: rgba(244,241,234,0.12);
  z-index: 1;
  pointer-events: none;
}
.hero-rule.h { left: var(--gutter); right: var(--gutter); height: 1px; }
.hero-rule.v { top: 30%; bottom: 30%; width: 1px; }
.hero-rule.top { top: calc(var(--header-h) + 16px); }
.hero-rule.bottom { bottom: 56px; }
.hero-rule.center-v { left: 50%; transform: translateX(-50%); top: 18%; bottom: 18%; }

/* Page hero (interior pages) ------------------------- */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(60px, 10vw, 140px)) var(--gutter) clamp(40px, 6vw, 96px);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.page-hero.theme-ink { background: var(--ink); color: var(--paper); }

.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero-text { display: flex; flex-direction: column; gap: 28px; }

.page-hero h1 {
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.95;
}

.page-hero .lead {
  max-width: 640px;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.3;
}

.page-hero-canvas {
  position: relative;
  width: 100%;
  height: clamp(320px, 38vw, 520px);
  pointer-events: none;
}
.page-hero-canvas canvas { width: 100% !important; height: 100% !important; }

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-canvas { height: clamp(240px, 50vw, 320px); order: -1; }
}

.crumbs {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.65;
}
.crumbs span { opacity: 0.45; }

/* Manifesto — vertical scroll cinema ----------------- */

.manifesto-cinema {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(72px, 8vw, 140px) 0 0;
  position: relative;
  overflow: hidden;
}

.manifesto-cinema-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 0 var(--gutter);
  margin-bottom: clamp(48px, 6vw, 96px);
}
.manifesto-cinema-head .eyebrow { opacity: 0.7; }
.manifesto-cinema-head h2 {
  font-size: clamp(36px, 5.4vw, 80px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin: 0;
}
.manifesto-cinema-head .aside {
  text-align: right;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.65;
  max-width: 320px;
}
@media (max-width: 760px) {
  .manifesto-cinema-head { grid-template-columns: 1fr; }
  .manifesto-cinema-head .aside { text-align: left; }
}

.manifesto-list { display: flex; flex-direction: column; }

.manifesto-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 30%) 1fr auto;
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  border-top: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}

.manifesto-row:last-child { border-bottom: 1px solid var(--line); }

/* Ambient color tint per principle */
.manifesto-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 80% 50%, rgba(250,130,29,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.manifesto-row:hover::before { opacity: 1; }

.manifesto-row .num-mega {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(80px, 11vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.18;
  transition: opacity 0.6s var(--ease-out), color 0.6s var(--ease-out), transform 0.8s var(--ease-out);
  white-space: nowrap;
}
.manifesto-row:hover .num-mega { opacity: 1; color: var(--amber); transform: translateX(8px); }

.manifesto-row .body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.manifesto-row .lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.manifesto-row .lead em { color: var(--amber); font-style: italic; font-weight: 500; }
.manifesto-row .lead .strike { text-decoration: line-through; opacity: 0.4; }
.manifesto-row .desc {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  opacity: 0.75;
  max-width: 56ch;
}

.manifesto-row .seal {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  opacity: 0.45;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: center;
  align-self: center;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .manifesto-row {
    grid-template-columns: 1fr;
    padding: clamp(40px, 8vw, 64px) var(--gutter);
  }
  .manifesto-row .num-mega { font-size: clamp(64px, 18vw, 120px); opacity: 0.4; }
  .manifesto-row .seal { transform: none; opacity: 0.5; }
}

.manifesto-cinema-foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  border-top: 1px solid var(--line);
}
.manifesto-cinema-foot .center {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}
.manifesto-cinema-foot .center em { color: var(--amber); font-style: italic; }
.manifesto-cinema-foot .end {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.manifesto-cinema-foot .start {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
@media (max-width: 760px) {
  .manifesto-cinema-foot { grid-template-columns: 1fr; text-align: left; }
  .manifesto-cinema-foot .center, .manifesto-cinema-foot .end { text-align: left; }
}

/* Pillars (Marketing × Sourcing) --------------------- */

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: clamp(56px, 7vw, 120px) clamp(28px, 4vw, 72px);
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--paper);
  transition: background 0.6s var(--ease-out), color 0.6s var(--ease-out);
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--ink); color: var(--paper); }

.pillar-num {
  font-family: var(--font-sans);
  
  font-size: 16px;
  opacity: 0.55;
}
.pillar-title {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 32px 0 24px;
}
.pillar p {
  max-width: 480px;
  opacity: 0.85;
  margin-bottom: 32px;
  color: inherit;  /* follow the pillar's color so hover state turns white */
}
.pillar ul { list-style: none; columns: 2; column-gap: 24px; }
.pillar ul li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: inherit;
}
.pillar:hover ul li { border-top-color: rgba(244,241,234,0.18); }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar ul { columns: 1; }
}

/* Brand marquee (placeholder) ------------------------ */

.brands-strip {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(20px, 2.4vw, 32px) 0;
  border-top: 1px solid rgba(244,241,234,0.08);
  border-bottom: 1px solid rgba(244,241,234,0.08);
  overflow: hidden;
}
.brands-strip .marquee-item { opacity: 0.85; }
.brands-strip .marquee-item:hover { opacity: 1; color: var(--amber); }

/* Testimonials — prestige carousel --------------------- */

.testimonials {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 0 var(--gutter);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.testimonials-head h2 {
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 14ch;
}
.testimonials-head h2 em { color: var(--amber); font-style: italic; font-weight: 500; }
.testimonials-head .aside {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.65;
  max-width: 320px;
  text-align: right;
}
@media (max-width: 760px) {
  .testimonials-head { grid-template-columns: 1fr; }
  .testimonials-head .aside { text-align: left; }
}

/* Carousel stage — frameless, full-width. The active card opens to the
   full container width; the previous and next peek faintly at the edges. */
.tc {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 44vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
}
.tc-viewport {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Each card positioned at the same center; transform/opacity decides state */
.tc-card {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;        /* no box */
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: clamp(48px, 6vw, 96px) 1fr;
  column-gap: clamp(20px, 3vw, 48px);
  row-gap: clamp(16px, 2vw, 28px);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition:
    transform 1s cubic-bezier(0.6, 0, 0.2, 1),
    opacity 0.9s cubic-bezier(0.6, 0, 0.2, 1);
  will-change: transform, opacity;
}

.tc-card.is-active {
  position: relative;             /* lifts out of stack, defines layout */
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 3;
}

/* Side cards: shifted off-edge and very faint — readable as ghosts only */
.tc-card.is-prev {
  opacity: 0.12;
  transform: translateX(-72%) scale(0.94);
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}
.tc-card.is-next {
  opacity: 0.12;
  transform: translateX(72%) scale(0.94);
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}
.tc-card.is-prev:hover, .tc-card.is-next:hover { opacity: 0.22; }

.tc-card .quote-mark {
  grid-column: 1 / 2;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(80px, 9vw, 160px);
  line-height: 0.5;
  color: var(--amber);
  user-select: none;
  align-self: start;
}

.tc-card .quote-text {
  grid-column: 2 / 3;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: inherit;
  max-width: 22ch;             /* keep editorial line length */
}
.tc-card .quote-text em { color: var(--amber); font-style: italic; font-weight: 500; }

.tc-card .author {
  grid-column: 2 / 3;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}
.tc-card .author .name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px);
  letter-spacing: -0.005em;
}
.tc-card .author .brand {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.tc-card .author .brand::before {
  content: "— ";
  color: var(--amber);
  opacity: 0.85;
}

/* Controls — arrows + dots + progress */
.tc-controls {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: clamp(28px, 3.5vw, 48px);
  padding: 0 var(--gutter);
}
.tc-controls-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tc-dots { display: flex; gap: 10px; align-items: center; }
.tc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-strong);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s, width 0.4s, transform 0.4s;
}
.tc-dot.is-active {
  background: var(--amber);
  width: 24px;
  border-radius: 4px;
}

.tc-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
}
.tc-arrow:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tc-arrow.prev:hover { transform: translateX(-3px); }
.tc-arrow.next:hover { transform: translateX(3px); }

/* Progress bar — runs across the bottom while the auto-rotate is active */
.tc-progress {
  position: relative;
  width: clamp(220px, 28vw, 380px);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.tc-progress::after {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--amber);
  animation: tc-progress 6s linear infinite;
}
.tc-controls.is-paused .tc-progress::after { animation-play-state: paused; }
@keyframes tc-progress {
  from { right: 100%; }
  to   { right: 0%;   }
}

@media (max-width: 760px) {
  .tc-card { width: clamp(280px, 86vw, 460px); }
  .tc-card.is-prev, .tc-card.is-next { opacity: 0; pointer-events: none; }
}

/* Studio Reel — in-agency video showcase --------------- */

.studio-reel {
  background: var(--paper);
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  position: relative;
}

.studio-reel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
  flex-wrap: wrap;
}
.studio-reel-head h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
}
.studio-reel-head h2 em { color: var(--amber); font-style: italic; font-weight: 500; }
.studio-reel-head .meta {
  display: flex; flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  gap: 4px;
}
.studio-reel-head .meta .runtime { color: var(--amber); opacity: 1; }

.studio-reel-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  border-radius: 6px;
  isolation: isolate;
  box-shadow: 0 30px 80px -40px rgba(14,15,12,0.45);
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.reel-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.reel-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 32%, rgba(250,130,29,0.5), transparent 45%),
    radial-gradient(circle at 72% 65%, rgba(31,59,45,0.75), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(18,34,24,0.7), transparent 55%),
    linear-gradient(135deg, #1a1b17 0%, #0E0F0C 100%);
  animation: reel-pan 22s ease-in-out infinite alternate;
  filter: blur(1.5px);
}
.reel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,241,234,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
@keyframes reel-pan {
  0%   { transform: translate(0,0) scale(1.05); }
  100% { transform: translate(-2%, 3%) scale(1.18); }
}

/* Tint + vignette */
.studio-reel-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(14,15,12,0.15) 0%, transparent 30%, transparent 70%, rgba(14,15,12,0.45) 100%);
  pointer-events: none;
}

/* Top overlay: REC + timecode */
.reel-overlay-top {
  position: absolute;
  top: clamp(16px, 2vw, 28px);
  left: clamp(20px, 2.5vw, 36px);
  right: clamp(20px, 2.5vw, 36px);
  display: flex;
  justify-content: space-between;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
}
.reel-overlay-top .rec {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.reel-overlay-top .rec::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: rec-blink 1.6s ease-in-out infinite;
}
@keyframes rec-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Center: large play medallion */
.reel-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(96px, 10vw, 156px);
  height: clamp(96px, 10vw, 156px);
  border-radius: 50%;
  border: 1px solid rgba(244,241,234,0.4);
  background: rgba(14,15,12,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 4;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: transform 0.5s var(--ease-out), background 0.4s, border-color 0.4s, color 0.4s;
  cursor: pointer;
}
.reel-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.reel-play .triangle {
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 3px;
}

/* Bottom caption */
.reel-caption {
  position: absolute;
  bottom: clamp(16px, 2vw, 28px);
  left: clamp(20px, 2.5vw, 36px);
  right: clamp(20px, 2.5vw, 36px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
  gap: 16px;
}
.reel-caption .loc {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
}
.reel-caption .copy {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--paper);
  text-align: right;
  max-width: 50%;
}
.reel-caption .copy em { color: var(--amber); font-style: italic; font-weight: 500; }

.studio-reel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: clamp(20px, 2.5vw, 36px);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  flex-wrap: wrap;
}
.studio-reel-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.studio-reel-foot a:hover { color: var(--amber); }

@media (max-width: 700px) {
  .reel-caption { flex-direction: column; align-items: flex-start; }
  .reel-caption .copy { text-align: left; max-width: 100%; }
}

/* Brand Catalog — editorial mosaic on homepage --------- */

.brand-catalog {
  background: var(--paper);
  padding: clamp(80px, 10vw, 160px) 0 0;
  position: relative;
}

.brand-catalog-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 0 var(--gutter);
  margin-bottom: clamp(40px, 5vw, 72px);
  gap: 24px;
}
.brand-catalog-head h2 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 14ch;
}
.brand-catalog-head h2 em { color: var(--amber); font-style: italic; font-weight: 500; }
.brand-catalog-head .aside {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.65;
  max-width: 320px;
  text-align: right;
}
@media (max-width: 760px) {
  .brand-catalog-head { grid-template-columns: 1fr; }
  .brand-catalog-head .aside { text-align: left; }
}

.brand-catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(190px, auto);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-card {
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background: var(--paper);
  color: var(--ink);
  transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  min-height: 200px;
}
.brand-card:hover { background: var(--ink); color: var(--paper); }
.brand-card:hover .b-meta .chip { border-color: rgba(244,241,234,0.5); }

.brand-card .b-no {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.brand-card .b-no::after {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.brand-card .b-monogram {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 5.4vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  transition: color 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.brand-card:hover .b-monogram { color: var(--amber); transform: translateX(-4px); }

.brand-card .b-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-card .b-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: -0.005em;
}
.brand-card .b-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brand-card .b-meta .chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: border-color 0.4s, color 0.4s;
  white-space: nowrap;
}

/* Variants */
.brand-card.b-featured { grid-column: span 2; grid-row: span 2; background: var(--leaf); color: var(--paper); }
.brand-card.b-featured .b-monogram { font-size: clamp(96px, 12vw, 220px); }
.brand-card.b-featured:hover { background: var(--leaf-deep); }
.brand-card.b-featured .b-meta .chip { border-color: rgba(244,241,234,0.35); }

.brand-card.b-wide { grid-column: span 2; }
.brand-card.b-tall { grid-row: span 2; }

.brand-card.b-amber { background: var(--amber); color: var(--ink); }
.brand-card.b-amber:hover { background: var(--ink); color: var(--amber); }
.brand-card.b-amber:hover .b-monogram { color: var(--paper); }

/* arborra wordmark watermark on featured */
.brand-card.b-featured::after {
  content: "arborra";
  position: absolute;
  bottom: -28px; right: -16px;
  font-family: var(--font-display);
  font-size: 200px;
  letter-spacing: -0.04em;
  opacity: 0.04;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .brand-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card.b-featured { grid-column: span 2; grid-row: span 1; min-height: 280px; }
  .brand-card.b-wide { grid-column: span 2; }
  .brand-card.b-tall { grid-row: span 1; }
}

.brand-catalog-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 3vw, 40px) var(--gutter);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.brand-catalog-foot .note { opacity: 0.7; }
.brand-catalog-foot a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.brand-catalog-foot a:hover { color: var(--amber); }
.brand-catalog-foot a::after {
  content: "→";
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.brand-catalog-foot a:hover::after { transform: translateX(4px); }

/* History (about) ------------------------------------ */

.history {
  background: var(--paper);
  padding: var(--section) 0;
  overflow: hidden;
}

.history-track {
  display: flex;
  gap: clamp(32px, 5vw, 80px);
  padding: 0 var(--gutter);
  will-change: transform;
}

.history-card {
  flex: 0 0 clamp(280px, 28vw, 460px);
  border-left: 1px solid var(--line);
  padding: 32px 0 32px 28px;
}
.history-card .year {
  font-family: var(--font-sans);
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.history-card.is-now .year { color: var(--amber); }
.history-card h3 { margin-bottom: 16px; font-family: var(--font-sans); font-weight: 400; font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.01em; }
.history-card p { font-size: 15px; opacity: 0.8; }

/* Team ----------------------------------------------- */

.team {
  padding: var(--section) var(--gutter);
  background: var(--paper);
}

/* Founder rows — alternating portrait + bio ---------- */
.founders {
  background: var(--paper);
  padding: var(--section) var(--gutter);
}
.founder-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}
.founder-row:last-child { border-bottom: 1px solid var(--line); }
.founder-row.alt { grid-template-columns: 7fr 5fr; }
.founder-row.alt .founder-card { order: 2; }
.founder-row.alt .founder-text { order: 1; }

.founder-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--leaf-deep);
  background-image:
    linear-gradient(180deg, rgba(14,15,12,0) 35%, rgba(14,15,12,0.78) 100%),
    radial-gradient(circle at 50% 35%, rgba(250,130,29,0.25), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
  color: var(--paper);
  transition: transform 0.8s var(--ease-out);
}
.founder-card:hover { transform: scale(1.01); }
.founder-card .card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-card .name {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.01em;
}
.founder-card .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}
.founder-card .badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(244,241,234,0.3);
  border-radius: 999px;
  background: rgba(14,15,12,0.4);
  backdrop-filter: blur(4px);
}

.founder-text { display: flex; flex-direction: column; gap: 20px; max-width: 540px; }
.founder-text .quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--amber);
  opacity: 0.8;
}
.founder-text h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.founder-text h3 em { color: var(--amber); font-style: italic; }
.founder-text p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  opacity: 0.85;
}
.founder-text .since {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .founder-row, .founder-row.alt { grid-template-columns: 1fr; gap: 24px; }
  .founder-row.alt .founder-card { order: 1; }
  .founder-row.alt .founder-text { order: 2; }
  .founder-card { aspect-ratio: 3 / 4; }
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 64px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--paper-soft);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background-image: linear-gradient(180deg, rgba(14,15,12,0) 40%, rgba(14,15,12,0.6) 100%), radial-gradient(circle at 50% 30%, rgba(250,130,29,0.2), transparent 60%);
  background-color: var(--leaf-deep);
  color: var(--paper);
}
.team-card .name {
  font-family: var(--font-sans);
  font-size: 24px;
  letter-spacing: -0.01em;
}
.team-card .role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 6px;
}
.team-card.is-placeholder::before {
  content: "Yakında";
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid rgba(244,241,234,0.25);
  border-radius: 999px;
}

/* Services (hizmetlerimiz) --------------------------- */

.services-intro {
  padding: var(--section) var(--gutter) clamp(40px, 5vw, 80px);
  background: var(--paper);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(60px, 8vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-block.theme-ink { background: var(--ink); color: var(--paper); border-top-color: transparent; }

.service-block .sticky-side { position: sticky; top: calc(var(--header-h) + 40px); }
.service-block .num {
  font-family: var(--font-sans);  font-size: 16px; opacity: 0.55; margin-bottom: 16px;
}
.service-block h2 {
  font-family: var(--font-sans);
  font-size: clamp(48px, 6vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.03em;
}
.service-block .desc {
  max-width: 520px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  margin-top: 24px;
  opacity: 0.85;
}

.service-list { display: flex; flex-direction: column; }
.service-list .row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.4s var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.service-block.theme-ink .service-list .row { border-top-color: rgba(244,241,234,0.12); }
.service-list .row:hover { padding-left: 16px; }
.service-list .row:first-child { border-top: 0; }
.service-list .row .idx {
  font-family: var(--font-sans);  opacity: 0.6;
}
.service-list .row > div { display: flex; flex-direction: column; gap: 8px; max-width: 640px; }
.service-list .row .title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.service-list .row .desc {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
  opacity: 0.75;
  margin-top: 4px;
}
.service-block.theme-ink .service-list .row .desc { opacity: 0.65; }

/* Dark backgrounds: re-bind --amber to the lighter sage so accents
   stay visible on ink/leaf zemines. Light sections keep the deep leaf. */
.hero,
.theme-dark,
.theme-ink,
.site-footer,
.cta-strip,
.brands-strip,
.footer-marquee,
.brand-card.b-featured {
  --amber: var(--amber-on-dark);
}

/* Theme-ink: force paper color on text that base.css forces to --ink.
   Without this, <p> elements inside dark service-block sections render
   invisible (paper bg paper text → black bg black text). */
.service-block.theme-ink,
.service-block.theme-ink .sticky-side .desc,
.service-block.theme-ink .service-list .row .title,
.service-block.theme-ink .service-list .row .desc,
.service-block.theme-ink p { color: var(--paper); }
.service-block.theme-ink .eyebrow { color: var(--paper); }

/* Related services cards (service detail pages) ------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
  min-height: 200px;
  gap: 16px;
  position: relative;
}
.related-card:hover { background: var(--ink); color: var(--paper); }

.related-card .b-no {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.related-card .related-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.related-card .related-arrow {
  align-self: end;
  justify-self: end;
  font-size: 22px;
  transition: transform 0.4s var(--ease-out);
}
.related-card:hover .related-arrow { transform: translate(6px, -2px); }
.service-list .row .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease-out), background 0.4s, color 0.4s;
}
.service-block.theme-ink .service-list .row .icon { border-color: rgba(244,241,234,0.3); }
.service-list .row:hover .icon { transform: rotate(-45deg); background: var(--amber); color: var(--ink); border-color: var(--amber); }

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block .sticky-side { position: static; }
}

/* Brands page grid ----------------------------------- */

.brands-page {
  padding: var(--section) 0;
  background: var(--paper);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .brands-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .brands-grid { grid-template-columns: 1fr; } }

.brand-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--paper);
  transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.brand-cell .brand-name {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.8vw, 44px);
  letter-spacing: -0.01em;
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.brand-cell .brand-tagline {
  position: absolute;
  inset: auto 28px 28px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.brand-cell:hover { background: var(--ink); color: var(--paper); }
.brand-cell:hover .brand-name { transform: translateY(-16px); }
.brand-cell:hover .brand-tagline { opacity: 0.85; transform: translateY(0); }

/* Contact -------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  padding: clamp(48px, 6vw, 96px) var(--gutter) var(--section);
  background: var(--paper);
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.contact-info .info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.contact-info .info-row:last-child { border-bottom: 1px solid var(--line); }
.contact-info .info-row .label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55;
}
.contact-info .info-row .value {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.005em;
}

.contact-socials {
  display: flex; gap: 10px;
  margin-top: 32px;
}
.contact-socials a {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
}
.contact-socials a:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  transform: translateY(-3px);
}
.theme-dark .contact-socials a { color: var(--paper); border-color: rgba(244,241,234,0.4); }
.theme-dark .contact-socials a:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.contact-form .form-success,
.contact-form .form-error { display: none; padding: 16px 20px; margin-top: 16px; border-radius: 4px; font-size: 14px; }
.contact-form .form-success { background: rgba(31, 59, 45, 0.1); color: var(--leaf); }
.contact-form .form-error { background: rgba(250, 130, 29, 0.12); color: #b35e0e; }
.contact-form.is-success .form-success { display: block; }
.contact-form.is-error .form-error { display: block; }

.contact-map {
  height: clamp(280px, 38vw, 480px);
  background: var(--ink);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05) invert(0.9); }

/* CTA Strip — compact, single-line, looping video background ---- */

.cta-strip {
  position: relative;
  padding: clamp(48px, 6vw, 96px) var(--gutter);
  background: var(--leaf);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Background video sits absolutely behind everything */
.cta-strip .cta-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45;
  filter: saturate(0.6) contrast(1.05);
}
/* When no video file exists yet, we render an animated CSS gradient */
.cta-strip .cta-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, rgba(250,130,29,0.5), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(244,241,234,0.18), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(18,34,24,0.6), transparent 60%),
    linear-gradient(120deg, var(--leaf) 0%, var(--leaf-deep) 100%);
  animation: cta-pan 18s ease-in-out infinite alternate;
  filter: blur(2px);
}
@keyframes cta-pan {
  0%   { transform: translate(0,0) scale(1.05); }
  100% { transform: translate(-3%, 4%) scale(1.12); }
}

.cta-strip::after {
  /* tint overlay for legibility */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(14,15,12,0.15) 0%, rgba(14,15,12,0.5) 100%);
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
}
.cta-strip h2 .amber { color: var(--amber); font-style: italic; }

.cta-strip .btn { background: var(--paper); color: var(--ink); }
.cta-strip .btn:hover { background: var(--amber); color: var(--ink); }

@media (max-width: 700px) {
  .cta-strip h2 { white-space: normal; text-align: center; }
}

/* Section heading helper ----------------------------- */

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 80px);
  gap: 32px;
  flex-wrap: wrap;
}
.section-head h2 {
  max-width: 14ch;
  text-wrap: balance;
}
.section-head .head-aside {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.8;
}

/* History intro/outro framing */

.history-head {
  padding: 0 var(--gutter);
  margin-bottom: clamp(40px, 5vw, 80px);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px;
  flex-wrap: wrap;
}
.history-head h2 { font-family: var(--font-sans); font-size: clamp(40px, 5.5vw, 88px); line-height: 0.96; letter-spacing: -0.025em; max-width: 14ch; }

/* Pillar mini canvas (3D wordmark) */
.section-mark {
  width: 100%;
  height: clamp(280px, 40vh, 520px);
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.section-mark canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.section-mark .label {
  position: absolute; bottom: 24px; left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7;
}
