  :root {
    --navy: #1e3a5f;
    --ocean: #1e3a5f;
    --seafoam: #00aadd;
    --sand: #f4f8fc;
    --warm-white: #ffffff;
    --rust: #f5820d;
    --orange-red: #e84117;
    --sky: #00aadd;
    --light-gray: #dde8f0;
    --text-dark: #1e3a5f;
    --text-mid: #3a5270;
  }

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

  body {
    font-family: 'Lato', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    font-weight: 300;
  }

  /* ── HEADER ── */
  header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .header-top {
    background: var(--rust);
    text-align: center;
    padding: 7px 20px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: white;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .header-top a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
  }

  .header-top a:hover { color: rgba(255,255,255,0.8); }

  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .logo img {
    height: 64px;
    width: auto;
    display: block;
  }

  nav { display: flex; gap: 8px; align-items: center; }

  nav a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: all 0.2s;
    font-weight: 400;
  }

  nav a:hover, nav a.active {
    color: white;
    background: rgba(255,255,255,0.12);
  }

  .nav-cta {
    background: var(--rust) !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 9px 18px !important;
  }

  .nav-cta:hover { background: var(--orange-red) !important; }

  /* ── PAGES ── */
  .page { display: none; animation: fadeIn 0.4s ease; }
  .page.active { display: block; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── HERO ── */
  .hero {
    background: url('../images/banner.jpg') center center / cover no-repeat, linear-gradient(160deg, var(--navy) 0%, #1e5a8a 60%, var(--sky) 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 48px 110px;
    min-height: 520px;
    display: flex;
    align-items: center;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30,58,95,0.88) 0%, rgba(30,58,95,0.55) 60%, rgba(30,58,95,0.1) 100%);
    pointer-events: none;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L0,120Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
    pointer-events: none;
    z-index: 2;
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--sand);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: white;
    line-height: 1.15;
    max-width: 620px;
    margin-bottom: 20px;
  }

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

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 36px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--rust);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 3px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--orange-red); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 13px 28px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 3px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--sand);
    border-bottom: 3px solid var(--sky);
    padding: 18px 48px;
  }

  .trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    text-transform: uppercase;
    font-weight: 700;
  }

  .trust-item span.dot { color: var(--rust); font-size: 1.1rem; }

  /* ── SECTION BASE ── */
  section {
    padding: 72px 48px;
  }

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

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 700;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .section-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 680px;
  }

  hr.divider {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 48px 0;
  }

  /* ── WELCOME SECTION ── */
  .welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 16px;
  }

  .welcome-photo {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .welcome-photo-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.4);
  }

  .welcome-photo-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .welcome-photo-placeholder p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ── SERVICES GRID ── */
  .services-section { background: var(--sand); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .service-card {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    padding: 28px 26px;
    transition: all 0.25s;
    border-top: 3px solid transparent;
  }

  .service-card:hover {
    border-top-color: var(--rust);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30,58,95,0.12);
  }

  .service-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }

  .service-icon svg { width: 20px; height: 20px; fill: white; }

  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-mid);
  }

  /* ── EMERGENCY BAND ── */
  .emergency-band {
    background: var(--navy);
    padding: 48px 48px;
  }

  .emergency-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .emergency-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 6px;
  }

  .emergency-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
  }

  /* ── CONTACT SECTION ── */
  .contact-section { background: white; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 40px;
  }

  .contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
  }

  .contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--seafoam);
    font-weight: 700;
  }

  .contact-value {
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 400;
  }

  .contact-value a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-value a:hover { color: var(--ocean); }

  /* ── CONTACT FORM ── */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }

  .form-group { display: flex; flex-direction: column; gap: 6px; }

  .form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    font-weight: 700;
  }

  .form-group input,
  .form-group textarea {
    border: 1px solid var(--light-gray);
    border-radius: 3px;
    padding: 11px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--ocean); }

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

  .form-success {
    display: none;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 3px;
    padding: 14px 18px;
    color: #2e7d32;
    font-size: 0.9rem;
  }

  .map-wrap {
    margin-top: 48px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30,58,95,0.12);
  }

  /* ── SERVICE AREA RIBBON ── */
  .area-ribbon {
    background: var(--sky);
    padding: 16px 48px;
    text-align: center;
  }

  .area-ribbon p {
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.7;
  }

  .area-ribbon strong { color: white; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 40px 48px 24px;
  }

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

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--seafoam);
    margin-bottom: 16px;
    font-weight: 700;
  }

  .footer-col p, .footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: white; }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
  }

  .footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
  }

  /* ── ABOUT PAGE ── */
  .about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
    padding: 72px 48px;
    text-align: center;
  }

  .about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 14px;
  }

  .about-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .about-content {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
  }

  .about-photo {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--seafoam) 0%, var(--navy) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
  }

  .about-text p:first-child {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 400;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .value-card {
    background: var(--sand);
    border-radius: 4px;
    padding: 28px 24px;
    border-left: 3px solid var(--rust);
  }

  .value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .value-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-mid);
  }

  /* ── SERVICES PAGE ── */
  .services-hero {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
    padding: 72px 48px;
    text-align: center;
  }

  .services-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 14px;
  }

  .services-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .services-full {
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-full-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--light-gray);
  }

  .service-full-item:last-child { border-bottom: none; }

  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--light-gray);
    line-height: 1;
    font-weight: 700;
  }

  .service-full-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .service-full-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
  }

  /* ── LICENSE BADGE ── */
  .license-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sand);
    border: 1px solid var(--light-gray);
    border-radius: 3px;
    padding: 12px 20px;
    margin-top: 32px;
  }

  .license-badge span {
    font-size: 0.8rem;
    color: var(--text-mid);
    letter-spacing: 0.05em;
  }

  .license-badge strong { color: var(--navy); }

  @media (max-width: 768px) {
    .header-main { padding: 14px 20px; }
    nav a { padding: 6px 8px; font-size: 0.78rem; }
    section { padding: 48px 20px; }
    .hero { padding: 60px 20px 80px; }
    .welcome-grid, .contact-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr; }
    .emergency-inner { flex-direction: column; }
    .trust-bar { padding: 14px 20px; }
    .area-ribbon { padding: 14px 20px; }
    footer { padding: 32px 20px 20px; }
  }
