/* ============================================================
   Riverside Decorators — style.css
   Plain CSS, single file. Mobile-first.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --navy:        #17273f;
  --navy-800:    #1e3350;
  --navy-700:    #294665;
  --cream:       #f7f2e9;
  --cream-soft:  #fbf8f2;
  --paper:       #ffffff;
  --ink:         #1b2536;
  --muted:       #56606f;
  --terracotta:  #c76a3d;
  --terracotta-600: #b1572c;
  --terracotta-100: #f4e4d8;
  --line:        rgba(23, 39, 63, 0.12);
  --line-soft:   rgba(23, 39, 63, 0.07);

  /* Type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --max-w: 1180px;
  --max-w-narrow: 760px;
  --section-pad: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(23, 39, 63, 0.06);
  --shadow-md: 0 14px 40px -18px rgba(23, 39, 63, 0.35);
  --shadow-lg: 0 30px 70px -30px rgba(23, 39, 63, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.35rem, 6vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

p { color: var(--ink); }

.lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  color: var(--muted);
}

strong { font-weight: 600; }

/* ---------- Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.25rem);
}

.section { padding-block: var(--section-pad); }

.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section--cream  { background: var(--cream); }
.section--soft   { background: var(--cream-soft); }
.section--paper  { background: var(--paper); }
.section--navy   { background: var(--navy); color: var(--cream); }
.section--navy h2, .section--navy h3 { color: #fff; }

.narrow { max-width: var(--max-w-narrow); margin-inline: auto; }

.center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.section--navy .eyebrow { color: #e6a983; }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 0.85rem; color: var(--muted); }
.section--navy .section-head p { color: #c6d0dd; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }

.btn--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(199, 106, 61, 0.9);
}
.btn--primary:hover {
  background: var(--terracotta-600);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(199, 106, 61, 0.95);
}

.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { background: var(--navy-800); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }

.btn--light {
  background: var(--cream);
  color: var(--navy);
}
.btn--light:hover { background: #fff; transform: translateY(-2px); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row--center { justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 233, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 242, 233, 0.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
}
.nav-logo .logo-mark {
  width: 40px; height: 40px;
  flex: none;
}
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav-logo .logo-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
}
.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-menu a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--navy-800);
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover { color: var(--terracotta-600); background: rgba(199,106,61,0.08); }
.nav-menu a.is-active { color: var(--terracotta-600); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-phone svg { width: 1.05em; height: 1.05em; color: var(--terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.75rem, 6vw, 5rem);
}
.hero-copy h1 { margin-bottom: 1.15rem; }
.hero-copy h1 .accent { color: var(--terracotta); }
.hero-copy .lead { margin-bottom: 1.75rem; max-width: 34ch; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero-trust .trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 500; color: var(--navy-800); }
.hero-trust .trust-item svg { width: 1.25rem; height: 1.25rem; color: var(--terracotta); flex: none; }

.hero-media {
  position: relative;
}
.hero-media .hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.hero-media img { width: 100%; height: auto; }

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -18px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 250px;
}
.hero-badge .badge-num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 600; color: #fff; line-height: 1; }
.hero-badge .badge-txt { font-size: 0.82rem; line-height: 1.35; color: #cdd6e2; }

/* ---------- Logo ticker / trust bar ---------- */
.trustbar {
  background: var(--navy);
  color: var(--cream);
  padding-block: 1.5rem;
}
.trustbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  text-align: center;
}
.trustbar .tb-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #cdd6e2;
}
.trustbar .tb-item svg { width: 1.2rem; height: 1.2rem; color: #e6a983; }
.trustbar .tb-item strong { color: #fff; font-weight: 600; }

/* ---------- Stat row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}
.stat .stat-label { margin-top: 0.5rem; font-size: 0.92rem; color: var(--muted); }
.section--navy .stat .stat-num { color: #e6a983; }
.section--navy .stat .stat-label { color: #c6d0dd; }

/* ---------- Cards / features ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card h3 { margin-bottom: 0.65rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--terracotta-100);
  color: var(--terracotta-600);
  margin-bottom: 1.15rem;
}
.card-icon svg { width: 26px; height: 26px; }

/* Feature card with checklist */
.feature-list { margin-top: 1rem; display: grid; gap: 0.6rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.97rem; color: var(--ink);
}
.feature-list li svg { width: 1.15rem; height: 1.15rem; color: var(--terracotta); flex: none; margin-top: 0.2rem; }
.section--navy .feature-list li { color: #dbe3ec; }
.section--navy .feature-list li svg { color: #e6a983; }

/* Split / alternating feature blocks */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split-media { position: relative; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-media { order: 1; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step { position: relative; }
.step .step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testi {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi .stars { display: flex; gap: 2px; color: var(--terracotta); margin-bottom: 1rem; }
.testi .stars svg { width: 1.15rem; height: 1.15rem; }
.testi blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.4rem;
  flex: 1;
}
.testi .testi-by { display: flex; align-items: center; gap: 0.8rem; }
.testi .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  flex: none;
}
.testi .testi-name { font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.testi .testi-meta { font-size: 0.85rem; color: var(--muted); }

/* ---------- Before / after slider ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.project { }
.project-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.9rem; }
.project-head h3 { font-size: 1.3rem; }
.project-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--terracotta-600); background: var(--terracotta-100);
  padding: 0.3rem 0.65rem; border-radius: 999px; white-space: nowrap;
}
.project p.project-note { margin-top: 0.9rem; color: var(--muted); font-size: 0.95rem; }

.ba {
  position: relative;
  --pos: 50%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  user-select: none;
  touch-action: pan-y;
  aspect-ratio: 4 / 3;
  background: var(--navy-800);
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba .ba-after  { z-index: 1; }
.ba .ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-label {
  position: absolute;
  top: 0.8rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(23, 39, 63, 0.78);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-label.before { left: 0.8rem; }
.ba-label.after  { right: 0.8rem; }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(23,39,63,0.15);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--terracotta);
  color: var(--terracotta-600);
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}
.ba-handle svg { width: 22px; height: 22px; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}

/* Simple finished-work tiles */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.work-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.work-tile:hover img { transform: scale(1.06); }
.work-tile .work-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(23,39,63,0.85));
  color: #fff; font-size: 0.9rem; font-weight: 600;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(199,106,61,0.35), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 0.6rem; }
.cta-band p { color: #cdd6e2; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 0.8rem; justify-self: end; width: 100%; max-width: 320px; }
.cta-band .cta-phone { text-align: center; font-size: 0.9rem; color: #aab6c6; }
.cta-band .cta-phone a { color: #fff; font-weight: 600; }

/* ---------- Contact / forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-info .info-list { display: grid; gap: 1.4rem; margin-top: 1.75rem; }
.contact-info .info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info .info-icon {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--terracotta-100);
  color: var(--terracotta-600);
  display: flex; align-items: center; justify-content: center;
}
.contact-info .info-icon svg { width: 22px; height: 22px; }
.contact-info .info-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.contact-info .info-value { font-size: 1.08rem; font-weight: 600; color: var(--navy); }
.contact-info .info-value a:hover { color: var(--terracotta-600); }
.contact-info .info-sub { font-size: 0.9rem; color: var(--muted); }

.hours-card {
  margin-top: 2rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hours-card h3 { font-size: 1.1rem; margin-bottom: 0.85rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.35rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--line-soft); }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { color: var(--muted); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.field label .req { color: var(--terracotta); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199,106,61,0.12);
}
.field .hint { font-size: 0.82rem; color: var(--muted); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.form-consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; accent-color: var(--terracotta); flex: none; }
.form-foot { margin-top: 1.4rem; display: grid; gap: 1rem; }
.form-note { font-size: 0.85rem; color: var(--muted); text-align: center; }
.hp { position: absolute; left: -9999px; opacity: 0; }

.form-success { padding: 1rem 0.5rem 0.5rem; }
.form-success .success-mark {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--terracotta-100);
  color: var(--terracotta-600);
  display: flex; align-items: center; justify-content: center;
}
.form-success .success-mark svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 0.6rem; }
.form-success p { color: var(--muted); margin-bottom: 0.6rem; }

/* ---------- Map ---------- */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 340px; border: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(199,106,61,0.28), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(41,70,101,0.6), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 0.85rem; }
.page-hero p { color: #cdd6e2; max-width: 56ch; font-size: 1.1rem; }
.page-hero .eyebrow { color: #e6a983; }
.breadcrumbs { font-size: 0.85rem; color: #9fb0c2; margin-bottom: 1.1rem; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: #e6a983; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  background: none;
  border: 0;
}
.faq-q .faq-icon { flex: none; width: 26px; height: 26px; color: var(--terracotta); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--muted); }

/* ---------- About extras ---------- */
.values-list { display: grid; gap: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-item .value-ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--terracotta-100); color: var(--terracotta-600);
  display: flex; align-items: center; justify-content: center;
}
.value-item .value-ic svg { width: 22px; height: 22px; }
.value-item h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.value-item p { color: var(--muted); font-size: 0.96rem; }

.about-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.about-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
}
.about-badge svg { width: 1.1rem; height: 1.1rem; color: var(--terracotta); }

/* ---------- Pricing / services list ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.svc-detail:not(:last-child) { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.svc-detail .svc-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.svc-detail.reverse .svc-copy { order: 2; }
.svc-detail.reverse .svc-media { order: 1; }
.svc-detail h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.8rem; }
.svc-detail .svc-copy > p { color: var(--muted); margin-bottom: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #c6d0dd;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { color: #a8b4c4; font-size: 0.95rem; max-width: 34ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #cdd6e2; transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--terracotta); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 1.15rem; height: 1.15rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: #b7c2d1; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; margin-bottom: 0.6rem; }
.footer-contact svg { width: 1.15rem; height: 1.15rem; color: #e6a983; flex: none; margin-top: 0.15rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.6rem;
  font-size: 0.85rem; color: #93a1b3;
}
.footer-bottom .demo-note {
  background: rgba(199,106,61,0.16);
  color: #eab690;
  border: 1px solid rgba(199,106,61,0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-inline: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-menu, .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.75rem clamp(1.15rem, 4vw, 2.25rem) 1.25rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .nav-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-menu a { padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav-menu .btn { margin-top: 0.9rem; }
}

@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-copy { order: 1; }
  .split.reverse .split-media { order: 2; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail.reverse .svc-copy { order: 1; }
  .svc-detail.reverse .svc-media { order: 2; }
  .gallery-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .cta-actions { justify-self: stretch; max-width: none; }
  .form-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-badge { position: static; margin-top: 1.5rem; max-width: none; }
  .hero-media .hero-frame { border-width: 6px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .nav-logo .logo-sub { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
