:root {
  --navy: #073b4c;
  --blue: #0b6f91;
  --aqua: #19bfd0;
  --aqua-soft: #dff8f9;
  --sand: #f3eadb;
  --sand-strong: #dec99e;
  --gold: #c8a45d;
  --white: #ffffff;
  --ink: #173642;
  --muted: #607782;
  --shadow: 0 24px 70px rgba(7, 59, 76, .15);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, sans-serif;
  background: linear-gradient(180deg, #fff 0%, #f8fcfc 45%, #fff 100%);
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; color: var(--navy); }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(2.7rem, 7vw, 6.1rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.35rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 111, 145, .12);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; color: var(--navy); min-width: max-content; }
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(25, 191, 208, .38);
  box-shadow: 0 10px 28px rgba(11, 111, 145, .24);
  background: #02101d;
}
.brand small { display: block; color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; }
.main-nav { display: flex; align-items: center; gap: .25rem; font-size: .9rem; font-weight: 700; }
.main-nav a { padding: .65rem .75rem; border-radius: var(--radius); color: #244b58; }
.main-nav a:hover, .main-nav a.active { background: var(--aqua-soft); color: var(--blue); }
.nav-cta { background: var(--navy) !important; color: white !important; box-shadow: 0 12px 28px rgba(7, 59, 76, .2); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--navy); border-radius: var(--radius); padding: .65rem; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: white; }

.hero { position: relative; min-height: 92vh; display: grid; align-items: center; overflow: hidden; padding: 7rem clamp(1rem, 6vw, 5rem) 8rem; isolation: isolate; }
.hero-media, .page-hero::before {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?auto=format&fit=crop&w=2200&q=82") center/cover no-repeat;
  z-index: -3;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 47, 63, .86), rgba(4, 47, 63, .52) 46%, rgba(4, 47, 63, .12)); z-index: -2; }
.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -5rem;
  height: 13rem;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  z-index: -1;
}
.hero-content { max-width: var(--max); width: 100%; margin: 0 auto; color: white; }
.hero h1, .hero p { color: white; }
.hero-subtitle { max-width: 760px; font-size: clamp(1.05rem, 2vw, 1.35rem); opacity: .94; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .15em; text-transform: uppercase; font-size: .75rem; margin-bottom: .8rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}
.btn.primary { color: white; background: linear-gradient(135deg, var(--blue), var(--aqua)); box-shadow: 0 18px 42px rgba(25, 191, 208, .26); }
.btn.secondary { color: white; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }
.btn.outline { border-color: rgba(11,111,145,.22); color: var(--blue); background: white; }
.btn.call { color: var(--navy); background: var(--sand); }
.btn.secondary-light { color: var(--navy); background: white; border-color: rgba(255,255,255,.6); }
.hero-proof { margin-top: 2rem; max-width: 520px; padding: .85rem 1rem; border-left: 4px solid var(--gold); background: rgba(255,255,255,.13); border-radius: var(--radius); font-weight: 800; }
.brand-seal {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
  padding: .55rem .8rem .55rem .55rem;
  color: white;
  background: rgba(2, 16, 29, .42);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(2,16,29,.22);
  font-weight: 900;
}
.brand-seal img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
}
.brand-seal small {
  display: block;
  color: #bdf8ff;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .68rem;
}

.section { max-width: var(--max); margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem); }
.section-tight { max-width: var(--max); margin: -3rem auto 0; position: relative; z-index: 4; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading.center, .center { text-align: center; }
.center { margin-top: 2rem; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trust-item { display: grid; place-items: center; gap: .45rem; text-align: center; font-size: .82rem; font-weight: 800; color: var(--navy); padding: .7rem .4rem; }
.icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--blue); background: var(--aqua-soft); border: 1px solid rgba(25,191,208,.22); }
.card-grid { display: grid; gap: 1.2rem; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card, .info-card, blockquote, .contact-card, .quote-form, .feature-panel {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,111,145,.1);
  overflow: hidden;
}
.service-card img { height: 220px; width: 100%; object-fit: cover; }
.service-card div, .info-card, blockquote { padding: 1.45rem; }
.service-card a { color: var(--blue); font-weight: 800; }
.wave-band {
  max-width: none;
  background:
    radial-gradient(circle at 85% 8%, rgba(25,191,208,.15), transparent 28%),
    linear-gradient(135deg, #f8fefe, var(--sand));
}
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature-panel { padding: clamp(1.5rem, 4vw, 2.3rem); }
.gold-tag { display: inline-flex; padding: .35rem .65rem; background: rgba(200,164,93,.14); color: #8b6b2f; border-radius: 999px; font-weight: 900; font-size: .78rem; margin-bottom: 1rem; }
.check-list { padding: 0; margin: 1.4rem 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.7rem; margin: .65rem 0; color: #385964; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45rem; width: .8rem; height: .8rem; border-radius: 50%; background: linear-gradient(135deg, var(--aqua), var(--gold)); }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 1.5rem; }
.mini-stats span { padding: .85rem; background: var(--aqua-soft); border-radius: var(--radius); color: var(--muted); font-size: .8rem; }
.mini-stats strong { display: block; color: var(--navy); font-size: 1.2rem; }
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.compare-card { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); min-height: 360px; }
.compare-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.compare-card span { position: absolute; left: 1rem; top: 1rem; z-index: 2; padding: .45rem .75rem; border-radius: 999px; background: white; color: var(--navy); font-weight: 900; }
.manager-band, .final-cta {
  max-width: var(--max);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow);
}
.manager-band h2, .manager-band p, .final-cta h2, .final-cta p { color: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pricing-grid article {
  padding: 1.4rem;
  min-height: 160px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.pricing-grid.large article { min-height: 210px; }
.pricing-grid span { display: block; color: var(--muted); font-weight: 800; }
.pricing-grid strong { display: block; margin-top: .9rem; color: var(--navy); font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.05; }
blockquote { margin: 0; color: #385964; font-weight: 650; }
blockquote cite { display: block; margin-top: 1rem; color: var(--gold); font-style: normal; font-weight: 900; }

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 6vw, 5rem) 5rem;
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before { content: ""; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,47,63,.86), rgba(4,47,63,.45)); z-index: -2; }
.page-hero > div { max-width: var(--max); width: 100%; margin: 0 auto; }
.page-hero h1, .page-hero p { color: white; max-width: 820px; }
.services-hero::before { background-image: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=2200&q=82"); }
.rental-hero::before { background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=82"); }
.residential-hero::before { background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2200&q=82"); }
.managers-hero::before { background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=2200&q=82"); }
.pricing-hero::before { background-image: linear-gradient(135deg, #073b4c, #0b6f91); }
.about-hero::before { background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=82"); }
.contact-hero::before { background-image: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6?auto=format&fit=crop&w=2200&q=82"); }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-list article {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--aqua);
}
.pricing-note { max-width: 850px; margin: 2rem auto 0; text-align: center; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.35fr; gap: 1.5rem; align-items: start; }
.contact-card, .quote-form { padding: clamp(1.25rem, 3vw, 2rem); }
.contact-card .small { font-size: .92rem; margin-top: 1.5rem; }
.quote-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field.full, .form-button { grid-column: 1 / -1; }
label { display: block; font-weight: 850; color: var(--navy); margin-bottom: .35rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(11,111,145,.2);
  border-radius: var(--radius);
  padding: .85rem .9rem;
  font: inherit;
  color: var(--ink);
  background: #fbffff;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(25,191,208,.18); border-color: var(--aqua); }
.form-button { width: max-content; border: 0; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem clamp(1rem, 4vw, 3rem);
  color: white;
  background: #052d3b;
}
.site-footer p { color: rgba(255,255,255,.78); margin: .25rem 0; }
.site-footer a { color: white; font-weight: 800; }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 70px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: .9rem; }
  .trust-bar, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.three, .split, .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hero { min-height: 88vh; padding-top: 5.8rem; }
  .button-row, .manager-band, .final-cta, .site-footer { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .trust-bar, .pricing-grid, .compare-grid, .service-list, .quote-form { grid-template-columns: 1fr; }
  .section-tight { margin-top: -2rem; padding-inline: 1rem; }
  .trust-item { grid-template-columns: 36px 1fr; place-items: center start; text-align: left; }
  .compare-card { min-height: 260px; }
  .mini-stats { grid-template-columns: 1fr; }
  .page-hero { min-height: 52vh; padding-top: 6rem; }
  .form-button, .btn { width: 100%; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-seal { align-items: center; max-width: 100%; }
  .brand-seal img { width: 52px; height: 52px; }
}
