/* =========================================================================
   Lakefront Epoxy — premium epoxy flooring for Michigan
   Navy + bright blue + warm sunset palette, refined serif + clean sans
   ========================================================================= */

:root {
  /* Brand palette pulled from the logo */
  --navy:        #0f2c4a;
  --navy-deep:   #081a2e;
  --navy-soft:   #1a3a5c;
  --navy-tint:   #eef3f9;
  --blue:        #2b6cb0;
  --blue-bright: #3b82c4;
  --sunset:      #f0a45c;   /* warm sunset accent from the logo */
  --sunset-deep: #c97f3a;
  --water:       #d6e4f0;
  --cream:       #faf8f3;
  --cream-deep:  #f1ece2;
  --ink:         #0d1b2a;
  --ink-muted:   #4f5b6e;
  --line:        #d8dde7;
  --white:       #ffffff;

  /* Typography */
  --font-head: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 44, 74, 0.05);
  --shadow-md: 0 6px 18px rgba(15, 44, 74, 0.09);
  --shadow-lg: 0 18px 40px rgba(15, 44, 74, 0.14);

  /* Layout */
  --max: 1200px;
  --gutter: 24px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--navy);
  line-height: 1.18;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
p  { margin: 0 0 1em; }
.muted { color: var(--ink-muted); }
.req   { color: var(--sunset-deep); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 7vw, 90px) 0; }
.section--navy {
  background: var(--navy);
  color: var(--cream);
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy .muted { color: rgba(255,255,255,0.78); }
.section--cream { background: var(--cream); }
.section--water {
  background: linear-gradient(180deg, var(--white) 0%, var(--navy-tint) 100%);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p {
  color: var(--ink-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}
.section--navy .section-head p { color: rgba(255,255,255,0.82); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--sunset-deep);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--sunset); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(15, 44, 74, 0.25);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 44, 74, 0.32);
}
.btn-accent {
  background: var(--sunset);
  color: var(--navy-deep);
  box-shadow: 0 6px 18px rgba(240, 164, 92, 0.32);
}
.btn-accent:hover {
  background: var(--sunset-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 2px 14px rgba(15, 44, 74, 0.06);
  background: rgba(255,255,255,0.96);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 9px 14px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--r-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--navy); background: var(--navy-tint); }
.nav-links a.active { color: var(--navy); }
.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--r-md);
}
.nav-links .nav-cta:hover {
  background: var(--navy-deep);
  color: var(--white);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    box-shadow: 0 12px 24px rgba(15, 44, 74, 0.1);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  }
  .nav.open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--cream-deep);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links .nav-cta {
    margin: 10px 18px;
    text-align: center;
    border-radius: var(--r-md);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 12vw, 130px);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(43, 108, 176, 0.08), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--navy-tint) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 164, 92, 0.10), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(15, 44, 74, 0.08), transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sunset);
  box-shadow: 0 0 0 3px rgba(240, 164, 92, 0.25);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
  position: relative;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hero-stat .label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 108, 176, 0.12), transparent 70%);
  filter: blur(10px);
}
.hero-visual img {
  position: relative;
  width: 84%;
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(15, 44, 74, 0.18));
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: clamp(80px, 11vw, 130px) 0 clamp(70px, 9vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(240, 164, 92, 0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(43, 108, 176, 0.32), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  color: var(--white);
  max-width: 840px;
  margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.12rem;
  max-width: 720px;
  line-height: 1.7;
}
.page-hero .breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumbs a {
  color: rgba(255,255,255,0.7);
}
.page-hero .breadcrumbs a:hover { color: var(--white); }
.page-hero .breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card .icon.warm {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-deep));
}
.card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.card p {
  color: var(--ink-muted);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.card .price-line {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Feature row (icon + text) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature {
  text-align: center;
}
.feature .icon {
  margin: 0 auto 16px;
}
.feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.feature p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
}
.split-text h2 { margin-bottom: 18px; }
.split-text p { color: var(--ink-muted); font-size: 1.04rem; }
.split-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.split-image .placeholder-label {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
  padding: 30px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

/* ---------- Gallery cards (placeholders for demo) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.project-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.project-card .image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
  overflow: hidden;
}
.project-card .image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.project-card:hover .image img {
  transform: scale(1.04);
}
.project-card .image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12), transparent 50%);
  z-index: 1;
}
.project-card .image .tag {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.project-card .image.warm    { background: linear-gradient(135deg, #2b3e5b, #c97f3a); }
.project-card .image.cool    { background: linear-gradient(135deg, #1a3a5c, #3b82c4); }
.project-card .image.deep    { background: linear-gradient(135deg, #081a2e, #1a3a5c); }
.project-card .image.gold    { background: linear-gradient(135deg, #5a3818, #f0a45c); }
.project-card .image.silver  { background: linear-gradient(135deg, #2a3540, #6e7d8f); }
.project-card .image.charcoal{ background: linear-gradient(135deg, #15171c, #4a525e); }

.project-card .body {
  padding: 24px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.project-card .meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.project-card .meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.project-card .body p {
  font-size: 0.94rem;
  color: var(--ink-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------- Reviews ---------- */
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 16px;
}
.rating-pill .stars {
  color: var(--sunset-deep);
  letter-spacing: 0.05em;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
}
.review-card .stars {
  color: var(--sunset-deep);
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 12px;
}
.review-card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.99rem;
  line-height: 1.7;
}
.review-card .author {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.review-card .author strong { color: var(--navy); }

/* ---------- Process / numbered steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 2rem;
  color: var(--sunset);
  position: absolute;
  top: 12px;
  right: 22px;
  font-weight: 700;
}
.step h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  padding-right: 50px;
}
.step p {
  color: var(--ink-muted);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.6;
}

/* ---------- Service detail blocks (services page) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .service-block, .service-block.reverse { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
}
.service-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.service-block .badge {
  display: inline-block;
  background: var(--navy-tint);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.service-block p { color: var(--ink-muted); font-size: 1.02rem; }
.service-block ul {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}
.service-block ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--ink);
  font-size: 0.97rem;
}
.service-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sunset);
  box-shadow: 0 0 0 4px rgba(240, 164, 92, 0.18);
}
.service-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.service-visual.metallic   { background: linear-gradient(135deg, #2a3540, #6e7d8f, #c8cfd6); }
.service-visual.solid      { background: linear-gradient(135deg, #1a3a5c, #2b6cb0); }
.service-visual.flake      { background: linear-gradient(135deg, #3b2e1f, #8b6c4a); }
.service-visual.commercial { background: linear-gradient(135deg, #0f2c4a, #1a3a5c); }
.service-visual.repair     { background: linear-gradient(135deg, #46505c, #7a8794); }
.service-visual.dock       { background: linear-gradient(135deg, #14365b, #3b82c4, #c8e1f5); }
.service-visual .placeholder-label {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  padding: 30px;
  opacity: 0.92;
  letter-spacing: 0.02em;
}

/* ---------- Service area / coverage ---------- */
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--ink);
}
.area-list li::before {
  content: "▴";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sunset);
  font-size: 0.78rem;
}

/* ---------- Big CTA banner ---------- */
.cta-banner {
  background:
    linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 164, 92, 0.22), transparent 50%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin: 0; font-size: 1.04rem; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
}
@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.14);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.form-note a { color: var(--navy); font-weight: 600; }
.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
}
.form-status.is-success {
  background: #ecf7ec;
  color: #2c5e2e;
  border: 1px solid #b7dcb6;
}
.form-status.is-error {
  background: #fbecec;
  color: #8a2a2a;
  border: 1px solid #efc1c1;
}

.contact-grid {
  display: grid;
  gap: 18px;
  align-content: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.contact-card .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-card .icon.warm {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-deep));
}
.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-card .value {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.contact-card .value:hover { color: var(--blue); }
.contact-card .sub {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 28px;
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 44px;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.footer h5 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin-bottom: 9px;
  font-size: 0.93rem;
}
.footer ul li a {
  color: rgba(255,255,255,0.7);
  transition: color 0.15s ease;
}
.footer ul li a:hover { color: var(--sunset); }
.footer .footer-contact a { color: rgba(255,255,255,0.7); }
.footer .footer-contact a:hover { color: var(--sunset); }
.footer-map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.04);
}
.footer-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  margin-top: 44px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .demo-flag {
  background: rgba(240, 164, 92, 0.18);
  color: var(--sunset);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 36px; }
.mt-xl { margin-top: 56px; }
