/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DE;
  --dark: #1A1208;
  --amber: #C8860A;
  --amber-light: #E8A020;
  --text-muted: #6B5E4A;
  --border: rgba(26,18,8,0.12);
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  background: var(--dark) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber) !important; color: var(--dark) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--amber);
}
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 4.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h1 em, h2 em { font-style: italic; color: var(--amber); }
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.section-intro {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
  margin-top: 0.75rem;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--amber);
  color: var(--dark);
  padding: 0.9rem 2.2rem;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }
.btn-lg { font-size: 15px; padding: 1rem 2.5rem; }
.btn-ghost {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { color: var(--amber); }
.btn-outline {
  border: 1px solid rgba(245,240,232,0.25);
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  font-weight: 400;
  font-size: 14px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(245,240,232,0.65); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--dark);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); margin-top: 0.5rem; }

/* ── HERO (homepage) ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.hero-left {
  padding: 5rem 4rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.btn-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.85) 35%, rgba(26,18,8,0.2) 100%);
}
.hero-badge {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(200,134,10,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  animation: spin-slow 20s linear infinite reverse;
}
.hero-badge-text {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-top: 3px;
  line-height: 1.3;
  animation: spin-slow 20s linear infinite reverse;
}
.hero-review-card {
  position: relative;
  z-index: 2;
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: 3px;
  padding: 1.75rem;
}
.stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.review-by {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.review-by strong { color: var(--amber); font-weight: 400; }

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--amber);
  overflow: hidden;
  padding: 0.75rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
  min-width: max-content;
}
.marquee-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
}
.marquee-sep { opacity: 0.35; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 5rem 3rem; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── WORK GRID (homepage) ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.work-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}
.work-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,18,8,0.1); }
.work-img-wrap { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.work-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.work-card:hover .work-img-wrap img { transform: scale(1.04); }
.work-card-body { padding: 1.5rem; }
.work-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.work-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.4rem; }
.work-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── SERVICES PREVIEW (homepage dark) ── */
.dark-section {
  background: var(--dark);
  padding: 5rem 3rem;
}
.services-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(245,240,232,0.07);
}
.svc-card {
  background: var(--dark);
  padding: 2rem;
  transition: background 0.2s;
}
.svc-card:hover { background: #241a0e; }
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 0.85rem;
}
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.svc-desc { font-size: 13px; color: rgba(245,240,232,0.45); line-height: 1.7; }
.svc-price {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,240,232,0.08);
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,240,232,0.7);
}
.svc-price em { font-style: normal; color: var(--amber); }

/* ── WHY SECTION ── */
.why-section { padding: 5rem 3rem; background: var(--cream-dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 0;
}
.why-images { position: relative; }
.why-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.why-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  border: 4px solid var(--cream-dark);
}
.why-content { padding-left: 1rem; }
.why-content h2 { margin: 0.5rem 0 0.75rem; }
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.pillar-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200,134,10,0.1);
  border: 1px solid rgba(200,134,10,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 15px; height: 15px; stroke: var(--amber); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pillar-title { font-weight: 500; font-size: 0.9rem; margin-bottom: 2px; }
.pillar-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-section { padding: 5rem 3rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
}
.review-card .review-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--dark);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.review-meta { display: flex; align-items: center; gap: 0.85rem; }
.review-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream-dark);
}
.review-by-col { display: flex; flex-direction: column; }
.review-by-col strong { font-size: 13px; font-weight: 500; }
.review-by-col span { font-size: 11px; color: var(--text-muted); }

/* ── PROCESS STRIP ── */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream-dark);
}
.process-step {
  padding: 2.75rem 2rem;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-title { font-weight: 500; margin-bottom: 0.4rem; }
.process-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── FULL SERVICES TABLE ── */
.services-full { padding: 5rem 3rem; }
.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
}
.services-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.services-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.services-table tbody tr:hover { background: var(--cream-dark); }
.services-table td {
  padding: 1.25rem 1rem;
  vertical-align: top;
}
.services-table .td-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  width: 26%;
}
.services-table .td-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  width: 54%;
}
.services-table .td-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--amber);
  white-space: nowrap;
  text-align: right;
  width: 20%;
}
.services-section-head {
  background: var(--dark) !important;
}
.services-section-head td {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.6rem 1rem !important;
}

/* ── GALLERY GRID ── */
.gallery-section { padding: 4rem 3rem 5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.gallery-item { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.gallery-item.full { grid-template-columns: 1fr; }
.gallery-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.gallery-img.tall { aspect-ratio: 4/5; }
.gallery-text h3 { margin-bottom: 0.5rem; }
.gallery-text p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.gallery-banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 3px;
  display: block;
  margin-bottom: 3rem;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 3rem;
}
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-images img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; }
.about-images img:first-child { grid-column: 1/-1; aspect-ratio: 16/9; }
.about-content h2 { margin: 0.5rem 0 1.25rem; }
.about-content p { color: var(--text-muted); font-weight: 300; line-height: 1.85; margin-bottom: 1.25rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 5rem 3rem;
  align-items: start;
}
.contact-info h2 { margin: 0.5rem 0 1rem; }
.contact-info p { color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-detail-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,134,10,0.1);
  border: 1px solid rgba(200,134,10,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 15px; height: 15px; stroke: var(--amber); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail-value { font-size: 15px; font-weight: 400; color: var(--dark); text-decoration: none; }
.contact-detail-value:hover { color: var(--amber); }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
}
.contact-form-card h3 { margin-bottom: 0.3rem; }
.contact-form-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--amber);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.directions-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
  margin-top: 1.5rem;
}
.directions-box h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.directions-box p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark);
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner { position: relative; z-index: 2; }
.cta-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(200,134,10,0.06);
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.r1 { width: 700px; height: 700px; }
.r2 { width: 480px; height: 480px; }
.r3 { width: 300px; height: 300px; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BRANDS BAR ── */
.brands-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--cream-dark);
}
.brands-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.brand-names { display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  opacity: 0.3;
}

/* ── AREA BAND ── */
.area-band {
  background: var(--cream-dark);
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.area-text { font-size: 14px; color: var(--text-muted); }
.area-text strong { color: var(--dark); font-weight: 500; }
.area-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.area-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.3rem 0.75rem;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--amber); }
.footer-brand p {
  font-size: 13px;
  color: rgba(245,240,232,0.4);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.45);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 0.4rem;
}
.footer-col a {
  font-size: 13px;
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245,240,232,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1.25rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-top: 0.5rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 50vw; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-home { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-secondary { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .gallery-item { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.5rem; }
  .dark-section { padding: 3.5rem 1.5rem; }
  .brands-bar { padding: 1.5rem; }
  .area-band { padding: 1.25rem 1.5rem; }
  .cta-band { padding: 4.5rem 1.5rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }
  .work-grid { grid-template-columns: 1fr; }
  .services-grid-home { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; }
  .services-table .td-desc { display: none; }
  .page-hero { padding: 3rem 1.5rem; }
}
