/* ============================================================
   TOP CHOICE WEBPAGE DESIGN — Design System & Site Styles
   Vanilla CSS. No frameworks, no build step.
   Palette: accent #E8400C · navy #1A2E44 · light #F2F4F6
            borders #D0D5DD · body #2D3748
   Fonts: Space Grotesk (headings) · Inter (body) — self-hosted
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-700-normal.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-700-normal.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --accent: #E8400C;
  --accent-dark: #C93509;
  --accent-soft: rgba(232, 64, 12, 0.08);
  --navy: #1A2E44;
  --navy-deep: #12233A;
  --light: #F2F4F6;
  --border: #D0D5DD;
  --border-soft: rgba(208, 213, 221, 0.6);
  --white: #FFFFFF;
  --body: #2D3748;
  --muted: #5A6B7E;
  --font-head: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --fs-display: clamp(2.375rem, 5vw + 1rem, 4.125rem);
  --fs-h2: clamp(1.75rem, 2.2vw + 0.9rem, 2.625rem);
  --fs-h3: clamp(1.2rem, 0.6vw + 1rem, 1.375rem);
  --fs-lead: clamp(1.0625rem, 0.6vw + 0.9rem, 1.1875rem);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 1px 2px rgba(26, 46, 68, 0.05), 0 8px 24px rgba(26, 46, 68, 0.07);
  --shadow-card-hover: 0 2px 4px rgba(26, 46, 68, 0.06), 0 16px 40px rgba(26, 46, 68, 0.12);
  --shadow-btn: 0 4px 18px rgba(232, 64, 12, 0.32);
  --container: 1120px;
  --pad-x: 24px;
  --section-y: clamp(64px, 9vw, 120px);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.6em; }
h1 { font-size: var(--fs-display); font-weight: 700; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { margin: 0 0 1.2em; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid rgba(232, 64, 12, 0.5); outline-offset: 2px; border-radius: 4px; }
::selection { background: rgba(232, 64, 12, 0.18); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) 0; }
.section--light { background: var(--light); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head .kicker { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: var(--fs-lead); margin: 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 17px 32px;
  border-radius: var(--radius-sm);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  will-change: transform;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-btn); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(232, 64, 12, 0.4); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.4); }
.btn--ghost-light:hover { border-color: rgba(255, 255, 255, 0.85); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--accent); box-shadow: 0 4px 18px rgba(18, 35, 58, 0.25); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(18, 35, 58, 0.3); }
.btn--lg { padding: 19px 38px; font-size: 1.0625rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border-soft); box-shadow: 0 4px 20px rgba(26, 46, 68, 0.06); }
.site-header--dark {
  background: rgba(26, 46, 68, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header--dark.is-scrolled { border-bottom-color: rgba(255, 255, 255, 0.12); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand svg { flex-shrink: 0; }
.brand-text { font-family: var(--font-head); line-height: 1.1; }
.brand-text .brand-name { display: block; font-size: 1.0625rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.brand-text .brand-tag { display: block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #C93509; }
.site-header--dark .brand-text .brand-name { color: #fff; }
.site-header--dark .brand-text .brand-tag { color: #FF9E73; }
.brand-lockup { display: block; height: 54px; width: auto; flex-shrink: 0; }
.brand-lockup--footer { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a:not(.btn) {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  padding: 9px 14px;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}
.nav-links a:not(.btn):hover { background: var(--accent-soft); text-decoration: none; color: var(--accent); }
.site-header--dark .nav-links a:not(.btn) { color: rgba(255, 255, 255, 0.85); }
.site-header--dark .nav-links a:not(.btn):hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.nav-links .btn { padding: 12px 22px; font-size: 0.9375rem; margin-left: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin: -10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.site-header--dark .nav-toggle span { background: #fff; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  background-image: radial-gradient(ellipse 900px 480px at 78% -10%, rgba(232, 64, 12, 0.22), transparent 62%),
                    radial-gradient(ellipse 700px 420px at 12% 112%, rgba(64, 110, 168, 0.28), transparent 60%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 860px; margin: 0 auto; padding: clamp(72px, 10vw, 128px) var(--pad-x) clamp(56px, 7vw, 88px); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 64, 12, 0.13);
  border: 1px solid rgba(232, 64, 12, 0.45);
  color: #FF7A4D;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-lead);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-strip {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
}
.hero-strip .dot { color: var(--accent); }

/* ---------- Stat strip ---------- */
.stat-strip { background: var(--light); border-bottom: 1px solid var(--border-soft); }
.stat-strip-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 16px 0; padding: 26px var(--pad-x); }
.stat { display: flex; align-items: baseline; gap: 9px; padding: 0 clamp(16px, 3vw, 36px); }
.stat + .stat { border-left: 1px solid var(--border); }
.stat .num { font-family: var(--font-head); font-size: 1.625rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.stat .num--accent { color: var(--accent); }
.stat .label { font-size: 0.8125rem; color: var(--muted); font-weight: 500; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--border); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.9575rem; margin: 0; }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }

/* ---------- Why / differentiators ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item { text-align: left; }
.why-item .why-num { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; color: var(--accent); letter-spacing: 0.14em; margin-bottom: 12px; display: block; }
.why-item h3 { font-size: 1.125rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 0.9375rem; margin: 0; }

/* ---------- Portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.work-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.work-card .work-shot { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--light); border-bottom: 1px solid var(--border-soft); }
.work-card .work-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.45s ease; }
.work-card:hover .work-shot img { transform: scale(1.03); }
.work-body { padding: 26px 28px 30px; }
.work-body .work-cat { font-family: var(--font-head); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }
.work-body h3 { margin-bottom: 8px; }
.work-body p { margin-bottom: 14px; }
.work-link { font-family: var(--font-head); font-weight: 600; font-size: 0.9375rem; }

/* ---------- Pricing teaser ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; text-align: left; position: relative; }
.price-card--featured { border-color: var(--accent); border-width: 1.5px; box-shadow: 0 2px 4px rgba(232, 64, 12, 0.06), 0 18px 44px rgba(232, 64, 12, 0.13); }
.price-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card .tier { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.price-card .price { font-family: var(--font-head); font-size: 2.125rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.price-card .price .from { font-size: 0.875rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-card .price-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 20px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex-grow: 1; }
.price-card ul li { position: relative; padding: 7px 0 7px 28px; font-size: 0.9375rem; color: var(--body); border-bottom: 1px solid var(--border-soft); }
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before { content: "✓"; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }

/* ---------- Testimonial placeholder ---------- */
.testimonial-card { max-width: 720px; margin: 0 auto; text-align: center; padding: 44px 40px; border-style: dashed; }
.testimonial-card:hover { transform: none; box-shadow: var(--shadow-card); }
.testimonial-card .quote-mark { font-family: var(--font-head); font-size: 3rem; line-height: 1; color: var(--accent); opacity: 0.35; display: block; margin-bottom: 6px; }
.testimonial-card p { font-size: 1.0625rem; color: var(--muted); font-style: italic; }
.testimonial-card .attribution { font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; color: var(--navy); font-style: normal; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); background-image: radial-gradient(ellipse 640px 320px at 85% 120%, rgba(255, 255, 255, 0.14), transparent 60%); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.88); font-size: var(--fs-lead); max-width: 560px; margin: 0 auto 34px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.68); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-grid h4 { color: #fff; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.68); font-size: 0.9375rem; }
.footer-grid a:hover { color: #fff; }
.footer-about p { font-size: 0.9375rem; max-width: 320px; margin-top: 16px; }
.footer-contact li { display: flex; gap: 10px; align-items: baseline; font-size: 0.9375rem; }
.footer-contact .fc-label { color: rgba(255, 255, 255, 0.4); font-size: 0.8125rem; min-width: 48px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--navy); background-image: radial-gradient(ellipse 700px 380px at 82% -20%, rgba(232, 64, 12, 0.2), transparent 62%); color: #fff; text-align: center; padding: clamp(56px, 7vw, 88px) 0; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.72); font-size: var(--fs-lead); max-width: 620px; margin: 0 auto; }
.page-hero .kicker { color: #FF7A4D; margin-bottom: 14px; }
.about-lockup { display: block; width: 100%; max-width: 480px; height: auto; margin: 0 auto; }

/* ---------- Forms ---------- */
.form-section { padding: clamp(48px, 6vw, 80px) 0 var(--section-y); }
.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: clamp(24px, 4vw, 44px); }
.form-block { margin-bottom: 40px; }
.form-block:last-child { margin-bottom: 0; }
.form-block > h2 { font-size: 1.25rem; margin-bottom: 6px; }
.form-block > .block-sub { font-size: 0.9075rem; color: var(--muted); margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field .req { color: var(--accent); }
.field .hint { font-size: 0.8125rem; color: var(--muted); margin-top: 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="url"], .field input[type="number"], .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235A6B7E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 64, 12, 0.14);
}
.field input.invalid, .field textarea.invalid, .field select.invalid { border-color: #D92D20; }
.field-error { display: none; font-size: 0.8125rem; color: #D92D20; margin-top: 6px; }
.field.has-error .field-error { display: block; }

/* Package selector cards */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.pkg-option { position: relative; }
.pkg-option input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-option label {
  display: block;
  height: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 16px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.pkg-option label:hover { border-color: var(--navy); }
.pkg-option input:checked + label { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 1px var(--accent); }
.pkg-option input:focus-visible + label { outline: 3px solid rgba(232, 64, 12, 0.5); outline-offset: 2px; }
.pkg-option .pkg-name { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1rem; display: block; }
.pkg-option .pkg-pages { font-size: 0.8125rem; color: var(--muted); display: block; margin: 2px 0 10px; }
.pkg-option .pkg-price { font-family: var(--font-head); font-weight: 700; font-size: 1.375rem; color: var(--accent); letter-spacing: -0.02em; }
.pkg-consult label { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
.pkg-consult .pkg-name { font-size: 0.9375rem; font-weight: 500; }

/* Add-on checkbox rows */
.addon-list { display: grid; gap: 10px; }
.addon-row { position: relative; }
.addon-row input { position: absolute; opacity: 0; pointer-events: none; }
.addon-row label {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.addon-row label:hover { border-color: var(--navy); }
.addon-row input:checked + label { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 1px var(--accent); }
.addon-row input:focus-visible + label { outline: 3px solid rgba(232, 64, 12, 0.5); outline-offset: 2px; }
.addon-row .box {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.addon-row .box svg { width: 12px; height: 12px; opacity: 0; transition: opacity 0.12s ease; }
.addon-row input:checked + label .box { background: var(--accent); border-color: var(--accent); }
.addon-row input:checked + label .box svg { opacity: 1; }
.addon-row .addon-name { flex-grow: 1; font-size: 0.9575rem; font-weight: 500; color: var(--body); }
.addon-row .addon-price { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 0.9375rem; white-space: nowrap; }

/* Radio rows (quote type) */
.radio-list { display: grid; gap: 10px; }
.radio-row { position: relative; }
.radio-row input { position: absolute; opacity: 0; pointer-events: none; }
.radio-row label {
  display: flex; align-items: flex-start; gap: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.radio-row label:hover { border-color: var(--navy); }
.radio-row input:checked + label { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 1px var(--accent); }
.radio-row input:focus-visible + label { outline: 3px solid rgba(232, 64, 12, 0.5); outline-offset: 2px; }
.radio-row .ring {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease;
}
.radio-row .ring::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); transform: scale(0); transition: transform 0.14s ease; }
.radio-row input:checked + label .ring { border-color: var(--accent); }
.radio-row input:checked + label .ring::after { transform: scale(1); }
.radio-row .radio-name { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 0.9575rem; display: block; }
.radio-row .radio-sub { font-size: 0.855rem; color: var(--muted); display: block; margin-top: 2px; }

/* Summary panel */
.quote-summary { position: sticky; top: 96px; }
.summary-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 30px 28px; box-shadow: 0 12px 36px rgba(18, 35, 58, 0.28); }
.summary-card h2 { color: #fff; font-size: 1.125rem; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }
.summary-row .val { font-family: var(--font-head); font-weight: 600; color: #fff; white-space: nowrap; }
.summary-total { padding: 18px 0 4px; }
.summary-total .label { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.55); font-family: var(--font-head); font-weight: 600; }
.summary-total .amount { font-family: var(--font-head); font-size: 2.125rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; line-height: 1.2; }
.summary-total .amount .permo { font-size: 1rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); }
.summary-total .amount.bump { animation: bump 0.3s ease; }
@keyframes bump { 40% { transform: scale(1.045); } }
.summary-note { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); margin: 16px 0 0; }

/* Mobile totals bar */
.totals-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(26, 46, 68, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-around;
  gap: 16px;
}
.totals-bar .tb-item { text-align: center; }
.totals-bar .tb-label { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.55); font-family: var(--font-head); font-weight: 600; }
.totals-bar .tb-val { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; }

/* Success message */
.form-success { display: none; text-align: center; padding: 56px 30px; }
.form-success.show { display: block; }
.form-success .check-ring {
  width: 72px; height: 72px; margin: 0 auto 24px;
  border-radius: 50%; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.form-success .check-ring svg { width: 34px; height: 34px; color: var(--accent); }
.form-success h2 { margin-bottom: 12px; }
.form-success p { color: var(--muted); max-width: 460px; margin: 0 auto; }
.form-status { font-size: 0.9375rem; margin-top: 14px; color: var(--muted); }
.form-status.error { color: #D92D20; }

/* Honeypot — hide from humans, keep in DOM for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }
.contact-aside .card { margin-bottom: 20px; }
.contact-aside .card:hover { transform: none; box-shadow: var(--shadow-card); }
.contact-aside h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.contact-aside p { font-size: 0.9375rem; }
.contact-aside .big-link { font-family: var(--font-head); font-weight: 600; font-size: 1.0625rem; word-break: break-all; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .work-card .work-shot img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .price-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-summary { display: none; }
  .totals-bar { display: flex; }
  body.has-totals-bar { padding-bottom: 68px; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 16px 32px rgba(26, 46, 68, 0.12);
    padding: 12px 20px 20px;
    gap: 4px;
  }
  .site-header--dark .nav-links { background: var(--navy); }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 13px 14px; }
  .nav-links .btn { margin: 10px 0 0; justify-content: center; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card--featured { order: -1; }
  .work-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stat { padding: 0 14px; }
  .stat .num { font-size: 1.25rem; }
  .stat .label { font-size: 0.75rem; }
  .hero-ctas .btn { width: 100%; }
  .cta-band .btn-row .btn { width: 100%; }
}

/* ============================================================
   Phase 2 additions — About / Services / Portfolio / Pricing /
   Privacy Policy (2026-07-13). Appended; reuses the variables
   and components above. Overrides are intentional & minimal.
   ============================================================ */

/* --- Footer: 4th column (Services) + Privacy link --- */
.footer-grid { grid-template-columns: 1.4fr 0.9fr 1.1fr 1.1fr; }
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Nav: 6 links + button need the mobile menu earlier --- */
@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 16px 32px rgba(26, 46, 68, 0.12);
    padding: 12px 20px 20px;
    gap: 4px;
  }
  .site-header--dark .nav-links { background: var(--navy); }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 13px 14px; }
  .nav-links .btn { margin: 10px 0 0; justify-content: center; }
}

/* --- Page-hero CTA row (service pages) --- */
.page-hero .hero-ctas { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Prose (About story, Privacy Policy, explainers) --- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 1.9em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 22px; margin: 0 0 1.2em; }
.prose ul li { margin-bottom: 8px; }
.prose .fineprint { font-size: 0.875rem; color: var(--muted); }

/* --- "What's included" checklist --- */
.included-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; max-width: 860px; margin: 0 auto; }
.included-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9688rem; }
.included-list .tick { flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.included-list .tick svg { width: 12px; height: 12px; }
@media (max-width: 768px) { .included-list { grid-template-columns: 1fr; } }

/* --- Process steps --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px 24px; counter-reset: step; }
.process-step { text-align: left; }
.process-step .step-num { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; color: var(--accent); letter-spacing: 0.14em; margin-bottom: 12px; display: block; }
.process-step h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.9063rem; margin: 0; }

/* --- Pricing hint band (service pages) --- */
.price-hint { background: var(--navy); border-radius: var(--radius); color: #fff; padding: clamp(28px, 4vw, 44px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.price-hint h3 { color: #fff; margin: 0 0 6px; }
.price-hint p { color: rgba(255, 255, 255, 0.72); margin: 0; font-size: 0.9375rem; max-width: 560px; }
.price-hint .amount { font-family: var(--font-head); font-weight: 700; color: #FF7A4D; }
.price-hint .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- FAQ accordion (native details/summary) --- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex-shrink: 0; transition: transform 0.2s ease; color: var(--accent); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--muted); font-size: 0.9375rem; }
.faq-item .faq-body p { margin: 0 0 0.8em; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* --- Services hub cards --- */
.svc-card { display: flex; flex-direction: column; }
.svc-card .svc-price { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; color: var(--accent); margin-top: auto; padding-top: 14px; }
.svc-card .card-link { font-weight: 600; font-size: 0.9375rem; }
.svc-card p { flex-grow: 0; }
.svc-soon { border-style: dashed; background: transparent; box-shadow: none; }
.svc-soon .badge-soon { display: inline-block; align-self: flex-start; font-family: var(--font-head); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); border-radius: 99px; padding: 4px 10px; margin-bottom: 12px; }

/* --- Advertising split panels --- */
.ad-panel { padding: clamp(24px, 3.5vw, 36px); }
.ad-panel .ad-kicker { font-family: var(--font-head); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.ad-panel ul { list-style: none; margin: 16px 0 0; padding: 0; }
.ad-panel ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9375rem; margin-bottom: 10px; }
.ad-panel ul .tick { flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.ad-panel ul .tick svg { width: 11px; height: 11px; }
.ad-tiers { margin-top: 20px; border-top: 1px solid var(--border-soft); padding-top: 16px; }
.ad-tiers .tier-row { display: flex; justify-content: space-between; gap: 14px; font-size: 0.9063rem; padding: 7px 0; }
.ad-tiers .tier-row .t-price { font-family: var(--font-head); font-weight: 600; color: var(--navy); white-space: nowrap; }
.ad-tiers .tier-row .t-name { color: var(--muted); }

/* --- Pricing page: add-on + rate tables --- */
.rate-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; }
.rate-table th, .rate-table td { text-align: left; padding: 15px 20px; font-size: 0.9375rem; border-bottom: 1px solid var(--border-soft); }
.rate-table th { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); background: var(--light); }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table .price-cell { font-family: var(--font-head); font-weight: 600; color: var(--navy); white-space: nowrap; }
.rate-table .note-cell { color: var(--muted); font-size: 0.875rem; }
.table-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; border-radius: var(--radius); }
@media (max-width: 480px) { .rate-table th, .rate-table td { padding: 12px 14px; } }

/* --- Pricing page: monthly service cards --- */
.mo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mo-card h3 { margin-bottom: 4px; }
.mo-card .mo-sub { color: var(--muted); font-size: 0.875rem; margin-bottom: 14px; }
.mo-card .tier-row { display: flex; justify-content: space-between; gap: 14px; font-size: 0.9063rem; padding: 9px 0; border-bottom: 1px solid var(--border-soft); }
.mo-card .tier-row:last-child { border-bottom: 0; }
.mo-card .tier-row .t-name { color: var(--body); }
.mo-card .tier-row .t-note { color: var(--muted); font-size: 0.8125rem; display: block; }
.mo-card .tier-row .t-price { font-family: var(--font-head); font-weight: 600; color: var(--navy); white-space: nowrap; }
@media (max-width: 768px) { .mo-grid { grid-template-columns: 1fr; } }

/* --- Portfolio: "Your Project Here?" card --- */
.work-card--open .work-shot { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); }
.work-card--open .work-shot .open-mark { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; color: rgba(255, 255, 255, 0.16); letter-spacing: -0.02em; }
