* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #faf7f5;
  --text: #151515;
  --muted: #5f6472;
  --line: #e9e6e1;
  --primary: #7d2222;
  --primary-dark: #561515;
  --accent: #b57b14;
  --shadow: 0 18px 45px rgba(34, 23, 17, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(181, 123, 20, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(125, 34, 34, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(233, 230, 225, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-sub {
  font-size: 0.76rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  font-weight: 600;
  color: #373737;
}

.nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  padding: 4rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(181, 123, 20, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero h1,
.section-heading h2,
.sat-box h2,
.cta-band h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  margin: 1rem 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 11ch;
}

.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions,
.cta-band-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(125, 34, 34, 0.25);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.full {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-tags span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: #4b4b4b;
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  border: 1px solid rgba(181, 123, 20, 0.15);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
}

.hero-logo {
  width: min(100%, 380px);
  margin: 0 auto 1rem;
  object-fit: contain;
}

.hero-card h2 {
  margin: 0.8rem 0 0.35rem;
  font-size: 1.45rem;
}

.hero-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.hero-phone {
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

section {
  padding: 2.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.sat-box p,
.highlight-box p,
.cta-band p {
  color: var(--muted);
}

.intro-panels,
.card-grid.three,
.legal-columns,
.footer-grid,
.sat-grid {
  display: grid;
  gap: 1.2rem;
}

.intro-panels {
  grid-template-columns: repeat(5, 1fr);
}

.panel,
.service-card,
.legal-group,
.sat-box,
.highlight-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel {
  padding: 1.35rem;
  min-height: 170px;
}

.panel h3,
.service-card h3,
.legal-group h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 1.5rem;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  margin-bottom: 1rem;
}

.service-card ul,
.legal-group ul,
.feature-list {
  margin: 0;
  padding-left: 1.15rem;
}

.sat-grid {
  grid-template-columns: 1.25fr 0.8fr;
  align-items: stretch;
}

.sat-box,
.highlight-box {
  padding: 1.8rem;
}

.highlight-box {
  background: linear-gradient(180deg, #7d2222 0%, #541919 100%);
  color: #fff;
}

.highlight-box p,
.highlight-box .eyebrow {
  color: #fff;
}

.highlight-box .eyebrow {
  background: rgba(255,255,255,0.12);
}

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

.legal-group {
  padding: 1.5rem;
}

.cta-band-content {
  justify-content: space-between;
  background: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
  border: 1px solid rgba(181, 123, 20, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.site-footer {
  padding: 2.4rem 0 3rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  grid-template-columns: 110px 1.1fr 1fr 0.8fr;
  align-items: start;
}

.footer-logo {
  width: 92px;
  object-fit: contain;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1100;
  background: linear-gradient(135deg, #1e7f47, #25d366);
  color: #fff;
  min-height: 56px;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.25);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .intro-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three,
  .legal-columns,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .sat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 86px;
    left: 1rem;
    right: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav.active {
    display: flex;
  }
}

@media (max-width: 640px) {
  .intro-panels,
  .card-grid.three,
  .legal-columns {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-card-inner,
  .sat-box,
  .highlight-box,
  .service-card,
  .legal-group,
  .panel,
  .cta-band-content {
    padding: 1.25rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
  }

  .whatsapp-float::before {
    content: "WA";
    font-size: 0.9rem;
  }
}
