:root {
  --cream: #fffaf0;
  --paper: #fffdf8;
  --linen: #f4ecd9;
  --honey: #d89a22;
  --gold: #b77b17;
  --sage: #6b7b63;
  --ink: #27241f;
  --muted: #6e675d;
  --soft: #e9dcc4;
  --shadow: 0 20px 45px rgba(58, 43, 21, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(183, 123, 23, 0.18);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(183, 123, 23, 0.45);
  border-radius: 50%;
  background: #1f2b1d;
  color: #f7d67b;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand span span {
  display: block;
}

.brand strong {
  font-size: 1.04rem;
  line-height: 1.1;
}

.brand span span {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.section-band,
.intro,
.pricing-section,
.agreement-section,
.site-footer {
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 77px);
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
  background:
    linear-gradient(110deg, rgba(255, 250, 240, 0.92), rgba(255, 253, 248, 0.7)),
    radial-gradient(circle at 85% 18%, rgba(216, 154, 34, 0.18), transparent 28%),
    linear-gradient(135deg, var(--cream), #eef2e7 68%, #fff7e0);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-text,
.intro p,
.pricing-copy p,
.agreement-section p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(58, 43, 21, 0.14);
}

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

.button.secondary {
  border-color: rgba(39, 36, 31, 0.22);
  background: rgba(255, 253, 248, 0.72);
}

.full-width {
  width: 100%;
}

.hero-photo {
  min-height: min(620px, 78vh);
}

.placeholder-photo {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(183, 123, 23, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 43, 29, 0.9), rgba(66, 83, 58, 0.82)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
  box-shadow: var(--shadow);
  color: var(--cream);
}

.placeholder-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.88rem;
}

.cart-illustration {
  position: relative;
  width: min(74%, 390px);
  aspect-ratio: 1 / 1;
}

.cart-illustration span {
  position: absolute;
  display: block;
}

.umbrella {
  top: 4%;
  left: 12%;
  width: 76%;
  height: 30%;
  border-radius: 50% 50% 12% 12%;
  background: linear-gradient(135deg, #f8e1a0, #c9841d);
}

.umbrella::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 3px;
  height: 190px;
  background: rgba(255, 250, 240, 0.78);
  content: "";
}

.cart-top {
  top: 54%;
  left: 14%;
  width: 72%;
  height: 10%;
  border-radius: 6px;
  background: #f4ecd9;
}

.cart-body {
  top: 63%;
  left: 20%;
  width: 60%;
  height: 24%;
  border-radius: 6px;
  background: linear-gradient(135deg, #d49b4a, #815a2f);
}

.cart-wheel {
  top: 82%;
  width: 20%;
  aspect-ratio: 1 / 1;
  border: 7px solid #f8e1a0;
  border-radius: 50%;
  background: #1f2b1d;
}

.cart-wheel.left {
  left: 18%;
}

.cart-wheel.right {
  right: 18%;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 4vw, 64px);
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
  background: #f7f1e5;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 58px;
  padding: 16px;
  border: 1px solid rgba(183, 123, 23, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.8);
}

.notice-panel,
.price-card,
.contact-card {
  border: 1px solid rgba(183, 123, 23, 0.24);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.notice-panel {
  align-self: start;
  padding: clamp(22px, 4vw, 36px);
}

.notice-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.price-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(255, 253, 248, 1)),
    var(--paper);
}

.price {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 0.9;
}

.price-label {
  display: block;
  margin: 14px 0 26px;
  color: var(--muted);
  font-weight: 700;
}

.photo-section {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
  background: #eef2e7;
}

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

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

.photo-grid .placeholder-photo {
  min-height: 310px;
  box-shadow: none;
}

.photo-grid span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.agreement-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.agreement-section div {
  max-width: 780px;
}

.agreement-section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
  background:
    linear-gradient(135deg, rgba(39, 36, 31, 0.94), rgba(31, 43, 29, 0.92)),
    var(--ink);
  color: var(--cream);
}

.contact-section .section-kicker {
  color: #f7d67b;
}

.contact-section p {
  color: rgba(255, 250, 240, 0.76);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 250, 240, 0.22);
  color: var(--cream);
  font-style: normal;
}

.contact-card a {
  color: var(--cream);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(247, 214, 123, 0.56);
  text-underline-offset: 4px;
}

.contact-card span {
  color: rgba(255, 250, 240, 0.68);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .intro,
  .split,
  .pricing-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    min-height: 460px;
  }

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

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

@media (max-width: 620px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.55rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 360px;
  }

  .cart-illustration {
    width: min(88%, 320px);
  }

  .price-card {
    padding: 22px;
  }
}
