:root {
  --deep-navy: #0A1628;
  --navy-mid: #0D2137;
  --electric-blue: #0A5EB8;
  --cyan-glow: #00D4FF;
  --action-orange: #FF6B35;
  --ice-white: #F0F7FF;
  --midnight: #060D18;
  --pure-white: #FFFFFF;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --success: #28A745;
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 30px rgba(0,212,255,0.15);
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem; line-height: 1.618; color: var(--gray-900); /* φ */
  background: var(--pure-white); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--electric-blue); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--cyan-glow); }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.15; color: var(--deep-navy); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-height);
  background: rgba(6,13,24,0.92); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  z-index: 1000; transition: all 300ms ease;
}
.header.scrolled { background: rgba(6,13,24,0.97); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { border-radius: 4px; }
.nav { display: flex; align-items: center; }
.nav__links { display: flex; gap: 1.75rem; align-items: center; }
.nav__links a {
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7);
  padding: 0.4rem 0; position: relative; text-transform: uppercase;
  letter-spacing: 0.06em; transition: color 200ms ease;
}
.nav__links a:hover { color: var(--cyan-glow); }
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav__dropdown {
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: var(--navy-mid); border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius-md); box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  min-width: 220px; padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 250ms ease; z-index: 100;
}
.has-dropdown:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a { display: block; padding: 0.6rem 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: none; letter-spacing: 0; }
.nav__dropdown a:hover { background: rgba(0,212,255,0.06); color: var(--cyan-glow); }
.nav__cta { margin-left: 1.5rem; font-size: 0.85rem; padding: 0.6rem 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); margin: 5px 0; transition: all 250ms ease; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  font-weight: 600; border: none; border-radius: var(--radius-md); cursor: pointer;
  text-decoration: none; transition: all 300ms cubic-bezier(0.4,0,0.2,1); min-height: 48px;
}
.btn--primary {
  background: var(--action-orange); color: var(--pure-white);
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn--primary:hover {
  background: #E85A25; color: var(--pure-white);
  box-shadow: 0 8px 30px rgba(255,107,53,0.5); transform: translateY(-2px);
}
.btn--outline-glow {
  background: transparent; color: var(--cyan-glow);
  border: 1px solid rgba(0,212,255,0.4);
  box-shadow: 0 0 15px rgba(0,212,255,0.08);
}
.btn--outline-glow:hover {
  border-color: var(--cyan-glow); color: var(--pure-white);
  box-shadow: 0 0 25px rgba(0,212,255,0.2); background: rgba(0,212,255,0.06);
}
.btn--full { width: 100%; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--midnight); overflow: hidden; margin-top: var(--header-height);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.hero__scanline {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, var(--cyan-glow) 50%, transparent 100%);
  opacity: 0.3; animation: scanDown 6s linear infinite;
}
@keyframes scanDown {
  0% { top: -2%; }
  100% { top: 102%; }
}
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1;
}
.hero__orb--1 {
  width: 600px; height: 600px; top: -15%; right: -10%;
  background: radial-gradient(circle, rgba(10,94,184,0.35) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px; bottom: -10%; left: 5%;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero__orb--3 {
  width: 300px; height: 300px; top: 40%; right: 25%;
  background: radial-gradient(circle, rgba(10,94,184,0.15) 0%, transparent 70%);
  animation: orbFloat3 14s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 20px); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -30px); } }
@keyframes orbFloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-15px, -25px); } }

.hero__content {
  position: relative; z-index: 10; width: 100%;
  padding: 4rem 0;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan-glow); font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-full);
  margin-bottom: 1.618rem; text-transform: uppercase; letter-spacing: 0.08em; /* φ */
}
.hero__title {
  color: var(--pure-white); font-size: 3.4rem; font-weight: 900;
  line-height: 1.05; margin-bottom: 1.618rem; letter-spacing: -0.02em; /* φ */
}
.hero__title .glow {
  color: var(--cyan-glow);
  text-shadow: 0 0 40px rgba(0,212,255,0.4), 0 0 80px rgba(0,212,255,0.15);
}
.hero__subtitle {
  font-size: 1.118rem; color: rgba(255,255,255,0.65); margin-bottom: 2.618rem; /* √φ, φ² */
  line-height: 1.618; max-width: 480px; /* φ line-height */
}
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero__shield {
  width: 320px; height: 320px; position: relative;
  border: 1px solid rgba(0,212,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: shieldPulse 4s ease-in-out infinite;
}
@keyframes shieldPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(0,212,255,0.08), inset 0 0 40px rgba(0,212,255,0.03); }
  50% { box-shadow: 0 0 60px rgba(0,212,255,0.15), inset 0 0 60px rgba(0,212,255,0.06); }
}
.hero__shield::before {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.08);
}
.hero__shield::after {
  content: ''; position: absolute; inset: -20px; border-radius: 50%;
  border: 1px dashed rgba(0,212,255,0.06);
  animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero__shield-icon {
  width: 80px; height: 80px; color: var(--cyan-glow); opacity: 0.9;
}
/* === HERO CONNECTION LINES === */
.hero__lines {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  pointer-events: none;
}
.hero__line {
  opacity: 0.35;
  stroke-dasharray: 4 6;
  animation: linePulse 3s ease-in-out infinite;
}
.hero__line--1  { animation-delay: 0s; }
.hero__line--2  { animation-delay: 0.3s; }
.hero__line--3  { animation-delay: 0.6s; }
.hero__line--4  { animation-delay: 0.9s; }
.hero__line--5  { animation-delay: 1.2s; }
.hero__line--6  { animation-delay: 1.5s; }
.hero__line--7  { animation-delay: 1.8s; }
.hero__line--8  { animation-delay: 2.1s; }
.hero__line--9  { animation-delay: 2.4s; }
.hero__line--10 { animation-delay: 2.7s; }
@keyframes linePulse {
  0%, 100% { opacity: 0.15; stroke-dashoffset: 0; }
  50% { opacity: 0.5; stroke-dashoffset: -20; }
}
.hero__ring {
  animation: rotateSlow 60s linear infinite;
  transform-origin: 250px 250px;
}

/* === HERO TECH NODES (constellation) === */
.hero__visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 500px; height: 500px; flex-shrink: 0;
}
.hero__node {
  position: absolute; z-index: 5;
  background: rgba(13,33,55,0.9);
  border: 1px solid rgba(0,212,255,0.15); border-radius: var(--radius-md);
  padding: 0.5rem 0.7rem; backdrop-filter: blur(10px);
  text-align: center; min-width: 62px;
  animation: nodeFloat 5s ease-in-out infinite;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
.hero__node:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.hero__node .fc-icon {
  color: var(--cyan-glow); margin-bottom: 0.2rem; opacity: 0.7;
  display: flex; justify-content: center;
}
.hero__node .fc-value {
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  font-weight: 800; color: var(--cyan-glow); line-height: 1.1;
}
.hero__node .fc-label {
  font-size: 0.55rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.1rem;
  white-space: nowrap;
}

/* Position nodes in a circle (10 nodes, 36deg apart, ~208px radius from center) */
.hero__node--1  { top: -2%;   left: 50%;  transform: translateX(-50%); animation-delay: 0s; }
.hero__node--2  { top: 4%;    right: 6%;  animation-delay: 0.5s; }
.hero__node--3  { top: 28%;   right: -6%; animation-delay: 1.0s; }
.hero__node--4  { top: 55%;   right: -6%; animation-delay: 1.5s; }
.hero__node--5  { bottom: 4%; right: 6%;  animation-delay: 2.0s; }
.hero__node--6  { bottom: -2%;left: 50%;  transform: translateX(-50%); animation-delay: 2.5s; }
.hero__node--7  { bottom: 4%; left: 6%;   animation-delay: 3.0s; }
.hero__node--8  { top: 55%;   left: -6%;  animation-delay: 3.5s; }
.hero__node--9  { top: 28%;   left: -6%;  animation-delay: 4.0s; }
.hero__node--10 { top: 4%;    left: 6%;   animation-delay: 4.5s; }

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/* Preserve translateX on centered nodes */
.hero__node--1, .hero__node--6 {
  animation: nodeFloatCentered 5s ease-in-out infinite;
}
@keyframes nodeFloatCentered {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

.hero__stats {
  display: flex; gap: 2.618rem; margin-top: 4.236rem; padding-top: 1.618rem; /* φ², φ³, φ */
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero__stat-value {
  font-family: 'Montserrat', sans-serif; font-size: 1.618rem; /* φ */
  font-weight: 800; color: var(--pure-white);
}
.hero__stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--deep-navy); border-bottom: 1px solid rgba(0,212,255,0.06);
  padding: 1rem 0;
}
.trust-bar__items { display: flex; align-items: center; justify-content: center; gap: 2.618rem; flex-wrap: wrap; /* φ² */ }
.trust-bar__item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.trust-bar__item svg { width: 16px; height: 16px; color: var(--cyan-glow); flex-shrink: 0; }

/* === SECTIONS === */
.section { padding: 4.236rem 0; /* φ³ */ }
.section--alt { background: var(--ice-white); }
.section--dark { background: var(--deep-navy); }
/* section-label/heading consolidated into section__label/heading below */
.text-center { text-align: center; }

/* === SERVICE CARDS === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.618rem; margin-bottom: 2.618rem; /* φ, φ² */ }
.card {
  background: var(--pure-white); border-radius: var(--radius-lg);
  padding: 1.618rem; transition: all 300ms cubic-bezier(0.4,0,0.2,1); /* φ */
  border: 1px solid var(--gray-100); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--cyan-glow));
  opacity: 0; transition: opacity 300ms ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(10,94,184,0.08), rgba(0,212,255,0.06));
  border: 1px solid rgba(10,94,184,0.1);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.382rem; color: var(--electric-blue); /* φ×0.854 ≈ φ-derived */
}
.card__title { font-size: 1.118rem; margin-bottom: 0.618rem; /* √φ, φ-1 */ }
.card__text { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1.382rem; line-height: 1.618; /* φ line-height */ }
.card__link { font-size: 0.82rem; font-weight: 600; color: var(--electric-blue); display: inline-flex; align-items: center; gap: 0.25rem; transition: gap 250ms ease; }
.card__link:hover { gap: 0.5rem; color: var(--cyan-glow); }
.services-footer { text-align: center; margin-top: 1.618rem; /* φ */ }
.link-arrow { font-weight: 600; color: var(--electric-blue); font-size: 0.9rem; }

/* === PROCESS === */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.618rem; margin-bottom: 2.618rem; position: relative; /* φ² */ }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent);
}
.process-step { text-align: center; position: relative; }
.process-step__number {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 800;
  color: var(--cyan-glow); margin: 0 auto 1.382rem; /* φ-derived */
  box-shadow: 0 0 20px rgba(0,212,255,0.08);
}
.process-step__title { font-size: 1.118rem; color: var(--pure-white); margin-bottom: 0.618rem; /* √φ, φ-1 */ }
.process-step__text { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.618; /* φ */ }
.process-cta { text-align: center; }

/* === GALLERY TEASER === */
.gallery-grid-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.618rem; margin-bottom: 2.618rem; /* φ, φ² */ }
.gallery-preview-item {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy-mid), var(--deep-navy));
  transition: transform 300ms ease;
}
.gallery-preview-item:hover { transform: scale(1.02); }
.gallery-preview-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(10,94,184,0.08));
}
.gallery-preview-item__label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(6,13,24,0.95));
  color: var(--pure-white); font-size: 0.88rem; font-weight: 600;
}
.gallery-preview-item__sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.1rem; font-weight: 400; }
.gallery-teaser-footer { text-align: center; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.618rem; margin-bottom: 2.618rem; /* φ, φ² */ }
.testimonial-card {
  background: var(--pure-white); border-radius: var(--radius-lg); padding: 2.618rem; /* φ² */
  border: 1px solid var(--gray-100); transition: box-shadow 300ms ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card__stars { color: #F59E0B; font-size: 1rem; margin-bottom: 0.618rem; letter-spacing: 2px; /* φ-1 */ }
.testimonial-card__quote { font-size: 0.92rem; color: var(--gray-700); line-height: 1.618; margin-bottom: 1.118rem; /* φ, √φ */ }
.testimonial-card__author { font-weight: 600; color: var(--deep-navy); font-size: 0.88rem; }
.testimonial-card__location { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.1rem; }
.testimonials-badge { text-align: center; font-size: 0.88rem; color: var(--gray-500); }
.testimonials-badge strong { color: #F59E0B; }

/* === QUOTE FORM === */
.quote-section { padding: 4.236rem 0; background: var(--ice-white); /* φ³ */ }
.quote-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4.236rem; align-items: start; /* φ³ */ }
.quote-left h2 { font-size: 2.058rem; margin-bottom: 1.118rem; /* φ×1.272, √φ */ }
.quote-left > p { font-size: 1rem; color: var(--gray-700); margin-bottom: 1.618rem; line-height: 1.618; /* φ */ }
.quote-checklist li { display: flex; align-items: center; gap: 0.618rem; padding: 0.382rem 0; font-size: 0.9rem; color: var(--gray-700); /* φ-1, 1/φ */ }
.quote-checklist li svg { color: var(--success); flex-shrink: 0; width: 18px; height: 18px; }
.quote-form {
  background: var(--pure-white); border-radius: var(--radius-xl); padding: 2.618rem; /* φ² */
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.382rem; /* φ-derived */ }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--deep-navy); margin-bottom: 0.382rem; /* 1/φ */ }
.form-control, .form-input {
  width: 100%; padding: 0.75rem 1rem; font-size: 0.95rem; font-family: inherit;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-md);
  background: var(--pure-white); color: var(--gray-900);
  transition: border-color 150ms ease, box-shadow 150ms ease; min-height: 48px;
  appearance: none; -webkit-appearance: none;
}
.form-control:focus, .form-input:focus { outline: none; border-color: var(--electric-blue); box-shadow: 0 0 0 3px rgba(10,94,184,0.1); }
.form-control::placeholder, .form-input::placeholder { color: var(--gray-500); }
textarea.form-control, textarea.form-input { min-height: 100px; resize: vertical; }
select.form-control, select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
/* Subpage form row layout (mirrors .form-row) */
.inline-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent { display: flex; align-items: flex-start; gap: 0.618rem; font-size: 0.764rem; color: var(--gray-500); margin-bottom: 1.382rem; line-height: 1.618; /* φ-1, φ-derived */ }
.form-consent input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--electric-blue); }

/* === FOOTER === */
.footer { background: var(--midnight); color: rgba(255,255,255,0.6); padding: 4.236rem 0 2.618rem; border-top: 1px solid rgba(0,212,255,0.06); /* φ³, φ² */ }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.618rem; margin-bottom: 2.618rem; /* φ² */ }
.footer__brand-logo { display: flex; align-items: center; margin-bottom: 1rem; }
.footer__brand-logo img { border-radius: 4px; }
.footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.618; margin-bottom: 1.382rem; /* φ, φ-derived */ }
.footer__contact-item { display: flex; align-items: center; gap: 0.618rem; font-size: 0.82rem; margin-bottom: 0.618rem; /* φ-1 */ }
.footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--cyan-glow); }
.footer__contact-item a { color: rgba(255,255,255,0.5); }
.footer__contact-item a:hover { color: var(--cyan-glow); }
.footer h4 { color: rgba(255,255,255,0.8); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.118rem; /* √φ */ }
.footer__links li { margin-bottom: 0.618rem; /* φ-1 */ }
.footer__links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__links a:hover { color: var(--cyan-glow); }
.footer__bottom {
  padding-top: 1.618rem; border-top: 1px solid rgba(255,255,255,0.06); /* φ */
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
}
.footer__social { display: flex; gap: 0.764rem; /* 1/φ×1.236 ≈ φ-derived */ }
.footer__social a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); transition: all 200ms ease;
}
.footer__social a:hover { background: rgba(0,212,255,0.1); color: var(--cyan-glow); }

/* === ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === PAGE-SPECIFIC STYLES === */

.page-header {
  background: var(--deep-navy);
  padding: 4.236rem 0 2.618rem; /* φ³ top, φ² bottom */
  margin-top: var(--header-height);
  border-bottom: 1px solid rgba(0,212,255,0.06);
}
.page-header h1 { color: var(--pure-white); font-size: 2.618rem; margin-bottom: 0.618rem; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1.118rem; line-height: 1.618; }

.breadcrumb { display: flex; gap: 0.382rem; align-items: center; font-size: 0.875rem; margin-bottom: 1.618rem; }
.breadcrumb a { color: var(--cyan-glow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   SERVICE PAGES — GOLDEN RATIO TYPOGRAPHY & SPACING SYSTEM
   φ = 1.618 | φ² = 2.618 | φ³ = 4.236 | √φ = 1.118
   φ-1 = 0.618 | 1/φ = 0.382 | 1/φ² = 0.236
   ============================================================ */

/* --- Breadcrumb BEM (extends base .breadcrumb) --- */
.breadcrumb__list {
  display: flex; gap: 0.382rem; align-items: center;
  list-style: none; padding: 0; margin: 0;
  font-size: 0.875rem;
}
.breadcrumb__link { color: var(--cyan-glow); text-decoration: none; }
.breadcrumb__link:hover { color: var(--pure-white); }
.breadcrumb__separator { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.breadcrumb__item[aria-current="page"] {
  color: rgba(255,255,255,0.6); font-weight: 500;
}

/* --- Intro Section (security.html pattern: 2-col grid) --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.618fr; /* φ ratio */
  gap: 4.236rem; /* φ³ */
  align-items: center;
}
.intro-grid__content h2 {
  font-size: 2.058rem; /* ~φ × 1.272 */
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 1.618rem;
  line-height: 1.15;
}
.intro-grid__content p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 1rem;
}
.intro-grid__content p:last-of-type { margin-bottom: 0; }
.intro-cta { margin-top: 2.618rem; }
.intro-grid__image { position: relative; }

/* --- Intro Section (automation+ pattern: single-col prose) --- */
.intro__content {
  max-width: 800px;
}
.intro__content h2 {
  font-size: 2.058rem;
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 1.618rem;
  line-height: 1.15;
}
.intro__content p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 1rem;
}
.intro__content p:last-child { margin-bottom: 0; }

/* --- Feature Cards Grid (shared by automation, theatre, wiring, access, commercial) --- */
.features__grid,
.service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.618rem;
}
.feature-card,
.service-feature-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.618rem 2rem; /* φ² vertical, balanced horizontal */
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.4,0,0.2,1);
}
.feature-card::before,
.service-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--cyan-glow));
  opacity: 0;
  transition: opacity 300ms ease;
}
.feature-card:hover,
.service-feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-card:hover::before,
.service-feature-card:hover::before { opacity: 1; }

.feature-card__icon,
.service-feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(10,94,184,0.08), rgba(0,212,255,0.06));
  border: 1px solid rgba(10,94,184,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.382rem; /* φ × 0.854 */
  color: var(--electric-blue);
}
.feature-card__title,
.service-feature-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.118rem; /* √φ */
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.618rem;
  line-height: 1.25;
}
.feature-card__description,
.service-feature-card__description {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.618;
}

/* --- Why Choose: Security pattern (list with icons) --- */
.why-choose__content { max-width: 100%; }
.why-choose__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.618rem;
}
.why-choose__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-choose__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10,94,184,0.08), rgba(0,212,255,0.06));
  border: 1px solid rgba(10,94,184,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--electric-blue);
}
.why-choose__item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.118rem; /* √φ */
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.382rem;
  line-height: 1.25;
}
.why-choose__item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.618;
}

/* --- Why Choose: Automation pattern (numbered grid) --- */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.618rem;
}
.why-choose__grid .why-choose__item {
  display: block;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.618rem 2rem;
  border: 1px solid var(--gray-100);
  transition: all 300ms cubic-bezier(0.4,0,0.2,1);
}
.why-choose__grid .why-choose__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-choose__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.618rem; /* φ² */
  font-weight: 900;
  color: rgba(10,94,184,0.1);
  line-height: 1;
  margin-bottom: 0.618rem;
}
.why-choose__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.118rem; /* √φ */
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.618rem;
  line-height: 1.25;
}
.why-choose__grid .why-choose__item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.618;
}

/* --- Why Choose: Theatre/Wiring/Access/Commercial pattern (wrapper + image) --- */
.why-choose__wrapper {
  display: grid;
  grid-template-columns: 1fr 0.618fr; /* φ ratio */
  gap: 4.236rem; /* φ³ */
  align-items: center;
}
.why-choose__intro {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 2.618rem; /* φ² */
}
.why-choose__wrapper .why-choose__list {
  display: flex;
  flex-direction: column;
  gap: 1.618rem;
}
.why-choose__wrapper .why-choose__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-choose__item svg {
  flex-shrink: 0;
  color: var(--electric-blue);
}
.why-choose__item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.118rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.382rem;
  line-height: 1.25;
}
.why-choose__item-text {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.618;
}
.why-choose__image { position: relative; }
.why-choose__placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), var(--deep-navy));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,212,255,0.08);
}

/* --- Quote Form Section (shared by all service pages) --- */
.quote-form__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.236rem; /* φ³ */
  align-items: start;
}
.quote-form__left h2 {
  font-size: 2.058rem;
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.quote-form__left > p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 1.618rem;
}
.quote-form__checklist {
  list-style: none;
  padding: 0;
}
.quote-form__checklist li {
  display: flex;
  align-items: center;
  gap: 0.618rem;
  padding: 0.382rem 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.618;
}
.quote-form__checklist li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* --- Service Page Responsive --- */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.618rem; }
  .intro-grid__image { display: none; }
  .features__grid,
  .service-features__grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose__list { grid-template-columns: 1fr; }
  .why-choose__grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose__wrapper { grid-template-columns: 1fr; gap: 2.618rem; }
  .why-choose__image { display: none; }
  .quote-form__wrapper { grid-template-columns: 1fr; gap: 2.618rem; }
}
@media (max-width: 768px) {
  .features__grid,
  .service-features__grid { grid-template-columns: 1fr; }
  .why-choose__grid { grid-template-columns: 1fr; }
  .intro-grid__content h2,
  .intro__content h2,
  .quote-form__left h2 { font-size: 1.618rem; }
  .feature-card,
  .service-feature-card { padding: 1.618rem; }
  .why-choose__grid .why-choose__item { padding: 1.618rem; }
  .inline-form { grid-template-columns: 1fr; }
}

/* Old generic service styles (kept for backwards compat) */
.service-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin: 3rem 0; }
.service-feature { padding: 2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(0,212,255,0.1); border-radius: var(--radius-lg); }
.service-feature h3 { color: var(--cyan-glow); margin-bottom: 0.5rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin: 3rem 0; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--navy-mid); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.gallery-filters { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.gallery-filters button { padding: 0.5rem 1.25rem; border: 1px solid rgba(0,212,255,0.2); background: transparent; color: rgba(255,255,255,0.6); border-radius: var(--radius-full); cursor: pointer; transition: all 200ms ease; }
.gallery-filters button.active { background: var(--cyan-glow); color: var(--midnight); border-color: var(--cyan-glow); }

/* ============================================================
   REMAINING PAGE-SPECIFIC COMPONENTS — GOLDEN RATIO
   ============================================================ */

/* Semantic wrapper classes (no visual style, just naming) */
.intro-section, .intro, .features, .why-choose, .jtron-form { /* section wrapper or JS hook */ }
.contact-info { /* styled via contact-info__* children */ }

/* Intro heading/text (theatre, wiring, access, commercial pattern) */
.intro__heading {
  font-size: 2.058rem;
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 1.618rem;
  line-height: 1.15;
}
.intro__text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 1rem;
}
.intro__text:last-child { margin-bottom: 0; }

/* Page header content wrapper (automation uses this) */
.page-header__content { /* no extra styles needed, container handles width */ }

/* Form section (semantic class on service forms) */
.form-section {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: 2.618rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}

/* Section light variant */
.section--light { background: var(--pure-white); }

/* About page story content wrapper */
.story__content { /* semantic wrapper, no extra styles needed */ }

/* Image placeholder generic */
.image-placeholder { border-radius: var(--radius-lg); overflow: hidden; }

/* ============================================================
   PRIVACY POLICY PAGE — GOLDEN RATIO
   ============================================================ */
.policy-content {
  max-width: 800px;
}
.policy-meta {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 2.618rem;
  padding-bottom: 1.618rem;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.618;
}
.policy-section {
  margin-bottom: 2.618rem; /* φ² */
}
.policy-section__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.382rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.policy-section p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 1rem;
}
.policy-list {
  list-style: disc;
  padding-left: 1.618rem;
  margin-bottom: 1rem;
}
.policy-list li {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 0.382rem;
}
.policy-contact {
  background: var(--ice-white);
  border-radius: var(--radius-lg);
  padding: 2.618rem;
  margin-top: 2.618rem;
}
.policy-contact p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 0.618rem;
}
.policy-footer {
  margin-top: 2.618rem;
  padding-top: 1.618rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.618;
}

/* ============================================================
   PAGE HEADER — BEM
   ============================================================ */
.page-header__title {
  color: var(--pure-white);
  font-size: 2.618rem; /* φ² */
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.618rem; /* φ–1 */
}
.page-header__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.118rem; /* √φ */
  line-height: 1.618; /* φ */
}

/* ============================================================
   SECTION LABELS & HEADINGS — BEM
   ============================================================ */
.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric-blue);
  margin-bottom: 0.618rem;
}
.section--dark .section__label { color: var(--cyan-glow); }
.section--alt .section__label { color: var(--electric-blue); }
.section__heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2.618rem;
  color: var(--deep-navy);
  line-height: 1.15;
}
.section--dark .section__heading { color: var(--pure-white); }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.618rem 0;
}
.cta-block__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}
.section--dark .cta-block__title { color: var(--pure-white); }
.cta-block__subtitle {
  font-size: 1rem;
  line-height: 1.618;
  color: var(--gray-700);
  margin-bottom: 2rem;
}
.section--dark .cta-block__subtitle { color: rgba(255,255,255,0.65); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery__filters {
  display: flex;
  gap: 0.618rem;
  margin-bottom: 2.618rem;
  flex-wrap: wrap;
}
.gallery__filter-btn {
  padding: 0.5rem 1.382rem;
  border: 1.5px solid var(--gray-300);
  background: transparent;
  color: var(--gray-700);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 200ms ease;
}
.gallery__filter-btn:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  background: rgba(10,94,184,0.04);
}
.gallery__filter-btn--active {
  background: var(--electric-blue);
  color: var(--pure-white);
  border-color: var(--electric-blue);
  box-shadow: 0 4px 12px rgba(10,94,184,0.25);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.618rem;
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pure-white);
  border: 1px solid var(--gray-100);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery__item-image { overflow: hidden; }
.gallery__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--deep-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.gallery__item-overlay {
  padding: 1rem 1.25rem;
}
.gallery__item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.gallery__item-location {
  font-size: 0.78rem;
  color: var(--electric-blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   ABOUT PAGE — STORY SECTION
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 0.618fr;
  gap: 4.236rem; /* φ³ */
  align-items: center;
}
.story__heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 1.618rem;
  line-height: 1.15;
}
.story__text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.618;
  margin-bottom: 1rem;
}
.story__text:last-child { margin-bottom: 0; }
.story__visual { position: relative; }
.story__placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), var(--deep-navy));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.875rem;
  border: 1px solid rgba(0,212,255,0.08);
}

/* ============================================================
   ABOUT PAGE — VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.618rem;
}
.value-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.618rem;
  border: 1px solid var(--gray-100);
  transition: all 300ms cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--cyan-glow));
  opacity: 0;
  transition: opacity 300ms ease;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-card:hover::before { opacity: 1; }
.value-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(10,94,184,0.08), rgba(0,212,255,0.06));
  border: 1px solid rgba(10,94,184,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.382rem;
  color: var(--electric-blue);
}
.value-card__title {
  font-size: 1.118rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.618rem;
  line-height: 1.25;
}
.value-card__description {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.618;
}

/* ============================================================
   ABOUT PAGE — VALUES LIST
   ============================================================ */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.618rem;
}
.value-item {
  padding-left: 1.618rem;
  border-left: 3px solid var(--electric-blue);
}
.value-item__title {
  font-size: 1.118rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.618rem;
}
.value-item__description {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.618;
}

/* ============================================================
   ABOUT PAGE — TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.618rem;
}
.team-member { text-align: center; }
.team-member__photo { margin-bottom: 1.118rem; }
.team-member__placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--deep-navy));
  border: 2px solid rgba(0,212,255,0.15);
  margin: 0 auto;
}
.team-member__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.25rem;
}
.team-member__role {
  font-size: 0.72rem;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.618rem;
}
.team-member__bio {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.618;
}

/* ============================================================
   CONTACT PAGE — LAYOUT & INFO
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.618fr 1fr;
  gap: 4.236rem;
  align-items: start;
}
.contact-info__heading {
  font-size: 1.618rem;
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 2.618rem;
  line-height: 1.15;
}
.contact-info__item { margin-bottom: 2rem; }
.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric-blue);
  margin-bottom: 0.618rem;
  display: block;
}
.contact-info__link {
  display: flex;
  align-items: center;
  gap: 0.618rem;
  font-size: 1.118rem;
  color: var(--deep-navy);
  font-weight: 600;
  transition: color 200ms ease;
  text-decoration: none;
}
.contact-info__link:hover { color: var(--electric-blue); }
.contact-info__link svg { color: var(--electric-blue); flex-shrink: 0; }
.contact-info__hours { display: flex; flex-direction: column; }
.contact-info__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.618rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info__hours-row:first-child { border-top: 1px solid var(--gray-100); }
.contact-info__hours-day {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}
.contact-info__hours-time {
  font-size: 0.875rem;
  color: var(--deep-navy);
  font-weight: 700;
}
.contact-info__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.contact-info__map-placeholder {
  background: var(--gray-100);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.618rem;
  min-height: 160px;
  color: var(--gray-500);
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
}
.contact-info__map-placeholder svg { color: var(--electric-blue); }
.contact-info__list {
  list-style: none;
  padding: 0;
}
.contact-info__list li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.382rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.contact-info__list li::before {
  content: '→';
  color: var(--electric-blue);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ============================================================
   CONTACT PAGE — FORM
   ============================================================ */
.contact-form-wrapper {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: 2.618rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
/* Subpage-specific form styles (extends consolidated .form-input above) */
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 0.382rem;
  letter-spacing: 0.01em;
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.618;
}
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.618rem;
  margin-bottom: 1.618rem;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--electric-blue);
  cursor: pointer;
}
.form-label--checkbox {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.618;
  cursor: pointer;
}
.form-label--checkbox a { color: var(--electric-blue); text-decoration: underline; text-underline-offset: 2px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .quote-wrapper { grid-template-columns: 1fr; }
  /* Gallery / About / Contact */
  .story { grid-template-columns: 1fr; gap: 2.618rem; }
  .story__visual { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 2.618rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-height: 60px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--header-height); left: 0; right: 0; bottom: 0;
    background: var(--deep-navy); padding: 1.5rem; z-index: 999; overflow-y: auto;
  }
  /* Show CTA inside open mobile menu */
  .nav__links.open ~ .nav__cta {
    display: inline-flex; margin: 1.5rem; text-align: center; justify-content: center;
    position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 1000;
  }
  .nav__links.open li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__links.open a { display: block; padding: 1rem 0; font-size: 1rem; }
  .nav__links.open .has-dropdown .nav__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding-left: 1rem; min-width: auto; background: transparent; border: none;
  }
  .hero__title { font-size: 2.4rem; }
  .hero__stats { flex-wrap: wrap; gap: 1.618rem; /* φ */ }
  .services-grid, .process-steps, .gallery-grid-preview, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row, .inline-form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 2.618rem 0; /* φ² */ }
  /* .section-heading removed — using .section__heading only */
  .section__heading { font-size: 1.7rem; margin-bottom: 1.618rem; }
  .service-features { grid-template-columns: 1fr; }
  /* Gallery / About / Contact mobile */
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__filters { gap: 0.382rem; }
  .gallery__filter-btn { font-size: 0.8rem; padding: 0.4rem 1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; gap: 1.618rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 2.618rem; /* φ² */ }
  .contact-form-wrapper { padding: 1.618rem; }
  .page-header__title { font-size: 1.8rem; }
  .cta-block__title { font-size: 1.618rem; }
}
@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.382rem; /* φ-derived */ }
}
