/* ==========================================================================
   B Love Productions — Design System
   Palette drawn from brand mark: black, off-white, red-orange accent.
   ========================================================================== */

:root {
  --color-black: #0b0b0c;
  --color-black-soft: #131315;
  --color-panel: #17171a;
  --color-white: #f5f3ef;
  --color-gray: #8a8a8e;
  --color-gray-dim: #5a5a5e;
  --color-accent: #e4572e;
  --color-accent-2: #f2994a;
  --gradient-accent: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));

  --font-body: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;

  --container-w: 1180px;
  --nav-h: 84px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; }
input, select, textarea { font: inherit; }

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

:focus-visible {
  outline: 2px solid var(--color-accent-2);
  outline-offset: 3px;
}

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

.script {
  font-style: italic;
}

.accent-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gradient-accent);
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(228, 87, 46, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(245, 243, 239, 0.25);
}
.btn-ghost:hover {
  border-color: var(--color-accent-2);
  color: var(--color-accent-2);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

/* -------------------------------------------------------------------------
   Nav
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
/* Blur lives on a pseudo-element rather than .site-header itself so the
   header doesn't become the containing block for its fixed-position
   descendants (backdrop-filter on an ancestor does that per spec) — the
   full-screen mobile nav-links panel needs to size against the viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 243, 239, 0.08);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}
.brand img {
  height: 56px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(245, 243, 239, 0.78);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-white);
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-black);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 28px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 22px; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 55% at 78% 22%, rgba(228, 87, 46, 0.22), transparent 60%),
    radial-gradient(50% 50% at 10% 85%, rgba(242, 153, 74, 0.14), transparent 60%),
    var(--color-black);
  will-change: transform;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 243, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 243, 239, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 60% 40%, black, transparent);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
}
.hero-copy p {
  font-size: 18px;
  color: rgba(245, 243, 239, 0.72);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 60px rgba(228, 87, 46, 0.25));
}

.heartbeat-line {
  width: 100%;
  height: auto;
  overflow: visible;
}
.heartbeat-line path {
  fill: none;
  stroke: url(#heartbeatGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-line 2.6s var(--ease) 0.4s forwards;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray);
  z-index: 1;
}
.scroll-cue .dot {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--color-accent), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto 12px; }
}

/* -------------------------------------------------------------------------
   Sections / reveal
   ------------------------------------------------------------------------- */
section { position: relative; }
.section {
  padding: 120px 0;
}
.section-tight { padding: 90px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-top: 16px;
  line-height: 1.15;
}
.section-head p {
  margin-top: 16px;
  color: rgba(245, 243, 239, 0.68);
  font-size: 16.5px;
}
.section-foot {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.42s; }

/* -------------------------------------------------------------------------
   What-we-do strip
   ------------------------------------------------------------------------- */
.discipline-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245, 243, 239, 0.1);
  border-bottom: 1px solid rgba(245, 243, 239, 0.1);
}
.discipline {
  padding: 40px 28px;
  border-left: 1px solid rgba(245, 243, 239, 0.1);
  transition: background 0.3s var(--ease);
}
.discipline:first-child { border-left: none; }
.discipline:hover { background: rgba(228, 87, 46, 0.06); }
.discipline .num {
  font-size: 13px;
  color: var(--color-accent-2);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.discipline h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 14px 0 8px;
}
.discipline p {
  color: var(--color-gray);
  font-size: 14.5px;
}
@media (max-width: 760px) {
  .discipline-strip { grid-template-columns: 1fr; }
  .discipline { border-left: none; border-top: 1px solid rgba(245, 243, 239, 0.1); }
  .discipline:first-child { border-top: none; }
}

/* -------------------------------------------------------------------------
   Cards: work grid
   ------------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.work-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-panel);
  border: 1px solid rgba(245, 243, 239, 0.08);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 87, 46, 0.4);
}
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(228, 87, 46, 0.35), rgba(11, 11, 12, 0.2)),
    linear-gradient(160deg, #1c1c1f, #0b0b0c);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.work-thumb svg {
  width: 46px;
  height: 46px;
  color: rgba(245, 243, 239, 0.5);
  transition: transform 0.5s var(--ease), color 0.5s var(--ease);
}
.work-card:hover .work-thumb svg {
  transform: scale(1.15);
  color: var(--color-accent-2);
}
.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,11,12,0.55), transparent 55%);
}
.work-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 11, 12, 0.55);
  border: 1px solid rgba(245, 243, 239, 0.18);
  backdrop-filter: blur(6px);
}
.work-body { padding: 22px 22px 26px; }
.work-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.work-body p { font-size: 14.5px; color: var(--color-gray); }

/* -------------------------------------------------------------------------
   Filter tabs
   ------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(245, 243, 239, 0.18);
  color: rgba(245, 243, 239, 0.72);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--color-accent-2); color: var(--color-white); }
.filter-btn.is-active {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--color-black);
}
.work-card[hidden] { display: none; }

/* -------------------------------------------------------------------------
   Services cards
   ------------------------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--color-panel);
  border: 1px solid rgba(245, 243, 239, 0.08);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.45s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 87, 46, 0.4);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--color-black); }
.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--color-gray); font-size: 15px; margin-bottom: 18px; }
.service-card a.btn { margin-top: 4px; }
@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Full service section (services.html) */
.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  padding: 90px 0;
  border-top: 1px solid rgba(245, 243, 239, 0.1);
}
.service-block:first-of-type { border-top: none; }
.service-block .service-icon { margin-bottom: 26px; }
.service-block h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 18px; }
.service-block p.lead { color: rgba(245, 243, 239, 0.72); font-size: 17px; margin-bottom: 20px; max-width: 46ch; }
.service-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin: 28px 0 32px;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(245, 243, 239, 0.82);
}
.service-includes li svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  color: var(--color-accent-2);
}
@media (max-width: 860px) {
  .service-block { grid-template-columns: 1fr; gap: 26px; }
  .service-includes { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   Process / values
   ------------------------------------------------------------------------- */
.process-list {
  display: grid;
  gap: 0;
}
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(245, 243, 239, 0.1);
}
.process-item:last-child { border-bottom: 1px solid rgba(245, 243, 239, 0.1); }
.process-item .step-num {
  font-size: 34px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 243, 239, 0.3);
}
.process-item h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.process-item p { color: var(--color-gray); font-size: 15px; max-width: 60ch; }

/* -------------------------------------------------------------------------
   About / team
   ------------------------------------------------------------------------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero .stat-row {
  display: flex;
  gap: 40px;
  margin-top: 34px;
}
.stat-row .stat b {
  display: block;
  font-size: 30px;
  font-weight: 800;
}
.stat-row .stat span {
  font-size: 13px;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1c1c1f, #0b0b0c);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 243, 239, 0.08);
}
.about-visual img { width: 55%; opacity: 0.9; }
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 320px; margin: 0 auto; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.team-card {
  background: var(--color-panel);
  border: 1px solid rgba(245, 243, 239, 0.08);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--color-black); font-size: 20px;
}
.team-card h3 { font-size: 17px; font-weight: 700; }
.team-card .role { font-size: 13px; color: var(--color-accent-2); margin: 4px 0 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card p { font-size: 14px; color: var(--color-gray); }

/* -------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(245, 243, 239, 0.1);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 50% 100%, rgba(228, 87, 46, 0.18), transparent 70%);
  z-index: 0;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 16px 0 34px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------------
   Contact form
   ------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.contact-info p { color: rgba(245, 243, 239, 0.7); font-size: 16.5px; margin-bottom: 30px; max-width: 44ch; }
.contact-details { display: grid; gap: 18px; margin-top: 34px; }
.contact-details .item {
  display: flex; gap: 14px; align-items: flex-start;
  padding-top: 18px; border-top: 1px solid rgba(245, 243, 239, 0.1);
}
.contact-details .item svg { width: 20px; height: 20px; color: var(--color-accent-2); margin-top: 3px; flex-shrink: 0; }
.contact-details .item b { display: block; font-size: 14px; }
.contact-details .item span, .contact-details .item a { color: var(--color-gray); font-size: 14px; }
.social-row { display: flex; gap: 14px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(245, 243, 239, 0.18);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.social-row a:hover { border-color: var(--color-accent-2); color: var(--color-accent-2); }
.social-row svg { width: 17px; height: 17px; }

.form-card {
  background: var(--color-panel);
  border: 1px solid rgba(245, 243, 239, 0.08);
  border-radius: 22px;
  padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: rgba(245, 243, 239, 0.85);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--color-black-soft);
  border: 1px solid rgba(245, 243, 239, 0.14);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--color-white);
  font-size: 14.5px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent-2);
  box-shadow: 0 0 0 3px rgba(242, 153, 74, 0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg {
  display: none;
  color: var(--color-accent-2);
  font-size: 12.5px;
  margin-top: 6px;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--color-accent);
}
.field.has-error .error-msg { display: block; }

.form-status {
  margin-top: 18px;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(76, 175, 110, 0.12);
  border: 1px solid rgba(76, 175, 110, 0.35);
  color: #7fd9a0;
}
.form-status.is-error {
  display: block;
  background: rgba(228, 87, 46, 0.1);
  border: 1px solid rgba(228, 87, 46, 0.35);
  color: var(--color-accent-2);
}
.form-note {
  font-size: 12.5px;
  color: var(--color-gray-dim);
  margin-top: 16px;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid rgba(245, 243, 239, 0.1);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--color-gray); font-size: 14px; max-width: 32ch; }
.footer-col h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(245, 243, 239, 0.75);
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--color-accent-2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 243, 239, 0.08);
  font-size: 13px;
  color: var(--color-gray-dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .social-row { margin-top: 0; }
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   Page header (interior pages)
   ------------------------------------------------------------------------- */
.page-header {
  padding: 176px 0 70px;
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 85% 0%, rgba(228, 87, 46, 0.16), transparent 65%);
  z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
}
.page-header p { color: rgba(245, 243, 239, 0.68); font-size: 17px; max-width: 56ch; }
