:root {
  color-scheme: light;
  --ink: #182126;
  --soft-ink: #56636b;
  --muted: #7b858b;
  --paper: #ffffff;
  --cream: #fff8e6;
  --honey: #f4c95d;
  --honey-deep: #c98616;
  --nectar: #f6a35d;
  --mist: #f0f7ee;
  --sky: #e7f4f7;
  --sage: #557a5d;
  --navy: #24384a;
  --gold: #e5ad2f;
  --line: rgba(32, 56, 74, 0.16);
  --shadow: 0 22px 58px rgba(96, 66, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(244, 201, 93, 0.22), transparent 22rem),
    linear-gradient(180deg, #fffdf7 0%, #fbfbf8 52%, #fff8ea 100%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(18px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.button,
.contact-actions,
.trust-row,
.proof-band div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
  font-weight: 850;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 29%, rgba(24, 33, 38, 0.92) 29% 43%, transparent 43% 58%, rgba(24, 33, 38, 0.92) 58% 72%, transparent 72%),
    var(--honey);
  font-weight: 950;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: -5px;
  width: 13px;
  height: 10px;
  border: 1px solid rgba(36, 56, 74, 0.24);
  border-radius: 999px 999px 4px 999px;
  background: rgba(255, 255, 255, 0.78);
  content: "";
}

.brand-mark::before {
  left: 5px;
  transform: rotate(-25deg);
}

.brand-mark::after {
  right: 5px;
  transform: rotate(25deg) scaleX(-1);
}

.nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--honey-deep);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  gap: 46px;
  align-items: center;
  width: min(1160px, calc(100% - 36px));
  min-height: calc(100vh - 67px);
  margin: 0 auto;
  padding: 58px 0 42px;
}

.hero::before {
  position: absolute;
  top: 28px;
  right: min(39vw, 440px);
  width: 122px;
  height: 72px;
  border-top: 2px dashed rgba(201, 134, 22, 0.38);
  border-radius: 50%;
  transform: rotate(-12deg);
  content: "";
}

.hero::after {
  position: absolute;
  top: 82px;
  right: min(34vw, 370px);
  width: 18px;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(24, 33, 38, 0.9) 30% 46%, transparent 46% 61%, rgba(24, 33, 38, 0.9) 61% 76%, transparent 76%),
    var(--honey);
  box-shadow: 0 -8px 0 -5px rgba(255, 255, 255, 0.92), 5px -7px 0 -5px rgba(255, 255, 255, 0.92);
  content: "";
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--honey-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5.15vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.18;
}

p {
  color: var(--soft-ink);
  line-height: 1.68;
}

.lede {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: 1.16rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
}

.button-primary {
  border-color: #b6760f;
  color: #2b2111;
  background: linear-gradient(180deg, #ffd86a, var(--honey));
  box-shadow: 0 12px 24px rgba(188, 125, 18, 0.24);
}

.button-secondary {
  border-color: var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.proof-band span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 850;
}

.trust-row span {
  padding: 8px 12px;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(46, 35, 14, 0.2)),
    radial-gradient(circle at 16% 18%, rgba(244, 201, 93, 0.2), transparent 10rem);
  content: "";
}

.hero-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 52% center;
}

.hero-card {
  z-index: 2;
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 6px;
  max-width: 440px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(24, 33, 38, 0.18);
}

.hero-card strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.hero-card span {
  color: var(--soft-ink);
  line-height: 1.45;
}

.proof-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px max(18px, calc((100vw - 1160px) / 2));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(36, 56, 74, 0.96), rgba(85, 122, 93, 0.94)),
    var(--navy);
}

.proof-band p {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.proof-band div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.proof-band span {
  padding: 7px 10px;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.feature-list article,
.steps article,
.area-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 45, 55, 0.08);
}

.info-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.info-card::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 37px;
  opacity: 0.16;
  background:
    linear-gradient(30deg, transparent 0 32%, var(--honey-deep) 32% 40%, transparent 40% 58%, var(--honey-deep) 58% 66%, transparent 66%),
    radial-gradient(circle at 50% 50%, var(--honey) 0 54%, transparent 55%);
  clip-path: polygon(22% 18%, 78% 18%, 100% 50%, 78% 82%, 22% 82%, 0 50%);
  content: "";
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #2b2111;
  background: var(--honey);
  font-size: 0.9rem;
  font-weight: 950;
}

.info-card p,
.steps p {
  margin-bottom: 0;
}

.split-section,
.availability-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.split-section {
  border-block: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list article {
  display: grid;
  gap: 8px;
  padding: 19px;
  background: var(--mist);
}

.feature-list strong {
  color: var(--navy);
}

.feature-list span {
  color: var(--soft-ink);
  line-height: 1.55;
}

.process-section {
  padding-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--honey-deep);
  font-weight: 950;
}

.availability-section {
  padding-top: 58px;
}

.availability-copy p {
  max-width: 680px;
}

.area-card {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 230, 0.84)),
    var(--sky);
}

.area-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.14rem;
}

.area-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-card li {
  padding: 10px 12px;
  border: 1px solid rgba(32, 56, 74, 0.12);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.area-card li:last-child {
  grid-column: 1 / -1;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(244, 201, 93, 0.22), rgba(231, 244, 247, 0.9)),
    #fff;
}

.contact-panel p {
  max-width: 700px;
  margin-bottom: 0;
}

.contact-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split-section,
  .availability-section,
  .contact-panel,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 430px;
  }

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

  .proof-band div,
  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4.45rem);
  }

  .hero-panel,
  .hero-panel img {
    min-height: 360px;
  }

  .card-grid,
  .steps,
  .area-card ul {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
