/* ============ VARIABLES ============ */
:root {
  --navy: #062A54;
  --cobalt: #0874D9;
  --green: #69BE28;
  --white: #FFFFFF;
  --soft-gray: #F3F6F8;
  --text-dark: #1B2733;
  --text-muted: #4C5C6B;

  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(6, 42, 84, 0.10);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-title);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-weight: 700; font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-weight: 700; font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: var(--cobalt); text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(105, 190, 40, 0.35);
}
.btn-primary:hover { background: #5aa722; }

.btn-ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-block { width: 100%; text-align: center; border: none; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(6,42,84,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo-img { height: 63px; display: block; }

.main-nav { display: flex; align-items: center; }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-menu a:hover { color: var(--cobalt); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--cobalt) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3a70 55%, var(--cobalt) 100%);
  color: var(--white);
  padding: 90px 0 70px;
}

.hero-inner { max-width: 780px; }

.eyebrow {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

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

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
}
.hero-tags li {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ============ SECTION LABELS ============ */
.section-label {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--cobalt);
  margin-bottom: 10px;
}
.section-label-light { color: var(--green); }
.section-title-light { color: var(--white); }
.section-intro-light { color: rgba(255,255,255,0.85); max-width: 640px; }

/* ============ ABOUT ============ */
.about {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.about::before {
  width: 340px;
  height: 340px;
  background: var(--cobalt);
  opacity: 0.06;
  top: -100px;
  right: -80px;
}

.about::after {
  width: 280px;
  height: 280px;
  background: var(--green);
  opacity: 0.07;
  bottom: -90px;
  left: -60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-copy p { font-size: 1.05rem; }

.about .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about .section-label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
}

.about-stat-card {
  background: var(--soft-gray);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-block { border-left: 4px solid var(--green); padding-left: 16px; }

.value-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--cobalt);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.value-desc { display: block; color: var(--text-muted); font-size: 0.95rem; }

/* ============ WHO WE SERVE ============ */
.who-we-serve {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  text-align: left;
  max-width: 800px;
}

.serve-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.serve-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.serve-card h3 { color: var(--white); }
.serve-card p { color: rgba(255,255,255,0.78); margin-bottom: 14px; }
.serve-card p:last-of-type { margin-bottom: 0; }

.serve-examples {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6) !important;
}
.serve-examples strong { color: rgba(255,255,255,0.85); }

/* ============ PHOTO FRAMES ============ */
.photo-frame {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-frame-banner {
  aspect-ratio: auto;
  height: 220px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.serve-card .photo-frame {
  margin-top: auto;
  width: 100%;
}

.serve-card .photo-frame img {
  object-position: center 30%;
}

.who-we-serve .section-title-light,
.who-we-serve .section-label,
.who-we-serve .section-intro-light { text-align: left; }

.service-area-block {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}

.service-area-label {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.town-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 0;
  margin: 0;
}

.town-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ============ HOW IT WORKS ============ */
.how-it-works { padding: 80px 0; background: var(--white); }

.section-intro { max-width: 640px; font-size: 1.05rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step-item {
  background: var(--soft-gray);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}

.step-item h3 { font-size: 1.05rem; }
.step-item p { font-size: 0.95rem; margin-bottom: 0; }

/* ============ SERVICES ============ */
.services { padding: 80px 0; background: var(--soft-gray); }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  flex: 0 1 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}

.service-item h3 { font-size: 1.05rem; }
.service-item p { font-size: 0.95rem; margin-bottom: 0; }

/* ============ WHY US ============ */
.why-us { padding: 80px 0; background: var(--white); }

.why-grid { max-width: 720px; }

.why-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li {
  padding-left: 32px;
  position: relative;
  color: var(--text-muted);
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.why-list strong { color: var(--navy); }

/* ============ CONTACT ============ */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3a70 100%);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-details { margin-top: 24px; }
.contact-details p { color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.contact-details a { color: var(--green); }

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

label {
  display: block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #D7E0E8;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-dark);
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(8, 116, 217, 0.15);
}

.hidden-field { position: absolute; left: -9999px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  padding: 40px 0;
  text-align: center;
}

.footer-logo { height: 34px; margin-bottom: 12px; filter: brightness(0) invert(1); }

.footer-tagline {
  font-family: var(--font-title);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-copy { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .service-item {
    flex-basis: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 12px 20px rgba(6,42,84,0.08);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row-half { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 50px; }
  .logo-img { height: 50px; }
}

@media (max-width: 480px) {
  .service-item { flex-basis: 100%; max-width: 100%; }
}
