/* ── Koenig Painting & Design — Light / Warm design system ── */

:root {
  /* White base, warm accents from the logo palette */
  --white:       #ffffff;
  --off-white:   #faf9f7;
  --warm-bg:     #f5f2ed;
  --warm-light:  #ede8e0;
  --dark:        #3d2b1f;
  --dark-soft:   #5c4030;
  --text:        #3d2b1f;
  --text-muted:  #7a6655;
  --text-light:  #a49080;
  --accent:      #8fa888;
  --accent-dark: #6e8c6a;
  --accent-light:#adc4a8;
  --border:      rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.12);

  --ff-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }

/* ── Layout ── */
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 600; }

.label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.label-light { color: var(--accent-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-lg { padding: 16px 36px; font-size: 0.9rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-soft);
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn.is-pending,
.button.is-pending,
.is-placeholder {
  cursor: help;
}

/* ── Navigation ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand-logo {
  width: clamp(140px, 16vw, 200px);
  height: auto;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.nav-mini {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-mini a {
  padding: 8px 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.25s ease, opacity 0.25s ease, text-shadow 0.25s ease;
}

.nav-mini a:hover { color: var(--dark); }

.nav-mini .btn { margin-left: 8px; }
.nav-mini .button { margin-left: 8px; }

.nav-call {
  color: var(--accent-dark) !important;
  font-weight: 700 !important;
}

.topbar.is-overlay {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.topbar.is-overlay .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.26));
}

.topbar.is-overlay .nav-mini a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
}

.topbar.is-overlay .nav-mini a:hover {
  color: var(--accent-light);
}

.topbar.is-overlay .nav-call {
  color: var(--accent-light) !important;
}

.topbar.is-overlay .btn,
.topbar.is-overlay .button {
  border-color: rgba(217, 191, 138, 0.48);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.topbar .brand-logo[src="logo-full.svg"] {
  filter: invert(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 3px;
  color: var(--dark);
  background: rgba(255,255,255,0.72);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.25s ease;
}

.button:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

/* ── Hero — full bleed ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  z-index: 0;
  filter: saturate(0.98) contrast(1.01) brightness(0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 41% 50%, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.24) 16%, rgba(0,0,0,0.10) 28%, transparent 44%),
    radial-gradient(ellipse at 78% 42%, rgba(217,191,138,0.14) 0%, transparent 34%),
    radial-gradient(ellipse at center, transparent 42%, rgba(0,0,0,0.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.08) 40%, rgba(0,0,0,0.58) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 740px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(112px, 12vw, 170px) 0 clamp(72px, 9vw, 120px);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 16ch;
  text-shadow: 0 16px 50px rgba(0,0,0,0.62);
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.8;
  max-width: 520px;
  text-shadow: 0 12px 34px rgba(0,0,0,0.64);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  list-style: none;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof-list li {
  position: relative;
}

.hero-proof-list li + li::before {
  content: '';
  position: absolute;
  left: -13px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ── Conversion strip ── */
.conversion-strip {
  position: relative;
  z-index: 3;
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.conversion-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.conversion-action {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease;
}

.conversion-action:first-child {
  border-left: 1px solid rgba(255,255,255,0.1);
}

.conversion-action:hover {
  background: rgba(255,255,255,0.06);
}

.conversion-action span {
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conversion-action strong {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1.16rem;
  font-weight: 600;
}

.conversion-action em {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-style: normal;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 92vh;
  margin: 0 auto;
  padding: clamp(120px, 14vw, 180px) 0 clamp(72px, 9vw, 120px);
  color: var(--white);
}

.hero-grid::before {
  content: '';
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 20% 18%, rgba(196, 162, 101, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(12, 13, 13, 0.96), rgba(35, 30, 24, 0.92) 62%, rgba(12, 13, 13, 0.98));
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero-content h1 {
  color: var(--white);
  max-width: 14ch;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 680px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
}

.hero-proof {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 10px;
}

.proof-pill {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
}

.proof-pill strong {
  color: var(--accent-light);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
}

.proof-pill span {
  color: rgba(255,255,255,0.66);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* ── Social proof ticker ── */
.ticker-bar {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.ticker-item strong {
  color: var(--accent-light);
  font-weight: 600;
}

.ticker-sep {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin: 0 28px;
  border-radius: 50%;
  background: var(--accent);
  align-self: center;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-warm {
  background: var(--warm-bg);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-intro {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-intro p {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.8;
  margin-top: 12px;
}

.section-intro-light p { color: rgba(255,255,255,0.65); }
.section-intro-light h2 { color: var(--white); }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-alt {
  background: var(--warm-bg);
}

.section-header {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.section-header h2 {
  margin: 0;
}

.section-header .lead {
  color: var(--text-muted);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card,
.feature-card,
.quote-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card h3,
.feature-card h3,
.quote-card h3,
.quote-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--dark);
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.card p,
.feature-card p,
.quote-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.visual-feature {
  padding: clamp(56px, 7vw, 96px) 0;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.visual-copy {
  max-width: 620px;
}

.visual-copy p {
  margin-top: 16px;
  color: var(--text-muted);
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 162, 101, 0.22);
  border-radius: 16px;
  background: var(--dark);
  box-shadow: 0 28px 80px rgba(26, 26, 26, 0.18);
}

.visual-card img {
  width: 100%;
  min-height: clamp(320px, 38vw, 560px);
  object-fit: cover;
}

.visual-card figcaption {
  position: absolute;
  inset: auto 18px 18px;
  max-width: 420px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.72);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.82rem;
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.atelier-card {
  overflow: hidden;
  padding: 0;
}

.atelier-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.calendar-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(217, 191, 138, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 16%, rgba(217, 191, 138, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.calendar-copy h2,
.calendar-copy h3 {
  color: var(--white);
}

.calendar-copy p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
}

.calendar-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 191, 138, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.calendar-visual img {
  width: 100%;
  min-height: clamp(280px, 34vw, 480px);
  object-fit: cover;
}

.calendar-visual figcaption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.62);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.area-list li {
  padding: 12px 14px;
  border: 1px solid rgba(196, 162, 101, 0.22);
  border-radius: 999px;
  background: rgba(196, 162, 101, 0.08);
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.list-check {
  display: grid;
  gap: 12px;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.list-check li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Process steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
}

.step-num {
  display: block;
  margin-bottom: 16px;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.step p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ── Projects grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 10;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  z-index: 1;
}

.project-card-body .label { color: var(--accent-light); margin-bottom: 4px; }
.project-card-body h3 { color: var(--white); font-size: 1.25rem; }

/* ── Before / after proof ── */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.before-after-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.before-after-card img {
  width: 100%;
  height: clamp(260px, 36vw, 460px);
  object-fit: cover;
}

.before-after-card figcaption {
  display: grid;
  gap: 3px;
  padding: 22px 24px;
  color: var(--dark);
  font-family: var(--ff-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.before-after-card figcaption span {
  color: var(--text-muted);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 400;
}

/* ── Why us / differentiator ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  padding: 32px 24px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
}

.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(196, 162, 101, 0.12);
  color: var(--accent-light);
}

.diff-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.diff-card p  { color: rgba(255,255,255,0.6); font-size: 0.92rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--off-white);
}

.trust-card h3 {
  margin-bottom: 12px;
}

.stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial footer strong { font-size: 0.88rem; color: var(--dark); }
.testimonial footer span   { font-size: 0.78rem; color: var(--text-light); }

/* ── Scope clarity cards ── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.offer-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.launch-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(196, 162, 101, 0.34);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-bottom: 10px;
}

.offer-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* ── FAQ ── */
#faq .section-intro {
  margin-inline: auto;
  text-align: center;
}

#faq .section-intro h2 {
  margin-inline: auto;
}

.faq-list {
  max-width: 760px;
  margin: 32px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  list-style: none;
  text-align: left;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--accent);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
  background: var(--accent);
  color: var(--white);
}

.faq-item p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 620px;
  text-align: left;
  transform-origin: top;
  transition: opacity 0.24s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:not([open]) p {
  opacity: 0;
  transform: translateY(-6px);
}

.faq-item[open] p {
  opacity: 1;
  transform: translateY(0);
}

/* ── Quote section ── */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.quote-intro h2 { color: var(--white); max-width: 14ch; }
.quote-intro p   { color: rgba(255,255,255,0.6); margin-top: 14px; line-height: 1.8; }

.quote-contact {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  font-size: 0.9rem;
}

.quote-contact a { color: var(--accent-light); font-weight: 600; }
.quote-contact span { color: rgba(255,255,255,0.45); }

.quote-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: var(--dark-soft);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-dark);
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.quote-form textarea { resize: vertical; }

.checkbox-label {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.checkbox-label input {
  width: auto;
  margin-top: 0.25em;
  accent-color: var(--accent);
}

.ghl-embed-shell {
  padding: 28px;
  border: 1px dashed rgba(196, 162, 101, 0.5);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}

.ghl-embed-shell iframe {
  width: 100%;
  min-height: 680px;
  border: 0;
  border-radius: 4px;
  background: var(--white);
}

.ghl-embed-shell code {
  color: var(--accent-light);
}

.quote-form input:invalid:not(:placeholder-shown),
.quote-form select:invalid:not([value=""]),
.quote-form textarea:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239a948d' stroke-width='1' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.quote-form select option {
  background: var(--dark-soft);
  color: var(--white);
}

.form-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  text-align: center;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  width: clamp(140px, 16vw, 200px);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
}

.footer-col a {
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.brand-logo-footer {
  width: clamp(140px, 16vw, 200px);
  margin-bottom: 16px;
}

.footer-grid p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-light);
}

/* ── Mobile conversion CTA ── */
.sticky-mobile-cta {
  display: none;
}

@media (max-width: 720px) {
  body.has-sticky-cta {
    padding-bottom: 84px;
  }

  .sticky-mobile-cta {
    position: fixed;
    left: 0;
    right: auto;
    bottom: 0;
    width: 100vw !important;
    inline-size: 100vw !important;
    max-width: 100vw;
    z-index: 200;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,0.12);
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -18px 44px rgba(0,0,0,0.18);
  }

  @media (max-width: 560px) {
    .sticky-mobile-cta {
      width: min(100vw, 430px) !important;
      inline-size: min(100vw, 430px) !important;
      max-width: 430px;
    }
  }

  .sticky-cta-link {
    display: grid;
    gap: 2px;
    place-items: center;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    min-height: 72px;
    padding: 10px 6px;
    border-right: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.15;
    overflow: hidden;
    overflow-wrap: anywhere;
    text-align: center;
    text-transform: uppercase;
  }

  .sticky-cta-link:last-child {
    border-right: 0;
  }

  .sticky-cta-link span {
    color: rgba(255,255,255,0.6);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.12em;
  }

  .sticky-cta-link.is-primary {
    background: var(--accent);
    color: var(--white);
  }
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .diff-grid     { grid-template-columns: repeat(2, 1fr); }
  .conversion-strip-inner,
  .offer-grid    { grid-template-columns: 1fr; }
  .quote-layout  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .hero-grid     { grid-template-columns: 1fr; }
  .split-panel   { grid-template-columns: 1fr; }
  .grid-4        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3,
  .gallery-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visual-grid,
  .calendar-panel { grid-template-columns: 1fr; }
  .atelier-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }

  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-mini { justify-content: flex-start; }
  .nav-mini .nav-call { display: none; }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-bg {
    object-position: 60% center;
  }
  .hero-inner {
    min-height: 100vh;
    min-height: 100svh;
    padding: 120px 0 60px;
  }
  .hero-badge {
    max-width: 100%;
    white-space: normal;
  }
  .hero-proof-list {
    display: grid;
    gap: 7px;
    max-width: 320px;
    font-size: 0.68rem;
    line-height: 1.35;
  }
  .hero-proof-list li + li::before {
    display: none;
  }
  .hero-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .services-grid,
  .process-steps,
  .diff-grid,
  .testimonials-grid,
  .projects-grid,
  .before-after-grid,
  .offer-grid,
  .grid-4,
  .atelier-grid,
  .grid-3,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 120px 0 64px;
  }

  .media-card img { height: 210px; }
  .atelier-card img { height: 220px; }
  .visual-card img,
  .calendar-visual img { min-height: 260px; }
  .calendar-panel { padding: 22px; border-radius: 14px; }
  .area-list { grid-template-columns: 1fr; }

  .service-card img { height: 180px; }

  .nav-mini .btn,
  .nav-mini .button {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
}
