/* =========================================================
   Oreol Promotions — Marketing Website
   Brand system extracted from the 2026 brochure
   ========================================================= */

:root {
  /* Brand palette */
  --orange: #F57921;
  --orange-2: #ff8c34;
  --orange-dark: #E4610F;
  --magenta: #E22275;
  --purple: #470044;
  --navy: #000047;
  --cream: #F3ECE6;
  --cream-2: #efe8e2;
  --cream-3: #e8ded4;
  --ink: #1f1b19;
  --ink-2: #3a3430;
  --grey: #8a8a8a;
  --grey-2: #b7afa8;
  --white: #ffffff;

  --brand-gradient: linear-gradient(100deg, var(--magenta) 0%, var(--purple) 92%);
  --orange-gradient: linear-gradient(120deg, #ff9a3c 0%, var(--orange) 45%, var(--orange-dark) 100%);

  --shadow-sm: 0 4px 14px rgba(60, 40, 20, 0.07);
  --shadow-md: 0 14px 40px rgba(60, 40, 20, 0.10);
  --shadow-lg: 0 30px 70px rgba(50, 30, 15, 0.16);
  --shadow-orange: 0 16px 34px rgba(245, 121, 33, 0.34);

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(245,121,33,.06), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(226,34,117,.05), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  font-size: .74rem; color: var(--orange-dark);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .96;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.display .o { color: var(--orange); }
.display .g { color: var(--grey); }
h2.display { font-size: clamp(2.3rem, 5.4vw, 4rem); }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head p { color: var(--ink-2); font-size: 1.06rem; margin-top: 16px; }
.section-head--center { margin-inline: auto; text-align: center; }

.hand { font-family: var(--font-hand); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 0;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange-gradient); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px rgba(245,121,33,.44); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(31,27,25,.2); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--ink); color: #efe7df; font-size: .82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 20px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #efe7df; opacity: .88; transition: opacity .2s, color .2s; }
.topbar a:hover { opacity: 1; color: var(--orange-2); }
.topbar .tb-left { display: flex; gap: 26px; }
.topbar .tb-right { display: flex; gap: 16px; align-items: center; }
.topbar svg { width: 15px; height: 15px; }
.topbar .tb-tag { color: var(--orange-2); font-weight: 600; letter-spacing: .04em; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(243, 236, 230, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(31,27,25,.06);
  transition: box-shadow .3s, padding .3s, background .3s;
}
.header.scrolled { box-shadow: 0 10px 30px rgba(60,40,20,.09); background: rgba(243,236,230,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; transition: height .3s; }
.header.scrolled .nav { height: 66px; }
.nav__logo img { height: 56px; width: auto; transition: height .3s; }
.header.scrolled .nav__logo img { height: 48px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-weight: 500; font-size: .95rem; color: var(--ink-2); position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--orange);
  transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; width: 44px; height: 44px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: .3s; border-radius: 2px; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: 60px 0 40px; position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr 1.06fr; gap: 46px; align-items: start; }
.hero__eyebrow::before { display: none; }
/* allow grid/flex text columns to shrink below their (Anton) min-content width */
.hero__copy, .about__copy, .about__media, .lose__intro, .lose__bars,
.web__copy, .cta-stride__text, .contact__intro, .roles__head > * { min-width: 0; }
.display, .hero h1 { overflow-wrap: break-word; }
.hero__eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.9rem, 6vw, 5.2rem); line-height: 1.08; letter-spacing: .5px; margin: 0 0 22px;
  color: var(--grey);
}
.hero h1 .o { color: var(--orange); display: block; }
.hero h1 .ink { color: var(--ink); }
.hero__sub {
  display: inline-block; background: var(--ink); color: #fff; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; font-size: .8rem;
  padding: 9px 18px; border-radius: 8px; margin-bottom: 24px;
}
.hero p.lead { font-size: 1.12rem; color: var(--ink-2); max-width: 480px; margin: 0 0 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero__badge b { font-family: var(--font-display); font-size: 2rem; color: var(--orange-dark); display: block; line-height: 1; }
.hero__badge span { font-size: .84rem; color: var(--ink-2); }

.hero__art { position: relative; }
.hero__art-frame {
  position: relative; border-radius: 30px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: radial-gradient(120% 120% at 50% 0%, #fff, var(--cream-2));
  border: 8px solid #fff;
}
.hero__art-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__blob {
  position: absolute; inset: auto -40px -40px auto; width: 260px; height: 260px;
  background: var(--orange-gradient); filter: blur(10px); opacity: .22; border-radius: 50%; z-index: -1;
}
.floating-chip {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600;
  animation: float 5s ease-in-out infinite;
}
.floating-chip .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.floating-chip small { display: block; font-weight: 500; color: var(--grey); font-size: .72rem; }
.chip-1 { top: 24px; left: -26px; }
.chip-2 { bottom: 40px; right: -24px; animation-delay: 1.4s; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50% { transform: translateY(-12px); } }

.marquee-strip {
  margin-top: 26px; background: var(--orange-gradient); color: #fff; overflow: hidden;
  border-radius: 0; transform: rotate(-.4deg);
}

/* =========================================================
   ABOUT / THIS IS US
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.about__media .hand-note {
  position: absolute; top: -26px; left: -10px; font-size: 2rem; color: var(--ink); transform: rotate(-6deg);
}
.about__side-word {
  position: absolute; right: -8px; top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-family: var(--font-display); font-size: 3.4rem; color: var(--orange);
  opacity: .16; letter-spacing: 2px;
}
.about h2 { margin-bottom: 10px; }
.about .brand-name { background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about .lead { font-size: 1.16rem; color: var(--ink-2); }
.about__points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.about__point { display: flex; gap: 12px; align-items: flex-start; }
.about__point svg { flex: none; width: 22px; height: 22px; color: var(--orange); margin-top: 3px; }
.about__point b { display: block; }
.about__point span { font-size: .9rem; color: var(--grey); }

/* =========================================================
   WHAT YOU LOSE (dark stats)
   ========================================================= */
.lose { background: linear-gradient(160deg, #17130f 0%, #241a13 100%); color: #f4ece5; overflow: hidden; }
.lose::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(700px 300px at 90% 10%, rgba(245,121,33,.16), transparent 60%);
  pointer-events:none;
}
.lose .eyebrow { color: var(--orange-2); }
.lose h2.display { color: #fff; }
.lose h2 .g { color: #6f6a64; }
.lose__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.lose__intro p { color: #cfc6bd; font-size: 1.08rem; }
.lose__bars { display: grid; gap: 26px; }
.bar__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.bar__label { font-weight: 500; color: #e9e0d8; }
.bar__label b { font-weight: 700; }
.bar__val { font-family: var(--font-display); font-size: 1.7rem; }
.bar__track { height: 10px; border-radius: 10px; background: rgba(255,255,255,.09); overflow: hidden; }
.bar__fill { height: 100%; width: 0; border-radius: 10px; transition: width 1.5s var(--ease); }
.c-navy { color: #6f7bff; } .f-navy { background: linear-gradient(90deg,#3b3bff,#6f7bff); }
.c-purple { color: #c86bff; } .f-purple { background: linear-gradient(90deg,#7a1f8f,#c86bff); }
.c-magenta { color: #ff5fa2; } .f-magenta { background: linear-gradient(90deg,#e22275,#ff5fa2); }
.c-crimson { color: #ff7a59; } .f-crimson { background: linear-gradient(90deg,#e0344b,#ff7a59); }

/* =========================================================
   ROLES / WHAT MAKES US DIFFERENT
   ========================================================= */
.roles__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.roles__list { display: grid; gap: 16px; margin-top: 48px; }
.role {
  display: grid; grid-template-columns: 72px 44px 1fr 28px; align-items: center; gap: 24px;
  background: #fff; border-radius: var(--radius); padding: 22px 28px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative; overflow: hidden;
}
.role::before {
  content:""; position:absolute; left:0; top:0; bottom:0; width:5px; background: var(--orange-gradient);
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.role:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.role:hover::before { transform: scaleY(1); }
.role__num {
  font-family: var(--font-display); font-size: 2rem; color: #fff; background: var(--orange-gradient);
  width: 70px; height: 62px; display: grid; place-items: center; border-radius: 12px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}
.role__body h3 { margin: 0 0 4px; font-size: 1.16rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.role__body p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.role__icon { color: var(--orange-dark); width: 34px; height: 34px; }
.role__arrow { color: var(--orange); width: 26px; height: 26px; transition: transform .3s; }
.role:hover .role__arrow { transform: translateX(6px); }

/* =========================================================
   WHY WE ARE / STATS
   ========================================================= */
.stats { text-align: center; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 20px; }
.stat {
  background: #fff; border-radius: var(--radius); padding: 34px 20px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,27,25,.05); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.stat:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.stat__ic { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--orange); }
.stat__num { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--ink); }
.stat__num .plus { color: var(--orange); }
.stat__label { color: var(--ink-2); font-size: .95rem; margin-top: 8px; }
.stats__since { font-family: var(--font-display); font-size: clamp(3rem,7vw,5rem); color: var(--grey-2); line-height: .9; }
.stats__since span { color: var(--orange); }

/* =========================================================
   ORANGE DIVIDER
   ========================================================= */
.divider {
  background: var(--orange-gradient); color: #fff; padding: 60px 0; text-align: center; overflow: hidden;
  position: relative;
}
.divider h2 {
  font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.4rem,7vw,5.5rem);
  margin: 0; letter-spacing: 2px; line-height: 1;
}
.divider p { margin: 12px 0 0; font-size: 1.1rem; opacity: .95; }
.divider small { font-family: var(--font-hand); font-size: 2rem; display: block; margin-top: 4px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.service {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 30px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,27,25,.05); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative; overflow: hidden;
}
.service:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service__ic {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; color: #fff;
  background: var(--orange-gradient); margin-bottom: 22px; box-shadow: var(--shadow-orange);
}
.service__ic svg { width: 30px; height: 30px; }
.service h3 { margin: 0 0 4px; font-size: 1.3rem; }
.service .tag { color: var(--orange-dark); font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.service ul { margin-top: 18px; display: grid; gap: 10px; }
.service li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink-2); }
.service li::before {
  content: ""; flex: none; width: 8px; height: 8px; margin-top: 8px; border-radius: 50%;
  background: var(--orange);
}

/* WEB block */
.web { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 80px; }
.web__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.web__badges span {
  background: #fff; border: 1px solid rgba(31,27,25,.08); border-radius: 999px; padding: 10px 20px;
  font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-sm);
}
.web__badges span b { color: var(--orange-dark); }
.web__media { position: relative; display: flex; justify-content: center; }
.web__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 440px; width: 100%; }

/* =========================================================
   CULTURE
   ========================================================= */
.culture { background: #fff; }
.culture .container { max-width: 1360px; }
.culture__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.culture__card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; background: #fff; }
.culture__card img { aspect-ratio: 3/2.05; object-fit: cover; width: 100%; display: block; transition: transform .7s var(--ease); }
.culture__card:hover img { transform: scale(1.05); }
.culture__cap {
  position: absolute; inset: auto 10px 10px 10px; padding: 12px 16px; color: #fff;
  background: rgba(20,14,10,.42); backdrop-filter: blur(6px); border-radius: 12px;
  transform: translateY(6px); opacity: 0; transition: .35s var(--ease);
}
.culture__card:hover .culture__cap { transform: none; opacity: 1; }
.culture__cap b { display: block; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.culture__cap span { font-size: .8rem; opacity: .9; }
.culture__tagline { text-align: center; margin-top: 40px; font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); color: var(--ink); text-transform: uppercase; }
.culture__tagline span { color: var(--orange); }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: linear-gradient(180deg, var(--cream) 0%, #ece2d6 100%); }
.tab-toggle { display: inline-flex; background: #fff; border-radius: 999px; padding: 6px; box-shadow: var(--shadow-sm); margin: 0 auto 46px; }
.tab-toggle button { border: 0; background: transparent; padding: 11px 26px; border-radius: 999px; font-weight: 600; color: var(--ink-2); transition: .3s; }
.tab-toggle button.active { background: var(--orange-gradient); color: #fff; box-shadow: var(--shadow-orange); }
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plans[hidden] { display: none; }
.plan {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(31,27,25,.06); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan--featured { border-color: var(--orange); box-shadow: var(--shadow-md); position: relative; }
.plan--featured::before {
  content: "MOST POPULAR"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange-gradient); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-orange);
}
.plan__name { font-family: var(--font-display); font-size: 1.7rem; text-transform: uppercase; color: var(--ink); letter-spacing: .04em; }
.plan__desc { color: var(--grey); font-size: .84rem; min-height: 34px; }
.plan__price { margin: 16px 0 6px; }
.plan__price b { font-family: var(--font-display); font-size: 2.5rem; color: var(--orange-dark); }
.plan__price .cur { font-size: 1.4rem; vertical-align: top; }
.plan__price small { display: block; color: var(--grey); font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.plan__features { display: grid; gap: 11px; margin: 22px 0 26px; flex: 1; }
.plan__features li { display: flex; gap: 9px; font-size: .89rem; color: var(--ink-2); align-items: flex-start; }
.plan__features svg { flex: none; width: 17px; height: 17px; color: var(--orange); margin-top: 3px; }
.plan .btn { width: 100%; justify-content: center; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.work__grid { column-count: 3; column-gap: 20px; margin-top: 20px; }
.work__item {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  background: #fff; border: 1px solid rgba(31,27,25,.05);
  break-inside: avoid; margin: 0 0 20px; display: block; width: 100%;
}
.work__item img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.work__item:hover img { transform: scale(1.04); }
.work__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px 18px; color: #fff;
  background: linear-gradient(0deg, rgba(20,14,10,.9), rgba(20,14,10,.35) 60%, transparent);
  transform: translateY(8px); opacity: 0; transition: .35s var(--ease);
}
.work__item:hover figcaption { transform: translateY(0); opacity: 1; }
.work__item figcaption b { display: block; }
.work__item figcaption span { font-size: .8rem; opacity: .85; }

/* =========================================================
   CLIENTS
   ========================================================= */
.clients { text-align: center; background: #fff; }
.clients__frame {
  margin-top: 34px; background: linear-gradient(180deg,#fff, #faf6f1); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-md); border: 1px solid rgba(31,27,25,.05);
}
.clients__frame img { width: 100%; border-radius: 10px; }

/* =========================================================
   CTA (goldfish)
   ========================================================= */
.cta-stride { position: relative; overflow: hidden; padding: 0; }
.cta-stride__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 20px; }
.cta-stride__text { padding: 80px 0; }
.cta-stride h2 { color: var(--grey); }
.cta-stride h2 .o { color: var(--orange); }
.cta-stride p { font-size: 1.14rem; color: var(--ink-2); max-width: 440px; margin: 18px 0 30px; }
.cta-stride__img { align-self: stretch; }
.cta-stride__img img { width: 100%; height: 100%; object-fit: contain; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: linear-gradient(165deg, #1b1610 0%, #2c2018 100%); color: #f3ebe4; }
.contact .eyebrow { color: var(--orange-2); }
.contact h2.display { color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info { margin-top: 30px; display: grid; gap: 18px; }
.contact__row { display: flex; gap: 16px; align-items: center; }
.contact__row .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-gradient); display: grid; place-items: center; color: #fff; flex: none; }
.contact__row .ic svg { width: 20px; height: 20px; }
.contact__row small { display: block; color: #b3a89e; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.contact__row b { font-weight: 600; font-size: 1.02rem; }
.contact__media { margin-top: 26px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact__form {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 34px; backdrop-filter: blur(6px);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; margin-bottom: 7px; color: #cfc4ba; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: .95rem; transition: .25s;
}
.field input::placeholder, .field textarea::placeholder { color: #8f857c; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--orange); background: rgba(255,255,255,.1); }
.field select option { color: #000; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .8rem; color: #a89e94; margin-top: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #100c09; color: #b7aca2; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__logo { background: #fff; padding: 16px 18px; border-radius: 14px; display: inline-block; }
.footer__logo img { height: 54px; }
.footer p { font-size: .92rem; line-height: 1.7; margin: 18px 0; }
.footer h4 { color: #fff; font-size: 1rem; margin: 0 0 18px; letter-spacing: .02em; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: .92rem; transition: color .2s, padding-left .2s; }
.footer ul a:hover { color: var(--orange-2); padding-left: 5px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: .25s; }
.footer__social a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem;
}
.footer__bottom .hand { color: var(--orange-2); font-size: 1.3rem; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .floating-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services__grid, .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .work__grid { column-count: 2; }
  .culture__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0; background: var(--cream);
    padding: 10px 24px 24px; box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .4s var(--ease);
    z-index: 90; border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .nav__links.open { transform: none; display: flex; }
  .nav__links a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
  .hero__grid, .about__grid, .lose__grid, .web, .contact__grid, .cta-stride__grid { grid-template-columns: 1fr; }
  .about__side-word { display: none; }
  .cta-stride__text { padding: 60px 0 20px; }
  .about__points { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .services__grid, .stats__grid, .plans, .culture__grid { grid-template-columns: 1fr; }
  .work__grid { column-count: 1; }
  .role { grid-template-columns: 56px auto 1fr; gap: 16px; padding: 18px 20px; }
  .role__arrow { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badges { gap: 20px; }
  .hero h1 { font-size: clamp(2.1rem, 8.6vw, 3rem); }
  h2.display { font-size: clamp(1.85rem, 7.6vw, 2.6rem); }
  .divider h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .floating-chip { animation: none; }
  .chip-1 { left: 6px; top: 10px; }
  .chip-2 { right: 6px; bottom: 14px; }
  .about__media .hand-note { font-size: 1.5rem; left: 6px; }
}
