:root {
  color-scheme: light dark;
  --bg: #f8f4ee;
  --surface: #fffdf8;
  --text: #2a2019;
  --muted: #66594e;
  --accent: #2f6a45;
  --accent-strong: #245236;
  --border: #e6d8c8;
  --shadow: 0 18px 40px rgba(53, 33, 10, 0.12);
  --bg-grad-one: #f2e5d6;
  --bg-grad-two: #efe7d2;
  --shape-one: #d6e7d1;
  --shape-two: #f1dfca;
  --input-bg: #fff;
  --image-border: rgba(110, 80, 40, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 20%, var(--bg-grad-one) 0%, transparent 40%),
    radial-gradient(circle at 85% 0%, var(--bg-grad-two) 0%, transparent 35%), var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.65;
}

.bg-shape-one {
  width: 360px;
  height: 360px;
  background: var(--shape-one);
  top: -120px;
  right: -120px;
}

.bg-shape-two {
  width: 280px;
  height: 280px;
  background: var(--shape-two);
  bottom: 10%;
  left: -90px;
}

.site-header,
.section,
.site-footer {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(47, 106, 69, 0.25);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47, 106, 69, 0.3);
}

.header-cta:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 50%, white 50%);
  outline-offset: 2px;
}

.section {
  margin: 1.5rem auto 3.2rem;
}

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

.hero-copy h1 {
  margin: 0.4rem 0 1rem;
  line-height: 1.1;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0;
}

.lead {
  margin-bottom: 1.4rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-media img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--image-border);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.features article {
  background: color-mix(in srgb, var(--surface) 90%, white 10%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.features h2 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.features p {
  margin: 0;
  color: var(--muted);
}

.product {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.product-card,
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
}

.product-card h2,
.order-summary h3,
.gallery h2 {
  font-family: "Fraunces", serif;
  margin: 0.35rem 0 0.6rem;
}

.spec,
.price-note,
.small-note,
.order-summary p {
  color: var(--muted);
}

.small-note {
  margin: 0.1rem 0;
}

.price-row {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
}

.price {
  font-size: 2rem;
  font-family: "Fraunces", serif;
  margin: 0;
}

.order-form {
  display: grid;
  gap: 0.75rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.radio-group {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem 0.8rem;
}

.radio-group legend {
  font-weight: 600;
  padding: 0 0.35rem;
}

.radio-group label {
  margin-top: 0.45rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.radio-group input[type="radio"] {
  width: auto;
}

.delivery-fields {
  display: grid;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 86%, #f4ead9 14%);
}

.delivery-fields[hidden] {
  display: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-wrap {
  margin-top: 0.25rem;
}

label {
  font-weight: 600;
  margin-top: 0.2rem;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: var(--input-bg);
  color: var(--text);
}

.total {
  margin: 0.35rem 0;
}

.fee-line {
  margin: 0.35rem 0 0.1rem;
}

.fulfillment-note {
  margin-top: 0.95rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 84%, #f4e9da 16%);
}

.fulfillment-note p {
  margin: 0;
  color: var(--text);
}

.delivery-map-wrap {
  margin-top: 0.9rem;
}

.map-label {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.delivery-map {
  width: 100%;
  height: 280px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-heading {
  margin-bottom: 0.8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--image-border);
}

.site-footer {
  padding-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 600ms ease forwards;
}

.hero.reveal {
  animation-delay: 60ms;
}

.features.reveal {
  animation-delay: 130ms;
}

.product.reveal {
  animation-delay: 220ms;
}

.gallery.reveal {
  animation-delay: 290ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111417;
    --surface: #1b2126;
    --text: #edf1e6;
    --muted: #b8c2b3;
    --accent: #5f9f75;
    --accent-strong: #4d8862;
    --border: #2b343c;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    --bg-grad-one: #223127;
    --bg-grad-two: #2b2a22;
    --shape-one: #23362a;
    --shape-two: #2d3025;
    --input-bg: #151b1f;
    --image-border: rgba(214, 224, 203, 0.2);
  }

  .features article {
    background: color-mix(in srgb, var(--surface) 92%, black 8%);
  }
}

@media (max-width: 900px) {
  .hero,
  .features,
  .product,
  .field-row {
    grid-template-columns: 1fr;
  }

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

  .site-header {
    padding-top: 0.8rem;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
