:root {
  --slate: #41556f;
  --slate-dark: #27384d;
  --orange: #ef7d2c;
  --orange-dark: #c95d12;
  --gold: #f5c400;
  --green: #168b2b;
  --ink: #1e2936;
  --muted: #5f6c79;
  --line: #dfe4e8;
  --soft: #f5f7f8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(31, 45, 61, 0.12);
  --radius: 20px;
  --container: 1180px;
}

* { 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;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(65, 85, 111, 0.12);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 150px; height: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  color: var(--slate-dark);
}
.primary-nav a { text-decoration: none; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--orange-dark); }
.nav-cta {
  padding: 11px 18px;
  color: var(--white) !important;
  background: var(--orange);
  border-radius: 999px;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--orange-dark); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background: url("assets/finished-floor.jpg") center / cover no-repeat;
  transform: scale(1.025);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 40, 57, 0.94) 0%, rgba(33, 49, 69, 0.81) 46%, rgba(33, 49, 69, 0.30) 100%),
    linear-gradient(0deg, rgba(26, 40, 57, 0.22), rgba(26, 40, 57, 0.22));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 100px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow { color: var(--gold); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--white); }
.button-primary:hover, .button-primary:focus-visible { background: var(--orange-dark); }
.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}
.button-secondary:hover, .button-secondary:focus-visible { background: var(--white); color: var(--slate-dark); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 52px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.84);
}
.trust-row span::before { content: "•"; margin-right: 10px; color: var(--gold); }

.section { padding: 100px 0; }
.section-tint { background: var(--soft); }
.section-dark { background: var(--slate-dark); color: var(--white); }
.section-kicker.light { color: var(--gold); }
.section h2 {
  margin: 0 0 22px;
  color: var(--slate-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.section-dark h2 { color: var(--white); }
.section p { font-size: 1.06rem; color: var(--muted); }
.section-dark p { color: rgba(255, 255, 255, 0.77); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.image-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-card img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.image-card-tall, .image-card-tall img { min-height: 600px; }
.image-card-caption {
  position: absolute;
  inset: auto 20px 20px 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--slate-dark);
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.section-heading { max-width: 720px; margin-bottom: 44px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31, 45, 61, 0.06);
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--slate);
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.service-card:nth-child(2) .service-icon { background: var(--green); }
.service-card:nth-child(3) .service-icon { background: var(--orange); }
.service-card:nth-child(4) .service-icon { background: #887100; }
.service-card h3,
.feature-list h3,
.area-list h3 { margin: 0 0 8px; color: var(--slate-dark); font-size: 1.22rem; }
.service-card p { margin: 0; font-size: 0.98rem; }
.feature-list { display: grid; gap: 14px; }
.feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list article:last-child { border-bottom: 0; }
.feature-list p { margin: 0; font-size: 0.98rem; }
.check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}
.area-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.area-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}
.area-list h3 { color: var(--gold); }
.area-list p { margin: 0; font-size: 0.95rem; }

.contact-section { background: linear-gradient(135deg, #f9fafb, #eef2f5); }
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  padding: 55px;
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 20px;
  text-decoration: none;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border-color 160ms ease, transform 160ms ease;
}
a.contact-link:hover, a.contact-link:focus-visible { transform: translateY(-2px); border-color: var(--orange); }
.contact-label {
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-link strong { color: var(--slate-dark); overflow-wrap: anywhere; }
.contact-link strong a { color: inherit; }

.site-footer { padding: 42px 0; background: #182638; color: rgba(255, 255, 255, 0.75); }
.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 34px;
  align-items: center;
}
.footer-brand { display: inline-block; padding: 8px; background: var(--white); border-radius: 12px; }
.footer-brand img { width: 150px; }
.footer-grid p { margin: 0; }
.copyright { text-align: right; font-size: 0.9rem; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 12px;
  }
  .nav-toggle span:not(.sr-only) { width: 22px; height: 2px; background: var(--slate-dark); }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(31, 45, 61, 0.10);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 14px 8px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .split-grid, .area-grid, .contact-card { grid-template-columns: 1fr; gap: 42px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .reverse-mobile .image-card { order: 2; }
  .footer-grid { grid-template-columns: 160px 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 126px; }
  .hero { min-height: 650px; }
  .hero-content { padding-block: 72px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .trust-row { display: grid; gap: 10px; margin-top: 38px; }
  .section { padding: 72px 0; }
  .section h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .service-grid, .area-list, .contact-actions { grid-template-columns: 1fr; }
  .image-card, .image-card img { min-height: 360px; }
  .image-card-tall, .image-card-tall img { min-height: 430px; }
  .contact-card { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { width: fit-content; }
}

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