@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --navy: #1a2e4a;
  --navy-dark: #11202f;
  --olive: #5c7a3f;
  --olive-dark: #4a6432;
  --olive-light: #7a9659;
  --cream: #f4f1ea;
  --cream-dark: #ece8df;
  --charcoal: #2b2b2b;
  --text-muted: #5c5c5c;
  --border: #ddd8cc;
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Source Sans 3', 'Gill Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--olive);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 88px;
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px;
}
.branding .logo {
  height: 68px;
  width: auto;
  display: block;
}
.branding .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.branding .brand-text .name {
  font-family: var(--font-display);
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.01em;
}
.branding .brand-text .tagline {
  font-size: 10px;
  color: var(--olive-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
nav ul li a.nav-cta {
  background: var(--olive);
  color: #fff;
  margin-left: 8px;
}
nav ul li a.nav-cta:hover { background: var(--olive-dark); }

/* ── HERO ── */
.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 76px 24px 64px;
  text-align: center;
  overflow: hidden;
}
.page-hero > * { position: relative; z-index: 1; }

.page-hero .breadcrumb {
  font-size: 12px;
  font-weight: 700;
  color: var(--olive-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.page-hero h1 .accent { color: var(--olive-light); }

.page-hero p.subline {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 30px;
  font-weight: 400;
}

/* ── SKYLINE DIVIDER (signature element) ── */
.skyline-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.skyline-wrap svg { width: 100%; height: auto; display: block; }

/* ── CTA BUTTON ── */
.cta-button {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.cta-button:hover { background: var(--olive-dark); transform: translateY(-1px); }

.cta-button.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.cta-button.outline:hover { background: rgba(255,255,255,0.1); }

/* ── SECTION WRAPPER ── */
.section-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.divider {
  width: 52px;
  height: 4px;
  background: var(--olive);
  margin: 0 0 32px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 36px;
  color: #fff;
  flex: 1 1 260px;
  max-width: 340px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.trust-text .trust-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.trust-text .trust-desc {
  font-size: 13px;
  opacity: 0.7;
}

/* ── SERVICE CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 10px 28px rgba(26,46,74,0.12); transform: translateY(-3px); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── BG VARIANTS ── */
.bg-cream-dark { background: var(--cream-dark); }
.bg-navy { background: var(--navy); color: #fff; }

/* ── SERVICE AREA BAR ── */
.service-area-bar {
  background: var(--navy);
  color: #fff;
  padding: 36px 24px;
  text-align: center;
}
.service-area-bar h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 14px;
}
.town-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
  opacity: 0.8;
}
.town-list span { padding: 0 14px; border-right: 1px solid rgba(255,255,255,0.2); }
.town-list span:last-child { border-right: none; }

/* ── ABOUT / OWNER ── */
.owner-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 600px) { .owner-grid { grid-template-columns: 1fr; } }

.owner-photo {
  width: 200px; height: 200px;
  border-radius: 10px;
  object-fit: cover;
  border: 4px solid var(--olive);
}
.owner-bio h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.owner-bio p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
}
.contact-line a { color: var(--navy); font-weight: 700; text-decoration: none; }
.contact-line a:hover { color: var(--olive); }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.form-container iframe { width: 100%; border: none; border-radius: 8px; min-height: 600px; }

.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 20px;
}
.info-box .section-label { margin-bottom: 8px; }
.info-box p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── STICKY CTA ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -2px 14px rgba(0,0,0,0.2);
  border-top: 3px solid var(--olive);
}
.sticky-cta.visible { display: flex; }
.sticky-cta p { margin: 0; font-size: 14px; opacity: 0.9; }
.sticky-cta a {
  background: var(--olive);
  color: #fff;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.sticky-cta a:hover { background: var(--olive-dark); }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 26px 24px;
  font-size: 13px;
}
footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
footer a:hover { color: #fff; }

/* ── COOKIE BANNER ── */
#cookie-banner a { color: var(--olive-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section-wrap { padding: 48px 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .owner-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-item { padding: 20px 24px; max-width: none; }
}

@media (max-width: 640px) {
  nav { height: auto; padding: 12px 16px; flex-wrap: wrap; gap: 8px; }
  nav ul { width: 100%; justify-content: center; flex-wrap: wrap; gap: 2px; }
  nav ul li a { font-size: 12px; padding: 6px 10px; }
  .branding .logo { height: 44px; }
  .branding .brand-text .name { font-size: 16px; }
}

@media (max-width: 420px) {
  .page-hero { padding: 56px 16px 48px; }
  .page-hero h1 { font-size: 1.6rem; }
  .section-wrap { padding: 40px 16px; }
  .section-title { font-size: 1.3rem; }
  .cta-button { padding: 12px 24px; font-size: 14px; }
  .sticky-cta { flex-direction: column; align-items: stretch; gap: 8px; }
  .sticky-cta p { text-align: center; }
  .sticky-cta a { text-align: center; }
}
