/* =========================================================
   Tiled Roof — tiledroof.co.uk
   Design tokens: Slate & Terracotta
   Type: Fraunces (display) + Inter (body)
   ========================================================= */

:root {
  /* Colour */
  --ink:           #1F2421;
  --ink-soft:      #2B312D;
  --bone:          #F5F1EA;
  --stone:         #E5DED2;
  --stone-warm:    #EFE9DD;
  --line:          #D7CFC0;
  --muted:         #6B6862;
  --muted-soft:    #9A968F;
  --terracotta:    #B95C3F;
  --terracotta-dk: #9D4A30;
  --terracotta-lt: #E8D2C8;
  --white:         #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Layout */
  --container:        1180px;
  --container-narrow: 880px;
  --container-wide:   1320px;
  --radius:    4px;
  --radius-lg: 10px;

  /* Shadows (subtle only) */
  --shadow-sm: 0 1px 2px rgba(31,36,33,.06);
  --shadow-md: 0 6px 24px rgba(31,36,33,.08);
  --shadow-lg: 0 24px 60px rgba(31,36,33,.12);

  /* Header height — referenced by sticky offsets */
  --header-h: 78px;
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
}

/* =========================================================
   Reset & base
   ========================================================= */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

a {
  color: var(--terracotta-dk);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
a:hover { color: var(--terracotta); }

button { font-family: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bone);
  padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Selection */
::selection { background: var(--terracotta-lt); color: var(--ink); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 36, "SOFT" 50;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.85rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h3 { font-size: clamp(1.4rem, 1vw + 1rem, 1.75rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem;   font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

p { margin: 0 0 1em; }
p.lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* =========================================================
   Containers & layout primitives
   ========================================================= */

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: var(--container-wide); }

.section { padding-block: clamp(3.5rem, 6vw, 6rem); }
.section--stone { background: var(--stone-warm); }
.section--ink   { background: var(--ink); color: var(--bone); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--bone); }
.section--ink .eyebrow { color: var(--terracotta-lt); }

.section-header { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 3vw, 3.5rem); }
.section-header.left { text-align: left; margin-inline: 0; }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }

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

.btn-dark { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-soft); color: var(--bone); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }

.btn-outline-light { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-outline-light:hover { background: var(--bone); color: var(--ink); }

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

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand__sub {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: .25rem;
  white-space: nowrap;
}
.brand__sub strong { color: var(--ink-soft); font-weight: 600; }

.nav-primary {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav-primary > li { flex-shrink: 0; }
.nav-primary a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .25rem;
  position: relative;
  white-space: nowrap;
}
.nav-primary a:hover { color: var(--terracotta); }
.nav-primary a.active::after,
.nav-primary a:hover::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--terracotta);
}

/* Areas dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  background: none; border: 0; padding: .5rem .25rem;
  font: inherit; color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
  white-space: nowrap;
}
.nav-dropdown__toggle:hover { color: var(--terracotta); }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--bone);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  list-style: none; margin: 0; padding: .5rem 0;
  min-width: 220px;
  border-radius: var(--radius);
  opacity: 0; visibility: hidden;
  transform: translateY(4px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block; padding: .55rem 1rem; font-size: .92rem;
  text-decoration: none; color: var(--ink);
}
.nav-dropdown__menu a:hover { background: var(--stone-warm); color: var(--terracotta); }

.header-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--ink); text-decoration: none; font-size: .95rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--terracotta); }
.header-phone svg { width: 17px; height: 17px; color: var(--terracotta); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center; justify-content: center;
  color: var(--ink);
}
.hamburger svg { width: 22px; height: 22px; }

/* =========================================================
   Mobile menu
   ========================================================= */

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bone);
  z-index: 100;
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.mobile-menu a, .mobile-menu .mm-section {
  display: block; padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink); font-size: 1.05rem; font-weight: 500;
}
.mobile-menu .mm-section { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; padding-top: 1.5rem; border: 0; font-weight: 600; }
.mobile-menu .mm-cta { margin-top: 1.5rem; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(31,36,33,.78) 0%, rgba(31,36,33,.55) 55%, rgba(31,36,33,.78) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
  width: 100%;
}
.hero__copy {
  max-width: 580px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,241,234,.1);
  border: 1px solid rgba(245,241,234,.25);
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__eyebrow svg { width: 14px; height: 14px; color: var(--terracotta-lt); }

.hero h1 {
  color: var(--bone);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw + .5rem, 4rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  color: var(--terracotta-lt);
  font-style: italic;
}
.hero__lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(245,241,234,.85);
  margin-bottom: 2rem;
  max-width: 50ch;
}
.hero__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--bone); text-decoration: none; font-weight: 500;
  margin-top: 1.4rem;
}
.hero__phone:hover { color: var(--terracotta-lt); }
.hero__phone svg { width: 18px; height: 18px; color: var(--terracotta-lt); }
.hero__phone strong { font-size: 1.05rem; font-weight: 600; }

/* Hero quote form */
.quote-form {
  background: var(--bone);
  color: var(--ink);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.quote-form__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: .35rem;
}
.quote-form__sub {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: .35rem;
  color: var(--ink-soft);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
  width: 100%;
  padding: .75rem .85rem;
  font: inherit;
  font-size: .98rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(185,92,63,.18);
}
.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid {
  border-color: #B43A2A;
  background: #FBEEEA;
}
.field textarea { min-height: 120px; resize: vertical; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }

.consent {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .82rem; color: var(--muted);
  margin: 1.1rem 0 1.3rem;
}
.consent input { margin-top: .2rem; }

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Radio groups */
.radio-group {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.radio-group label {
  margin: 0;
  cursor: pointer;
}
.radio-group input { position: absolute; opacity: 0; pointer-events: none; }
.radio-group label span {
  display: inline-block;
  padding: .55rem .85rem;
  font-size: .88rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .15s;
  background: var(--white);
}
.radio-group input:checked + span {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.radio-group label:hover span { border-color: var(--ink); }

/* =========================================================
   Trust strip
   ========================================================= */

.trust-strip {
  background: var(--ink);
  color: var(--bone);
  padding-block: 1.5rem;
  border-bottom: 1px solid #2B312D;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(245,241,234,.92);
}
.trust-pill svg { width: 16px; height: 16px; color: var(--terracotta-lt); flex-shrink: 0; }

/* =========================================================
   Editorial 2-column (problem / promise)
   ========================================================= */

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.editorial-split__text {
  max-width: 50ch;
}
.editorial-split__image {
  aspect-ratio: 4 / 5;
  background: var(--stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.editorial-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.editorial-split--reverse .editorial-split__image { order: 2; }
@media (max-width: 860px) {
  .editorial-split--reverse .editorial-split__image { order: 0; }
}

.lift-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.5vw + .9rem, 1.7rem);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-left: 3px solid var(--terracotta);
  padding-left: 1.4rem;
  margin: 1.5rem 0;
}
.lift-quote em { font-style: italic; }

/* =========================================================
   Feature grid (4-card)
   ========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.feature-card:hover {
  border-color: var(--terracotta-lt);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--stone-warm);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--terracotta);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -0.005em;
  margin-bottom: .55rem;
}
.feature-card p {
  font-size: .94rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   Case study (before / after)
   ========================================================= */

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.case-photo {
  aspect-ratio: 4 / 3;
  background: var(--stone);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-photo__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--ink);
  color: var(--bone);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: var(--radius);
  z-index: 2;
}

/* Generic image placeholder label — replace with real <img> later */
.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, var(--stone) 0, var(--stone) 12px, var(--stone-warm) 12px, var(--stone-warm) 24px);
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
  line-height: 1.5;
}
.case-quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.case-quote blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.2vw + .9rem, 1.55rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.case-quote__meta {
  display: flex; gap: .9rem; align-items: center;
}
.case-quote__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--stone);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--terracotta-dk);
  font-size: .9rem;
}
.case-quote__name { font-weight: 600; font-size: .95rem; }
.case-quote__loc  { color: var(--muted); font-size: .85rem; }

/* =========================================================
   Process (4-step)
   ========================================================= */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: .8rem;
  display: block;
}
.process-step h4 { margin-bottom: .35rem; }
.process-step p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   Areas grid
   ========================================================= */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto 2rem;
}
.area-tile {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: .98rem;
  transition: all .15s;
}
.area-tile:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone);
}
.area-tile svg { width: 16px; height: 16px; color: var(--terracotta); flex-shrink: 0; }
.area-tile:hover svg { color: var(--terracotta-lt); }
.areas-foot { text-align: center; color: var(--muted); font-size: .95rem; }

/* =========================================================
   Why us (editorial split)
   ========================================================= */

.why-us .check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.why-us .check-list li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .55rem 0;
  font-size: 1rem;
}
.why-us .check-list svg {
  width: 20px; height: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: .15rem;
}

/* =========================================================
   Testimonials
   ========================================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column;
}
.testimonial-card__stars {
  display: inline-flex; gap: .15rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.testimonial-card__stars svg { width: 16px; height: 16px; }
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  flex: 1;
}
.testimonial-card__meta { display: flex; gap: .8rem; align-items: center; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--stone-warm);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  color: var(--terracotta-dk);
  font-size: .85rem;
}
.testimonial-card__name { font-weight: 600; font-size: .95rem; }
.testimonial-card__loc  { color: var(--muted); font-size: .85rem; }

/* =========================================================
   FAQ teaser (accordion)
   ========================================================= */

.faq-list {
  max-width: 780px;
  margin: 0 auto 2rem;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 2.5rem 1.3rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: .4rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 12px; height: 12px;
  border-right: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform-origin: center;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item__body {
  padding: 0 0 1.4rem;
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 65ch;
}

/* =========================================================
   Final CTA
   ========================================================= */

.final-cta {
  background: var(--ink);
  color: var(--bone);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
}
.final-cta h2 {
  color: var(--bone);
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.final-cta p { color: rgba(245,241,234,.8); max-width: 50ch; margin: 0 auto 2rem; }
.final-cta__actions {
  display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: #16191A;
  color: rgba(245,241,234,.78);
  padding-block: 4rem 1.5rem;
  font-size: .92rem;
}
.site-footer h5 {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand__name { color: var(--bone); font-size: 1.7rem; }
.footer-brand .brand__sub  { color: var(--muted-soft); }
.footer-brand .brand__sub strong { color: rgba(245,241,234,.92); }
.footer-brand p { margin-top: 1.2rem; line-height: 1.6; max-width: 36ch; color: rgba(245,241,234,.7); }
.footer-brand .awc-link { color: var(--terracotta-lt); text-decoration: underline; text-decoration-thickness: 1px; }

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a { color: rgba(245,241,234,.78); text-decoration: none; }
.footer-grid a:hover { color: var(--terracotta-lt); }

.footer-contact-item { display: flex; gap: .65rem; margin-bottom: .85rem; line-height: 1.5; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--terracotta-lt); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-item a { color: inherit; }

.accreditations {
  border-top: 1px solid #2A2D2F;
  padding-top: 2rem;
  margin-bottom: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: center;
}
.accred-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .85rem;
  color: rgba(245,241,234,.85);
}
.accred-badge svg { width: 18px; height: 18px; color: var(--terracotta-lt); }
.accred-badge strong { color: var(--bone); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid #2A2D2F;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: var(--muted-soft);
}
.footer-bottom a { color: var(--muted-soft); text-decoration: none; }
.footer-bottom a:hover { color: var(--bone); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* =========================================================
   Mobile sticky CTA bar
   ========================================================= */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bone);
  border-top: 1px solid var(--line);
  padding: .65rem;
  z-index: 40;
  gap: .5rem;
  box-shadow: 0 -4px 16px rgba(31,36,33,.08);
}
.mobile-cta-bar .btn { flex: 1; padding: .85rem .9rem; font-size: .92rem; }

/* =========================================================
   Responsive
   ========================================================= */

/* Tighten nav at intermediate widths before it collapses to hamburger */
@media (max-width: 1199px) {
  .nav-primary { gap: 1rem; }
  .nav-primary a,
  .nav-dropdown__toggle { font-size: .9rem; padding-inline: .15rem; }
  .header-cta { gap: .75rem; }
  .header-phone { font-size: .9rem; }
}

/* Switch to hamburger nav early — keeps phone + Get a Quote visible on the right */
@media (max-width: 1080px) {
  .nav-primary { display: none; }
  .hamburger { display: inline-flex; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid   { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .swatch-grid  { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header-cta .btn-primary { display: none; }
  .header-cta { gap: .65rem; }
  .brand__sub { display: none; }

  .hero { min-height: auto; padding-block: 3rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 2rem 1rem; }
  .hero__copy { max-width: none; }

  .editorial-split { grid-template-columns: 1fr; }
  .case-study { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }

  .trust-strip__inner { gap: .75rem 1.5rem; }
  .trust-pill { font-size: .8rem; }
}

/* Phone — text hidden on narrow phones, icon-only stays */
@media (max-width: 480px) {
  .header-phone { font-size: 0; gap: 0; }
  .header-phone svg { width: 22px; height: 22px; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .areas-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .quote-form { padding: 1.5rem; }
  .swatch-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .layer-row { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1.1rem 1.2rem; }
  .layer-row__num { font-size: 1.6rem; }
  body { font-size: 16px; }
}

/* =========================================================
   Inner-page hero + breadcrumbs
   ========================================================= */

.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(185,92,63,.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(31,36,33,0) 0%, rgba(31,36,33,.4) 100%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 800px; }
.page-hero h1 {
  color: var(--bone);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw + 1rem, 3.4rem);
  margin: 0 0 1rem;
}
.page-hero h1 em { color: var(--terracotta-lt); font-style: italic; }
.page-hero p.lede {
  color: rgba(245,241,234,.85);
  font-size: 1.15rem;
  max-width: 60ch;
  margin: 0;
}
.page-hero .eyebrow { color: var(--terracotta-lt); margin-bottom: 1rem; }

.breadcrumbs {
  font-size: .85rem;
  color: rgba(245,241,234,.7);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.breadcrumbs a { color: rgba(245,241,234,.85); text-decoration: none; }
.breadcrumbs a:hover { color: var(--terracotta-lt); }
.breadcrumbs span[aria-current] { color: var(--bone); }
.breadcrumbs .sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: rgba(245,241,234,.4);
  border-radius: 50%;
}

/* =========================================================
   Layer stack (Supalite construction)
   ========================================================= */

.layer-stack {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.layer-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.layer-row:last-child { border-bottom: 0; }
.layer-row__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}
.layer-row h4 { margin: 0 0 .25rem; font-size: 1.1rem; }
.layer-row p  { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.55; }

/* =========================================================
   Spec list (technical specs)
   ========================================================= */

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.spec-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
}
.spec-list dt {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.spec-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.spec-list dd small {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: .25rem;
  letter-spacing: 0;
  text-transform: none;
}

/* =========================================================
   Tile swatch grid
   ========================================================= */

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.swatch {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.swatch__color {
  aspect-ratio: 4 / 3;
  background: var(--stone);
}
.swatch__color--slate-grey   { background: linear-gradient(135deg, #4a4f54, #2e3236); }
.swatch__color--slate-anth   { background: linear-gradient(135deg, #2a2c30, #16181b); }
.swatch__color--terracotta   { background: linear-gradient(135deg, #b56b48, #8a4a2d); }
.swatch__color--charcoal     { background: linear-gradient(135deg, #3a3a3a, #1f1f1f); }
.swatch__color--brick-red    { background: linear-gradient(135deg, #8a3a30, #5e2521); }
.swatch__color--moss         { background: linear-gradient(135deg, #4a5240, #2f352a); }
.swatch__color--sand         { background: linear-gradient(135deg, #b69b76, #8a7556); }
.swatch__color--smoke        { background: linear-gradient(135deg, #6a6e72, #4a4d51); }
.swatch__label {
  padding: .85rem 1rem;
  font-size: .92rem;
  font-weight: 600;
  border-top: 1px solid var(--line);
}
.swatch__label small {
  display: block;
  font-weight: 400;
  font-size: .8rem;
  color: var(--muted);
  margin-top: .15rem;
}

/* =========================================================
   Comparison table
   ========================================================= */

.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: .95rem;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.compare-table .col-highlight {
  background: var(--stone-warm);
}
.compare-table thead .col-highlight {
  background: var(--terracotta);
  color: var(--white);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: #2c6a3f; font-weight: 600; }
.compare-table .no  { color: #b03a2c; }
.compare-table .row-label {
  font-weight: 600;
  background: var(--stone-warm);
  width: 25%;
}

/* =========================================================
   Process timeline (vertical)
   ========================================================= */

.timeline {
  position: relative;
  padding-left: 2.6rem;
  list-style: none;
  margin: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line);
}
.timeline li {
  position: relative;
  padding-bottom: 2rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  left: -2.6rem; top: 4px;
  width: 30px; height: 30px;
  background: var(--terracotta);
  border: 4px solid var(--bone);
  border-radius: 50%;
  z-index: 1;
}
.section--stone .timeline li::before { border-color: var(--stone-warm); }
.timeline__day {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .35rem;
}
.timeline h4 { margin-bottom: .35rem; }
.timeline p {
  color: var(--muted);
  margin: 0;
  font-size: .96rem;
  line-height: 1.6;
}

/* =========================================================
   Gallery grid
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-card__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gallery-card__photo {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--stone);
}
.gallery-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-card__photo--single {
  aspect-ratio: 3 / 2;
}
.gallery-card__tag {
  position: absolute;
  top: .5rem; left: .5rem;
  background: var(--ink);
  color: var(--bone);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: var(--radius);
  z-index: 2;
}
.gallery-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.gallery-card__body h4 { margin: 0 0 .25rem; font-size: 1.05rem; }
.gallery-card__loc {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: .5rem;
  display: flex; align-items: center; gap: .35rem;
}
.gallery-card__loc svg { width: 14px; height: 14px; color: var(--terracotta); }
.gallery-card__body p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   Product cards (tile / glazing options)
   ========================================================= */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-card__image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--stone);
}
.product-card__image > img:not(.product-card__logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card__logo {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: 140px;
  max-height: 56px;
  background: rgba(255,255,255,.94);
  padding: .4rem .65rem;
  border-radius: var(--radius);
  z-index: 2;
  width: auto;
  height: auto;
}
.product-card__body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__tag {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .65rem;
}
.product-card h3 {
  font-size: 1.45rem;
  margin-bottom: .5rem;
  letter-spacing: -0.015em;
}
.product-card p {
  color: var(--ink-soft);
  margin-bottom: .9rem;
  font-size: .96rem;
  line-height: 1.6;
}
.product-card .check-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}
.product-card .check-list li {
  display: flex;
  gap: .55rem;
  padding: .3rem 0;
  font-size: .92rem;
  line-height: 1.45;
}
.product-card .check-list svg {
  width: 16px; height: 16px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: .2rem;
}

/* =========================================================
   Badge wall (replaces approvals image)
   ========================================================= */

.badge-wall {
  aspect-ratio: 4 / 5;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.badge-wall__item {
  background: var(--stone-warm);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  min-height: 0;
}
.badge-wall__item img {
  max-width: 92%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.badge-wall__item small {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .35rem;
}

@media (max-width: 760px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card__body { padding: 1.5rem 1.5rem 1.75rem; }
}

/* =========================================================
   Form layout (split form + side info)
   ========================================================= */

.form-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form-layout .quote-form {
  box-shadow: var(--shadow-md);
}
.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.info-panel h3 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.info-panel ul li {
  display: flex;
  gap: .65rem;
  padding: .5rem 0;
  font-size: .94rem;
  line-height: 1.5;
}
.info-panel ul svg {
  width: 18px; height: 18px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: .15rem;
}
.info-panel__phone {
  display: flex;
  gap: .65rem;
  align-items: center;
  padding: 1rem;
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}
.info-panel__phone:hover { background: var(--ink-soft); color: var(--bone); }
.info-panel__phone svg { width: 20px; height: 20px; color: var(--terracotta-lt); flex-shrink: 0; }
.info-panel__phone strong { font-size: 1.1rem; display: block; }
.info-panel__phone small { font-size: .82rem; font-weight: 400; opacity: .8; }

/* =========================================================
   Map embed
   ========================================================= */

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--stone);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact two-column */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-block {
  margin-bottom: 1.5rem;
}
.contact-block h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.contact-block a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}
.contact-block a:hover { color: var(--terracotta); }
.contact-block p { margin: 0; color: var(--ink-soft); }

/* =========================================================
   FAQ page (categorised)
   ========================================================= */

.faq-cat-head {
  margin: 2.5rem 0 .25rem;
}
.faq-cat-head:first-child { margin-top: 0; }
.faq-cat-head .eyebrow { color: var(--terracotta); }
.faq-cat-head h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.015em;
}

/* =========================================================
   Status / thank-you / 404
   ========================================================= */

.status-panel {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 4vw, 4rem);
}
.status-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--stone-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
}
.status-icon svg { width: 32px; height: 32px; }
.status-panel h1 { margin-bottom: 1rem; }
.status-panel p.lede { margin-inline: auto; }
.status-panel .next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
  text-align: left;
}
.status-panel .next-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.status-panel .next-step__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
.status-panel .next-step h4 { margin-bottom: .35rem; font-size: 1.05rem; }
.status-panel .next-step p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }

@media (max-width: 760px) {
  .form-layout { grid-template-columns: 1fr; gap: 2rem; }
  .info-panel { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .status-panel .next-steps { grid-template-columns: 1fr; }
}

/* =========================================================
   Utilities
   ========================================================= */

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.cta-row {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

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