/* ============================================================
   ANTHONY PLUMBING — Main Stylesheet
   Design: Deep slate navy + warm amber/copper accent
   Typography: Manrope (body/UI) + Playfair Display (display)
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162438;
  --navy-light:  #1E3452;
  --amber:       #C8882A;
  --amber-light: #E8A84A;
  --amber-pale:  #F5E6CC;
  --slate:       #3D5470;
  --slate-light: #7A94B0;
  --white:       #FFFFFF;
  --off-white:   #F7F5F1;
  --text-dark:   #0D1B2A;
  --text-body:   #2C3E52;
  --text-muted:  #6B7E94;
  --border:      #E2E8EF;

  --ff-display: 'Playfair Display', 'Playfair-fallback', Georgia, serif;
  --ff-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.04);
  --shadow:    0 4px 16px rgba(13,27,42,0.10), 0 1px 4px rgba(13,27,42,0.06);
  --shadow-lg: 0 12px 40px rgba(13,27,42,0.16), 0 4px 12px rgba(13,27,42,0.08);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:  72px;
}

/* ---- FOUT prevention — calibrated fallback for Playfair Display ---- */
@font-face {
  font-family: 'Playfair-fallback';
  src: local('Georgia');
  size-adjust: 97%;
  ascent-override: 94%;
  descent-override: 24%;
  line-gap-override: 0%;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Focus visible ---- */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border: 2px solid var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,136,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--amber);
  border: 2px solid transparent;
  padding-left: 4px;
}
.btn-ghost:hover { color: var(--amber-light); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
}
.logo-text {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-text strong {
  font-weight: 800;
  color: var(--amber-light);
}
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.header-cta { margin-left: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Subtle grid / blueprint overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,136,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,136,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}
/* Warm glow accent top-right */
.hero-pipe-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(200,136,42,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 100px;
  max-width: 760px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}
.badge-gas {
  background: rgba(200,136,42,0.15);
  color: var(--amber-light);
  border-color: rgba(200,136,42,0.25);
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-light);
  position: relative;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat strong {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber-light);
  line-height: 1;
}
.stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 32px 0 0;
  align-self: stretch;
  min-height: 40px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.trust-stars {
  font-size: 1.1rem;
  color: var(--amber);
  letter-spacing: -2px;
}
.trust-logo {
  height: 28px;
  width: auto;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: 96px 0;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-overview { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card--featured {
  grid-column: span 1;
  background: var(--navy);
  border-color: var(--navy-light);
  color: var(--white);
}
.service-card--featured h3 { color: var(--white) !important; }
.service-card--featured p { color: rgba(255,255,255,0.75); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.7); }
.service-card--featured .service-list li::before { color: var(--amber); }
.service-card--featured .service-link { color: var(--amber-light); }
.service-card--featured:hover {
  border-color: var(--amber);
  background: var(--navy-light);
}
.service-card--cta {
  background: linear-gradient(135deg, var(--amber) 0%, #B07020 100%);
  border-color: transparent;
  color: var(--white);
  align-items: flex-start;
}
/* Ensure all text inside CTA card is white and readable */
.service-card--cta h3 { color: var(--white) !important; font-weight: 800; }
.service-card--cta p  { color: rgba(255,255,255,0.95) !important; }
.service-card--cta .cta-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
}
.service-card--cta .btn-primary {
  background: var(--white);
  color: var(--amber);
  border-color: var(--white);
}
.service-card--cta .btn-primary:hover {
  background: var(--off-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.service-card--cta .btn-ghost {
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}
.service-card--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,136,42,0.4);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,136,42,0.1);
  border-radius: var(--radius);
  color: var(--amber);
  flex-shrink: 0;
}
.service-card--featured .service-card-icon {
  background: rgba(200,136,42,0.15);
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.75rem;
  top: 1px;
}
.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  margin-top: auto;
}
.service-link:hover { color: var(--amber-light); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--navy);
  color: var(--white);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-text .section-eyebrow { display: block; text-align: left; }
.why-us-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.why-us-text > p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,136,42,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-feature strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.why-feature p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.55;
}
.why-us-visual { display: flex; justify-content: center; }
.why-us-image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.why-us-image-placeholder {
  aspect-ratio: 4/5;
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.cert-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.cert-badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.cert-badge span {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* ============================================================
   REVIEWS SNAPSHOT
   ============================================================ */
.reviews-snapshot { background: var(--off-white); }
.review-platforms {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.review-platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.review-platform-link:hover { color: var(--amber); }
.platform-stars {
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: -1px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.review-stars {
  font-size: 1.1rem;
  color: var(--amber);
  letter-spacing: -1px;
}
.review-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
  font-style: italic;
  flex-grow: 1;
  quotes: "\201C" "\201D";
}
.review-card blockquote::before { content: open-quote; }
.review-card blockquote::after { content: close-quote; }
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-footer strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.review-footer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.review-source {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--off-white);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--navy-light);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-placeholder { opacity: 0.5; }
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(13,27,42,0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
  transform: translateY(0);
}
.gallery-cta { text-align: center; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1A2E4A 100%);
  border-top: 1px solid rgba(200,136,42,0.2);
  border-bottom: 1px solid rgba(200,136,42,0.2);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,136,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-banner-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo--footer {
  margin-bottom: 16px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.accred-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(200,136,42,0.15);
  color: var(--amber-light);
  border: 1px solid rgba(200,136,42,0.2);
}
.footer-nav h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--amber-light); }
.footer-contact h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-contact-list a:hover { color: var(--amber-light); }
.footer-emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: rgba(200,136,42,0.1);
  border: 1px solid rgba(200,136,42,0.2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--amber-light);
}
.footer-emergency a { color: var(--amber-light); font-weight: 700; }
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--amber); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 48px) 0 64px;
}
.page-hero-inner {
  max-width: 680px;
}
.page-hero .section-eyebrow { text-align: left; display: block; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { background: var(--white); }
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child { border-bottom: none; }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }
.service-section-visual {
  aspect-ratio: 16/10;
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}
.service-section-text .section-eyebrow { text-align: left; display: block; }
.service-section-text h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.service-section-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 32px;
}
.service-detail-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
}
.service-detail-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.75rem;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-full { background: var(--white); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-light);
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition);
}
.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,27,42,0.85));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-full { background: var(--white); }
.reviews-score-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.score-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.score-card .platform-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.score-card .score-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.score-card .score-stars {
  font-size: 1.3rem;
  color: var(--amber);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.score-card .score-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.review-card-full {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card-full:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group label .req { color: var(--amber); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,136,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.contact-details-wrap { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.contact-detail-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,136,42,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.contact-detail-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-card a, .contact-detail-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-detail-card a:hover { color: var(--amber); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
  background: var(--navy-light);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.emergency-contact-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: var(--white);
}
.emergency-contact-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.emergency-contact-card a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-light);
  display: block;
  margin-bottom: 4px;
}
.emergency-contact-card span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   SUCCESS MESSAGE
   ============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,136,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-us-inner { gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-score-bar { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 64px 0; }

  /* Nav */
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 2px;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 12px 16px;
  }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav { margin-left: 0; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-content { padding-top: 48px; padding-bottom: 72px; }
  .hero-stats { gap: 16px; }
  .stat { padding-right: 16px; }
  .stat-divider { margin-right: 16px; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-list { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-main-grid { grid-template-columns: 1fr 1fr; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .service-section-inner,
  .service-section-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-detail-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
  .trust-bar-inner { justify-content: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-main-grid { grid-template-columns: 1fr; }
  .score-card { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
}

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