/*
Theme Name:  Web Design Pro
Theme URI:   https://webdesignpro.dev
Author:      Web Design Pro Ltd
Author URI:  https://webdesignpro.dev
Description: Custom theme for webdesignpro.dev
Version:     1.0.0
License:     Private
Text Domain: wdp
*/

/* ============================================================
   RESET & BOX MODEL
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:           #1f1f1d;/*1e1e21;;*/
  --bg-alt:       #1d1d21;/*111114;*/
  --bg-card:      #222224;
  --border:       rgba(255,255,255,0.08);
  --border-mid:   rgba(255,255,255,0.15);
  --gold:         #D4A44C;
  --gold-bright:  #E8BA68;
  --white:        #F0EDE8;
  --body-text:    #B8B3AC;  /* 7.2:1 on --bg — WCAG AA */
  --label-text:   #8A8580;  /* 4.6:1 on --bg-card — WCAG AA */
  --muted:        #8A8580;
  --muted-pill:   #9E9890;  /* 5.1:1 on --bg — WCAG AA */
  --focus:        #D4A44C;

  --radius:       4px;
  --radius-pill:  100px;

  --space-xs:     0.5rem;
  --space-sm:     1rem;
  --space-md:     1.75rem;
  --space-lg:     3.5rem;
  --space-xl:     5rem;
  --space-2xl:    7rem;

  --max-content:  1200px;
  --max-prose:    720px;
  --padding-page: 3.5rem;
}

/* ============================================================
   BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: inherit; }

/* Noise texture overlay — decorative */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 4vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem;    font-weight: 600; }

.accent { color: var(--gold); }

p { color: var(--body-text); line-height: 1.75; }

/* Kicker */
.kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: #0D0D0F;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  border-radius: var(--radius);
}
.skip-link:focus { top: 0.5rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--padding-page);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,15,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: fadeDown 0.6s ease both;
}

.site-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.site-logo em { font-style: normal; color: var(--gold); }
.site-logo:focus-visible { outline: 2px solid var(--focus); outline-offset: 4px; }

.site-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  list-style: none;
}
.site-nav a {
  color: var(--muted-pill);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--white); }
.site-nav a:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--padding-page);
  border-top: 1px solid var(--border);
  background: rgb(13,13,15);
  font-size: 0.7rem;
  color: var(--label-text);
  letter-spacing: 0.04em;
}
.site-footer a { color: var(--label-text); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--gold); }
.site-footer a:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.site-footer__links { display: flex; gap: 1.5rem; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--padding-page);
}

.section {
  padding: var(--space-xl) var(--padding-page);
  border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: none; }
.section--alt  { background: var(--bg-alt); }
.section--card { background: var(--bg-card); }

.section__kicker  { margin-bottom: 0.75rem; }
.section__heading { margin-bottom: 1.25rem; }
.section__lead    { font-size: 1rem; max-width: 600px; margin-bottom: 3rem; }

/* Glow orb */
.glow-orb {
  position: absolute;
  top: -30%;
  left: -5%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212,164,76,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr;        gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

.btn--primary { background: var(--gold); color: #0D0D0F; }
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--white); border: 1px solid var(--border-mid); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.card--gold-border {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p  { font-size: 0.9rem; line-height: 1.7; }

/* Tag pill inside card */
.card__tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,164,76,0.3);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.65rem;
  margin-bottom: 1rem;
}

/* Info box */
.info-box {
  background: var(--bg-alt);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  max-width: 760px;
}
.info-box p      { font-size: 0.95rem; line-height: 1.8; }
.info-box p + p  { margin-top: 1rem; }
.info-box strong { color: var(--white); font-weight: 500; }

/* ============================================================
   STATUS PILL
   ============================================================ */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-pill);
  width: fit-content;
  margin-bottom: var(--space-md);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse 2.5s ease infinite;
  flex-shrink: 0;
}

/* Town pills */
.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted-pill);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.step__num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212,164,76,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 { font-size: 1rem;    margin-bottom: 0.5rem; }
.step p  { font-size: 0.875rem; line-height: 1.7; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   WORDPRESS CORE OVERRIDES
   ============================================================ */
.wp-block-image { margin: 0; }
.alignwide { margin-inline: calc(-1 * var(--padding-page)); }
.alignfull { margin-inline: calc(-1 * var(--padding-page)); width: calc(100% + 2 * var(--padding-page)); }

/* ============================================================
   HAMBURGER TOGGLE
   ============================================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--white);
  z-index: 110;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle__bar + .nav-toggle__bar { margin-top: 5px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.site-nav--mobile {
  display: none;
  position: fixed;
  top: 69px; /* matches site-header height */
  left: 0; right: 0;
  z-index: 99;
  background: rgba(13,13,15,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 1.5rem var(--padding-page);
  gap: 0;
  list-style: none;
}
.site-nav--mobile.is-open { display: flex; }
/* Hide drawer at desktop widths even if is-open class remains */
@media (min-width: 901px) {
  .site-nav--mobile { display: none !important; }
}
.site-nav--mobile li { border-bottom: 1px solid var(--border); }
.site-nav--mobile li:last-child { border-bottom: none; }
.site-nav--mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-pill);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav--mobile a:hover,
.site-nav--mobile a[aria-current="page"] { color: var(--white); }

/* ============================================================
   HOMEPAGE — HERO SPLIT
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 65px);
}

.hero-split__left {
  position: relative;
  padding: 5rem var(--padding-page);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
  overflow: hidden;
  animation: fadeUp 0.35s ease 0.05s both;
}
.hero-split__left-inner { position: relative; z-index: 1; }

.hero-split__right {
  padding: 4rem var(--padding-page) 4rem calc(var(--padding-page) + 0.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
  animation: fadeUp 0.35s ease 0.1s both;
}

.hero-subtext {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.75;
  max-width: 420px;
  margin-top:var(--space-sm);
}

/* ============================================================
   HOMEPAGE — HUMAN STRIP
   ============================================================ */
.human-strip {
  background: var(--bg-card);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 2rem var(--padding-page);
  text-align: center;
  margin-top:var(--space-md);
}
.human-strip p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.human-strip strong { color: var(--white); font-weight: 500; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.form-subheading {
  font-size: 0.875rem;
  color: var(--body-text);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Floating label fields */
.field {
  position: relative;
  margin-bottom: 1.5rem;
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 0.9rem 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; /* 16px min — prevents iOS Safari zoom */
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
  display: block;
}
.field input::placeholder,
.field textarea::placeholder { color: transparent; }

.field label {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  color: var(--label-text);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.field.is-area label {
  top: 1.1rem;
  transform: none;
}

/* Floated state */
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: 0.4rem;
  font-size: 0.65rem;
  transform: none;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(212,164,76,0.05);
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.field textarea {
  resize: none;
  height: 100px;
  padding-top: 1.6rem;
}

/* Validation errors */
.field--error input,
.field--error textarea { border-color: #e05c5c; background: rgba(224,92,92,0.05); }
.field--error label { color: #e05c5c; }
.field-error {
  display: block;
  font-size: 0.68rem;
  color: #e05c5c;
  margin-top: 0.35rem;
  letter-spacing: 0.03em;
}

/* Custom select dropdowns */
.custom-select-field { position: relative; }

.custom-select-btn {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 2.5rem 0.5rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  display: block;
  min-height: 3.5rem;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.custom-select-btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--gold);
}
.custom-select-field.is-open .custom-select-btn {
  border-color: var(--gold);
  background: rgba(212,164,76,0.05);
}

.custom-select-value {
  display: block;
  min-height: 1.2em;
  opacity: 0;
  transition: opacity 0.1s;
}
.custom-select-field.has-value .custom-select-value { opacity: 1; }

.select-chevron {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--label-text);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  pointer-events: none;
}
.custom-select-field.is-open .select-chevron {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-label {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  color: var(--label-text);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}
.custom-select-field.has-value .custom-select-label {
  top: 0.4rem;
  font-size: 0.65rem;
  transform: none;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.custom-select-field.is-open:not(.has-value) .custom-select-label { color: var(--gold); }

.custom-select-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #1e1e26;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  list-style: none;
  z-index: 200;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.custom-select-field.is-open .custom-select-list { display: block; }
.custom-select-list li {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--body-text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--border);
}
.custom-select-list li:last-child { border-bottom: none; }
.custom-select-list li:hover,
.custom-select-list li:focus,
.custom-select-list li[aria-selected="true"] {
  background: rgba(212,164,76,0.1);
  color: var(--white);
}
.custom-select-list li[aria-selected="true"]::after { content: ' ✓'; color: var(--gold); }

.custom-select-field.field--error .custom-select-btn {
  border-color: #e05c5c;
  background: rgba(224,92,92,0.05);
}
.custom-select-field.field--error .custom-select-label { color: #e05c5c; }

/* Submit button */
.btn-submit {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: var(--gold);
  color: #0D0D0F;
  border: none;
  border-radius: var(--radius);
  padding: 0.95rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, gap 0.2s, transform 0.15s;
}
.btn-submit:hover         { background: var(--gold-bright); gap: 1.1rem; }
.btn-submit:active        { transform: scale(0.99); }
.btn-submit svg           { flex-shrink: 0; transition: transform 0.2s; }
.btn-submit:hover svg     { transform: translateX(3px); }
.btn-submit:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.btn-submit:disabled      { opacity: 0.65; cursor: not-allowed; }

.privacy-note {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--label-text);
  text-align: center;
  letter-spacing: 0.02em;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.85rem 0;
  color: var(--label-text);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.or-divider::before,
.or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.95rem 2rem;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  color: var(--body-text);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-call:hover         { border-color: var(--gold); color: var(--gold); }
.btn-call:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

/* Success message */
.success-msg {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
}
.success-msg.show  { display: block; animation: fadeUp 0.35s ease both; }
.success-icon      { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.success-msg h3    { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.6rem; }
.success-msg p     { font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: var(--bg-alt);
  border-top: 2px solid var(--gold);
  padding: var(--space-xl) var(--padding-page);
}
.faq-inner  { max-width: 860px; margin: 0 auto; }
.faq-title  { margin-bottom: 3rem; }
.faq-list   { display: flex; flex-direction: column; }

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, border-color 0.2s;
  color: var(--gold);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner { padding: 0 0 1.5rem; font-size: 0.925rem; line-height: 1.75; }
.faq-answer-inner ul {
  margin: 0.75rem 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.faq-answer-inner strong { color: var(--white); font-weight: 500; }

/* ============================================================
   LANDING PAGE — HERO
   ============================================================ */
.hero-landing {
  position: relative;
  padding: 6rem var(--padding-page) 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.35s ease 0.05s both;
}
.hero-landing__inner { position: relative; z-index: 1; max-width: 780px; }
.hero-landing__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ============================================================
   LANDING PAGE — SECTIONS
   ============================================================ */
.lp-section {
  padding: var(--space-xl) var(--padding-page);
  border-bottom: 1px solid var(--border);
}
.lp-section--alt  { background: var(--bg-alt); }
.lp-section--dark { background: var(--bg); }
.lp-section:last-of-type { border-bottom: none; }

.lp-section__lead {
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* Local two-col layout */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.local-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.local-body p             { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.local-body p:last-child  { margin-bottom: 0; }

/* CTA centre block */
.cta-block {
  text-align: center;
  padding: 6rem var(--padding-page);
  background: var(--bg);
}
.cta-block h2 { margin-bottom: 1rem; }
.cta-block p  { font-size: 1rem; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-section {
  padding: var(--space-xl) var(--padding-page);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.portfolio-inner     { max-width: var(--max-content); margin: 0 auto; }
.portfolio-inner h2  { margin-bottom: 3rem; }
.portfolio-grid      { gap: 2rem; }

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.portfolio-card:hover { border-color: var(--border-mid); transform: translateY(-2px); }

.portfolio-card__img-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg);
}
.portfolio-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
  display: block;
}
.portfolio-card:hover .portfolio-card__img-wrap img { transform: scale(1.03); }

.portfolio-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.portfolio-card__body h3 { margin-bottom: 0.5rem; }
.portfolio-card__body p  { font-size: 0.875rem; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }

.portfolio-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}
.portfolio-card__link:hover { color: var(--gold-bright); gap: 0.65rem; }
.portfolio-card__link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-hero {
  padding: 3em var(--padding-page);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  bottom: -80px;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, rgba(212,164,76,0.08) 0%, rgba(212,164,76,0.03) 50%, transparent 75%);
  pointer-events: none;
}

.about-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 auto;
}

.about-content-wrap {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 5rem var(--padding-page);
}

.about-section {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}

.about-section:nth-child(1) { animation-delay: 0.1s; }
.about-section:nth-child(2) { animation-delay: 0.25s; }
.about-section:nth-child(3) { animation-delay: 0.4s; }

.about-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.about-section p {
  color: var(--body-text);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.85;
}

.about-section p:last-child { margin-bottom: 0; }

.about-gold-card {
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.about-gold-card p {
  margin-bottom: 0 !important;
  font-size: 1rem;
  color: rgba(240,237,232,0.9);
}

.about-closing {
  text-align: center;
  padding: 4rem var(--padding-page);
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.55s forwards;
}

.about-closing p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}

.about-closing p span { color: var(--gold); }

/* Inline content links — gold with underline */
.privacy-content a,
.about-content-wrap a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,164,76,0.3);
  transition: border-color 0.2s;
}
.privacy-content a:hover,
.about-content-wrap a:hover { border-bottom-color: var(--gold); }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-content {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.privacy-updated {
  font-size: 0.8rem;
  color: var(--label-text);
  margin-bottom: 3rem;
}

.privacy-content h2 {
  font-size: 1.1rem;
  margin: 2.5rem 0 0.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.privacy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.privacy-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.privacy-content li {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.7;
}

.privacy-content .card {
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .privacy-content { padding: 3rem 1.5rem 5rem; }
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-section  { position: relative; overflow: hidden; }
.sitemap-inner    { position: relative; z-index: 1; max-width: var(--max-content); margin: 0 auto; }
.sitemap-inner h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 3.5rem; margin-top: 0.5rem; }
.sitemap-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.sitemap-group__heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,164,76,0.18);
}
.sitemap-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.sitemap-list a {
  color: var(--body-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.sitemap-list a::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.sitemap-list a:hover           { color: var(--white); }
.sitemap-list a:hover::before   { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --padding-page: 1.75rem; }

  /* Header */
  .site-header  { padding: 1.25rem var(--padding-page); }
  .site-nav     { display: none !important; }
  .nav-toggle   { display: flex; flex-direction: column; }

  /* Footer */
  .site-footer  { padding: 1.25rem var(--padding-page); flex-direction: column; gap: 0.5rem; text-align: center; }
  .site-footer__links { justify-content: center; }

  /* Layout */
  .section { padding: 3.5rem var(--padding-page); }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }

  /* Hero split */
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split__left { padding: 3.5rem var(--padding-page) 3rem; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-split__right { padding: 3rem var(--padding-page) 4rem; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .field    { margin-bottom: 1.75rem; }
  .field input, .field textarea { font-size: 1rem; padding: 1.5rem 1rem 0.6rem; }
  .field textarea { height: 110px; padding-top: 1.75rem; }
  .field label, .custom-select-label { left: 1rem; }
  .btn-submit, .btn-call { padding: 1.1rem 2rem; }

  /* Human strip */
  .human-strip { padding: 1.75rem var(--padding-page); }

  /* Landing pages */
  .hero-landing { padding: 4rem var(--padding-page) 3.5rem; }
  .lp-section   { padding: 3.5rem var(--padding-page); }
  .local-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-block    { padding: 4rem var(--padding-page); }

  /* FAQ */
  .faq-section  { padding: 3.5rem var(--padding-page); }

  /* Portfolio */
  .portfolio-section { padding: 3.5rem var(--padding-page); }
  .portfolio-grid    { grid-template-columns: 1fr 1fr; }

  /* About */
  .about-content-wrap { padding-bottom: 4rem; }
  .about-page-hero    { padding: 3.5rem var(--padding-page) 2.5rem; }
  .about-closing      { padding: 3rem var(--padding-page); }
  .grid-3 { grid-template-columns: 1fr 1fr; }

  /* Sitemap */
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  h1                   { font-size: 2.2rem; }
  .hero-landing__sub   { font-size: 1rem; }
  .grid-3              { grid-template-columns: 1fr; }
  .portfolio-grid      { grid-template-columns: 1fr; }
  .sitemap-grid        { grid-template-columns: 1fr; }
}
