/* =========================================================================
   Video Viking — global stylesheet
   ========================================================================= */

/* --- 1. Modern reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
button, a { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* --- 2. Design tokens -------------------------------------------------- */
:root {
  --bg: #0B0B0B;
  --surface: #161616;
  --border: #262626;
  --text: #EDEDED;
  --text-muted: #9A9A9A;
  --accent: #D4A24C;
  --accent-hover: #E2B968;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3.5rem;
  --fs-4xl: 5rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 5rem;
  --space-8: 8rem;

  --container: 1200px;
  --container-narrow: 800px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- 3. Base typography ------------------------------------------------ */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-feature-settings: "ss01", "cv01";
}

h1, h2, h3 { font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, var(--fs-4xl)); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 4vw, var(--fs-2xl)); }
h3 { font-size: var(--fs-xl); }

a { text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

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

/* Accessibility: skip-to-content link, only visible on keyboard focus */
.skip-link {
  position: absolute;
  top: -40px;
  left: var(--space-3);
  background: var(--accent);
  color: var(--bg);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fs-sm);
  z-index: 100;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: var(--space-3); color: var(--bg); }

/* --- 4. Layout primitives --------------------------------------------- */
.container       { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, var(--space-5)); }
.container--narrow { max-width: var(--container-narrow); }

.section         { padding-block: clamp(var(--space-5), 6vw, var(--space-7)); }
.section--tight  { padding-block: clamp(var(--space-4), 4vw, var(--space-5)); }
.section + .section { border-top: 1px solid var(--border); }

.eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.section__header { margin-bottom: var(--space-4); }
.section__header h2 { margin: 0; }

/* --- 5. Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
  border: 1px solid transparent;
}
.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover { background: var(--accent-hover); color: var(--bg); }
.btn--primary:active { background: var(--accent); opacity: 0.8; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost:active { opacity: 0.7; }
.btn--block { width: 100%; }

/* --- 6. Header / nav --------------------------------------------------- */
.site-header {
  position: fixed; top: 0;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--container);
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-3) clamp(1rem, 4vw, var(--space-5));
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.site-header__brand { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text); text-decoration: none; }
.site-header__brand:hover { color: var(--accent); }
.site-header__brand:hover .site-header__mark { filter: drop-shadow(0 0 6px var(--accent)); }
.site-header__mark { height: 34px; width: auto; transition: filter 200ms var(--ease); display: block; transform: translateY(-5px); }
.site-header__brand-word {
  font-family: 'Josefin Sans', 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 600px) {
  /* Hide the wordmark text on small screens — the mark alone is enough
     to identify the brand, and the nav needs the horizontal room. */
  .site-header__brand-word { display: none; }
  .site-header__mark { height: 28px; transform: translateY(0); }
}
.site-header__nav { display: flex; gap: var(--space-4); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.1em; }
.site-header__nav a { color: var(--text); }
.site-header__nav a:hover { color: var(--accent); }
@media (max-width: 720px) {
  .site-header__nav { gap: var(--space-3); font-size: var(--fs-xs); }
}

/* --- 7. Footer --------------------------------------------------------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: var(--space-5);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.site-footer__inner { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center; }
.site-footer a:hover { color: var(--accent); }
.site-footer__disclaimer {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: var(--container);
}
.site-footer__disclaimer a { text-decoration: underline; }
.site-footer__builder {
  margin-top: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  opacity: 0.7;
}
.site-footer__builder a { text-decoration: none; border-bottom: 1px dotted currentColor; }
.site-footer__builder a:hover { color: var(--accent); }

/* --- 8. Animations ----------------------------------------------------- */
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.fade-in.is-visible { opacity: 1; transform: none; }

/* --- 9. Hero ----------------------------------------------------------- */
.hero {
  /* Outer rail — provides matching side padding so the inner frame aligns
     vertically with the rest of the site's container-constrained sections. */
  padding-block: var(--space-4) 0;
  padding-inline: clamp(1rem, 4vw, var(--space-5));
}
.hero__frame {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  min-height: clamp(520px, 75vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-md);
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,11,0.0) 30%, rgba(11,11,11,0.85) 100%);
}
.hero__content {
  padding: var(--space-5) var(--space-5) var(--space-6);
  width: 100%;
}
.hero__content .eyebrow { color: var(--accent); }
.hero h1 {
  margin-block: var(--space-3) var(--space-4);
  max-width: 14ch;
}
.hero__name {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
}
@media (max-width: 720px) {
  .hero__cta .btn { flex: 1 1 100%; }
}
@media (max-width: 600px) {
  .hero__content { padding: var(--space-4) var(--space-3) var(--space-5); }
}

.hero__status {
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(212, 162, 76, 0.6);
  animation: pulse 2s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 162, 76, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(212, 162, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 162, 76, 0); }
}

.hero__note {
  margin-top: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: var(--fs-base);
  background: rgba(11,11,11,0.4);
  backdrop-filter: blur(8px);
  opacity: 0.6;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), color 200ms var(--ease);
  animation: floaty 2.4s var(--ease) infinite;
}
.hero__scroll-cue:hover { opacity: 1; color: var(--accent); border-color: var(--accent); }
@keyframes floaty {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 4px); }
}
@media (max-width: 720px) { .hero__scroll-cue { display: none; } }

/* --- 10. Credits strip ------------------------------------------------- */
.credits__eyebrow { text-align: center; }
.credits__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  gap: var(--space-3) var(--space-4);
  justify-content: center; align-items: baseline;
  font-size: clamp(var(--fs-base), 2.4vw, var(--fs-lg));
  font-weight: 500;
  letter-spacing: 0.02em;
}
.credits__list li {
  color: var(--text);
  white-space: nowrap;
}
.credits__list li:has(span) { color: var(--text-muted); }
@media (max-width: 720px) {
  .credits__list li:has(span) { display: none; } /* hide separators on mobile so list wraps cleanly */
  .credits__list { gap: var(--space-2) var(--space-3); justify-content: center; }
}

/* --- 11. Work grid ----------------------------------------------------- */
.work__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-4);
}
@media (max-width: 600px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}

.work__card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.work__card img {
  aspect-ratio: 2/3;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.work__card:hover img { transform: scale(1.04); }
.work__card:hover { box-shadow: 0 0 0 1px var(--accent); }

.work__title, .work__meta {
  display: block;
  padding-inline: var(--space-3);
}
.work__title {
  margin-top: var(--space-3);
  font-weight: 700;
  font-size: var(--fs-base);
}
.work__meta {
  margin-top: var(--space-1);
  margin-bottom: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* --- 12. Gear ---------------------------------------------------------- */
.gear__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-5);
}
.gear__col h3 {
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}
.gear__col ul { list-style: none; padding: 0; margin: 0; }
.gear__col li {
  padding-block: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.gear__col li:last-child { border-bottom: none; }
.gear__col li a { color: var(--text); border-bottom: 1px dotted var(--text-muted); }
.gear__col li a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* --- 12c. Book-Anton + Hire-the-Kit — paired brass-border cards -------- */
.rates__person,
.rates__kit {
  border: 1px solid rgba(212, 162, 76, 0.55); /* thin brass/gold */
  border-radius: var(--radius-md);
  padding: var(--space-5);
  background: linear-gradient(180deg, rgba(212,162,76,0.04), transparent 60%);
  position: relative;
}
.rates__person::before,
.rates__kit::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-md) - 1px);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(212, 162, 76, 0.12);
}
.rates__person {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-4);
}
.rates__big-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-2);
}
.rates__person-sub {
  font-size: var(--fs-lg);
  color: var(--text);
  font-weight: 500;
  margin: 0 0 var(--space-3);
}
.rates__person p {
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.rates__person-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* HIRE THE KIT — paired card */
.rates__kit-header {
  margin-bottom: var(--space-4);
}
.rates__kit-sub {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0;
}

@media (max-width: 720px) {
  .rates__person { grid-template-columns: 1fr; }
  .rates__person-cta { flex-direction: row; flex-wrap: wrap; }
  .rates__person-cta .btn { flex: 1 1 auto; }
}

/* --- 11c. Work-grid text cards (fill empty slots in last row) ---------- */
.work__card--text {
  grid-column: span 1;
  display: flex;
  align-items: flex-start;
  padding: var(--space-4);
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(212,162,76,0.06) 100%);
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.work__card--text-intl {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(212,162,76,0.12) 100%);
}
.work__card--text:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(212,162,76,0.18) 100%);
  box-shadow: none;
}
.work__card--text img { display: none; }
.work__card-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  width: 100%;
  padding: 0;
}
.work__card-text__eyebrow {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  min-height: 1.5em;
  margin-bottom: var(--space-3);
}
.work__card-text__h {
  display: block;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  /* Reserve 2 lines so cards with 1-line and 2-line headlines align */
  min-height: 2.5em;
  margin-bottom: var(--space-3);
}
.work__card-text__p {
  display: block;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text-muted);
  /* fills the remaining vertical space so CTA sits at the bottom */
  flex: 1 1 auto;
}
.work__card-text__cta {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-3);
}
@media (max-width: 720px) {
  .work__card--text { grid-column: span 1; }
}

/* --- 11b. On-set BTS gallery — clickable horizontal contact strip ------ */
.onset__grid {
  list-style: none; padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
.onset__grid li {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  cursor: zoom-in;
}
.onset__grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms var(--ease);
  cursor: zoom-in;
}
.onset__grid li:hover img { transform: scale(1.03); }
@media (max-width: 600px) {
  .onset__grid { grid-template-columns: 1fr; max-width: 100%; }
}

/* --- 11c. Lightbox (full-size photo viewer) ---------------------------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
  cursor: zoom-out;
  animation: lightbox-fade 200ms var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
@keyframes lightbox-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- 12b. Services ----------------------------------------------------- */
.services__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3) var(--space-5);
}
.services__list li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text-muted);
}
.services__list li strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}

/* --- 13. Rates --------------------------------------------------------- */
.rates__table-wrap { overflow-x: auto; }
.rates__table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.rates__table th, .rates__table td {
  text-align: left;
  padding: var(--space-3);
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
}
.rates__table th {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
  font-size: var(--fs-xs);
}
.rates__table th:last-child { text-align: right; }
.rates__table td:last-child {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}
.rates__table small { color: var(--text-muted); font-weight: 400; }
@media (max-width: 520px) {
  .rates__table { display: block; }
  .rates__table thead { display: none; }
  .rates__table tbody, .rates__table tr { display: block; }
  .rates__table tr { padding: var(--space-2) 0; border-bottom: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2); align-items: baseline; }
  .rates__table td { padding: 0; border: 0; }
  .rates__table td:first-child { flex: 1 1 70%; }
  .rates__table td:last-child { flex: 0 0 auto; text-align: right; }
}

/* --- 13b. Floating WhatsApp button ------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 61;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,162,76,0.35);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  text-decoration: none;
}
.wa-float:hover { color: var(--bg); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(212,162,76,0.5); }
@media (max-width: 720px) {
  .wa-float { bottom: 88px; }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wa-float { bottom: max(28px, calc(12px + env(safe-area-inset-bottom))); }
  @media (max-width: 720px) {
    .wa-float { bottom: max(88px, calc(72px + env(safe-area-inset-bottom))); }
    .floating-cta { bottom: max(var(--space-3), calc(6px + env(safe-area-inset-bottom))); }
  }
}

/* --- 13c. Floating mobile CTA ----------------------------------------- */
.floating-cta {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 60;
  background: var(--accent);
  color: var(--bg);
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 4px 10px rgba(212,162,76,0.3);
  display: none;
  align-items: center;
  gap: 0.45rem;
}
.floating-cta:hover { background: var(--accent-hover); color: var(--bg); }
@media (max-width: 720px) {
  /* Mobile: shrink to a small icon-only round button so it covers minimal text */
  .floating-cta {
    display: inline-flex;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    justify-content: center;
  }
  .floating-cta__label { display: none; }
  /* Pad the page so the floating CTA doesn't overlap the last line of any section */
  body { padding-bottom: 80px; }
}
.rates__download { margin-top: var(--space-3); text-align: center; }
.rates__more {
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: rgba(212,162,76,0.06);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.55;
}
.rates__more a { color: var(--accent); font-weight: 500; }
.rates__more a:hover { color: var(--accent-hover); }

/* --- 13b. Working with me — clean Q&A list, label-above-answer --------- */
.working__list {
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  border-top: 1px solid var(--border);
}
.working__list > div {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
}
.working__list dt {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: var(--space-1);
}
.working__list dd {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
}

/* --- 14. About --------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-5);
  align-items: center;
}
.about__media img {
  border-radius: var(--radius-md);
  aspect-ratio: 16/10;
  object-fit: cover;
  max-height: 280px;
  width: 100%;
}
.about__text > * + * { margin-top: var(--space-3); }
@media (max-width: 800px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .about__media img { aspect-ratio: 16/10; }
}

/* --- 15. Contact ------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-6);
  align-items: start;
}
.contact__direct {
  list-style: none; padding: 0; margin-top: var(--space-4);
}
.contact__direct li {
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-base);
}
.contact__direct li:last-child { border-bottom: none; color: var(--text-muted); }
.contact__backup { margin-top: var(--space-3); font-size: var(--fs-sm); color: var(--text-muted); }

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.field { display: flex; flex-direction: column; gap: var(--space-1); margin-bottom: var(--space-3); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field-row .field { margin-bottom: var(--space-3); }
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
.field label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}
.field label span { text-transform: none; letter-spacing: normal; }
.field input, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text);
  transition: border-color 200ms var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field--hidden { position: absolute; left: -10000px; height: 0; overflow: hidden; }
.field--consent { margin-top: var(--space-2); margin-bottom: var(--space-3); }
.field--consent label { display: flex; gap: var(--space-2); align-items: flex-start; cursor: pointer; }
.field--consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.field--consent span { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }
.field--consent a { color: var(--text); text-decoration: underline; }
.field--consent a:hover { color: var(--accent); }
.contact__status { margin-top: var(--space-3); font-size: var(--fs-sm); min-height: 1.5em; }
.contact__status.is-success { color: var(--accent); }
.contact__status.is-error { color: #f15a4d; }

@media (max-width: 800px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* --- 16. Project page -------------------------------------------------- */
.project__main { padding-top: var(--space-7); padding-bottom: var(--space-6); }
.project__back {
  display: inline-block;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.project__back:hover { color: var(--accent); }

.project__article > * + * { margin-top: var(--space-5); }
.project__poster {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.project__poster img {
  width: 100%; height: auto;
  aspect-ratio: 2/3;
  max-height: 70vh;
  object-fit: cover;
  object-position: center top;
}
.project__header h1 { margin-block: var(--space-2) var(--space-3); }
.project__role { color: var(--text-muted); }
.project__body p { margin-top: var(--space-3); line-height: 1.7; max-width: 60ch; }
.project__body h2, .project__credits h2 {
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.project__credits ul { list-style: none; padding: 0; margin-top: var(--space-3); }
.project__credits li { padding-block: var(--space-2); border-bottom: 1px solid var(--border); }

.project__pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-7);
  padding-block: var(--space-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.project__pager-link {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  transition: background 200ms var(--ease);
}
.project__pager-link:hover { background: var(--surface); }
.project__pager-link--next { text-align: right; }
.project__pager-dir {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.project__pager-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text);
}
.project__pager-link:hover .project__pager-title { color: var(--accent); }
@media (max-width: 520px) {
  .project__pager { grid-template-columns: 1fr; }
  .project__pager-link--next { text-align: left; }
}

/* --- 16b. FAQ — click to expand (obvious clickable rows) -------------- */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.faq__item:hover { border-color: var(--accent); background: rgba(212,162,76,0.04); }
.faq__item[open] { border-color: var(--accent); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: var(--space-3) var(--space-6) var(--space-3) var(--space-4);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--text);
  user-select: none;
  display: flex;
  align-items: center;
  min-height: 52px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,162,76,0.15);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.faq__item:hover summary::after { background: var(--accent); color: var(--bg); }
.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--accent);
  color: var(--bg);
}
.faq__item summary:hover { color: var(--accent); }
.faq__answer {
  padding: 0 var(--space-4) var(--space-4);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 64ch;
}
.faq__answer a { color: var(--text); text-decoration: underline; }
.faq__answer a:hover { color: var(--accent); }

/* --- 17. Legal / Privacy ----------------------------------------------- */
.legal { max-width: 70ch; }
.legal h1 { margin-block: var(--space-2) var(--space-4); }
.legal h2 { margin-block: var(--space-5) var(--space-2); font-size: var(--fs-lg); color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }
.legal p, .legal ul { margin-bottom: var(--space-3); line-height: 1.65; color: var(--text); }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: var(--space-1); }
.legal a { color: var(--text); border-bottom: 1px dotted var(--text-muted); }
.legal a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.legal__intro { color: var(--text-muted); font-size: var(--fs-lg); line-height: 1.55; }
