:root {
  --navy: #101b2b;
  --navy-soft: #182b43;
  --blue: #2f72b8;
  --blue-dark: #235a91;
  --cream: #f6f3ee;
  --sand: #e6ddd0;
  --white: #ffffff;
  --text: #24303d;
  --muted: #657180;
  --border: rgba(16, 27, 43, 0.14);
  --shadow: 0 18px 45px rgba(12, 29, 48, 0.12);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--white); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.topbar { background: var(--navy); color: rgba(255,255,255,.78); font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 18px; }
.topbar a:hover { color: #fff; }

.navbar { background: rgba(255,255,255,.97); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 30; }
.nav-inner { min-height: 82px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.brand img { width: 230px; height: 62px; object-fit: contain; object-position: left center; }
.nav-menu { display: flex; align-items: center; gap: 22px; color: var(--navy); font-size: 14px; font-weight: 700; }
.nav-menu > a:not(.btn):hover { color: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 9px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid var(--blue); border-radius: 3px; background: var(--blue); color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .02em; transition: .2s ease; cursor: pointer; }
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.btn-small { min-height: 40px; padding-inline: 15px; font-size: 13px; }
.btn-outline { background: transparent; color: var(--blue-dark); }
.btn-outline:hover { color: #fff; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover { background: var(--cream); border-color: var(--cream); color: var(--navy); }

.hero { min-height: 650px; position: relative; display: grid; align-items: center; isolation: isolate; }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image { background-image: url('images/hero.jpg'); background-size: cover; background-position: center; z-index: -3; }
.hero-overlay { background: linear-gradient(90deg, rgba(12,24,38,.88) 0%, rgba(12,24,38,.72) 42%, rgba(12,24,38,.16) 80%, rgba(12,24,38,.05) 100%); z-index: -2; }
.hero-inner { padding-block: 78px; }
.hero-card { max-width: 720px; color: #fff; }
.eyebrow { margin: 0 0 13px; color: var(--blue); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
.hero .eyebrow, .areas-section .eyebrow { color: #94c7ff; }
h1, h2, h3 { color: var(--navy); line-height: 1.08; margin-top: 0; }
h1 { margin-bottom: 20px; color: #fff; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(44px, 6vw, 76px); font-weight: 700; letter-spacing: -.045em; }
h2 { margin-bottom: 16px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.035em; }
h3 { margin-bottom: 10px; font-size: 20px; }
.hero-copy { max-width: 660px; margin: 0; color: rgba(255,255,255,.88); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; color: rgba(255,255,255,.84); font-size: 14px; font-weight: 700; }
.hero-trust span::before { content: '✓'; margin-right: 7px; color: #9ed1ff; }

.intro-strip { background: var(--cream); border-bottom: 1px solid var(--border); padding: 46px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 80px; align-items: center; }
.intro-grid h2 { margin-bottom: 0; font-size: clamp(30px, 3.6vw, 46px); }
.intro-grid > p { margin: 0; color: var(--muted); font-size: 17px; }
.section { padding: 100px 0; }
.section-muted { background: var(--cream); }
.section-heading { max-width: 730px; margin-bottom: 38px; }
.section-heading p:last-child, .lead { color: var(--muted); font-size: 17px; }
.centered { margin-inline: auto; text-align: center; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: .22s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-content { padding: 22px 20px 24px; }
.service-content p { margin: 0; color: var(--muted); font-size: 15px; }
.featured-card { grid-column: span 2; display: grid; grid-template-columns: 1.15fr 1fr; }
.featured-card img { height: 100%; min-height: 270px; }
.featured-card .service-content { align-self: center; padding: 30px; }
.featured-card h3 { font-size: 27px; }
.more-services { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; font-size: 13px; }
.more-services span { padding: 8px 11px; border-radius: 999px; background: var(--cream); color: var(--navy-soft); }
.more-services span:first-child { padding-left: 0; background: transparent; color: var(--muted); font-weight: 800; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-image-wrap { position: relative; padding: 0 28px 28px 0; }
.why-image-wrap > img { width: 100%; min-height: 560px; object-fit: cover; border-radius: var(--radius); }
.experience-card { position: absolute; right: 0; bottom: 0; width: 190px; padding: 20px; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.experience-card strong { display: block; font-family: Georgia, serif; color: #95c9ff; font-size: 58px; line-height: .9; }
.experience-card span { display: block; margin-top: 10px; font-size: 14px; font-weight: 700; }
.benefit-list { display: grid; gap: 16px; margin-top: 26px; }
.benefit-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 10px; padding-top: 16px; border-top: 1px solid var(--border); }
.benefit-list span { color: var(--blue); font-weight: 900; font-size: 13px; }
.benefit-list h3 { margin-bottom: 5px; font-size: 18px; }
.benefit-list p { margin: 0; color: var(--muted); font-size: 15px; }

.reviews-section { background: var(--navy); }
.reviews-section h2 { color: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 27px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); color: #fff; }
.stars { color: #ffd071; letter-spacing: 3px; }
blockquote { margin: 18px 0 24px; color: rgba(255,255,255,.9); font-family: Georgia, serif; font-size: 18px; line-height: 1.55; }
.review-card p { margin: 0; font-weight: 800; font-size: 14px; }
.review-card span { color: rgba(255,255,255,.54); font-weight: 500; }

.gallery-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.gallery-heading h2 { margin-bottom: 0; }
.text-link { color: var(--blue-dark); font-weight: 900; }
.text-link span { font-size: 20px; }
.gallery-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-auto-rows: 240px; gap: 13px; }
.gallery-grid figure { position: relative; overflow: hidden; margin: 0; border-radius: 10px; }
.gallery-large { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0 0; padding: 26px 15px 13px; color: #fff; background: linear-gradient(transparent, rgba(10,21,34,.8)); font-size: 13px; font-weight: 800; }

.areas-section { padding: 63px 0; background: var(--blue-dark); color: #fff; }
.areas-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 40px; align-items: center; }
.areas-grid h2 { margin: 0; color: #fff; font-size: clamp(30px, 3vw, 44px); }
.areas-grid p { margin: 0; color: rgba(255,255,255,.82); }
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 68px; align-items: start; }
.contact-details { display: grid; gap: 12px; margin-top: 32px; }
.contact-details a, .contact-details div { display: grid; gap: 3px; padding: 16px 0; border-top: 1px solid var(--border); }
.contact-details span { color: var(--blue-dark); text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 900; }
.contact-details strong { color: var(--navy); overflow-wrap: anywhere; }
.quote-form { display: grid; gap: 13px; padding: 29px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.quote-form h3 { margin-bottom: 6px; font-family: Georgia, serif; font-size: 28px; }
.quote-form label { display: grid; gap: 5px; color: var(--navy); font-size: 13px; font-weight: 800; }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; border: 1px solid var(--border); border-radius: 4px; background: #fff; padding: 12px; color: var(--text); }
.quote-form textarea { resize: vertical; }
.quote-form .btn { width: 100%; margin-top: 4px; }
.site-footer { padding: 58px 0 22px; background: var(--navy); color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr; gap: 55px; }
.footer-brand img { width: 240px; height: 64px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 370px; }
.site-footer h3 { color: #fff; font-size: 15px; }
.site-footer a { display: block; margin: 8px 0; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 35px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.footer-bottom p { margin: 0; }
.mobile-call { display: none; }

@media (max-width: 980px) {
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-links a:last-child { display: none; }
  .menu-toggle { display: block; }
  .nav-menu { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 18px; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); box-shadow: 0 15px 22px rgba(12,29,48,.08); }
  .nav-menu.open { display: grid; gap: 14px; }
  .nav-menu .btn { width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-column: span 2; }
  .why-grid, .contact-grid { gap: 38px; }
  .areas-grid { grid-template-columns: 1fr; gap: 18px; }
  .areas-grid .btn { justify-self: start; }
}

@media (max-width: 720px) {
  body { padding-bottom: 58px; }
  .container { width: min(100% - 28px, 620px); }
  .navbar .container { width: min(100% - 22px, 620px); }
  .nav-inner { min-height: 70px; }
  .brand img { width: 188px; height: 52px; }
  .hero { min-height: 620px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(12,24,38,.93), rgba(12,24,38,.72)); }
  .hero-inner { padding-block: 58px; }
  h1 { font-size: clamp(43px, 13vw, 61px); }
  .hero-copy { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 8px; }
  .intro-strip { padding: 36px 0; }
  .intro-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 25px; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 27px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .featured-card { grid-column: auto; display: block; }
  .featured-card img, .service-card img { height: 210px; min-height: auto; }
  .featured-card .service-content { padding: 22px 20px 24px; }
  .featured-card h3 { font-size: 21px; }
  .why-image-wrap { padding: 0 18px 18px 0; }
  .why-image-wrap > img { min-height: 400px; }
  .experience-card { width: 154px; padding: 16px; }
  .experience-card strong { font-size: 48px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-heading { display: block; }
  .gallery-heading .text-link { display: inline-block; margin-top: 14px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-large { grid-column: span 2; grid-row: auto; }
  .gallery-grid figure:last-child { display: none; }
  .quote-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand img { width: 220px; }
  .mobile-call { position: fixed; z-index: 40; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; min-height: 58px; background: var(--blue); color: #fff; font-weight: 900; box-shadow: 0 -5px 18px rgba(0,0,0,.18); }
}
