:root {
  --navy: #071b42;
  --blue: #0756c7;
  --bright-blue: #0878ef;
  --cyan: #36c6df;
  --ink: #10213c;
  --muted: #5b6b82;
  --mist: #f2f8ff;
  --line: #dce8f5;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { width: 250px; height: 74px; object-fit: contain; object-position: left center; }
nav { display: flex; align-items: center; gap: 34px; font-size: .94rem; font-weight: 700; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--blue); }
.nav-cta { padding: 12px 18px; color: white; background: var(--blue); border-radius: 999px; }
nav .nav-cta:hover { color: white; background: var(--navy); }

.hero {
  width: min(1240px, calc(100% - 32px));
  min-height: 650px;
  margin: 0 auto;
  padding: 78px clamp(28px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  position: relative;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 5%, rgba(54,198,223,.19), transparent 28%),
    linear-gradient(135deg, #eff8ff 0%, #f9fcff 60%, #e9f7ff 100%);
}
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 720px; margin-bottom: 24px; color: var(--navy); font-size: clamp(3.1rem, 6vw, 5.8rem); line-height: .98; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.12rem; line-height: 1.8; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 50px; padding: 14px 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 14px 30px rgba(7,86,199,.2); }
.button-primary:hover { background: var(--navy); }
.button-secondary { color: var(--navy); background: white; border: 1px solid var(--line); }
.hero-facts { margin-top: 54px; display: flex; gap: 52px; }
.hero-facts div { display: grid; gap: 4px; }
.hero-facts strong { color: var(--navy); font-size: 1.25rem; }
.hero-facts span { color: var(--muted); font-size: .84rem; }

.hero-art { min-height: 470px; position: relative; overflow: hidden; border-radius: 28px; box-shadow: 0 28px 60px rgba(7,27,66,.18); }
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(7,27,66,.82) 100%); }
.hero-art > img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; object-position: 52% center; }
.comfort-caption { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 24px; display: flex; align-items: center; gap: 16px; color: white; }
.comfort-caption span { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; font-family: Georgia, serif; font-size: 1.35rem; }
.comfort-caption p { max-width: 250px; margin: 0; font-family: Georgia, serif; font-size: 1.24rem; line-height: 1.3; }

.services-section { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 130px 0; }
.section-heading { margin-bottom: 58px; display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 70px; }
.section-heading h2, .about-copy h2, .contact-section h2 { margin-bottom: 0; color: var(--navy); font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.035em; }
.section-heading > p, .about-copy > p { margin: 0; color: var(--muted); line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #a8c8ee; box-shadow: 0 22px 44px rgba(7,27,66,.09); }
.service-card > span { color: var(--bright-blue); font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.service-card h3 { margin: 35px 0 14px; color: var(--navy); font-size: 1.45rem; line-height: 1.22; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.65; }

.about-section { width: min(1160px, calc(100% - 40px)); margin: 0 auto 130px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-visual { min-height: 490px; position: relative; overflow: hidden; border-radius: 30px; color: white; background: var(--navy); box-shadow: 0 28px 55px rgba(7,27,66,.18); }
.about-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,27,66,.62), transparent 66%); }
.about-visual > img { width: 100%; height: 100%; min-height: 490px; position: absolute; inset: 0; object-fit: cover; }
.about-caption { position: absolute; z-index: 1; left: 42px; top: 50%; transform: translateY(-50%); text-align: center; }
.about-seal { width: 170px; height: 170px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-family: Georgia, serif; font-size: 2.2rem; letter-spacing: .12em; }
.about-caption p { margin: 22px 0 0; font-size: .82rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.about-copy h2 { margin-bottom: 26px; }
.about-copy ul { margin: 32px 0 0; padding: 0; display: grid; gap: 16px; list-style: none; }
.about-copy li { padding-left: 30px; position: relative; color: var(--ink); font-weight: 700; }
.about-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); }

.contact-section { width: min(1240px, calc(100% - 32px)); margin: 0 auto; padding: 72px clamp(28px, 6vw, 82px); display: grid; grid-template-columns: 1fr .78fr; gap: 80px; align-items: center; color: white; background: var(--navy); border-radius: 32px; }
.eyebrow-light { color: #74d9ec; }
.contact-section h2 { color: white; }
.contact-card { padding: 36px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.08); }
.contact-label { margin: 0 0 8px; color: #8adff0; font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-phone-label { margin-top: 26px; }
address { color: #eef6ff; font-size: 1.05rem; font-style: normal; line-height: 1.7; }
.phone-link { display: block; margin-bottom: 28px; color: white; font-family: Georgia, serif; font-size: 1.5rem; }
.button-white { color: var(--navy); background: white; }

footer { width: min(1160px, calc(100% - 40px)); min-height: 150px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: center; color: var(--muted); font-size: .82rem; }
footer img { width: 205px; height: 70px; object-fit: contain; object-position: left center; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-art { min-height: 420px; }
  .section-heading, .about-section, .contact-section { grid-template-columns: 1fr; gap: 42px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; padding: 40px 0; gap: 8px; }
}

@media (max-width: 600px) {
  .site-header { min-height: 78px; width: min(100% - 28px, 1180px); }
  .brand img { width: 190px; height: 58px; }
  .nav-cta { padding: 10px 14px; font-size: .8rem; }
  .hero { width: calc(100% - 20px); min-height: auto; padding: 52px 22px; border-radius: 24px; }
  h1 { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 26px; }
  .hero-art { min-height: 340px; }
  .hero-art > img { min-height: 340px; }
  .services-section { width: calc(100% - 30px); padding: 90px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .about-section { width: calc(100% - 30px); margin-bottom: 90px; }
  .about-visual, .about-visual > img { min-height: 370px; }
  .about-caption { left: 26px; }
  .about-seal { width: 140px; height: 140px; font-size: 1.75rem; }
  .contact-section { width: calc(100% - 20px); padding: 54px 22px; border-radius: 24px; }
  .contact-card { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
