/* ==========================================================================
   IVRFootage — Design System
   Display: Playfair Display  |  Body: Inter  |  Utility/Mono: IBM Plex Mono
   ========================================================================== */

:root{
  --serif: 'Playfair Display', 'Georgia', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', monospace;

  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 16px;

  --ease: cubic-bezier(.22,.61,.36,1);

  /* ---- Dark theme (default) ---- */
  --bg: #0F111A;
  --bg-elevated: #171A26;
  --bg-elevated-2: #1D2130;
  --border: rgba(243,241,234,0.09);
  --border-strong: rgba(243,241,234,0.16);
  --text: #F3F1EA;
  --text-muted: #9A9DB0;
  --text-faint: #6B6E80;

  --gold: #D6A94A;
  --gold-soft: rgba(214,169,74,0.14);
  --coral: #E8593F;
  --coral-soft: rgba(232,89,63,0.14);
  --green: #7FB069;
  --navy-dot: #38456B;

  --overlay-scrim: linear-gradient(180deg, rgba(15,17,26,0) 0%, rgba(15,17,26,0.9) 100%);
  --shadow-card: 0 1px 2px rgba(0,0,0,.4), 0 12px 32px -12px rgba(0,0,0,.6);
  --shadow-pop: 0 20px 60px -20px rgba(0,0,0,.7);
}

html[data-theme="light"]{
  --bg: #FAF7F0;
  --bg-elevated: #FFFFFF;
  --bg-elevated-2: #F2EEE3;
  --border: rgba(20,22,31,0.10);
  --border-strong: rgba(20,22,31,0.18);
  --text: #16181F;
  --text-muted: #5B5E70;
  --text-faint: #86899A;

  --gold: #B98A2E;
  --gold-soft: rgba(185,138,46,0.12);
  --coral: #D14A32;
  --coral-soft: rgba(209,74,50,0.10);
  --green: #4C8A3B;
  --navy-dot: #2E3B5B;

  --overlay-scrim: linear-gradient(180deg, rgba(250,247,240,0) 0%, rgba(250,247,240,0.94) 100%);
  --shadow-card: 0 1px 2px rgba(20,20,30,.06), 0 12px 32px -16px rgba(20,20,30,.18);
  --shadow-pop: 0 20px 60px -24px rgba(20,20,30,.35);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  transition:background .35s var(--ease), color .35s var(--ease);
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

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

.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
}
@media (max-width:640px){ .container{ padding:0 20px; } }

h1,h2,h3,h4{ font-family:var(--serif); font-weight:600; margin:0; line-height:1.15; letter-spacing:-0.01em; }
p{ margin:0; }

.eyebrow{
  font-family:var(--mono);
  font-size:11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:16px; height:1px;
  background:var(--gold);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--sans); font-weight:600; font-size:14.5px;
  padding:13px 26px; border-radius:3px; border:1px solid transparent;
  cursor:pointer; transition:all .25s var(--ease); white-space:nowrap;
  letter-spacing:.01em;
}
.btn-primary{ background:var(--gold); color:#181206; }
.btn-primary:hover{ background:#e6bb5c; transform:translateY(-1px); }
.btn-outline{ background:transparent; border-color:var(--border-strong); color:var(--text); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); }
.btn-ghost{ background:transparent; color:var(--text-muted); padding:13px 14px; }
.btn-ghost:hover{ color:var(--text); }
.btn-coral{ background:var(--coral); color:#fff; }
.btn-coral:hover{ background:#f16a4f; transform:translateY(-1px); }
.btn-sm{ padding:9px 18px; font-size:13px; }
.btn-full{ width:100%; }
.btn[disabled]{ opacity:.45; cursor:not-allowed; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:100;
  background:color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--border);
}
.header-row{
  display:flex; align-items:center; gap:36px;
  height:76px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand img{ height:30px; width:auto; }
html[data-theme="light"] .brand .logo-dark{ display:block; }
html[data-theme="light"] .brand .logo-light{ display:none; }
html[data-theme="dark"] .brand .logo-light,
:root .brand .logo-light{ display:block; }
:root .brand .logo-dark{ display:none; }

.main-nav{ display:flex; align-items:center; gap:30px; flex:1; }
.main-nav a{
  font-size:14px; font-weight:500; color:var(--text-muted);
  position:relative; padding:6px 0; transition:color .2s;
}
.main-nav a:hover, .main-nav a.active{ color:var(--text); }
.main-nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--gold);
}

.header-actions{ display:flex; align-items:center; gap:10px; margin-left:auto; }

.search-trigger{
  display:flex; align-items:center; gap:8px;
  background:var(--bg-elevated); border:1px solid var(--border);
  padding:9px 14px; border-radius:3px; color:var(--text-faint);
  font-size:13px; min-width:220px; transition:border-color .2s;
}
.search-trigger:hover{ border-color:var(--border-strong); }
.search-trigger svg{ flex-shrink:0; opacity:.7; }
.search-trigger input{
  background:none; border:none; color:var(--text); width:100%; font-size:13.5px;
}
.search-trigger input::placeholder{ color:var(--text-faint); }
.search-trigger input:focus{ outline:none; }

.theme-toggle{
  width:38px; height:38px; border-radius:3px; border:1px solid var(--border);
  background:var(--bg-elevated); display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); transition:all .2s;
}
.theme-toggle:hover{ color:var(--gold); border-color:var(--border-strong); }
.theme-toggle svg{ width:17px; height:17px; }
.theme-toggle .icon-sun{ display:none; }
html[data-theme="light"] .theme-toggle .icon-moon{ display:none; }
html[data-theme="light"] .theme-toggle .icon-sun{ display:block; }

.nav-burger{ display:none; width:38px; height:38px; align-items:center; justify-content:center; border:1px solid var(--border); border-radius:3px; background:var(--bg-elevated); color:var(--text); }

@media (max-width:980px){
  .main-nav{ display:none; }
  .search-trigger{ min-width:0; width:38px; padding:9px; }
  .search-trigger span, .search-trigger input{ display:none; }
  .nav-burger{ display:flex; }
}

/* mobile drawer */
.mobile-drawer{
  position:fixed; inset:0; z-index:200; display:none;
}
.mobile-drawer.open{ display:block; }
.mobile-drawer .scrim{ position:absolute; inset:0; background:rgba(0,0,0,.55); }
.mobile-drawer .panel{
  position:absolute; top:0; right:0; bottom:0; width:82%; max-width:340px;
  background:var(--bg-elevated); padding:26px 26px; overflow-y:auto;
  display:flex; flex-direction:column; gap:22px;
  border-left:1px solid var(--border);
}
.mobile-drawer nav{ display:flex; flex-direction:column; gap:2px; }
.mobile-drawer nav a{ padding:13px 4px; font-size:16px; border-bottom:1px solid var(--border); color:var(--text); }
.mobile-drawer .close-drawer{ align-self:flex-end; background:none; border:none; color:var(--text-muted); }

/* ==========================================================================
   Sprocket / filmstrip motif (signature element)
   ========================================================================== */
.sprockets{
  display:flex; gap:14px; padding:9px 0;
}
.sprockets span{
  width:7px; height:7px; border-radius:1px;
  background:var(--border-strong); flex-shrink:0;
}
.filmstrip-edge{
  height:26px; width:100%;
  background-image: radial-gradient(circle, var(--bg) 3.5px, transparent 3.6px);
  background-size: 26px 26px;
  background-position: 8px center;
  background-color: #0B0C12;
}
html[data-theme="light"] .filmstrip-edge{ background-color:#1B1C22; background-image: radial-gradient(circle, var(--bg) 3.5px, transparent 3.6px); }

.timecode{
  font-family:var(--mono); font-size:11px; letter-spacing:.06em; color:var(--text-faint);
}

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  border-bottom:1px solid var(--border);
  background:var(--bg);
}
.hero-reel{
  position:absolute; inset:0; z-index:0; opacity:.5;
}
html[data-theme="light"] .hero-reel{ opacity:.22; }
.reel-track{
  display:flex; gap:4px; position:absolute; top:50%; left:0; transform:translateY(-50%);
  animation: reel-scroll 70s linear infinite;
  width:max-content;
}
.reel-track img{ height:340px; width:auto; filter:grayscale(45%) brightness(.6); border-radius:2px; }
html[data-theme="light"] .reel-track img{ filter:grayscale(30%) brightness(1.05); }
@keyframes reel-scroll{ from{ transform:translate(0,-50%);} to{ transform:translate(-50%,-50%);} }

.hero-scrim{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(90deg, var(--bg) 18%, color-mix(in srgb, var(--bg) 55%, transparent) 55%, var(--bg) 100%),
              linear-gradient(180deg, var(--bg) 0%, transparent 26%, transparent 70%, var(--bg) 100%);
}
.hero-inner{
  position:relative; z-index:2;
  padding:96px 0 74px;
}
.hero-inner .eyebrow{ margin-bottom:22px; }
.hero-inner h1{
  font-size:clamp(2.4rem, 5vw, 4.1rem);
  max-width:16ch;
  margin-bottom:22px;
}
.hero-inner h1 em{ font-style:italic; color:var(--gold); }
.hero-sub{
  font-size:17.5px; color:var(--text-muted); max-width:52ch; margin-bottom:36px;
}
.hero-search{
  display:flex; gap:0; max-width:640px; background:var(--bg-elevated);
  border:1px solid var(--border-strong); border-radius:4px; overflow:hidden;
  box-shadow:var(--shadow-card);
}
.hero-search select{
  background:var(--bg-elevated-2); border:none; color:var(--text-muted);
  padding:0 14px; font-size:13.5px; border-right:1px solid var(--border);
}
.hero-search input{
  flex:1; background:none; border:none; padding:0 16px; color:var(--text); font-size:15px; height:56px;
}
.hero-search input:focus{ outline:none; }
.hero-search button{
  background:var(--gold); border:none; color:#181206; font-weight:700; padding:0 28px;
  display:flex; align-items:center; gap:8px; font-size:14px;
}
.hero-tags{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.hero-tags a{
  font-size:12.5px; color:var(--text-faint); border:1px solid var(--border); padding:6px 13px; border-radius:20px;
  transition:all .2s;
}
.hero-tags a:hover{ color:var(--gold); border-color:var(--gold); }

.hero-stats{
  display:flex; gap:48px; margin-top:64px; padding-top:32px; border-top:1px solid var(--border);
  flex-wrap:wrap;
}
.hero-stats div b{ font-family:var(--serif); font-size:1.9rem; font-weight:600; display:block; }
.hero-stats div span{ font-family:var(--mono); font-size:11px; color:var(--text-faint); letter-spacing:.08em; text-transform:uppercase; }

/* ==========================================================================
   Sections generic
   ========================================================================== */
.section{ padding:88px 0; }
.section-tight{ padding:56px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  margin-bottom:44px; flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(1.7rem,3vw,2.4rem); margin-top:14px; }
.section-head p{ color:var(--text-muted); max-width:46ch; margin-top:10px; }
.section-head .head-link{
  font-family:var(--mono); font-size:12.5px; color:var(--gold); letter-spacing:.05em;
  border-bottom:1px solid transparent; padding-bottom:2px; white-space:nowrap;
}
.section-head .head-link:hover{ border-color:var(--gold); }
.section-alt{ background:var(--bg-elevated); }

/* ---------- USP strip ---------- */
.usp-strip{ border-bottom:1px solid var(--border); border-top:1px solid var(--border); }
.usp-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.usp-item{
  display:flex; gap:16px; padding:34px 30px; border-right:1px solid var(--border);
}
.usp-item:last-child{ border-right:none; }
.usp-item .icon{
  width:42px; height:42px; border-radius:50%; background:var(--gold-soft); color:var(--gold);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.usp-item .icon svg{ width:20px; height:20px; }
.usp-item h4{ font-family:var(--sans); font-size:14.5px; font-weight:700; margin-bottom:4px; }
.usp-item p{ font-size:13px; color:var(--text-muted); line-height:1.5; }
@media (max-width:980px){ .usp-grid{ grid-template-columns:1fr 1fr; } .usp-item{ border-right:none; border-bottom:1px solid var(--border);} }
@media (max-width:560px){ .usp-grid{ grid-template-columns:1fr; } }

/* ---------- Featured banner ---------- */
.featured-banner{
  position:relative; border-radius:var(--radius-l); overflow:hidden;
  min-height:420px; display:flex; align-items:flex-end; box-shadow:var(--shadow-pop);
}
.featured-banner img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.featured-banner .scrim{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(8,9,14,.92) 0%, rgba(8,9,14,.35) 55%, rgba(8,9,14,.05) 100%); }
.featured-banner .content{ position:relative; z-index:2; padding:48px; max-width:640px; }
.featured-banner .eyebrow{ color:#E8C574; }
.featured-banner h3{ color:#fff; font-size:clamp(1.6rem,3.4vw,2.4rem); margin:16px 0 14px; }
.featured-banner p{ color:rgba(255,255,255,.78); margin-bottom:26px; font-size:15px; }

/* ==========================================================================
   Grids & Cards
   ========================================================================== */
.grid-photos{
  columns:4 260px; column-gap:18px;
}
.grid-photos .card{ break-inside:avoid; margin-bottom:18px; }
@media (max-width:1180px){ .grid-photos{ columns:3 220px; } }
@media (max-width:760px){ .grid-photos{ columns:2 160px; column-gap:12px;} .grid-photos .card{ margin-bottom:12px;} }
@media (max-width:480px){ .grid-photos{ columns:2 140px; } }

.card{
  position:relative; border-radius:var(--radius-m); overflow:hidden; background:var(--bg-elevated);
  border:1px solid var(--border); box-shadow:var(--shadow-card);
  transition:transform .3s var(--ease), border-color .3s;
}
.card:hover{ transform:translateY(-3px); border-color:var(--border-strong); }
.card a.card-link{ display:block; }
.card .thumb{ position:relative; width:100%; overflow:hidden; background:var(--bg-elevated-2); }
.card .thumb img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s var(--ease); }
.card:hover .thumb img{ transform:scale(1.045); }

.card .thumb video{ width:100%; height:100%; object-fit:cover; display:block; }

.badge{
  font-family:var(--mono); font-size:10.5px; letter-spacing:.05em; font-weight:600;
  padding:4px 8px; border-radius:3px; background:rgba(15,17,26,.72); color:#F3F1EA;
  backdrop-filter:blur(4px);
}
.badge-gold{ background:var(--gold); color:#181206; }
.badge-coral{ background:var(--coral); color:#fff; }

.card .thumb-top{
  position:absolute; top:10px; left:10px; right:10px; z-index:2;
  display:flex; justify-content:space-between; align-items:flex-start;
}
.card .fav-btn{
  width:30px; height:30px; border-radius:50%; background:rgba(15,17,26,.6); backdrop-filter:blur(4px);
  border:1px solid rgba(255,255,255,.14); color:#fff; display:flex; align-items:center; justify-content:center;
  transition:all .2s; flex-shrink:0;
}
.card .fav-btn:hover{ background:var(--coral); border-color:var(--coral); }
.card .fav-btn svg{ width:14px; height:14px; }

.card .play-badge{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .25s; pointer-events:none; z-index:2;
}
.card:hover .play-badge{ opacity:0; }
.card .play-badge .circle{
  width:52px; height:52px; border-radius:50%; background:rgba(15,17,26,.55); border:1.5px solid rgba(255,255,255,.5);
  display:flex; align-items:center; justify-content:center; backdrop-filter:blur(3px);
}

.card .meta-bar{
  position:absolute; left:0; right:0; bottom:0; z-index:2; padding:10px 12px 12px;
  background:var(--overlay-scrim);
  display:flex; align-items:center; justify-content:space-between; gap:8px;
}
.card .meta-bar .name{ font-size:12.5px; font-weight:600; color:#fff; }
.card .meta-bar .sub{ font-family:var(--mono); font-size:10px; color:rgba(255,255,255,.65); }
.card .duration{ font-family:var(--mono); font-size:10.5px; color:#fff; background:rgba(15,17,26,.7); padding:3px 7px; border-radius:3px; }

.card-info{ padding:12px 14px 15px; }
.card-info .name{ font-size:13.5px; font-weight:600; margin-bottom:3px; }
.card-info .row{ display:flex; align-items:center; justify-content:space-between; }
.card-info .price{ font-family:var(--mono); font-size:12px; color:var(--gold); }
.card-info .tag{ font-family:var(--mono); font-size:10.5px; color:var(--text-faint); }

/* video grid (fixed 16:9) */
.grid-videos{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-videos .card .thumb{ aspect-ratio:16/9; }
@media (max-width:980px){ .grid-videos{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-videos{ grid-template-columns:1fr;} }

.load-more-wrap{ display:flex; justify-content:center; margin-top:44px; }

/* ==========================================================================
   Categories
   ========================================================================== */
.grid-categories{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:980px){ .grid-categories{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .grid-categories{ grid-template-columns:1fr;} }

.cat-card{
  position:relative; border-radius:var(--radius-m); overflow:hidden; aspect-ratio:4/3;
  border:1px solid var(--border);
}
.cat-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); filter:saturate(.9); }
.cat-card:hover img{ transform:scale(1.06); }
.cat-card .scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,11,17,.05) 30%, rgba(10,11,17,.88) 100%); }
.cat-card .info{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:18px; }
.cat-card h4{ color:#fff; font-size:1.15rem; margin-bottom:4px; }
.cat-card .count{ font-family:var(--mono); font-size:11px; color:rgba(255,255,255,.7); }

/* ==========================================================================
   Stats / Why-us
   ========================================================================== */
.stats-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stats-row .stat b{ font-family:var(--serif); font-size:2.6rem; font-weight:600; color:var(--gold); display:block; }
.stats-row .stat span{ font-size:13px; color:var(--text-muted); }
@media (max-width:760px){ .stats-row{ grid-template-columns:1fr 1fr; row-gap:36px; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }
.testi-card{
  background:var(--bg-elevated); border:1px solid var(--border); border-radius:var(--radius-m);
  padding:28px; display:flex; flex-direction:column; gap:16px;
}
.testi-card .stars{ color:var(--gold); font-size:13px; letter-spacing:2px; }
.testi-card p{ font-size:14.5px; color:var(--text-muted); line-height:1.65; }
.testi-card .who{ display:flex; align-items:center; gap:10px; margin-top:auto; }
.testi-card .who img{ width:38px; height:38px; border-radius:50%; object-fit:cover; }
.testi-card .who b{ font-size:13.5px; display:block; }
.testi-card .who span{ font-size:12px; color:var(--text-faint); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  border-radius:var(--radius-l); background:var(--bg-elevated); border:1px solid var(--border);
  padding:56px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; top:-40%; right:-10%; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, var(--gold-soft), transparent 70%);
}
.cta-band h3{ font-size:clamp(1.5rem,2.6vw,2.1rem); max-width:16ch; position:relative; z-index:1; }
.cta-band .actions{ display:flex; gap:12px; position:relative; z-index:1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ border-top:1px solid var(--border); background:var(--bg-elevated); }
.footer-top{ padding:64px 0 48px; display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1.2fr; gap:32px; }
@media (max-width:980px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } }
.footer-top h5{ font-family:var(--sans); font-size:13px; letter-spacing:.04em; margin-bottom:16px; color:var(--text); }
.footer-top ul li{ margin-bottom:10px; }
.footer-top ul a{ font-size:13.5px; color:var(--text-muted); transition:color .2s; }
.footer-top ul a:hover{ color:var(--gold); }
.footer-brand p{ font-size:13.5px; color:var(--text-muted); margin:16px 0 20px; max-width:32ch; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:34px; height:34px; border:1px solid var(--border); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:var(--text-muted); transition:all .2s;
}
.footer-social a:hover{ color:var(--gold); border-color:var(--gold); }
.newsletter-row{ display:flex; margin-top:14px; border:1px solid var(--border-strong); border-radius:3px; overflow:hidden; }
.newsletter-row input{ flex:1; background:none; border:none; padding:11px 12px; color:var(--text); font-size:13px; }
.newsletter-row button{ background:var(--gold); border:none; padding:0 16px; color:#181206; font-weight:700; }
.footer-bottom{
  border-top:1px solid var(--border); padding:22px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-bottom p{ font-size:12.5px; color:var(--text-faint); }
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom .legal-links a{ font-size:12.5px; color:var(--text-faint); }
.footer-bottom .legal-links a:hover{ color:var(--gold); }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--text-faint); padding:22px 0; flex-wrap:wrap; }
.breadcrumb a:hover{ color:var(--gold); }
.breadcrumb span{ opacity:.5; }
.breadcrumb .current{ color:var(--text-muted); }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-hero{
  padding:56px 0 46px; border-bottom:1px solid var(--border); background:var(--bg-elevated);
  position:relative;
}
.page-hero h1{ font-size:clamp(2rem,4vw,3rem); margin-top:14px; max-width:22ch; }
.page-hero p{ color:var(--text-muted); max-width:56ch; margin-top:14px; font-size:16px; }

/* ==========================================================================
   Filter bar (browse pages)
   ========================================================================== */
.filter-bar{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap; padding:20px 0;
  border-bottom:1px solid var(--border); margin-bottom:36px;
}
.filter-chip{
  display:flex; align-items:center; gap:6px; font-size:13px; padding:8px 14px; border-radius:20px;
  border:1px solid var(--border-strong); color:var(--text-muted); background:var(--bg-elevated);
  transition:all .2s;
}
.filter-chip:hover, .filter-chip.active{ border-color:var(--gold); color:var(--gold); }
.filter-chip select{ background:none; border:none; color:inherit; font-size:13px; }
.filter-bar .result-count{ margin-left:auto; font-family:var(--mono); font-size:12px; color:var(--text-faint); }
.sort-select{ background:var(--bg-elevated); border:1px solid var(--border-strong); color:var(--text-muted); padding:8px 12px; border-radius:20px; font-size:13px; }

/* ==========================================================================
   Product page
   ========================================================================== */
.product-layout{ display:grid; grid-template-columns:1.55fr 1fr; gap:52px; align-items:start; }
@media (max-width:940px){ .product-layout{ grid-template-columns:1fr; } }

.product-media{ border-radius:var(--radius-m); overflow:hidden; border:1px solid var(--border); background:var(--bg-elevated); }
.product-media img, .product-media video{ width:100%; display:block; }
.media-toolbar{ display:flex; justify-content:space-between; align-items:center; padding:12px 16px; border-top:1px solid var(--border); }
.media-toolbar .left{ display:flex; gap:10px; align-items:center; }
.media-toolbar .icon-btn{ width:34px; height:34px; border-radius:3px; border:1px solid var(--border-strong); display:flex; align-items:center; justify-content:center; color:var(--text-muted); }
.media-toolbar .icon-btn:hover{ color:var(--gold); border-color:var(--gold); }

.product-thumbs{ display:flex; gap:10px; margin-top:14px; }
.product-thumbs img{ width:76px; height:52px; object-fit:cover; border-radius:4px; border:1px solid var(--border); cursor:pointer; }
.product-thumbs img.active{ border-color:var(--gold); }

.product-side{ position:sticky; top:96px; }
.product-side .kicker{ font-family:var(--mono); font-size:11.5px; color:var(--text-faint); letter-spacing:.06em; text-transform:uppercase; }
.product-side h1{ font-size:1.7rem; margin:10px 0 14px; }
.product-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:22px; }
.product-tags a{ font-size:12px; padding:5px 12px; border-radius:20px; border:1px solid var(--border); color:var(--text-muted); }
.product-tags a:hover{ color:var(--gold); border-color:var(--gold); }

.license-box{
  border:1px solid var(--border); border-radius:var(--radius-m); background:var(--bg-elevated); overflow:hidden; margin-bottom:22px;
}
.license-option{
  display:flex; align-items:center; justify-content:space-between; padding:16px 18px;
  border-bottom:1px solid var(--border); cursor:pointer; transition:background .2s;
}
.license-option:last-child{ border-bottom:none; }
.license-option:hover{ background:var(--bg-elevated-2); }
.license-option.selected{ background:var(--gold-soft); }
.license-option .l-name{ font-size:14px; font-weight:600; }
.license-option .l-desc{ font-size:12px; color:var(--text-faint); margin-top:2px; }
.license-option .l-price{ font-family:var(--mono); font-weight:700; color:var(--gold); }
.license-option input{ accent-color:var(--gold); margin-right:12px; }

.spec-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px 20px; margin:26px 0; }
.spec-item span{ display:block; }
.spec-item .k{ font-family:var(--mono); font-size:10.5px; color:var(--text-faint); text-transform:uppercase; letter-spacing:.05em; margin-bottom:4px; }
.spec-item .v{ font-size:13.5px; font-weight:600; }

.product-desc{ font-size:14.5px; color:var(--text-muted); line-height:1.75; margin:22px 0; }
.author-card{
  display:flex; align-items:center; gap:12px; padding:16px; border:1px solid var(--border); border-radius:var(--radius-m); background:var(--bg-elevated);
}
.author-card img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.author-card .name{ font-size:13.5px; font-weight:700; }
.author-card .role{ font-size:11.5px; color:var(--text-faint); font-family:var(--mono); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-toggle{
  display:flex; align-items:center; justify-content:center; gap:14px; margin:0 auto 52px;
}
.pricing-toggle span{ font-size:13.5px; color:var(--text-muted); }
.pricing-toggle span.active{ color:var(--text); font-weight:700; }
.switch{ width:46px; height:26px; border-radius:20px; background:var(--bg-elevated-2); border:1px solid var(--border-strong); position:relative; }
.switch::after{ content:""; position:absolute; width:20px; height:20px; border-radius:50%; background:var(--gold); top:2px; left:2px; transition:left .25s var(--ease); }
.switch.on::after{ left:23px; }

.plans-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
@media (max-width:900px){ .plans-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }
.plan-card{
  border:1px solid var(--border); border-radius:var(--radius-l); background:var(--bg-elevated);
  padding:34px 28px; display:flex; flex-direction:column;
}
.plan-card.featured{ border-color:var(--gold); box-shadow:0 0 0 1px var(--gold), var(--shadow-pop); position:relative; }
.plan-card.featured .ribbon{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:#181206; font-family:var(--mono); font-size:11px; letter-spacing:.05em;
  padding:5px 14px; border-radius:20px; font-weight:700;
}
.plan-card .plan-name{ font-family:var(--mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-faint); }
.plan-card .plan-price{ font-family:var(--serif); font-size:2.6rem; margin:14px 0 4px; }
.plan-card .plan-price span{ font-family:var(--sans); font-size:14px; color:var(--text-faint); font-weight:400; }
.plan-card .plan-desc{ font-size:13.5px; color:var(--text-muted); margin-bottom:24px; }
.plan-card ul{ display:flex; flex-direction:column; gap:12px; margin-bottom:28px; flex:1; }
.plan-card ul li{ display:flex; gap:10px; font-size:13.5px; color:var(--text-muted); align-items:flex-start; }
.plan-card ul li svg{ color:var(--green); flex-shrink:0; margin-top:2px; }

.compare-table{ width:100%; border-collapse:collapse; margin-top:60px; }
.compare-table th, .compare-table td{ padding:16px 18px; border-bottom:1px solid var(--border); font-size:13.5px; text-align:center; }
.compare-table td:first-child, .compare-table th:first-child{ text-align:left; color:var(--text-muted); }
.compare-table th{ font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.05em; color:var(--text-faint); }
.compare-table td svg{ color:var(--green); }
.compare-table .muted{ color:var(--text-faint); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:22px 4px; background:none; border:none; text-align:left; color:var(--text); font-size:15.5px; font-weight:600;
}
.faq-q .plus{ font-size:20px; color:var(--gold); transition:transform .25s; flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s var(--ease); }
.faq-item.open .faq-a{ max-height:300px; }
.faq-a p{ padding:0 4px 22px; color:var(--text-muted); font-size:14px; line-height:1.7; max-width:70ch; }

/* ==========================================================================
   About page
   ========================================================================== */
.split-block{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
@media (max-width:860px){ .split-block{ grid-template-columns:1fr; gap:32px; } }
.split-block img{ border-radius:var(--radius-l); width:100%; aspect-ratio:4/3; object-fit:cover; }
.split-block.reverse{ direction:rtl; }
.split-block.reverse > *{ direction:ltr; }

.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:760px){ .value-grid{ grid-template-columns:1fr; } }
.value-card{ padding:28px; border:1px solid var(--border); border-radius:var(--radius-m); background:var(--bg-elevated); }
.value-card .icon{ width:44px; height:44px; border-radius:10px; background:var(--gold-soft); color:var(--gold); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.value-card h4{ font-family:var(--sans); font-size:15.5px; font-weight:700; margin-bottom:8px; }
.value-card p{ font-size:13.5px; color:var(--text-muted); line-height:1.6; }

.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:860px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }
.team-card img{ width:100%; aspect-ratio:1; object-fit:cover; border-radius:var(--radius-m); margin-bottom:14px; filter:grayscale(30%); }
.team-card b{ font-size:14.5px; display:block; }
.team-card span{ font-size:12px; color:var(--text-faint); font-family:var(--mono); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout{ display:grid; grid-template-columns:1fr 1.15fr; gap:60px; }
@media (max-width:900px){ .contact-layout{ grid-template-columns:1fr; } }
.contact-info-card{ display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--border); }
.contact-info-card .icon{ width:42px; height:42px; border-radius:50%; background:var(--gold-soft); color:var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-card h4{ font-family:var(--sans); font-size:14.5px; font-weight:700; margin-bottom:4px; }
.contact-info-card p{ font-size:13.5px; color:var(--text-muted); }

.form-card{ background:var(--bg-elevated); border:1px solid var(--border); border-radius:var(--radius-l); padding:38px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field label{ display:block; font-size:12.5px; color:var(--text-muted); margin-bottom:8px; font-weight:600; }
.field input, .field select, .field textarea{
  width:100%; background:var(--bg); border:1px solid var(--border-strong); border-radius:3px; padding:12px 14px;
  color:var(--text); font-size:14px; transition:border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--gold); }
.field textarea{ resize:vertical; min-height:120px; }
.field{ margin-bottom:18px; }
.form-note{ font-size:12px; color:var(--text-faint); margin-top:14px; }

.map-embed{ border-radius:var(--radius-m); overflow:hidden; border:1px solid var(--border); height:280px; margin-top:32px; }
.map-embed iframe{ width:100%; height:100%; border:0; filter:grayscale(0.4) invert(0); }
html[data-theme="dark"] .map-embed iframe, :root .map-embed iframe{ filter:grayscale(.5) invert(.92) contrast(.9); }
html[data-theme="light"] .map-embed iframe{ filter:none; }

/* ==========================================================================
   Similar items section (product page)
   ========================================================================== */
.similar-section{ margin-top:96px; }

/* ==========================================================================
   Not found / empty state
   ========================================================================== */
.empty-state{ text-align:center; padding:100px 20px; }
.empty-state h2{ font-size:2rem; margin:20px 0 10px; }
.empty-state p{ color:var(--text-muted); margin-bottom:28px; }

/* ==========================================================================
   Legal pages (license terms / privacy / ToS / cookies)
   ========================================================================== */
.legal-content{ max-width:820px; margin:0 auto; }
.legal-content .updated{ font-family:var(--mono); font-size:12px; color:var(--text-faint); margin-bottom:40px; display:block; }
.legal-content h2{ font-size:1.35rem; margin:44px 0 14px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content h3{ font-family:var(--sans); font-size:1rem; font-weight:700; margin:26px 0 10px; }
.legal-content p{ color:var(--text-muted); font-size:14.5px; line-height:1.8; margin-bottom:16px; }
.legal-content ul{ margin:0 0 18px; padding-left:20px; list-style:disc; }
.legal-content ul li{ color:var(--text-muted); font-size:14.5px; line-height:1.8; margin-bottom:8px; }
.legal-content a{ color:var(--gold); border-bottom:1px solid transparent; }
.legal-content a:hover{ border-color:var(--gold); }
.legal-toc{
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom:44px; padding:20px; border:1px solid var(--border);
  border-radius:var(--radius-m); background:var(--bg-elevated);
}
.legal-toc a{ font-size:12.5px; padding:6px 12px; border-radius:20px; border:1px solid var(--border-strong); color:var(--text-muted); }
.legal-toc a:hover{ color:var(--gold); border-color:var(--gold); }

.toast{
  position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--bg-elevated); border:1px solid var(--border-strong); color:var(--text);
  padding:14px 22px; border-radius:6px; font-size:13.5px; box-shadow:var(--shadow-pop);
  opacity:0; pointer-events:none; transition:all .3s var(--ease); z-index:999; display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
.toast svg{ color:var(--green); flex-shrink:0; }

/* animations on scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
