:root {
  --bg: #f4efe7;
  --surface: rgba(255, 250, 244, 0.82);
  --surface-strong: #fffaf4;
  --ink: #1e1a17;
  --muted: #62564a;
  --line: rgba(76, 59, 44, 0.12);
  --brand: #a65324;
  --brand-deep: #6f3213;
  --accent: #23463f;
  --sand: #d7b68e;
  --shadow: 0 24px 70px rgba(84, 55, 31, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(166, 83, 36, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(35, 70, 63, 0.14), transparent 26%),
    linear-gradient(180deg, #f8f2ea 0%, #f3ece3 48%, #efe7dc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.34;
}

.page-glow-left {
  top: 4rem;
  left: -10rem;
  background: rgba(215, 182, 142, 0.55);
}

.page-glow-right {
  top: 18rem;
  right: -10rem;
  background: rgba(35, 70, 63, 0.18);
}

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

.section {
  padding: 2rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.8rem 0;
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.78);
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(76, 59, 44, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
}

.nav-toggle span:not(.nav-toggle-text) {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-text {
  margin-left: 0.35rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.hero-panel h2,
.highlight-card h2,
.leader-card h2,
.contact-panel h2 {
  font-family: "Outfit", sans-serif;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.site-nav a,
.button,
.contact-item {
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-deep);
  background: rgba(166, 83, 36, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button:hover,
.button:focus-visible,
.contact-item:hover,
.contact-item:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 28px rgba(111, 50, 19, 0.24);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(76, 59, 44, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.hero {
  padding-top: 4.25rem;
}

.hero-layout,
.band-grid,
.services-layout,
.leader-layout,
.contact-panel,
.highlight-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

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

.hero h1,
.section-heading h2,
.hero-panel h2,
.highlight-card h2,
.leader-card h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 0.98;
}

.hero-text,
.band-grid p,
.card p,
.product-card p,
.service-item p,
.highlight-card p,
.leader-card p,
.hero-panel p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 2rem;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.hero-strip span {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(76, 59, 44, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-grid,
.info-grid,
.product-grid,
.service-list {
  display: grid;
  gap: 1rem;
}

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

.stat-grid article,
.hero-panel,
.card,
.product-card,
.service-item,
.highlight-card,
.leader-card,
.leader-quote,
.contact-panel,
.section-band {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-grid article,
.service-item,
.contact-item {
  border-radius: var(--radius-md);
}

.stat-grid article {
  padding: 1.1rem;
}

.stat-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel,
.card,
.product-card,
.highlight-card,
.leader-card,
.leader-quote {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.panel-tag,
.product-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(166, 83, 36, 0.1);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-highlights,
.contact-details {
  display: grid;
  gap: 0.85rem;
}

.hero-highlights div {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.hero-highlights span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-band {
  border-radius: var(--radius-lg);
}

.band-grid {
  grid-template-columns: 1fr 0.9fr;
  padding: 1.5rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.35rem;
}

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

.card h3,
.product-card h3,
.service-item h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

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

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 83, 36, 0.12), transparent 68%);
}

.proof-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.88), rgba(245, 235, 221, 0.86));
  box-shadow: var(--shadow);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-list div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(76, 59, 44, 0.08);
}

.proof-list strong,
.calculator-head h3,
.summary-card h3 {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
}

.proof-list span {
  color: var(--muted);
  line-height: 1.5;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 1.25rem;
  align-items: start;
}

.calculator-card {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.calculator-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.calculator-kicker {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.calculator-head h3 {
  margin: 0;
}

.calculator-price {
  margin: 0;
  color: var(--brand-deep);
  font-weight: 800;
}

.calculator-card label {
  display: block;
  margin-top: 0.95rem;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.calculator-card select,
.calculator-card input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font: inherit;
}

.calculator-button {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6bd9, #0a4e9f);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 28px rgba(15, 107, 217, 0.22);
}

.calculator-button:hover,
.calculator-button:focus-visible {
  transform: translateY(-2px);
}

.calculator-share {
  width: 100%;
  margin-top: 0.75rem;
}

.calculator-result {
  min-height: 1.5rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #f3faf2;
  border: 1px solid rgba(24, 123, 42, 0.12);
  font-size: 1rem;
  font-weight: 800;
  color: #187b2a;
  line-height: 1.6;
}

.calc-summary {
  display: grid;
  gap: 1rem;
}

.summary-card {
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.84);
  box-shadow: var(--shadow);
}

.summary-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.summary-actions {
  display: grid;
  gap: 0.75rem;
}

.services-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

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

.service-item {
  padding: 1.2rem;
}

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

.highlight-card {
  min-height: 100%;
}

.leader-layout {
  grid-template-columns: 1fr 0.72fr;
  align-items: stretch;
}

.leader-quote {
  display: grid;
  align-content: center;
  justify-items: start;
  background:
    linear-gradient(145deg, rgba(111, 50, 19, 0.95), rgba(35, 70, 63, 0.94)),
    var(--surface);
  color: white;
}

.leader-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.3rem;
  line-height: 1.6;
}

.quote-mark {
  font-family: "Outfit", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.38);
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-panel {
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.contact-item {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.contact-item span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-link {
  color: var(--brand-deep);
  font-weight: 800;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1040px) {
  .nav-wrap,
  .hero-layout,
  .band-grid,
  .proof-panel,
  .calculator-layout,
  .services-layout,
  .highlight-grid,
  .leader-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    border-radius: 28px;
  }

  .nav-wrap,
  .site-nav {
    flex-wrap: wrap;
  }

  .product-grid,
  .proof-list,
  .info-grid,
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  body {
    padding-bottom: 4.8rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero h1,
  .section-heading h2,
  .hero-panel h2,
  .highlight-card h2,
  .leader-card h2,
  .contact-panel h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-actions,
  .footer-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0.9rem;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 0.4rem;
  }

  .site-nav a {
    width: 100%;
    padding: 0.9rem 0.2rem;
    border-radius: 14px;
  }

  .nav-wrap > .button.button-primary {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .stat-grid,
  .info-grid,
  .product-grid,
  .proof-list,
  .service-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-strip {
    margin-bottom: 1rem;
  }

  .hero-strip span {
    font-size: 0.84rem;
  }

  .calculator-card,
  .summary-card,
  .proof-panel,
  .contact-panel,
  .leader-card,
  .leader-quote,
  .card,
  .product-card,
  .hero-panel,
  .section-band {
    padding: 1.15rem;
    border-radius: 24px;
  }

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

  .calculator-result {
    font-size: 0.96rem;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.7rem;
    background: rgba(248, 242, 234, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(76, 59, 44, 0.1);
  }

  .mobile-cta a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 2.9rem;
    border-radius: 999px;
    background: white;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(84, 55, 31, 0.08);
  }

  .mobile-cta a:nth-child(2) {
    background: linear-gradient(135deg, #0f8f4f, #0d6b3d);
    color: white;
  }
}
