:root {
  --bg: #f4efe7;
  --bg-strong: #e9e1d4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffaf4;
  --text: #192028;
  --muted: #55606d;
  --line: rgba(25, 32, 40, 0.12);
  --accent: #cf4e2d;
  --accent-deep: #a63a1c;
  --steel: #36546f;
  --shadow: 0 24px 60px rgba(31, 39, 48, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI Variable", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 78, 45, 0.18), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(54, 84, 111, 0.18), transparent 22%),
    linear-gradient(180deg, #f7f3ec 0%, #f2ebdf 52%, #eee5d7 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(25, 32, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 32, 40, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 5rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.topbar-copy {
  margin: 0;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
}

.topbar-links a:hover,
.faq a:hover {
  color: var(--accent);
}

.section {
  padding: 4rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 2rem;
  align-items: stretch;
  padding-top: 2.25rem;
}

.hero-copy,
.hero-card,
.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.8rem, 3.5vw, 3.2rem);
}

.hero-copy::after,
.hero-card::after,
.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto -5% -35% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 78, 45, 0.18), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3,
summary {
  font-family: "Franklin Gothic Demi", "Arial Narrow", "Aptos Display", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.96;
  max-width: 11ch;
}

.lead,
.section-heading p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.floating-call:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #da6b3b 100%);
  box-shadow: 0 16px 30px rgba(207, 78, 45, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 32, 40, 0.08);
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  flex: 0 0 0.9rem;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e88d48);
  box-shadow: 0 0 0 6px rgba(207, 78, 45, 0.12);
}

.hero-card {
  padding: 1.6rem;
  display: grid;
  gap: 1.15rem;
}

.hero-card-badge {
  display: inline-flex;
  align-self: start;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(54, 84, 111, 0.1);
  color: var(--steel);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-card-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.hero-brand-mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), #da6b3b);
  color: white;
  font-family: "Franklin Gothic Demi", "Arial Narrow", "Aptos Display", sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 16px 30px rgba(207, 78, 45, 0.24);
}

.hero-card-label {
  margin: 0 0 0.35rem;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.02;
}

.hero-card-contact {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(25, 32, 40, 0.08);
}

.hero-card-contact a {
  font-size: 1rem;
  font-weight: 700;
}

.hero-card-contact a:first-child {
  font-size: 1.3rem;
  color: var(--text);
}

.hero-card-contact a:last-child {
  color: var(--muted);
  word-break: break-word;
}

.hero-card-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-card-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(25, 32, 40, 0.06);
}

.hero-card-list strong {
  font-size: 1rem;
}

.hero-card-list span {
  color: var(--muted);
  font-size: 0.97rem;
}

.hero-card-foot {
  margin: 0;
  font-weight: 700;
  color: var(--steel);
}

.hero-card-contact a:hover {
  color: var(--accent);
}

.service-panel p,
.showcase-copy p,
.trust-card p,
.reason-card p,
.contact-panel p,
.coverage-core p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.trust-strip,
.service-grid,
.showcase-grid,
.reason-grid {
  display: grid;
  gap: 1.25rem;
}

.trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card,
.service-panel,
.showcase-card,
.reason-card,
.faq-list details {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(31, 39, 48, 0.06);
}

.trust-card,
.service-panel,
.reason-card {
  padding: 1.5rem;
}

.trust-card span,
.coverage-list span {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-heading {
  margin-bottom: 1.65rem;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  line-height: 1;
  max-width: 12ch;
}

.services .section-heading h2,
.coverage .section-heading h2,
.faq .section-heading h2 {
  max-width: 14ch;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-panel {
  min-height: 210px;
  background:
    radial-gradient(circle at top right, rgba(207, 78, 45, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.78);
}

.service-panel h3,
.showcase-copy h3,
.reason-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.5rem;
}

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-card {
  overflow: hidden;
}

.showcase-card img {
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, #ece4d8, #ddd1be);
  border-bottom: 1px solid var(--line);
}

.showcase-copy {
  padding: 1.35rem;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  gap: 1.4rem;
  align-items: center;
}

.coverage-map,
.coverage-list,
.contact-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.coverage-map {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(54, 84, 111, 0.05), rgba(207, 78, 45, 0.08)),
    rgba(255, 255, 255, 0.76);
}

.coverage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(25, 32, 40, 0.15);
}

.ring-one {
  width: 62%;
  aspect-ratio: 1;
}

.ring-two {
  width: 84%;
  aspect-ratio: 1;
}

.coverage-core {
  position: relative;
  z-index: 1;
  max-width: 260px;
  padding: 1.5rem;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(25, 32, 40, 0.08);
}

.coverage-core span {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-core strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 1.5rem;
}

.coverage-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(54, 84, 111, 0.08);
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 0.95rem;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
}

summary {
  cursor: pointer;
  font-size: 1.22rem;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 0.8rem;
}

.contact-panel {
  padding: clamp(1.8rem, 4vw, 3rem);
}

.footer {
  padding: 1rem 0 2.5rem;
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0.25rem 0;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #da6b3b);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(207, 78, 45, 0.28);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero,
  .coverage-layout,
  .trust-strip,
  .service-grid,
  .showcase-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    order: -1;
  }

  .hero-card h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 1180px);
  }

  .section {
    padding: 3rem 0;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .section-heading h2,
  .contact-panel h2 {
    max-width: none;
  }

  .button,
  .coverage-list span {
    width: 100%;
  }

  .hero-card-header {
    grid-template-columns: 1fr;
  }

  .floating-call {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
