/* =========================================================
   KleenWhipz — styles.css (FULL REDO)
   Brand: Charcoal / Grey base + Muted Gold accents
   Goals:
   - Modern, sleek, youthful
   - Strong CTAs (booking-focused)
   - No "glossy/processed" photo look (NO filters on real images)
   - Results section: ONE large image per row on ALL screen sizes
   - Center CTA buttons where it makes sense
========================================================= */

/* =========================
   1) RESET / BASE
========================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

button,
input,
select,
textarea { font: inherit; }

a { color: inherit; text-decoration: none; }

/* =========================
   2) BRAND TOKENS
========================= */
:root {
  /* Brand palette */
  --kw-bg: #0e0e0e;           /* near-black */
  --kw-surface: #141414;      /* surfaces/cards */
  --kw-surface-2: #1d1d1d;    /* secondary surfaces */
  --kw-border: rgba(255, 255, 255, 0.10);

  --kw-text: #ffffff;
  --kw-muted: rgba(255, 255, 255, 0.68);

  /* Muted gold accent */
  --kw-gold: #c9a24d;
  --kw-gold-2: #b89b5e;

  /* Layout */
  --container: 1240px;
  --gutter: 20px;

  /* Radius / shadow */
  --kw-radius: 18px;
  --kw-radius-sm: 14px;

  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.65);

  /* Accent glow (use sparingly) */
  --glow-gold: 0 0 0 1px rgba(201, 162, 77, 0.22), 0 0 44px rgba(201, 162, 77, 0.14);

  /* Typography */
  --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-display: var(--font-sans);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 220ms;
}

/* =========================
   3) GLOBAL TYPE / BACKGROUND
========================= */
body {
  font-family: var(--font-sans);
  color: var(--kw-text);
  line-height: 1.55;
  background:
    radial-gradient(1200px 600px at 18% 0%, rgba(201, 162, 77, 0.07), transparent 55%),
    radial-gradient(900px 600px at 82% 18%, rgba(201, 162, 77, 0.05), transparent 55%),
    var(--kw-bg);
}

.theme-dark { color-scheme: dark; }

h1, h2, h3 {
  margin: 0 0 10px;
  line-height: 1.15;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 14px;
  color: var(--kw-muted);
}

.text-accent { color: var(--kw-gold); }

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
   4) UTILITIES / LAYOUT
========================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: 72px 0; }

.section-header {
  margin-bottom: 26px;
  max-width: 760px;
}

.section-title {
  font-size: clamp(1.7rem, 2vw + 1rem, 2.3rem);
  color: var(--kw-text);
}

.section-subtitle {
  margin-top: 8px;
}

.section-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.section-note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.60);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--kw-surface);
  border: 1px solid var(--kw-border);
  color: var(--kw-text);
  z-index: 9999;
}
.skip-link:focus { left: 12px; }

/* =========================
   5) BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, rgba(201, 162, 77, 1), rgba(184, 155, 94, 1));
  color: #0b0b0b;
  box-shadow: 0 14px 40px rgba(201, 162, 77, 0.18);
}
.btn-primary:hover { box-shadow: 0 18px 54px rgba(201, 162, 77, 0.26), var(--glow-gold); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--kw-text);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn-secondary:hover {
  border-color: rgba(201, 162, 77, 0.45);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.btn-block { width: 100%; }

/* =========================
   6) CARDS (no glass blur)
========================= */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--kw-border);
  border-radius: var(--kw-radius);
  box-shadow: var(--shadow-soft);
}

/* =========================
   7) HEADER / NAV
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 14, 0.70);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

#header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 77, 0.25);
  color: var(--kw-gold);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  padding: 10px 10px;
  border-radius: 10px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.nav-link:hover {
  color: var(--kw-text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--kw-text);
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-toggle-icon {
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  display: inline-block;
  position: relative;
  margin-left: 10px;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

/* =========================
   8) HERO (CINEMATIC)
========================= */
.hero {
  position: relative;
  padding: 86px 0 42px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.10) saturate(1.08); /* only affects hero bg, not portfolio photos */
  transform: scale(1.03);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 50% 35%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.88));
}

.hero-bg-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(600px 320px at 60% 35%, rgba(201, 162, 77, 0.12), transparent 60%),
    radial-gradient(520px 260px at 30% 70%, rgba(201, 162, 77, 0.08), transparent 62%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.85;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 3.4rem);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  max-width: 62ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
}

/* Right-side callout */
.hero-card .card {
  padding: 18px;
  background: rgba(20, 20, 20, 0.75);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

/* Hero strip */
.hero-strip {
  margin-top: 34px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(12px);
}

.hero-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-strip-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.hero-strip-logos {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-strip-logo {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

/* =========================
   9) SERVICES GRID
========================= */
.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.service-card {
  grid-column: span 3;
  padding: 18px;
}

.card-featured {
  grid-column: span 3;
  border-color: rgba(201, 162, 77, 0.32);
  box-shadow: var(--shadow-strong), var(--glow-gold);
}

.section-services .service-card:hover {
  border-color: rgba(201, 162, 77, 0.26);
  box-shadow: var(--shadow-strong);
}

/* =========================
   10) PROCESS STEPS
========================= */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.step {
  grid-column: span 4;
  padding: 18px;
}



/* =========================
   11) RESULTS / GALLERY (FULL WIDTH SINGLE COLUMN)
   - Always one image per row
   - No photo filters
   - CTA centered
========================= */
/* =========================================================
   RESULTS / GALLERY — RAW & NEUTRAL (NO GLOSS)
   Philosophy:
   - Zero image enhancement
   - No dramatic lighting
   - No glass, no glow, no polish
========================================================= */

.section-work {
  background: #0e0e0e; /* flat background */
}

/* Single column, full-width feel */
.section-work .gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* Image container: FLAT */
.section-work .gallery-item {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;     /* no surface effect */
  border: none;                /* remove contrast edges */
  box-shadow: none;            /* CRITICAL: no shadows */
  border-radius: 0;            /* removes “polished” feel */
  overflow: hidden;
}

/* Image itself: PURE PHOTO */
.section-work .gallery-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;

  /* ABSOLUTE RAW IMAGE */
  filter: none !important;
  mix-blend-mode: normal;
  opacity: 1;

  transform: none;
  transition: none;
}

/* Caption: minimal, documentary style */
.section-work .gallery-caption {
  padding: 12px 0 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}

/* CTA centered, no visual drama */
.section-work .section-cta {
  justify-content: center;
  margin-top: 32px;
}

/* Mobile stays clean */
@media (max-width: 720px) {
  .section-work .gallery-img {
    aspect-ratio: 4 / 3; /* more natural on phones */
  }
}



/* =========================
   12) FAQ
========================= */
.faq-list {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.faq-item { padding: 0; overflow: hidden; }

.faq-question {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 750;
  color: var(--kw-text);
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-item[open] .faq-question { border-bottom: 1px solid rgba(255, 255, 255, 0.10); }

.faq-answer { padding: 14px 18px 18px; }

/* =========================
   13) FINAL CTA
========================= */
.section-final-cta { padding-top: 0; }

.final-cta-card {
  padding: 26px;
  border-color: rgba(201, 162, 77, 0.22);
  background:
    radial-gradient(900px 300px at 30% 10%, rgba(201, 162, 77, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-strong);
}

.final-cta-title {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  justify-content: center; /* center CTAs here too */
}

/* =========================
   14) BOOKING PAGE (CAL.COM EMBED)
========================= */
.booking-widget-card { padding: 18px; }

.cal-embed-wrap {
  width: 100%;
  border-radius: var(--kw-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.25);
}

.cal-embed {
  width: 100%;
  height: min(78vh, 860px);
  border: 0;
}

.booking-widget-footer {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center; /* center booking buttons */
}

/* =========================
   15) FOOTER
========================= */
.site-footer {
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.20);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.footer-brand-name {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-link {
  display: inline-block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}
.footer-link:hover { color: var(--kw-text); }

.footer-contact-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.footer-contact a:hover { color: var(--kw-gold); }

.footer-bottom {
  margin-top: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================
   16) RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }

  .service-card { grid-column: span 6; }
  .card-featured { grid-column: span 12; }

  .step { grid-column: span 12; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }

  /* Mobile nav */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .nav-menu {
    position: absolute;
    right: var(--gutter);
    top: 72px;
    width: min(92vw, 360px);
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  }

  .nav-menu.is-open { display: flex; }

  .nav-link {
    width: 100%;
    padding: 12px 12px;
  }

  .hero { padding-top: 70px; }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card { grid-column: span 12; }
  .footer-inner { grid-template-columns: 1fr; }

  /* Results: still one per row, slightly taller to show detail */
  .section-work .gallery-item { max-width: 100%; }
  .section-work .gallery-img { aspect-ratio: 16 / 10; }

  /* Booking buttons stack nicely */
  .booking-widget-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================
   17) REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .section-work .gallery-img { transition: none; }
}
