*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1929;
  --navy-mid: #15293f;
  --slate: #2d4a63;
  --gold: #c8a96e;
  --gold-light: #e6cb91;
  --gold-deep: #a8884e;
  --cream: #f8f5ef;
  --warm: #faf7f1;
  --white: #ffffff;
  --text: #0f1e2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e8e2d6;
  --border-soft: #f0ebe0;
  --serif: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 10px rgba(15, 30, 46, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 30, 46, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 30, 46, 0.12);
  --shadow-xl: 0 30px 80px rgba(15, 30, 46, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* TRUST BAR */
.trust-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: #060f1a;
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(200,169,110,0.18);
  flex-wrap: wrap;
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
}

.trust-bar-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* NAV */
nav.site-nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.005em;
  font-weight: 400;
}

.nav-logo span { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.015em;
  position: relative;
}

.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.7rem 1.6rem !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em !important;
  transition: all 0.25s !important;
  box-shadow: 0 4px 14px rgba(200,169,110,0.25);
}

.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,169,110,0.35); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 110px; left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem 2rem 2rem;
  z-index: 99;
  border-bottom: 1px solid rgba(200,169,110,0.2);
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.01em;
}

.mobile-menu a.cta-mobile {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  border: none;
  margin-top: 1rem;
}

main { padding-top: 110px; }

/* BUTTONS */
.btn-primary,
.btn-outline,
.btn-dark,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(200,169,110,0.3);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,169,110,0.4); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.04);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,110,0.08); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10,25,41,0.18);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,25,41,0.25); }

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-light:hover { background: var(--cream); transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 2rem 6rem;
  background: var(--navy);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(135deg, rgba(10,25,41,0.92) 0%, rgba(10,25,41,0.78) 60%, rgba(10,25,41,0.92) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200,169,110,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}

.stars svg { width: 14px; height: 14px; fill: currentColor; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
  max-width: 880px;
  font-weight: 400;
}

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

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.hero-trust-pill svg { width: 14px; height: 14px; color: var(--gold); }

/* AWARDS / FEATURED STRIP */
.awards-strip {
  background: var(--white);
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.awards-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.awards-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  opacity: 0.85;
}

.award-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.award-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* SECTIONS */
section {
  padding: 7rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  font-weight: 400;
  max-width: 800px;
}

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

.section-sub {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.7;
  font-weight: 300;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* INDUSTRIES (PHOTO CARDS) */
.industries-section { background: var(--warm); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.photo-card {
  position: relative;
  display: block;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.photo-card-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}

.photo-card:hover .photo-card-img { transform: scale(1.06); }

.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,25,41,0.1) 0%, rgba(10,25,41,0.45) 50%, rgba(10,25,41,0.92) 100%);
  z-index: -1;
}

.photo-card-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.photo-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.photo-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.photo-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin-bottom: 1rem;
  font-weight: 300;
}

.photo-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
}

.photo-card-arrow svg { width: 14px; height: 14px; transition: transform 0.3s; }
.photo-card:hover .photo-card-arrow svg { transform: translateX(4px); }

/* SERVICES (LIGHT PHOTO CARDS) */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card-v2 {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}

.service-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-card-img {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,25,41,0.25) 100%);
}

.service-card-body { padding: 1.5rem 1.5rem 1.75rem; }

.service-card-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

/* PROMISES (NUMBERED CARDS) */
.promises-section { background: var(--cream); }

.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.promise-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.promise-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.promise-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.promise-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  position: relative;
}

.testimonial-card .stars { margin-bottom: 1.25rem; }
.testimonial-card .stars svg { width: 16px; height: 16px; }

.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

/* FAQ */
.faq-section { background: var(--warm); }

.faq-list {
  max-width: 860px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 1.75rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: var(--sans);
}

.faq-item[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 1.75rem 1.75rem;
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 300;
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.12) 0%, transparent 70%);
  z-index: -1;
}

.cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cta-strip p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.cta-strip .btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.cta-strip-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* AREAS */
.areas-section { background: var(--white); }

.areas-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.areas-region-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  font-weight: 400;
}

.areas-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.areas-list li {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: all 0.2s;
}

.areas-list li:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* CONTACT */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.contact-info > p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; color: var(--gold); }

.contact-detail a { color: var(--text-mid); }
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}

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

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

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* INTERIOR PAGES */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 5rem 2rem 4rem;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,169,110,0.12) 0%, transparent 70%);
  z-index: -1;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 700px;
  font-weight: 300;
  line-height: 1.65;
}

.breadcrumbs {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.75);
}

.breadcrumbs a:hover { color: var(--gold); }

.breadcrumbs span { color: var(--gold); }

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.service-body h2 {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-body h2:first-child { margin-top: 0; }

.service-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 1.75rem 0 0.6rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.service-body p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  font-weight: 300;
}

.service-body ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-body ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.97rem;
  color: var(--text-mid);
  position: relative;
  line-height: 1.65;
  font-weight: 300;
}

.service-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.service-body a { color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--gold); }
.service-body a:hover { color: var(--gold); }

.service-sidebar {
  position: sticky;
  top: 130px;
}

.sidebar-quote-box {
  background: var(--navy);
  color: var(--white);
  padding: 2.25rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.sidebar-quote-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,169,110,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.sidebar-quote-box h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  font-weight: 400;
  position: relative;
  letter-spacing: -0.01em;
}

.sidebar-quote-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  position: relative;
  font-weight: 300;
}

.sidebar-quote-box .btn-primary { width: 100%; }

.sidebar-call {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}

.sidebar-call h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.sidebar-call a.tel {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.sidebar-call .hours {
  color: var(--text-mid);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 300;
}

.sidebar-services {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 14px;
}

.sidebar-services h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.sidebar-services ul { list-style: none; }

.sidebar-services ul li a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 400;
}

.sidebar-services ul li:last-child a { border-bottom: none; }
.sidebar-services ul li a:hover { color: var(--gold); padding-left: 0.4rem; }

.suburb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 2rem;
}

.suburb-pill {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: all 0.2s;
}

.suburb-pill:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* CREDENTIALS STRIP */
.credentials-strip {
  background: var(--navy);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(200,169,110,0.15);
  position: relative;
  isolation: isolate;
}

.credentials-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.08) 0%, transparent 70%);
  z-index: -1;
}

.credentials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem 2rem;
  text-align: center;
}

.credential-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin: 0 auto 1rem;
  display: block;
}

.credential-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.credential-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  font-weight: 300;
}

/* FOOTER */
footer.site-footer {
  background: #060f1a;
  color: rgba(255,255,255,0.55);
  padding: 5rem 2rem 3rem;
  border-top: 1px solid rgba(200,169,110,0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 400;
}

.footer-brand span { color: var(--gold); font-style: italic; }

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
  max-width: 360px;
}

.footer-contact a {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  display: block;
  padding: 0.4rem 0;
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 0.3rem; }

.footer-bottom {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* PHONE BAR */
.phone-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  padding: 1rem 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 90;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .trust-bar { font-size: 0.7rem; gap: 0.85rem; padding: 0.45rem 1rem; }
  .trust-bar-item:nth-child(n+3) { display: none; }
  nav.site-nav { top: 32px; padding: 0 1.25rem; height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .phone-bar { display: flex; }
  .mobile-menu { top: 96px; }
  main { padding-top: 96px; padding-bottom: 60px; }
  section { padding: 4.5rem 1.25rem; }
  .hero { padding: 5rem 1.25rem 5rem; min-height: auto; }
  .hero-actions { gap: 0.75rem; }
  .hero-trust-pills { gap: 0.5rem; }
  .awards-row { gap: 1.5rem; }
  .award-item { font-size: 0.92rem; }
  .areas-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { padding: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .page-content { padding: 3rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
  .photo-card { height: 320px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .promise-card { padding: 2rem 1.5rem; }
}
