/* ═══════════════════════════════════════════
   AW BUILDERS — DESIGN & BUILD
   Stoke-on-Trent | North Staffordshire | South Cheshire
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  /* Light section defaults (formerly-black sections are now white) */
  --black:    #F6F5F1;
  --navy:     #0C1628;
  --gold:     #C49B2E;
  --gold-lt:  #E8B84B;
  --gold-dk:  #8A6B1A;
  --silver:   #3D4A5A;   /* dark body text on white */
  --white:    #0F1923;   /* dark headings on white  */
  --muted:    #6A7A8A;   /* medium — works on white */
  --card-bg:  rgba(0,0,0,0.04);
  --border:   rgba(0,0,0,0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── DARK SECTIONS — restore original dark-bg palette ── */
/* Class-based dark sections */
.services-section,
.testimonials-section,
.areas-strip,
.footer,
.page-hero,
.hero,
.mobile-menu,
.lightbox {
  --black:   #09090E;
  --silver:  #C0CAD4;
  --white:   #F2EFE9;
  --muted:   #7A8898;
  --card-bg: rgba(255,255,255,0.04);
  --border:  rgba(196,155,46,0.2);
}

/* Inline-styled navy sections (attribute selector catches all pages) */
[style*="background: var(--navy)"],
[style*="background:var(--navy)"] {
  --black:   #09090E;
  --silver:  #C0CAD4;
  --white:   #F2EFE9;
  --muted:   #7A8898;
  --card-bg: rgba(255,255,255,0.04);
  --border:  rgba(196,155,46,0.2);
}

/* Nav when scrolled (dark bg) */
.nav.scrolled {
  --silver: #C0CAD4;
  --white:  #F2EFE9;
  --muted:  #7A8898;
}

/* Contact form wrap is always navy */
.contact-form-wrap {
  --silver: #C0CAD4;
  --white:  #F2EFE9;
  --muted:  #7A8898;
  --border: rgba(196,155,46,0.2);
}

/* Hero stats bar is dark */
.hero-stats {
  --silver: #C0CAD4;
  --white:  #F2EFE9;
  --muted:  #7A8898;
  --border: rgba(196,155,46,0.2);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── TYPOGRAPHY ── */
.display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }

/* ── GOLD RULE ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  height: 1px;
  background: var(--gold);
  flex: 1;
}
.gold-rule span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(9,9,14,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  padding: 10px 22px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-lt) !important; color: #000 !important; }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,9,14,0.88) 0%,
    rgba(9,9,14,0.65) 50%,
    rgba(9,9,14,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 24px 80px;
  max-width: 740px;
  padding-left: 24px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 17px;
  color: var(--silver);
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(196,155,46,0.08);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(9,9,14,0.75);
  backdrop-filter: blur(8px);
}

.hero-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}

.stat-item {
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-section { background: var(--navy); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--black);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  border-top: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover { background: #0f1318; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--white);
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--gold-lt); }

.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 14px; }

/* ══════════════════════════════════
   GALLERY GRID
══════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-grid.gallery-masonry {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #e5e7eb;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom {
  width: 40px; height: 40px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px; right: 16px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Span classes for masonry effect */
.span-2 { grid-column: span 2; }
.span-row-2 { grid-row: span 2; }

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 82%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 46%;
  object-fit: cover;
  border: 4px solid var(--navy);
}

.about-badge {
  position: absolute;
  bottom: 38%; left: 62%;
  background: var(--gold);
  padding: 18px 22px;
  text-align: center;
  z-index: 2;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  display: block;
}

.about-badge-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  display: block;
  margin-top: 4px;
}

.about-content ul {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--silver);
}

.about-content ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   AREAS STRIP
══════════════════════════════════ */
.areas-strip {
  background: var(--navy);
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.areas-ticker {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.areas-ticker-inner {
  display: flex;
  gap: 60px;
  padding-right: 60px;
  flex-shrink: 0;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--silver);
  text-transform: uppercase;
}

.area-pill::before {
  content: '◆';
  font-size: 8px;
  color: var(--gold);
}

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

/* ══════════════════════════════════
   TRUST SECTION
══════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.trust-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}

.trust-card:hover {
  background: rgba(196,155,46,0.08);
  border-color: rgba(196,155,46,0.4);
}

.trust-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.trust-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--white);
}

.trust-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-section { background: var(--navy); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 16px; left: 28px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testimonial-initials {
  width: 42px; height: 42px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-location {
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════════════════
   CONTACT / FORM
══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-detail-text span {
  font-size: 15px;
  color: var(--silver);
}

/* FORM */
.contact-form-wrap {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 48px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--white);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C49B2E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option { background: #0C1628; color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px;
  transition: background var(--transition), transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

/* ══════════════════════════════════
   IMAGE GALLERY (full page)
══════════════════════════════════ */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-full .gallery-item {
  height: 260px;
}

.gallery-full .gallery-item.tall {
  height: 524px;
  grid-row: span 2;
}

.gallery-full .gallery-item.wide {
  grid-column: span 2;
}

/* ══════════════════════════════════
   LIGHTBOX
══════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: #000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(196,155,46,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: #000; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  padding: 180px 0 80px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--black) 100%);
  position: relative;
  border-bottom: 1px solid var(--border);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--muted); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  height: 56px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a::before { content: '›'; color: var(--gold); }
.footer-col ul a:hover { color: var(--white); }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-area-tag {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  transition: border-color var(--transition), color var(--transition);
}
.footer-area-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom a { color: var(--gold); }

/* ══════════════════════════════════
   MOBILE MENU
══════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold-lt); }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

/* ══════════════════════════════════
   SUCCESS MESSAGE
══════════════════════════════════ */
.form-success {
  display: none;
  background: rgba(196,155,46,0.1);
  border: 1px solid var(--gold);
  padding: 24px;
  text-align: center;
  color: var(--gold);
  font-size: 15px;
  margin-top: 16px;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 140px 24px 60px; max-width: 100%; }
  .hero h1 { font-size: 42px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }

  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-header-right { align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 340px; }
  .about-badge { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .gallery-full .gallery-item.tall,
  .gallery-full .gallery-item.wide { grid-column: span 1; grid-row: span 1; height: 220px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   UTILITIES & ANIMATIONS
══════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
