:root {
  color-scheme: light;
  --ink: #17211f;
  --paper: #f8f3ea;
  --cream: #fffaf1;
  --green: #245b4f;
  --teal: #4e8f90;
  --coral: #c8624c;
  --gold: #dcae58;
  --line: rgba(23, 33, 31, 0.16);
  --shadow: 0 22px 65px rgba(23, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  background: rgba(248, 243, 234, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 750;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  color: var(--cream);
  display: inline-flex;
  font-family: Georgia, serif;
  height: 36px;
  justify-content: center;
  width: 36px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  justify-content: flex-end;
}

nav a {
  font-size: 0.85rem;
  font-weight: 700;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 25, 22, 0.86) 0%, rgba(20, 25, 22, 0.58) 42%, rgba(20, 25, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(20, 25, 22, 0.68) 0%, rgba(20, 25, 22, 0) 42%);
}

.hero-content {
  color: var(--cream);
  max-width: 780px;
  padding: 168px clamp(22px, 7vw, 90px) 96px;
  position: relative;
  z-index: 1;
}

.hero-detail {
  border-top: 1px solid rgba(255, 250, 241, 0.36);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 760px;
  padding-top: 22px;
}

.hero-detail div {
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.18);
  padding: 18px;
}

.hero-detail span,
.hero-card p {
  color: #ffd786;
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-detail strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
}

.hero-card {
  background: rgba(248, 243, 234, 0.9);
  border: 1px solid rgba(255, 250, 241, 0.45);
  bottom: clamp(44px, 8vw, 96px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  max-width: 320px;
  padding: 24px;
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  z-index: 2;
}

.hero-card p {
  color: var(--coral);
}

.hero-card ol {
  counter-reset: path;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-card li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  font-weight: 850;
  gap: 12px;
  grid-template-columns: 34px 1fr;
  padding-bottom: 12px;
}

.hero-card li::before {
  align-items: center;
  background: var(--green);
  color: var(--cream);
  content: counter(path, decimal-leading-zero);
  counter-increment: path;
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 0.82rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.hero-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.eyebrow,
.section-kicker,
.package-label {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd786;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 7.6rem);
  letter-spacing: 0;
  margin-bottom: 28px;
  max-width: 930px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  letter-spacing: 0;
  margin-bottom: 0;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-copy {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button,
form button,
.package a {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

.button.primary,
form button {
  background: var(--gold);
  color: #241a0d;
}

.button.secondary {
  border-color: rgba(255, 250, 241, 0.6);
  color: var(--cream);
}

.intro,
.split-section,
.proof-band,
.packages,
.signature,
.method,
.contact {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro {
  background: var(--green);
  color: var(--cream);
}

.intro p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 4rem);
  line-height: 1.08;
  margin: 0 auto;
  max-width: 1180px;
}

.split-section,
.method,
.contact {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.work-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-grid article,
.package {
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px;
}

.work-grid span {
  color: var(--teal);
  display: block;
  font-family: Georgia, serif;
  font-size: 2.7rem;
  margin-bottom: 24px;
}

.proof-band {
  background: #e9efe8;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.proof-band ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proof-band li {
  border-left: 4px solid var(--coral);
  font-size: 1.04rem;
  padding: 0 0 0 18px;
}

.section-heading {
  margin-bottom: 38px;
  max-width: 920px;
}

.section-heading > p:not(.section-kicker) {
  font-size: 1.12rem;
  margin-top: 22px;
  max-width: 780px;
}

.package-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.package.featured {
  background: var(--green);
  color: var(--cream);
}

.package.featured .package-label {
  color: #ffd786;
}

.price {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 18px;
}

.price span {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 850;
}

.package.featured .price {
  color: #ffd786;
}

.package p:not(.package-label, .price) {
  margin-bottom: 28px;
}

.package a {
  border-color: currentColor;
  margin-top: auto;
}

.signature {
  background: var(--green);
  color: var(--cream);
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
}

.signature > div:first-child {
  max-width: 820px;
}

.signature > div:first-child p:not(.section-kicker) {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-top: 26px;
}

.signature-panel {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(28px, 4vw, 42px);
}

.signature-price {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.9;
  margin-bottom: 26px;
}

.signature-panel ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.signature-panel li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}

.signature-panel li::before {
  color: var(--coral);
  content: "+";
  font-weight: 900;
  margin-right: 9px;
}

.method {
  background: #f2e5d3;
}

.method > p,
.contact p {
  font-size: 1.18rem;
}

.contact {
  background: var(--ink);
  color: var(--cream);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  appearance: none;
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(255, 250, 241, 0.24);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

form button {
  border: 0;
  cursor: pointer;
  width: fit-content;
}

footer {
  background: #101715;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.78rem;
  padding: 28px clamp(20px, 5vw, 72px);
}

footer p {
  margin: 0;
  max-width: 1180px;
}

@media (max-width: 980px) {
  .split-section,
  .proof-band,
  .signature,
  .method,
  .contact,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package {
    min-height: 0;
  }

  .hero-card {
    display: none;
  }
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 0;
  }

  .hero .hero-content {
    padding: 108px 26px 30px;
  }

  .hero h1 {
    font-size: 2.18rem;
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .hero .hero-copy {
    font-size: 0.94rem;
  }

  .hero .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-detail {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero-detail div {
    padding: 12px;
  }

  .hero-detail strong {
    font-size: 0.86rem;
  }

  .hero .eyebrow,
  .section-kicker,
  .package-label {
    font-size: 0.72rem;
  }

  .hero .button,
  form button,
  .package a {
    min-height: 44px;
    padding: 11px 16px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero .button,
  form button {
    flex: 1 1 145px;
  }
}
