/* ============================================================
   Classic Tint LLC — bespoke stylesheet (vintage Americana garage).
   NOT derived from _template/base.css. The shop is a restored
   1950s service station in Morrow, OH — the design leans into it:
   asphalt black, aged cream, service-station pinstripes, Fraunces
   retro serif with italic script-echo emphasis. Accent colors come
   from their logo/old site: orange #F1592A + blue #0065B3.
   Class prefix: .ct-
   ============================================================ */

:root {
  --bg: #0F0D0A;
  --bg2: #161209;
  --panel: #1D1810;
  --panel2: #241E14;
  --cream: #F2EAD9;
  --cream-dim: #CDC3AC;
  --muted: #9C917B;
  --accent: #F1592A;
  --accent-deep: #C7420F;
  --blue: #0065B3;
  --ink: #17130C;
  --ink-soft: #4A4234;
  --paper: #F2EAD9;
  --paper2: #E9DFC8;
  --line: rgba(242, 234, 217, 0.13);
  --line-ink: rgba(23, 19, 12, 0.15);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Archivo', -apple-system, sans-serif;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.75);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--accent); color: var(--cream); }

/* ---------- the pinstripe motif (service-station striping) ---------- */
.ct-stripes {
  height: 10px;
  background:
    linear-gradient(to bottom,
      var(--accent) 0 3px, transparent 3px 5px,
      var(--cream) 5px 6px, transparent 6px 8px,
      var(--blue) 8px 10px);
  border: 0;
}

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h1 em, h2 em, h3 em, .ct-script {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0;
}
.ct-light h1 em, .ct-light h2 em, .ct-light h3 em { color: var(--accent-deep); }

.ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.ct-eyebrow::before, .ct-eyebrow.ct-eb-both::after { content: '★'; font-size: 9px; transform: translateY(-1px); }
.ct-light .ct-eyebrow { color: var(--accent-deep); }

.ct-lead { font-size: 19px; color: var(--cream-dim); max-width: 62ch; }
.ct-light .ct-lead { color: var(--ink-soft); }

/* ---------- header ---------- */
.ct-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 13, 10, 0.97);
  border-bottom: 1px solid var(--line);
}
.ct-header::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0 34%, var(--cream) 34% 36%, var(--blue) 36% 100%);
  opacity: 0.85;
}
.ct-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 24px; max-width: 1280px; margin: 0 auto; }
.ct-brand img { height: 52px; width: auto; }
.ct-menu { display: flex; align-items: center; list-style: none; gap: 28px; }
.ct-menu a { text-decoration: none; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: var(--cream-dim); transition: color 0.25s; }
.ct-menu a:hover { color: var(--cream); }
.ct-menu > li > a:not(.ct-nav-cta):not(.ct-nav-phone) { position: relative; }
.ct-menu > li > a:not(.ct-nav-cta):not(.ct-nav-phone)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width 0.3s;
}
.ct-menu > li > a:not(.ct-nav-cta):not(.ct-nav-phone):hover::after { width: 100%; }
.ct-nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--cream) !important; font-family: var(--serif); font-size: 16px !important; }
.ct-nav-phone svg { width: 15px; height: 15px; color: var(--accent); }
.ct-nav-cta {
  background: var(--accent); color: var(--cream) !important; padding: 11px 22px;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 12.5px !important;
  transition: background 0.25s, transform 0.25s;
}
.ct-nav-cta:hover { background: var(--accent-deep); transform: translateY(-2px); }

/* dropdown */
.ct-has-drop { position: relative; }
.ct-parent { cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: var(--cream-dim); transition: color 0.25s; }
.ct-parent:hover { color: var(--cream); }
.ct-parent svg { width: 12px; height: 12px; transition: transform 0.25s; }
.ct-drop {
  position: absolute; top: calc(100% + 14px); left: -18px; min-width: 250px;
  background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--accent);
  list-style: none; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  box-shadow: var(--shadow);
}
.ct-has-drop:hover .ct-drop, .ct-has-drop:focus-within .ct-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.ct-has-drop:hover .ct-parent svg { transform: rotate(180deg); }
.ct-drop a { display: block; padding: 9px 20px; font-size: 14px; }
.ct-drop a:hover { background: rgba(241, 89, 42, 0.12); color: var(--cream); }

.ct-burger { display: none; background: none; border: 1px solid var(--line); color: var(--cream); width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.ct-burger svg { width: 22px; height: 22px; }
.ct-close { display: none; }

/* ---------- hero ---------- */
.ct-hero { position: relative; overflow: hidden; }
.ct-hero-bg { position: absolute; inset: 0; }
.ct-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.ct-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 40%, rgba(15, 13, 10, 0.94) 0%, rgba(15, 13, 10, 0.72) 45%, rgba(15, 13, 10, 0.38) 100%),
    linear-gradient(to top, var(--bg) 2%, transparent 40%);
}
.ct-hero-inner { position: relative; z-index: 2; padding: 130px 0 110px; max-width: 720px; }
.ct-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(242, 234, 217, 0.35); padding: 8px 18px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream-dim);
  animation: ctFadeUp 0.7s 0.05s both;
}
.ct-badge b { color: var(--accent); font-weight: 700; }
.ct-hero h1 {
  font-size: clamp(44px, 6.4vw, 78px);
  margin: 26px 0 20px;
  animation: ctFadeUp 0.7s 0.18s both;
}
.ct-hero .ct-lead { animation: ctFadeUp 0.7s 0.32s both; }
.ct-hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; animation: ctFadeUp 0.7s 0.46s both; }
.ct-hero-note { margin-top: 26px; font-size: 14px; color: var(--muted); animation: ctFadeUp 0.7s 0.58s both; }
.ct-hero-note b { color: var(--cream-dim); }

/* stat strip riding the hero bottom */
.ct-statbar { position: relative; z-index: 2; border-top: 1px solid var(--line); background: rgba(15, 13, 10, 0.72); }
.ct-statbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ct-stat { padding: 26px 20px; text-align: center; border-left: 1px solid var(--line); }
.ct-stat:first-child { border-left: 0; }
.ct-stat b { display: block; font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--cream); line-height: 1.1; }
.ct-stat b em { color: var(--accent); font-style: italic; font-weight: 500; }
.ct-stat span { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- buttons ---------- */
.ct-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--cream); text-decoration: none;
  font-weight: 700; font-size: 13.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 17px 34px; border: 0; cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.ct-btn:hover { background: var(--accent-deep); transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(241, 89, 42, 0.55); }
.ct-btn svg { width: 16px; height: 16px; }
.ct-btn-ghost { background: transparent; border: 1.5px solid rgba(242, 234, 217, 0.45); color: var(--cream); }
.ct-btn-ghost:hover { background: rgba(242, 234, 217, 0.08); border-color: var(--cream); box-shadow: none; }
.ct-light .ct-btn-ghost { border-color: rgba(23, 19, 12, 0.4); color: var(--ink); }
.ct-light .ct-btn-ghost:hover { background: rgba(23, 19, 12, 0.06); border-color: var(--ink); }

/* ---------- sections ---------- */
.ct-section { padding: 110px 0; position: relative; }
.ct-section-dark2 { background: var(--bg2); }
.ct-head { max-width: 720px; margin-bottom: 60px; }
.ct-head h2 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 16px; }
.ct-head.ct-center { margin-left: auto; margin-right: auto; text-align: center; }
.ct-head.ct-center .ct-lead { margin: 0 auto; }

/* cream "vintage poster" sections */
.ct-light {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(241, 89, 42, 0.06), transparent 55%),
    var(--paper);
  color: var(--ink);
}
.ct-light h2, .ct-light h3 { color: var(--ink); }
.ct-light p { color: var(--ink-soft); }

/* subtle asphalt texture on dark sections */
.ct-texture::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(242, 234, 217, 0.016) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(242, 234, 217, 0.016) 0 1px, transparent 1px 72px);
}
.ct-glow-red { overflow: hidden; }
.ct-glow-red::after {
  content: ''; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 89, 42, 0.09), transparent 65%);
  top: -180px; right: -160px; pointer-events: none;
}

/* ---------- service cards ---------- */
.ct-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ct-svc {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  text-decoration: none; display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ct-svc:hover { transform: translateY(-6px); border-color: rgba(241, 89, 42, 0.5); box-shadow: var(--shadow); }
.ct-svc-img { aspect-ratio: 16 / 10; overflow: hidden; }
.ct-svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.ct-svc:hover .ct-svc-img img { transform: scale(1.05); }
.ct-svc-body { padding: 30px 30px 34px; flex: 1; display: flex; flex-direction: column; }
.ct-svc-body::before { content: ''; display: block; width: 44px; height: 3px; background: var(--accent); margin-bottom: 20px; transition: width 0.35s; }
.ct-svc:hover .ct-svc-body::before { width: 78px; }
.ct-svc h3 { font-size: 25px; margin-bottom: 12px; }
.ct-svc p { font-size: 15.5px; color: var(--muted); flex: 1; }
.ct-svc-go { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.ct-svc-go svg { width: 15px; height: 15px; transition: transform 0.3s; }
.ct-svc:hover .ct-svc-go svg { transform: translateX(5px); }

/* ---------- SIGNATURE: tint shade picker ---------- */
.ct-shade-wrap { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; align-items: center; }
/* cream poster stage — the dark glass reads dramatically against it */
.ct-shade-stage {
  background:
    radial-gradient(ellipse at 78% 12%, rgba(232, 184, 75, 0.18), transparent 45%),
    linear-gradient(to bottom, #F6EFDE 0%, var(--paper2) 100%);
  border: 1px solid rgba(23, 19, 12, 0.35); border-bottom-width: 4px;
  padding: 34px 28px 24px; position: relative;
}
.ct-shade-stage::before {
  content: 'THE CLASSIC TINT SHADE SIMULATOR'; position: absolute; top: 12px; left: 28px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em; color: rgba(23, 19, 12, 0.45);
}
.ct-shade-stage svg { width: 100%; height: auto; display: block; }
/* shade buttons live on the cream stage, directly under the artwork */
.ct-shade-stage .ct-vlt-row { margin-top: 20px; }
.ct-shade-stage .ct-vlt { border-color: rgba(23, 19, 12, 0.35); color: var(--ink-soft); }
.ct-shade-stage .ct-vlt:hover { border-color: var(--ink); color: var(--ink); }
.ct-shade-stage .ct-vlt.on { background: var(--accent); border-color: var(--accent); color: #FFF6E8; }
.ct-shade-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; border-top: 1px dashed rgba(23, 19, 12, 0.3); padding-top: 14px; }
.ct-shade-meta b { font-family: var(--serif); font-size: 30px; color: var(--ink); }
.ct-shade-meta span { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.ct-sim-meters { margin-top: 26px; display: grid; gap: 16px; }
.ct-simm span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.ct-simm .ct-meter-bar i { transition: width 0.5s ease; }
.ct-vlt-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.ct-vlt {
  flex: 1 1 0; min-width: 0; padding: 12px 4px; text-align: center; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--cream-dim);
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.03em;
  transition: all 0.25s;
}
.ct-vlt:hover { border-color: var(--cream-dim); color: var(--cream); }
.ct-vlt.on { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.ct-shade-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); }
.ct-shade-note b { color: var(--cream-dim); }

/* ---------- film lineup (vintage parts-catalog spec sheet) ---------- */
.ct-films { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ct-film {
  background: var(--panel); border: 1px solid var(--line); padding: 36px 32px;
  position: relative; transition: transform 0.3s, border-color 0.3s;
}
.ct-film:hover { transform: translateY(-6px); border-color: rgba(241, 89, 42, 0.45); }
.ct-film-tier { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.ct-film h3 { font-size: 26px; margin: 10px 0 4px; }
.ct-film-sub { font-size: 13.5px; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; margin-bottom: 22px; }
.ct-film ul { list-style: none; }
.ct-film li { padding: 9px 0 9px 26px; position: relative; font-size: 15px; color: var(--cream-dim); border-top: 1px dashed var(--line); }
.ct-film li::before { content: '✓'; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }
.ct-film-best { border-color: rgba(241, 89, 42, 0.55); }
.ct-film-best::before {
  content: 'The One To Get'; position: absolute; top: -13px; left: 28px;
  background: var(--accent); color: var(--cream); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; padding: 5px 14px;
}
/* heat-rejection meter */
.ct-meter { margin-top: 24px; }
.ct-meter span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.ct-meter-bar { height: 7px; background: rgba(242, 234, 217, 0.1); position: relative; overflow: hidden; }
.ct-meter-bar i { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); }

/* ---------- story (cream) ---------- */
.ct-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.ct-story-imgs { position: relative; }
.ct-story-imgs .ct-img-main { border: 1px solid var(--line-ink); box-shadow: 0 30px 60px -28px rgba(23, 19, 12, 0.45); }
.ct-story-imgs .ct-img-float {
  position: absolute; right: -34px; bottom: -44px; width: 46%;
  border: 6px solid var(--paper); box-shadow: 0 24px 44px -20px rgba(23, 19, 12, 0.5);
}
.ct-story-copy h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 22px; }
.ct-story-copy p { margin-bottom: 18px; }
.ct-story-sig { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--accent-deep); margin-top: 8px; }

/* ---------- gallery ---------- */
.ct-gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ct-gal-item { position: relative; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.ct-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.ct-gal-item:hover img { transform: scale(1.06); }
.ct-gal-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(15, 13, 10, 0.92), transparent);
  font-size: 13px; letter-spacing: 0.08em; color: var(--cream-dim);
  opacity: 0; transform: translateY(8px); transition: all 0.35s;
}
.ct-gal-item:hover figcaption { opacity: 1; transform: translateY(0); }
.ct-gal-wide { grid-column: span 2; aspect-ratio: auto; }

/* ---------- testimonials ---------- */
.ct-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ct-quote { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--accent); padding: 36px 32px; position: relative; }
.ct-quote::before { content: '\201C'; font-family: var(--serif); font-size: 90px; line-height: 0.5; color: rgba(241, 89, 42, 0.4); display: block; margin: 18px 0 10px; }
.ct-quote p { font-size: 16px; color: var(--cream-dim); font-style: italic; }
.ct-quote-stars { color: var(--accent); letter-spacing: 4px; font-size: 14px; }
.ct-quote cite { display: block; margin-top: 20px; font-style: normal; font-size: 13.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); }
.ct-quote cite span { display: block; font-weight: 500; letter-spacing: 0.04em; text-transform: none; color: var(--muted); margin-top: 3px; }

/* ---------- process ---------- */
.ct-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.ct-step { position: relative; padding: 30px 26px 0; border-left: 1px solid var(--line); }
.ct-step b {
  display: block; font-family: var(--serif); font-size: 58px; font-weight: 600; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(241, 89, 42, 0.75); margin-bottom: 16px;
}
.ct-step h3 { font-size: 20px; margin-bottom: 10px; }
.ct-step p { font-size: 14.5px; color: var(--muted); }

/* ---------- areas ---------- */
.ct-areas { display: flex; flex-wrap: wrap; gap: 14px; }
.ct-area-chip {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  border: 1px solid var(--line); padding: 13px 24px; font-size: 14.5px; font-weight: 600;
  color: var(--cream-dim); transition: all 0.25s;
}
.ct-area-chip svg { width: 14px; height: 14px; color: var(--accent); }
.ct-area-chip:hover { border-color: var(--accent); color: var(--cream); transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.ct-faq { max-width: 860px; margin: 0 auto; }
.ct-faq details { border-bottom: 1px solid var(--line); }
.ct-faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 26px 4px; font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--cream);
}
.ct-faq summary::-webkit-details-marker { display: none; }
.ct-faq summary::after { content: '+'; font-size: 28px; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; font-family: var(--sans); font-weight: 400; }
.ct-faq details[open] summary::after { transform: rotate(45deg); }
.ct-faq details p { padding: 0 4px 26px; color: var(--muted); max-width: 70ch; }
.ct-light .ct-faq details { border-color: var(--line-ink); }
.ct-light .ct-faq summary { color: var(--ink); }
.ct-light .ct-faq details p { color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.ct-cta-band { position: relative; overflow: hidden; text-align: center; padding: 110px 0; }
.ct-cta-band .ct-cta-bg { position: absolute; inset: 0; }
.ct-cta-band .ct-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.ct-cta-band .ct-cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(15, 13, 10, 0.87); }
.ct-cta-band .container { position: relative; z-index: 2; }
.ct-cta-band h2 { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 18px; }
.ct-cta-band p { color: var(--cream-dim); max-width: 56ch; margin: 0 auto 36px; }

/* ---------- contact / form ---------- */
.ct-contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.ct-contact-card { background: var(--panel); border: 1px solid var(--line); padding: 40px 36px; }
.ct-contact-card h3 { font-size: 24px; margin-bottom: 24px; }
.ct-contact-row { display: flex; gap: 16px; padding: 16px 0; border-top: 1px dashed var(--line); font-size: 15.5px; color: var(--cream-dim); align-items: flex-start; }
.ct-contact-row svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.ct-contact-row a { color: var(--cream); text-decoration: none; }
.ct-contact-row a:hover { color: var(--accent); }
.ct-form-shell { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--accent); padding: 14px; min-height: 560px; }
.ct-form-shell iframe { width: 100%; border: 0; min-height: 560px; }

/* ---------- footer ---------- */
.ct-footer { background: #0A0806; border-top: 1px solid var(--line); padding: 70px 0 0; }
.ct-foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 54px; }
.ct-foot-brand img { height: 58px; width: auto; margin-bottom: 20px; }
.ct-foot-brand p { font-size: 14.5px; color: var(--muted); max-width: 34ch; }
.ct-foot-grid h4 { font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream); margin-bottom: 20px; }
.ct-foot-grid ul { list-style: none; }
.ct-foot-grid ul li { margin-bottom: 11px; }
.ct-foot-grid ul a, .ct-foot-contact a { color: var(--muted); text-decoration: none; font-size: 14.5px; transition: color 0.25s; }
.ct-foot-grid ul a:hover, .ct-foot-contact a:hover { color: var(--accent); }
.ct-foot-contact p { font-size: 14.5px; color: var(--muted); margin-bottom: 11px; }
.ct-foot-bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.ct-foot-bottom p { font-size: 13px; color: var(--muted); }
.ct-foot-legal { display: flex; gap: 22px; }
.ct-foot-legal a { color: var(--muted); text-decoration: none; font-size: 13px; }
.ct-foot-legal a:hover { color: var(--cream); }

/* ---------- inner-page hero ---------- */
.ct-page-hero { position: relative; overflow: hidden; }
.ct-page-hero .ct-hero-inner { padding: 96px 0 84px; max-width: 780px; }
.ct-page-hero h1 { font-size: clamp(36px, 5vw, 60px); margin: 22px 0 16px; animation: ctFadeUp 0.7s 0.15s both; }
.ct-crumbs { position: relative; z-index: 2; font-size: 13px; letter-spacing: 0.06em; color: var(--muted); animation: ctFadeUp 0.7s both; }
.ct-crumbs a { color: var(--cream-dim); text-decoration: none; }
.ct-crumbs a:hover { color: var(--accent); }
.ct-crumbs span { margin: 0 8px; color: var(--accent); }

/* ---------- two-column feature rows ---------- */
.ct-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ct-split.ct-flip > .ct-split-img { order: 2; }
.ct-split-img { border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.ct-split-img::before {
  content: ''; position: absolute; top: -14px; left: -14px; width: 84px; height: 84px;
  border-top: 3px solid var(--accent); border-left: 3px solid var(--accent); pointer-events: none;
}
.ct-split h2, .ct-split h3 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.ct-split p { color: var(--cream-dim); margin-bottom: 16px; }
.ct-light .ct-split p { color: var(--ink-soft); }
.ct-ticks { list-style: none; margin-top: 10px; }
.ct-ticks li { padding: 10px 0 10px 32px; position: relative; color: var(--cream-dim); border-top: 1px dashed var(--line); font-size: 15.5px; }
.ct-ticks li::before { content: '✓'; position: absolute; left: 4px; color: var(--accent); font-weight: 700; }
.ct-light .ct-ticks li { color: var(--ink-soft); border-color: var(--line-ink); }

/* coverage menu (auto page) */
.ct-coverage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ct-cov { border: 1px solid var(--line); background: var(--panel); padding: 30px 26px; transition: transform 0.3s, border-color 0.3s; }
.ct-cov:hover { transform: translateY(-4px); border-color: rgba(241, 89, 42, 0.45); }
.ct-cov svg { width: 40px; height: 40px; color: var(--accent); margin-bottom: 18px; }
.ct-cov h3 { font-size: 19px; margin-bottom: 8px; }
.ct-cov p { font-size: 14px; color: var(--muted); }

/* ---------- team ---------- */
.ct-team { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.ct-member { background: var(--panel); border: 1px solid var(--line); display: grid; grid-template-columns: 168px 1fr; overflow: hidden; }
.ct-member img { width: 100%; height: 100%; object-fit: cover; }
.ct-monogram {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 52px; font-weight: 600; color: var(--accent);
  background:
    radial-gradient(circle at 50% 40%, rgba(241, 89, 42, 0.14), transparent 70%),
    var(--bg2);
  border-right: 1px solid var(--line); min-height: 200px;
}
.ct-member-body { padding: 30px 30px 32px; }
.ct-member-body h3 { font-size: 23px; }
.ct-member-role { font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin: 6px 0 14px; }
.ct-member-body p { font-size: 14.5px; color: var(--muted); }

/* ---------- animations ---------- */
@keyframes ctFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.ct-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.ct-reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- legal ---------- */
.ct-legal { max-width: 820px; margin: 0 auto; }
.ct-legal h2 { font-size: 26px; margin: 42px 0 14px; }
.ct-legal p, .ct-legal li { color: var(--cream-dim); font-size: 15.5px; margin-bottom: 14px; }
.ct-legal ul { padding-left: 24px; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .ct-services-grid, .ct-films, .ct-quotes { grid-template-columns: 1fr 1fr; }
  .ct-steps, .ct-coverage { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .ct-shade-wrap, .ct-split, .ct-contact-grid, .ct-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .ct-split.ct-flip > .ct-split-img { order: 0; }
  .ct-foot-grid { grid-template-columns: 1fr 1fr; }
  .ct-gal-grid { grid-template-columns: 1fr 1fr; }
  .ct-team { grid-template-columns: 1fr; }
  .ct-statbar-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-stat:nth-child(3) { border-left: 0; }
  .ct-stat { border-top: 1px solid var(--line); }
  .ct-stat:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .ct-section { padding: 76px 0; }
  .ct-hero-inner { padding: 90px 0 76px; }
  .ct-services-grid, .ct-films, .ct-quotes, .ct-gal-grid, .ct-steps, .ct-coverage, .ct-foot-grid { grid-template-columns: 1fr; }
  .ct-gal-wide { grid-column: span 1; }
  .ct-member { grid-template-columns: 1fr; }
  .ct-member img { max-height: 300px; }
  .ct-story-imgs .ct-img-float { right: 0; bottom: -30px; }

  /* mobile nav — plain solid header, no filters (see craft-pass gotchas) */
  .ct-burger { display: inline-flex; }
  .ct-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 88vw);
    background: var(--panel); border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 90px 30px 40px; transform: translateX(100%);
    transition: transform 0.35s ease; z-index: 1001; overflow-y: auto;
  }
  .ct-menu.open { transform: translateX(0); box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5); }
  .ct-menu > li { width: 100%; border-bottom: 1px solid var(--line); }
  .ct-menu > li > a, .ct-parent { display: block; padding: 16px 0; font-size: 16px; width: 100%; }
  .ct-drop { position: static; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; background: transparent; padding: 0 0 10px 16px; display: none; }
  .ct-has-drop.open .ct-drop { display: block; }
  .ct-nav-cta { margin-top: 18px; text-align: center; }
  .ct-menu .ct-nav-phone { padding: 16px 0; }
  .ct-close {
    position: absolute; top: 20px; right: 20px; background: none; border: 1px solid var(--line);
    color: var(--cream); width: 42px; height: 42px; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  }
  .ct-menu:not(.open) .ct-close { display: none; }
}
