/* ================= Cutline Studio — Design System ================= */

:root{
  --ink:#0A0A0D;
  --ink-soft:#18181D;
  --paper:#FFFFFF;
  --paper-dim:#121216;
  --steel:#9C9EA8;
  --steel-light:#C7C9D1;
  --line-on-dark: rgba(255,255,255,0.14);
  --line-on-light: rgba(255,255,255,0.12);
  --accent:#FF3B2E;
  --accent-dim:#D42A1E;
  --purple:#A78BFA;
  --purple-deep:#2B1750;

  --cat-youtube:#FF3B2E;
  --cat-youtube-deep:#4A0F0A;
  --cat-podcast:#A78BFA;
  --cat-podcast-deep:#2B1750;
  --cat-realestate:#22DCC5;
  --cat-realestate-deep:#0D3F3A;
  --cat-shorts:#FFB020;
  --cat-shorts-deep:#553206;
  --cat-wedding:#FF6FA0;
  --cat-wedding-deep:#4A1030;
  --cat-kids:#FFD23F;
  --cat-kids-deep:#4A3B05;
  --cat-music:#5B6EF5;
  --cat-music-deep:#161F5E;

  --gradient-brand: linear-gradient(135deg, var(--accent), var(--purple));
  --gradient-hero:
    radial-gradient(ellipse 700px 500px at 15% 20%, rgba(255,59,46,0.28), transparent 60%),
    radial-gradient(ellipse 700px 550px at 85% 25%, rgba(167,139,250,0.30), transparent 60%),
    radial-gradient(ellipse 800px 500px at 50% 100%, rgba(34,220,197,0.16), transparent 65%);

  /* Fixed tokens — do NOT change with the light/dark toggle.
     Used on surfaces that are always dark (hero, process, CTA bands, footer)
     regardless of site theme, so contrast never breaks. */
  --fixed-dark-bg:#0A0A0D;
  --fixed-dark-surface:#18181D;
  --fixed-white:#FFFFFF;
  --fixed-dark-text:#0A0A0D;
  --fixed-muted: var(--steel-light);
  --fixed-line: var(--line-on-dark);
  --header-bg: rgba(10,10,13,0.92);

  --font-display:'Bricolage Grotesque', sans-serif;
  --font-body:'Inter', sans-serif;

  --container: 1160px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3), 0 1px 1px rgba(0,0,0,0.2);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.45), 0 4px 10px rgba(0,0,0,0.3);
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Light theme override ---------- */
/* Only the tokens for "normal" content sections flip. Hero, process,
   CTA bands and footer intentionally stay dark & colorful in both modes —
   they use the --fixed-* tokens above, not these. */
html[data-theme="light"]{
  --ink:#FFFFFF;
  --ink-soft:#F4F4F7;
  --paper:#0A0A0D;
  --paper-dim:#F0F0F4;
  --steel:#5B5E68;
  --line-on-light: rgba(10,10,13,0.10);
  --header-bg: rgba(255,255,255,0.92);
  --shadow-sm: 0 1px 2px rgba(10,10,13,0.05), 0 1px 1px rgba(10,10,13,0.04);
  --shadow-md: 0 10px 28px rgba(10,10,13,0.09), 0 3px 8px rgba(10,10,13,0.06);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer;}

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h3,h4{ font-weight: 700; letter-spacing: -0.01em; }

.eyebrow{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before{
  content:"";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink:0;
}
.eyebrow.dim{ color: var(--steel); }
.eyebrow.dim::before{ background: var(--steel); }
.eyebrow.cat-youtube{ color: var(--cat-youtube); }
.eyebrow.cat-youtube::before{ background: var(--cat-youtube); }
.eyebrow.cat-podcast, .eyebrow.cat-talking-head{ color: var(--cat-podcast); }
.eyebrow.cat-podcast::before, .eyebrow.cat-talking-head::before{ background: var(--cat-podcast); }
.eyebrow.cat-realestate, .eyebrow.cat-real-estate{ color: var(--cat-realestate); }
.eyebrow.cat-realestate::before, .eyebrow.cat-real-estate::before{ background: var(--cat-realestate); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active{ transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn-primary{
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}
.btn-primary:hover{ filter: brightness(1.1); }
.btn-ghost{
  background: transparent;
  color: var(--paper);
  border-color: var(--line-on-light);
}
.btn-ghost:hover{ border-color: var(--paper); }
.btn-on-dark{
  color: var(--fixed-white);
  border-color: var(--fixed-line);
}
.btn-on-dark:hover{ border-color: var(--fixed-white); }
/* Ghost buttons inside permanently-dark sections must stay fixed-light,
   since --paper toggles but these backgrounds never do. */
.hero .btn-ghost, .section-dark .btn-ghost{
  color: var(--fixed-white);
  border-color: var(--fixed-line);
}
.hero .btn-ghost:hover, .section-dark .btn-ghost:hover{ border-color: var(--fixed-white); }
.btn-accent{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover{ background: var(--accent-dim); border-color: var(--accent-dim); }

/* ---------- Header / Nav ---------- */
header.site{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line-on-light);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 76px;
}
.logo{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  display:flex;
  align-items:center;
  gap:10px;
}
.logo .mark{
  width: 11px; height: 11px;
  background: var(--accent);
  border-radius: 50%;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 38px;
  font-size: 15.5px;
  font-weight: 500;
}
.nav-links a{ position:relative; padding: 4px 0; color: var(--paper); transition: color .2s ease; }
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav-links a.active::after{ width:100%; }
.nav-links a.active{ color: var(--accent); }
.nav-links a:not(.active):hover{ color: var(--steel); }
.nav-links a:not(.active):hover::after{ width:100%; background: var(--steel); }

/* ---------- Services dropdown ---------- */
.nav-dropdown{ position: relative; }
.nav-drop-trigger{ display:inline-flex; align-items:center; gap:6px; }
.nav-drop-trigger .chev{ width:13px; height:13px; transition: transform .2s var(--ease); }
.nav-dropdown:hover .nav-drop-trigger .chev,
.nav-dropdown:focus-within .nav-drop-trigger .chev{ transform: rotate(180deg); }
.nav-dropdown-panel{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--ink-soft);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px 10px 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--ease);
  z-index: 50;
}
.nav-dropdown-panel::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel{
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-panel a{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--paper);
}
.nav-dropdown-panel a::after{ display:none; }
.nav-dropdown-panel a:hover{ background: var(--line-on-light); color: var(--paper); }
.nav-dropdown-panel .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-dropdown-panel .dot[data-cat="youtube"]{ background: var(--cat-youtube); }
.nav-dropdown-panel .dot[data-cat="podcast"], .nav-dropdown-panel .dot[data-cat="talking-head"]{ background: var(--cat-podcast); }
.nav-dropdown-panel .dot[data-cat="script"]{ background: var(--cat-shorts); }
.nav-dropdown-panel .dot[data-cat="realestate"], .nav-dropdown-panel .dot[data-cat="real-estate"]{ background: var(--cat-realestate); }
.nav-dropdown-panel .dot[data-cat="wedding"]{ background: var(--cat-wedding); }
.nav-dropdown-panel .dot[data-cat="kids"]{ background: var(--cat-kids); }
.nav-dropdown-panel .dot[data-cat="music"]{ background: var(--cat-music); }

@media (max-width: 880px){
  .nav-dropdown .nav-dropdown-panel,
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel{
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 0 12px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-panel{ display: flex; }
  .nav-dropdown.open .nav-drop-trigger .chev{ transform: rotate(180deg); }
  .nav-dropdown-panel a{ padding: 9px 0; font-size: 15px; white-space: normal; }
}

.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-login-mobile{ display: none; }
.btn-login{ gap: 8px; }
.btn-login svg{ width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Theme toggle ---------- */
.theme-toggle{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-on-light);
  background: transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--paper);
  flex-shrink: 0;
  transition: border-color .2s ease, transform .2s var(--ease);
}
.theme-toggle:hover{ border-color: var(--paper); transform: translateY(-1px); }
.theme-toggle svg{ width: 18px; height: 18px; }
.theme-toggle .icon-sun{ display: none; }
.theme-toggle .icon-moon{ display: block; }
html[data-theme="light"] .theme-toggle .icon-sun{ display: block; }
html[data-theme="light"] .theme-toggle .icon-moon{ display: none; }
.menu-btn{
  display:none;
  background:none; border:none;
  width: 28px; height: 20px;
  position: relative;
}
.menu-btn span{
  position:absolute; left:0; right:0; height:2px; background:var(--paper);
  transition: all .2s ease;
}
.menu-btn span:nth-child(1){ top:0; }
.menu-btn span:nth-child(2){ top:9px; }
.menu-btn span:nth-child(3){ top:18px; }

@media (max-width: 880px){
  .nav-links{
    position: fixed; top:76px; left:0; right:0; bottom:0;
    background: var(--ink);
    flex-direction:column; align-items:flex-start;
    padding: 28px 32px;
    gap: 22px;
    font-size: 18px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y:auto;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-cta .btn-ghost{ display:none; }
  .nav-login-mobile{ display: block; }
  .menu-btn{ display:block; }
}

/* ---------- Sections ---------- */
section{ padding: 72px 0; }
section.tight{ padding: 64px 0; }
.section-dark{ background: var(--gradient-hero), var(--fixed-dark-bg); color: var(--fixed-white); }
.section-dim{ background: var(--paper-dim); }

.kicker-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.kicker-row h2{ font-size: clamp(28px, 3.4vw, 42px); margin-top:10px; max-width: 640px; }
.kicker-row p{ max-width: 400px; color: var(--steel); font-size: 16.5px; line-height: 1.6; padding-bottom: 4px;}
.section-dark .kicker-row p{ color: var(--steel-light); }

/* ---------- Hero ---------- */
.hero{ padding: 90px 0 90px; background: var(--gradient-hero), var(--fixed-dark-bg); color: var(--fixed-white); }
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items:center;
}
.hero h1{
  font-size: clamp(42px, 6.2vw, 80px);
  margin: 18px 0 22px;
}
.hero p.lead{
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--fixed-muted);
  max-width: 500px;
  margin-bottom: 14px;
}
.hero p.lead.sub{
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 34px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 40px;}
.hero-stats{
  display:flex;
  flex-wrap: wrap;
  gap: 32px;
  row-gap: 20px;
  font-family: var(--font-body);
  padding-top: 26px;
  border-top: 1px solid var(--fixed-line);
}
.hero-stats div b{
  display:block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--fixed-white);
}
.hero-stats div span{ font-size: 11.5px; color: var(--fixed-muted); text-transform:uppercase; letter-spacing:.04em; }

/* ---------- Placeholder frames (video thumbnails without real images) ---------- */
/* Category color system — ties a consistent color to each service type */
[data-cat="youtube"], [data-category="youtube"]{ --frame-accent: var(--cat-youtube); --frame-accent-deep: var(--cat-youtube-deep); }
[data-cat="podcast"], [data-category="talking-head"]{ --frame-accent: var(--cat-podcast); --frame-accent-deep: var(--cat-podcast-deep); }
[data-cat="realestate"], [data-category="real-estate"]{ --frame-accent: var(--cat-realestate); --frame-accent-deep: var(--cat-realestate-deep); }
[data-cat="shorts"], [data-category="shorts"]{ --frame-accent: var(--cat-shorts); --frame-accent-deep: var(--cat-shorts-deep); }
[data-cat="script"], [data-category="script"]{ --frame-accent: var(--cat-shorts); --frame-accent-deep: var(--cat-shorts-deep); }
[data-cat="wedding"], [data-category="wedding"]{ --frame-accent: var(--cat-wedding); --frame-accent-deep: var(--cat-wedding-deep); }
[data-cat="kids"], [data-category="kids"]{ --frame-accent: var(--cat-kids); --frame-accent-deep: var(--cat-kids-deep); }
[data-cat="music"], [data-category="music"]{ --frame-accent: var(--cat-music); --frame-accent-deep: var(--cat-music-deep); }

.frame{
  position: relative;
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(135deg, rgba(10,10,12,0.05) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #EDEDF2, #DBDBE3);
  border: 1px solid var(--line-on-light);
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.frame.is-playing{ cursor: default; background: var(--ink); }
.frame.is-playing:hover{ transform: none; box-shadow: none; }
.frame::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 4px;
  background: var(--frame-accent, var(--steel-light));
  z-index: 2;
}
.frame:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.frame.dark-tone{
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, var(--frame-accent-deep, var(--purple-deep)), var(--ink));
  border-color: var(--line-on-dark);
}
.frame .play{
  position:absolute; top:50%; left:50%;
  transform: translate(-50%,-50%) scale(1);
  width: 46px; height:46px;
  border-radius:50%;
  background: rgba(255,255,255,0.9);
  display:flex; align-items:center; justify-content:center;
  transition: transform .3s var(--ease);
}
.frame:hover .play{ transform: translate(-50%,-50%) scale(1.1); }
.frame .play::after{
  content:"";
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--fixed-dark-text);
  margin-left: 3px;
}
.frame .tag{
  position:relative;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--fixed-white);
  background: linear-gradient(to top, rgba(14,16,19,0.8), transparent);
}
.frame .tag .dur{ color: var(--steel-light); font-variant-numeric: tabular-nums; }

.hero-visual{ position: relative; }
.hero-visual .frame-stack{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-visual .frame-stack .frame:first-child{
  grid-column: 1 / -1;
}

/* Hero feature frame — one dominant showcase instead of equal-weight tiles */
.hero-feature{
  position: relative;
  aspect-ratio: 16/10.5;
  box-shadow: var(--shadow-md);
}
.reel-badge{
  position:absolute;
  top:16px; left:16px;
  z-index:3;
  background: rgba(10,10,13,0.6);
  color:#fff;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.02em;
  padding:7px 14px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:7px;
}
.reel-badge::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background: var(--accent);
}
.play-lg{ width:64px; height:64px; }
.play-lg::after{ border-width: 11px 0 11px 18px; margin-left: 4px; }
.hero-filmstrip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.hero-filmstrip .frame{ aspect-ratio: 16/11; }
.hero-filmstrip .play{ width: 32px; height: 32px; }
.hero-filmstrip .play::after{ border-width: 5px 0 5px 8px; margin-left: 2px; }
.hero-filmstrip .tag{ padding: 8px 10px; font-size: 11px; }

/* Portfolio bento — one dominant preview + two supporting, for visual impact */
.portfolio-bento{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.portfolio-bento .frame:first-child{
  grid-row: 1 / 3;
  aspect-ratio: unset;
  min-height: 468px;
}
.portfolio-bento .frame:not(:first-child){
  aspect-ratio: unset;
  min-height: 224px;
}
.portfolio-bento .frame:first-child .tag{ padding: 18px 20px; font-size: 15px; }
.portfolio-bento .frame:first-child .play{ width: 58px; height: 58px; }
.portfolio-bento .frame:first-child .play::after{ border-width: 10px 0 10px 16px; margin-left: 3px; }
.portfolio-bento .frame::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(10,10,13,0);
  transition: background .3s ease;
  pointer-events: none;
}
.portfolio-bento .frame:hover::after{ background: rgba(10,10,13,0.08); }
@media (max-width: 780px){
  .portfolio-bento{ grid-template-columns: 1fr; grid-template-rows: none; }
  .portfolio-bento .frame:first-child{ grid-row: auto; min-height: 240px; }
}

/* Hero CTA hierarchy — one dominant action, one quiet link */
.btn-hero-primary{ padding: 18px 32px; font-size: 15.5px; }
.link-arrow{
  display:inline-flex;
  align-items:center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--fixed-white);
  padding: 14px 6px;
  transition: gap .2s var(--ease);
}
.link-arrow svg{ width:16px; height:16px; transition: transform .2s var(--ease); }
.link-arrow:hover{ gap: 11px; }
.link-arrow:hover svg{ transform: translateX(2px); }

/* ---------- Logo strip ---------- */
.logo-strip{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
}
.featured-by-text{
  padding: 26px 0;
  font-size: 16px;
  color: var(--steel);
}
.featured-by-text a{
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line-on-light);
  text-underline-offset: 3px;
}
.featured-by-text a:hover{ text-decoration-color: var(--accent); }
.logo-strip span{
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--steel);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- Cards ---------- */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-services{ display:grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }

.price-explain{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 44px;
  padding: 44px 36px;
  background: var(--gradient-hero), var(--fixed-dark-bg);
  color: var(--fixed-white);
  border-radius: var(--radius);
}
.price-explain-item .num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--fixed-dark-text);
  background: var(--accent);
  width: 44px; height: 44px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 20px;
}
.price-explain-item:nth-child(2) .num{ background: var(--purple); }
.price-explain-item:nth-child(3) .num{ background: var(--cat-realestate); }
.price-explain-item h3{ font-size: 19px; margin-bottom: 10px; color: var(--fixed-white); }
.price-explain-item p{ font-size: 15.5px; line-height: 1.6; color: var(--fixed-muted); }
@media (max-width: 780px){
  .price-explain{ grid-template-columns: 1fr; gap: 30px; padding: 32px 26px; }
}

.also-offer{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line-on-light);
}
.also-offer-label{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-right: 6px;
}
.also-offer-item{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  padding: 9px 16px;
  border: 1px solid var(--line-on-light);
  border-radius: 999px;
  scroll-margin-top: 100px;
  transition: border-color .2s ease, transform .2s var(--ease);
}
.also-offer-item:hover{ border-color: var(--paper); transform: translateY(-2px); }
.also-offer-item .dot{ width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.also-offer-item .dot[data-cat="wedding"]{ background: var(--cat-wedding); }
.also-offer-item .dot[data-cat="kids"]{ background: var(--cat-kids); }
.also-offer-item .dot[data-cat="music"]{ background: var(--cat-music); }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-4{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.card{
  background: var(--ink-soft);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  padding: 34px 28px;
  scroll-margin-top: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card .num{
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display:block;
  margin-bottom: 18px;
}
.card.cat-youtube{ border-top: 3px solid var(--cat-youtube); }
.card.cat-youtube .num{ color: var(--cat-youtube); }
.card.cat-podcast, .card.cat-talking-head{ border-top: 3px solid var(--cat-podcast); }
.card.cat-podcast .num, .card.cat-talking-head .num{ color: var(--cat-podcast); }
.card.cat-realestate, .card.cat-real-estate{ border-top: 3px solid var(--cat-realestate); }
.card.cat-realestate .num, .card.cat-real-estate .num{ color: var(--cat-realestate); }
.card.cat-script{ border-top: 3px solid var(--cat-shorts); }
.card.cat-script .num{ color: var(--cat-shorts); }
.card.cat-wedding{ border-top: 3px solid var(--cat-wedding); }
.card.cat-wedding .num{ color: var(--cat-wedding); }
.card.cat-kids{ border-top: 3px solid var(--cat-kids); }
.card.cat-kids .num{ color: var(--cat-kids); }
.card.cat-music{ border-top: 3px solid var(--cat-music); }
.card.cat-music .num{ color: var(--cat-music); }
.card.compact{ padding: 26px 24px; }
.card h3{ font-size: 20px; margin-bottom: 12px; }
.card p{ color: var(--steel); font-size: 15.5px; line-height: 1.6; }
.card .icon{
  width: 40px; height:40px;
  border: 1px solid var(--line-on-light);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}

.section-dark .card{
  background: var(--fixed-dark-surface);
  border-color: var(--line-on-dark);
}
.section-dark .card p{ color: var(--steel-light); }
.section-dark .card .icon{ border-color: var(--line-on-dark); }
.section-dark .badge{ color: var(--steel-light); border-color: var(--line-on-dark); }
.section-dark .price-list li{ border-color: var(--line-on-dark); }

/* ---------- Process (timeline) ---------- */
.process{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process.process-3col{ grid-template-columns: repeat(3, 1fr); }
.process::before{
  content:"";
  position:absolute;
  top: 19px; left:0; right:0;
  height:1px;
  background: var(--line-on-dark);
}
.process-step{
  padding-right: 24px;
  position: relative;
}
.process-step .tc{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fixed-dark-text);
  background: var(--accent);
  width: 38px; height: 38px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.process-step:nth-child(2) .tc,
.process-step:nth-child(4) .tc{ background: var(--purple); }
.process-step h3{ font-size: 17px; margin-bottom: 10px; color: var(--fixed-white);}
.process-step p{ font-size: 15px; line-height: 1.6; color: var(--steel-light); }

/* ---------- Testimonials ---------- */
.quote-card{
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.quote-card:nth-child(2){ border-left-color: var(--purple); }
.quote-card:nth-child(3){ border-left-color: var(--cat-realestate); }
.quote-card p.q{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 22px;
}
.quote-who{
  display:flex;
  align-items:center;
  gap: 12px;
}
.quote-avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fixed-dark-text);
  flex-shrink: 0;
}
.quote-card:nth-child(1) .quote-avatar{ background: var(--accent); }
.quote-card:nth-child(2) .quote-avatar{ background: var(--purple); }
.quote-card:nth-child(3) .quote-avatar{ background: var(--cat-realestate); }
.quote-who .name{ font-size: 14.5px; font-weight: 600; color: var(--paper); }
.quote-who .role{ font-size: 13px; color: var(--steel); margin-top: 1px; }

/* ---------- Pricing ---------- */
.price-card{
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  padding: 36px 30px;
  display:flex;
  flex-direction:column;
  background: var(--ink-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured{
  background: var(--fixed-dark-surface);
  color: var(--fixed-white);
  border-color: transparent;
  position: relative;
  box-shadow: 0 0 0 1px rgba(167,139,250,0.35), var(--shadow-md);
}
.price-card.featured::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: var(--radius) var(--radius) 0 0;
}
.price-card.featured .price-list li{ border-color: var(--fixed-line); }
.price-card.featured .btn-ghost{ border-color: var(--fixed-line); color:var(--fixed-white); }
.price-card .plan-name{ font-family: var(--font-body); font-size:12.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--accent); margin-bottom: 14px;}
.price-card.featured .plan-name{ color: var(--purple); }
.price-card.listings .plan-name{ color: var(--cat-realestate); }
.price-card .amount{ font-family: var(--font-display); font-size: 40px; margin-bottom: 4px;}
.price-card .amount span{ font-size:14px; font-family: var(--font-body); color:var(--steel); font-weight:400;}
.price-card.featured .amount span{ color: var(--fixed-muted); }
.price-card .desc{ font-size:15px; line-height: 1.55; color: var(--steel); margin-bottom: 26px; }
.price-card.featured .desc{ color: var(--fixed-muted); }
.price-list{ margin: 0 0 24px; flex:1; }
.price-list li{
  padding: 11px 0;
  border-bottom: 1px solid var(--line-on-light);
  font-size: 15px;
  display:flex;
  gap: 10px;
}
.price-list li::before{ content:"—"; color: var(--accent); flex-shrink:0; }

.save-note{
  font-size: 13px;
  color: var(--steel);
  text-align: center;
  margin-top: 16px;
}
.save-note strong{ color: var(--cat-youtube); font-weight: 600; }
.price-card.featured .save-note{ color: var(--fixed-muted); }
.price-card.featured .save-note strong{ color: var(--cat-shorts); }
.price-disclaimer{
  text-align: center;
  font-size: 14.5px;
  color: var(--steel);
  max-width: 620px;
  margin: 38px auto 0;
  line-height: 1.6;
}
.price-disclaimer a{ color: var(--accent); font-weight: 600; }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.field.full{ grid-column: 1/-1; }
.field label{
  font-family: var(--font-body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--steel);
}
.field input, .field select, .field textarea{
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  background: var(--ink-soft);
  color: var(--paper);
}
.field input::placeholder, .field textarea::placeholder{ color: var(--steel); opacity: 1; }
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* ---------- Footer ---------- */
footer.site{
  background: var(--fixed-dark-bg);
  color: var(--fixed-white);
  padding: 72px 0 28px;
  border-top: 1px solid var(--fixed-line);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}
.footer-grid h4{
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--fixed-muted);
  margin-bottom: 18px;
}
.footer-grid ul li{ margin-bottom: 12px; font-size: 15px; }
.footer-grid ul li a:hover{ color: var(--accent); }
.footer-grid p{ color: var(--fixed-muted); font-size: 14.5px; line-height: 1.6; max-width: 280px; margin-top:14px; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top: 26px;
  border-top: 1px solid var(--fixed-line);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fixed-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal{ display:flex; gap: 20px; }
.footer-legal a{ color: var(--fixed-muted); transition: color .2s ease; }
.footer-legal a:hover{ color: var(--fixed-white); }

/* ---------- Page header (inner pages) ---------- */
.page-header{
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line-on-light);
}
.page-header h1{ font-size: clamp(34px, 4.6vw, 52px); margin-top: 14px; max-width: 760px;}
.page-header p{ color: var(--steel); max-width: 580px; margin-top: 16px; font-size:18px; line-height:1.6;}

.about-stats{
  display:flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-on-light);
}
.about-stats div b{
  display:block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--paper);
}
.about-stats div span{ font-size: 12px; color: var(--steel); text-transform:uppercase; letter-spacing:.04em; }

/* ---------- Founder card ---------- */
.founder-card{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items:center;
  max-width: 780px;
}
.founder-card-lg{
  grid-template-columns: 280px 1fr;
  align-items: start;
  max-width: 900px;
  gap: 48px;
}
.founder-quote{
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--paper);
}
@media (max-width: 640px){
  .founder-card{ grid-template-columns: 1fr; max-width: none; }
  .founder-card .frame{ max-width: 220px; }
  .founder-card-lg .frame{ max-width: 260px; }
}

/* ---------- Filter tabs (portfolio) ---------- */
.filters{ display:flex; gap: 10px; flex-wrap:wrap; margin-bottom: 40px; }
.filter-btn{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 10px 18px;
  border: 1px solid var(--line-on-light);
  border-radius: 999px;
  background: transparent;
  color: var(--steel);
  transition: border-color .2s ease, color .2s ease;
}
.filter-btn:hover{ border-color: var(--paper); color: var(--paper); }
.filter-btn.active{ background: var(--gradient-brand); color: #fff; border-color: transparent; }

.portfolio-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.portfolio-item{ display:none; cursor:pointer; }
.portfolio-item.show{ display:block; }
.portfolio-item.more-item:not(.revealed){ display:none !important; }
.portfolio-item h3{ font-size: 17px; margin-top: 14px; }
.portfolio-item .meta{ font-family: var(--font-body); font-size:14px; font-weight:500; color:var(--steel); margin-top:6px; display:flex; align-items:center; gap:6px; }
.portfolio-item .meta::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background: var(--frame-accent, var(--steel));
  flex-shrink:0;
}

/* ---------- CTA band ---------- */
.cta-band{
  text-align:center;
  padding: 90px 0;
}
.cta-band h2{ font-size: clamp(28px,4vw,46px); max-width: 700px; margin: 16px auto 30px; }
.cta-band .btn-row{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ---------- Login / coming soon page ---------- */
.login-hero{
  padding: 130px 0;
  min-height: 62vh;
  display:flex;
  align-items:center;
  background: var(--gradient-hero), var(--fixed-dark-bg);
  color: var(--fixed-white);
}
.login-card{ max-width: 620px; margin: 0 auto; text-align:center; }
.login-card h1{ font-size: clamp(36px,5.5vw,58px); margin: 16px 0 20px; }
.login-card p{ font-size: 17px; color: var(--fixed-muted); max-width: 520px; margin: 0 auto 34px; }
.login-status{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap: 22px;
  margin-bottom: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--fixed-line);
}
.login-status-item{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  color: var(--fixed-muted);
}
.login-status-item .dot{ width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.login-status-item .dot[data-cat="youtube"]{ background: var(--cat-youtube); }
.login-status-item .dot[data-cat="podcast"], .login-status-item .dot[data-cat="talking-head"]{ background: var(--cat-podcast); }
.login-status-item .dot[data-cat="realestate"], .login-status-item .dot[data-cat="real-estate"]{ background: var(--cat-realestate); }
.login-hero .btn-ghost{ color: var(--fixed-white); border-color: var(--fixed-line); }
.login-hero .btn-ghost:hover{ border-color: var(--fixed-white); }

/* ---------- Login: choose method → email/username or Google ---------- */
.login-card-wide{ max-width: 440px; text-align: left; }
.login-card-wide > .eyebrow, .login-card-wide > h1{ display:block; text-align:center; }
.login-card-wide h1{ font-size: clamp(24px,3.4vw,32px); line-height:1.25; margin: 14px 0 10px; text-align:center; }

.login-subtext{ font-size: 14.5px; color: var(--fixed-muted); text-align:center; margin: 0 0 26px; }
.login-subtext a{ color: var(--fixed-white); text-decoration: underline; font-weight:600; }
.login-subtext a:hover{ color: var(--accent); }

.login-subtext-muted{ font-size: 13.5px; color: var(--fixed-muted); text-align:center; margin: 0 0 26px; line-height:1.5; }

.login-choice{ display:flex; flex-direction:column; gap:12px; margin-bottom: 6px; }
.btn-choice{
  display:flex;
  align-items:center;
  gap: 12px;
  width: 100%;
  padding: 15px 18px;
  background: var(--fixed-white);
  color: #1F1F1F;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14.5px;
}
.btn-choice svg{ flex-shrink:0; }
.btn-choice span{ flex:1; text-align:center; margin-right: 26px; } /* offset icon width so text optically centers */
.btn-choice:hover{ background:#EFEFEF; }

.login-back-row{ text-align:center; margin-top: 22px; }
.login-back-row a{ display:inline-flex; align-items:center; gap:6px; font-size: 13.5px; color: var(--fixed-muted); }
.login-back-row a:hover{ color: var(--fixed-white); }

.password-field{ position: relative; }
.password-field input{ padding-right: 44px; }
.password-toggle{
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  display:flex;
  color: var(--fixed-muted);
  cursor: pointer;
}
.password-toggle:hover{ color: var(--fixed-white); }
.password-toggle .icon-eye-off{ display:none; }
.password-toggle.is-visible .icon-eye{ display:none; }
.password-toggle.is-visible .icon-eye-off{ display:block; }

.login-forgot-row{ text-align:right; margin: -10px 0 20px; }
.login-forgot-row a{ font-size: 13.5px; color: var(--fixed-muted); text-decoration: underline; }
.login-forgot-row a:hover{ color: var(--fixed-white); }

.login-hero .field label{ color: var(--fixed-muted); }
.login-hero .field input{
  background: rgba(255,255,255,0.06);
  border-color: var(--fixed-line);
  color: var(--fixed-white);
}
.login-hero .field input::placeholder{ color: var(--fixed-muted); opacity:1; }
.login-hero .form-notice{ color: var(--fixed-white); text-align:left; }

.field-hint{ font-size: 12.5px; color: var(--steel); margin-top: -2px; }
.login-hero .field-hint{ color: var(--fixed-muted); }

.login-remember{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  color: var(--fixed-muted);
  margin: 2px 0 20px;
  cursor: pointer;
}
.login-remember input{ width:16px; height:16px; accent-color: var(--accent); }

/* ---------- Header: account menu (client name + My Projects / Log Out) ---------- */
.account-menu{ position: relative; }
.account-trigger{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line-on-light);
  border-radius: 999px;
  background: transparent;
  color: inherit;
}
.account-trigger:hover{ border-color: var(--steel); }
.account-avatar{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink:0;
}
.account-name{ font-size: 14px; font-weight: 600; max-width: 120px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.account-trigger .chev{ width:12px; height:12px; transition: transform .18s var(--ease); }
.account-menu.open .account-trigger .chev{ transform: rotate(180deg); }

.account-panel{
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: var(--ink-soft);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 50;
}
.account-menu.open .account-panel{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.account-panel a{ display:block; padding: 10px 12px; border-radius: 8px; font-size: 14px; }
.account-panel a::after{ display:none; }
.account-panel a:hover{ background: var(--line-on-light); }

/* ---------- Client dashboard: project list ---------- */
.wrap-narrow{ max-width: 720px; }
.page-intro{ color: var(--steel); font-size: 16px; margin: 4px 0 32px; }

.project-empty{
  text-align:center;
  padding: 60px 20px;
  border: 1px dashed var(--line-on-light);
  border-radius: var(--radius);
}
.project-empty p{ color: var(--steel); margin-bottom: 20px; }

.project-list{ display:flex; flex-direction:column; gap:12px; }
.project-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  background: var(--paper-dim);
  transition: border-color .18s var(--ease);
}
.project-card:hover{ border-color: var(--accent); }
.project-card h3{ font-size: 17px; margin: 0 0 4px; }
.project-card-meta{ display:flex; gap:14px; font-size: 13px; color: var(--steel); }

.status-badge{
  flex-shrink:0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.status-badge.status-submitted{ background: rgba(156,158,168,0.16); color: var(--steel-light); }
.status-badge.status-progress{ background: rgba(75,124,255,0.16); color: #6E96FF; }
.status-badge.status-revision{ background: rgba(255,183,3,0.16); color: #FFC233; }
.status-badge.status-completed{ background: rgba(34,220,197,0.16); color: var(--cat-realestate); }
.status-badge.status-cancelled{ background: rgba(255,59,46,0.14); color: var(--accent); }

/* ---------- Single project: tabs, details, messages ---------- */
.project-back{ margin-bottom: 18px; }
.project-back a{ font-size: 13.5px; color: var(--steel); }
.project-back a:hover{ color: var(--paper); }

.tabs-row{
  display:flex;
  gap: 4px;
  border-bottom: 1px solid var(--line-on-light);
  margin: 28px 0 30px;
}
.tab-link{
  padding: 12px 4px;
  margin-right: 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--steel);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab-link.active{ color: var(--paper); border-bottom-color: var(--accent); }
.tab-link:hover{ color: var(--paper); }

.project-details p{ margin-bottom: 12px; font-size: 15px; }
.project-details a{ color: var(--accent); font-weight: 600; }
.project-brief{ margin-top: 20px; line-height: 1.7; color: var(--steel-light); }

.message-thread{ display:flex; flex-direction:column; gap:14px; margin-bottom: 28px; }
.message-empty{ color: var(--steel); font-size: 14.5px; }
.message-bubble{
  max-width: 78%;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--paper-dim);
  border: 1px solid var(--line-on-light);
}
.message-bubble.staff{ align-self: flex-start; }
.message-bubble.client{ align-self: flex-end; background: rgba(255,59,46,0.08); border-color: rgba(255,59,46,0.2); }
.message-author{ display:block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--steel); margin-bottom: 6px; }
.message-bubble p{ font-size: 14.5px; line-height: 1.55; margin: 0 0 8px; }
.message-time{ font-size: 11.5px; color: var(--steel); }

.message-form{ display:flex; flex-direction:column; gap:12px; }
.message-form textarea{
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  background: var(--ink-soft);
  color: var(--paper);
  resize: vertical;
  min-height: 90px;
}
.message-form button{ align-self: flex-end; }

.support-placeholder{
  text-align:center;
  padding: 50px 20px;
  border: 1px dashed var(--line-on-light);
  border-radius: var(--radius);
}
.support-placeholder p{ color: var(--steel); max-width: 440px; margin: 0 auto 20px; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom: 1px solid var(--line-on-light);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item h3{
  font-size: 16.5px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item h3::after{
  content: "+";
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.faq-item.open h3::after{ content: "\2013"; }
.faq-item.open h3{ margin-bottom: 10px; }
.faq-item p{
  color: var(--steel);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 700px;
  display: none;
}
.faq-item.open p{ display: block; }

/* ---------- Utilities ---------- */
.mt-0{ margin-top:0 !important; }
.text-center{ text-align:center; }
.badge-list{ display:flex; gap:10px; flex-wrap:wrap; margin-top:20px; }
.badge{
  font-family: var(--font-body);
  font-size: 11.5px;
  padding: 7px 12px;
  border: 1px solid var(--line-on-light);
  border-radius: 999px;
  color: var(--steel);
}

/* ---------- Scroll reveal (progressive enhancement) ---------- */
.js .reveal{
  opacity: 0;
  transform: translateY(16px);
}
.reveal{
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in-view{
  opacity: 1;
  transform: none;
}
.js .reveal-fade{ opacity: 0; }
.reveal-fade{ transition: opacity .6s var(--ease); }
.reveal-fade.in-view{ opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr 1fr; }
  .process{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process::before{ display:none; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr 1fr; }
  .price-card.featured{ transform:none; }
}
@media (max-width: 640px){
  .wrap{ padding: 0 20px; }
  section{ padding: 64px 0; }
  .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; }
  .hero-stats{ gap:24px; flex-wrap:wrap; }
  .form-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .kicker-row{ flex-direction:column; align-items:flex-start; }
}

/* ---------- Featured project spotlight ---------- */
.spotlight{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items:center;
}
.spotlight-frame{ aspect-ratio: 16/10; }
.spotlight-frame .tag{ padding: 16px 18px; font-size: 14px; }
@media (max-width: 880px){
  .spotlight{ grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Load more ---------- */
.load-more-row{ display:flex; justify-content:center; margin-top: 44px; }
.load-more-row.hidden{ display:none; }

/* ---------- Lightbox ---------- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.open{ opacity: 1; pointer-events: auto; }
.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(5,5,7,0.75);
}
.lightbox-panel{
  position: relative;
  background: var(--ink-soft);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  max-width: 780px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px;
  transform: translateY(12px) scale(0.98);
  transition: transform .25s var(--ease);
  box-shadow: var(--shadow-md);
}
.lightbox.open .lightbox-panel{ transform: translateY(0) scale(1); }
.lightbox-close{
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-on-light);
  background: transparent;
  color: var(--paper);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox-frame{ aspect-ratio: 16/9; margin-bottom: 24px; }
.lightbox-info h3{ font-size: 22px; margin-bottom: 18px; }
.lightbox-meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.lightbox-meta div{ border-top: 1px solid var(--line-on-light); padding-top: 10px; }
.lightbox-meta dt{ font-size: 11.5px; text-transform:uppercase; letter-spacing:.05em; color: var(--steel); margin-bottom: 5px; }
.lightbox-meta dd{ font-size: 14.5px; color: var(--paper); }
@media (max-width: 560px){
  .lightbox-meta{ grid-template-columns: 1fr; }
}

/* ---------- Studio address block ---------- */
.studio-address-block{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 24px;
  padding: 32px;
  background: var(--ink-soft);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
}
.studio-address-line{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--paper);
  line-height: 1.4;
}

/* ---------- Embedded map ---------- */
.map-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-on-light);
  filter: grayscale(0.15) contrast(1.05);
}
.map-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px){
  .map-embed{ aspect-ratio: 4 / 5; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; }
}

/* ==========================================================================
   WordPress core compatibility
   ========================================================================== */

/* Required: WP accessibility standard for skip-links, hidden labels, etc. */
.screen-reader-text{
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus{
  background: var(--paper); color: var(--ink);
  clip: auto !important; clip-path: none; display: block;
  height: auto; left: 5px; line-height: normal;
  padding: 14px 20px; text-decoration: none; top: 5px;
  width: auto; z-index: 100000;
}
.skip-link{ position:absolute; top:-100px; left:0; z-index:100000; transition: top .2s ease; }
.skip-link:focus{ top:0; }

/* Sticky header offset when the WP admin toolbar is showing (logged-in users) */
body.admin-bar header.site{ top: 32px; }
@media screen and (max-width: 782px){
  body.admin-bar header.site{ top: 46px; }
}

/* Block editor content (About / Contact / Terms pages use the block editor) */
.entry-content{ max-width: 760px; color: var(--steel); font-size: 16px; line-height: 1.7; }
.entry-content h2{ font-size: 26px; margin: 40px 0 14px; color: var(--paper); }
.entry-content h2:first-child{ margin-top: 0; }
.entry-content h3{ font-size: 20px; margin: 28px 0 12px; color: var(--paper); }
.entry-content p{ margin-bottom: 16px; }
.entry-content ul, .entry-content ol{ margin: 0 0 16px 22px; }
.entry-content ul{ list-style: disc; }
.entry-content ol{ list-style: decimal; }
.entry-content li{ margin-bottom: 6px; }
.entry-content a{ color: var(--accent); font-weight: 600; }
.entry-content blockquote{
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 20px 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--paper);
}
.entry-content img{ max-width: 100%; height: auto; border-radius: var(--radius); margin: 16px 0; }
.entry-content figcaption{ font-size: 13px; color: var(--steel); margin-top: 6px; }
.entry-content .alignwide{ max-width: 1000px; }
.entry-content .alignfull{ max-width: none; width: 100%; }
.entry-content table{ width:100%; border-collapse:collapse; margin-bottom:20px; }
.entry-content table th, .entry-content table td{ padding:10px; border-bottom:1px solid var(--line-on-light); text-align:left; }

/* WordPress default gallery/caption support */
.wp-caption{ max-width:100%; }
.wp-caption-text{ font-size:13px; color:var(--steel); margin-top:6px; }
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:20px; }
.gallery-item img{ border-radius:var(--radius); }

/* Search form (searchform.php) */
.search-form{ display:flex; gap:10px; }
.search-form input[type="search"]{
  flex:1; padding:13px 14px; border:1px solid var(--line-on-light);
  border-radius:var(--radius); background:var(--ink-soft); color:var(--paper); font-size:15px;
}
.search-form button{
  padding:13px 22px; border-radius:var(--radius); border:none;
  background:var(--gradient-brand); color:#fff; font-weight:600; cursor:pointer;
}

/* Comment form (used on Blog/News posts, if the client adds a blog later) */
.comment-form input, .comment-form textarea{
  width:100%; padding:13px 14px; border:1px solid var(--line-on-light);
  border-radius:var(--radius); background:var(--ink-soft); color:var(--paper);
  font-size:15px; margin-bottom:14px;
}
.comment-form label{ display:block; font-size:12.5px; text-transform:uppercase; letter-spacing:.04em; color:var(--steel); margin-bottom:6px; }

/* 404 page */
.error-404-content{ text-align:center; padding:80px 0; }
.error-404-content h1{ font-size:clamp(60px,10vw,120px); color:var(--accent); }

/* Contact form success/error notices (contact-handler.php) */
.form-notice{ padding:14px 18px; border-radius:var(--radius); margin-bottom:20px; font-size:14.5px; }
.form-notice.success{ background:rgba(34,220,197,0.12); border:1px solid var(--cat-realestate); color:var(--paper); }
.form-notice.error{ background:rgba(255,59,46,0.12); border:1px solid var(--accent); color:var(--paper); }
