:root {
  --paper: #f6efe1;
  --paper-deep: #e8dac0;
  --ink: #17140d;
  --muted: #665d4f;
  --olive: #273f21;
  --olive-soft: #e2e7d3;
  --gold: #a98642;
  --cream: #fffaf0;
  --line: rgba(39, 63, 33, 0.2);
  --shadow: 0 24px 70px rgba(23, 20, 13, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 250, 240, 0.62);
  background: rgba(246, 239, 225, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--olive);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--olive);
}

.header-action,
.button,
.disabled-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-action,
.button.primary {
  background: var(--olive);
  color: var(--cream);
}

.header-action:hover,
.button.primary:hover {
  background: #1c2f18;
}

.button.secondary {
  border-color: var(--olive);
  background: rgba(255, 250, 240, 0.68);
  color: var(--olive);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  padding-top: 78px;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  padding: 0;
  filter: saturate(1.12) contrast(1.12) brightness(0.96);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(246, 239, 225, 0.98) 0%, rgba(246, 239, 225, 0.9) 37%, rgba(246, 239, 225, 0.28) 58%, rgba(246, 239, 225, 0.02) 100%),
    radial-gradient(circle at 78% 50%, rgba(23, 20, 13, 0) 0 28%, rgba(23, 20, 13, 0.18) 68%, rgba(23, 20, 13, 0.24) 100%),
    linear-gradient(180deg, rgba(23, 20, 13, 0) 70%, rgba(23, 20, 13, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(94svh - 78px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
}

h3 {
  font-size: 26px;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px clamp(20px, 5vw, 64px);
}

.intro-copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.story-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 110px;
}

.farm-landscape-section {
  padding: 0 clamp(20px, 5vw, 64px) 110px;
}

.farm-landscape {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.farm-landscape img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(39, 63, 33, 0.12);
}

.farm-landscape figcaption {
  margin-top: 14px;
  max-width: 820px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.story-columns p {
  margin: 0;
  min-height: 270px;
  padding: 34px;
  background: var(--cream);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.commitment-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 110px;
}

.commitment-section > p {
  margin: 0;
  align-self: end;
  padding: 34px;
  border-left: 3px solid var(--gold);
  background: var(--olive);
  color: rgba(255, 250, 240, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

.shop-preview {
  padding: 110px clamp(20px, 5vw, 64px);
  background: var(--cream);
}

.artwork-section {
  padding: 0 clamp(20px, 5vw, 64px) 110px;
}

.feature-panel-section {
  padding: 0 clamp(20px, 5vw, 64px) 110px;
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 42px;
}

.label-artwork {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.label-artwork img {
  display: block;
  width: 100%;
  border: 1px solid rgba(39, 63, 33, 0.12);
}

.label-artwork figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-grid article {
  min-height: 230px;
  padding: 30px;
  background: var(--cream);
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.feature-grid h3 {
  font-size: 24px;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.bottle-card {
  display: grid;
  min-height: 270px;
  place-items: end center;
  margin-bottom: 28px;
  border: 1px solid rgba(39, 63, 33, 0.12);
  background: linear-gradient(180deg, #efe2c8 0%, #f9f2e6 100%);
}

.product-image-frame {
  display: grid;
  min-height: 310px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(39, 63, 33, 0.12);
  background: linear-gradient(180deg, #efe2c8 0%, #f9f2e6 100%);
}

.product-image-frame img {
  display: block;
  width: min(72%, 220px);
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(18px 24px 24px rgba(23, 20, 13, 0.18));
}

.bottle-neck {
  width: 42px;
  height: 64px;
  background: #1d3318;
}

.bottle-body {
  display: grid;
  width: 130px;
  height: 188px;
  place-items: center;
  border-radius: 52px 52px 8px 8px;
  background: linear-gradient(90deg, #172a13, #314b28 48%, #142510);
  box-shadow: 18px 18px 36px rgba(23, 20, 13, 0.18);
}

.mini-label {
  display: grid;
  width: 86px;
  min-height: 112px;
  place-items: center;
  border: 1px solid var(--ink);
  background:
    linear-gradient(180deg, transparent 0 63%, var(--olive) 63% 100%),
    var(--cream);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  outline: 3px double rgba(39, 63, 33, 0.65);
  outline-offset: -7px;
  border-radius: 42% 42% 2px 2px / 12% 12% 2px 2px;
}

.mini-label span,
.mini-label small {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.mini-label strong {
  font-size: 22px;
  letter-spacing: 0.06em;
}

.reserve .mini-label {
  background:
    linear-gradient(180deg, var(--cream) 0 58%, #17140d 58% 100%),
    var(--cream);
  color: var(--cream);
}

.reserve .mini-label strong,
.reserve .mini-label span {
  color: var(--ink);
}

.gift-box {
  width: 180px;
  height: 210px;
  border: 1px solid var(--olive);
  background:
    linear-gradient(90deg, transparent 46%, rgba(39, 63, 33, 0.22) 46% 54%, transparent 54%),
    linear-gradient(var(--cream), var(--cream));
  box-shadow: 18px 18px 36px rgba(23, 20, 13, 0.14);
}

.product-card p {
  color: var(--muted);
  line-height: 1.65;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--olive);
  font-size: 14px;
  font-weight: 800;
}

.disabled-cart {
  width: 100%;
  margin-top: 18px;
  border-color: rgba(39, 63, 33, 0.35);
  background: transparent;
  color: var(--olive);
  cursor: not-allowed;
}

.contact {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(39, 63, 33, 0.25);
  background: #fffdf6;
  color: var(--ink);
  font: inherit;
  padding: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    background: var(--paper);
  }

  .hero-image {
    position: relative;
    order: 2;
    height: min(72svh, 560px);
    object-fit: cover;
    object-position: 73% center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    order: 1;
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 34px;
  }

  .section-grid,
  .story-columns,
  .product-grid,
  .feature-grid,
  .commitment-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-action {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .story-columns p,
  .commitment-section > p {
    padding: 26px;
  }
}
