:root {
  --ivory: #f5f0e6;
  --paper: #fbf8f1;
  --wine: #681b2b;
  --wine-dark: #4f1220;
  --ink: #26221f;
  --muted: #6b645d;
  --vine: #56624c;
  --stone: #d7c8b2;
  --line: rgba(38, 34, 31, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  height: 104px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 20;
  background: rgba(251,248,241,.96);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 17px; margin-right: auto; }
.brand-monogram {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 55px;
  line-height: 1;
}
.brand-copy { display: flex; flex-direction: column; align-items: center; }
.brand-copy strong, .footer-brand strong {
  font: 400 23px/1.2 Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.brand-copy small {
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .34em;
}
.desktop-nav { display: flex; gap: clamp(22px, 2.4vw, 42px); align-items: center; }
.desktop-nav a { font-size: 15px; position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 1px; background: var(--wine);
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid var(--wine);
  background: var(--wine);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.button:hover { background: var(--wine-dark); transform: translateY(-2px); }
.button-small { min-height: 52px; font-size: 14px; padding: 0 24px; }
.text-link {
  color: var(--wine);
  padding-bottom: 7px;
  border-bottom: 1px solid var(--wine);
  font-weight: 600;
}
.mobile-menu { display: none; }

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
}
.hero-copy {
  background-color: var(--ivory);
  background-image: radial-gradient(rgba(104,27,43,.035) .6px, transparent .6px);
  background-size: 6px 6px;
  padding: clamp(72px, 8vh, 110px) 4vw 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 28px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h1 {
  color: var(--wine);
  font-size: clamp(53px, 4.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero-text {
  max-width: 530px;
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 46px; margin-top: 34px; }
.trust-line {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto; padding-top: 48px;
  color: #514c47; font-size: 14px;
}
.trust-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--wine); }
.leaf {
  width: 42px; height: 42px; border: 1px solid #aaa38f; border-radius: 50%;
  display: grid; place-items: center; color: var(--vine); font-size: 12px;
}
.hero-image {
  position: relative;
  background: #c9b894 url("assets/hero.png") center/cover no-repeat;
  animation: heroReveal 1.2s ease both;
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(38,34,31,.05), transparent 35%);
}
.image-label {
  position: absolute; z-index: 2; right: 30px; bottom: 30px;
  padding: 10px 14px; border: 1px solid rgba(255,255,255,.7);
  color: white; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}

.section { padding: 120px 7vw; }
.intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10vw;
  border-bottom: 1px solid var(--line);
}
h2 { font-size: clamp(43px, 4.2vw, 68px); line-height: 1.06; letter-spacing: -.03em; }
.intro-copy { max-width: 620px; }
.intro-copy p { color: var(--muted); font-size: 16px; line-height: 1.8; }
.intro-copy .lead { color: var(--ink); font: 400 25px/1.5 Georgia, serif; margin-top: 0; }
.facts { display: flex; border-top: 1px solid var(--line); margin-top: 42px; padding-top: 26px; gap: 8%; }
.facts span { display: flex; flex-direction: column; gap: 4px; color: var(--muted); font-size: 13px; }
.facts strong { color: var(--wine); font: 400 30px Georgia, serif; }

.wines-section { background: #ede6da; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 12vw; margin-bottom: 64px; }
.section-heading > p { max-width: 520px; color: var(--muted); line-height: 1.8; }
.wine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wine-card { padding: 46px 38px 38px; background: var(--paper); text-align: center; }
.bottle {
  width: 88px; height: 305px; margin: 0 auto 35px; border-radius: 12px 12px 22px 22px;
  background: linear-gradient(90deg, #111 0%, #292823 42%, #0d0c0b 90%);
  box-shadow: 14px 15px 20px rgba(20,15,10,.18);
  position: relative;
}
.capsule { position: absolute; width: 35px; height: 75px; left: 27px; top: -20px; background: var(--wine); border-radius: 4px 4px 0 0; }
.bottle-label {
  position: absolute; left: 9px; right: 9px; top: 128px; min-height: 96px;
  padding: 17px 4px; background: #e7dfce; color: var(--wine);
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
}
.bottle-label strong { font: 400 16px Georgia, serif; }
.bottle-label small { font-size: 7px; letter-spacing: .11em; text-transform: uppercase; }
.wine-two .capsule { background: #b99b62; }
.wine-three .capsule { background: var(--vine); }
.wine-card .wine-type { color: var(--wine); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.wine-card h3 { font-size: 30px; margin: 14px 0; }
.wine-card > p:not(.wine-type) { color: var(--muted); font-size: 14px; line-height: 1.6; min-height: 45px; }
.wine-card a { color: var(--wine); display: inline-flex; gap: 15px; margin-top: 18px; font-weight: 600; font-size: 14px; }

.visit { display: grid; grid-template-columns: 52% 48%; padding: 0; background: var(--wine); color: #fff; }
.visit-photo {
  min-height: 760px; position: relative;
  background: #7c6c59 url("assets/wines.png") center/cover no-repeat;
}
.visit-badge {
  position: absolute; right: 26px; bottom: 26px; background: var(--paper); color: var(--ink);
  padding: 22px 27px; display: flex; flex-direction: column; gap: 4px;
}
.visit-badge strong { color: var(--wine); font: 400 28px Georgia, serif; }
.visit-badge span { font-size: 11px; }
.visit-copy { padding: 100px 8vw 90px 7vw; }
.visit-copy .eyebrow { color: #e9c8b2; }
.visit-copy h2 { max-width: 600px; }
.visit-copy > p:not(.eyebrow) { color: #eadfe0; line-height: 1.8; margin: 30px 0 36px; max-width: 590px; }
.visit-copy ul { list-style: none; margin: 0 0 42px; padding: 0; border-top: 1px solid rgba(255,255,255,.25); }
.visit-copy li { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.visit-copy li > span { color: #d7b8aa; font: 400 18px Georgia, serif; }
.visit-copy li div { display: flex; flex-direction: column; gap: 7px; }
.visit-copy li strong { font: 400 19px Georgia, serif; }
.visit-copy li small { color: #d6c7c8; }
.visit-copy .button { background: var(--paper); border-color: var(--paper); color: var(--wine); }

.reservation { display: grid; grid-template-columns: 40% 1fr; gap: 10vw; background: var(--ivory); }
.reservation-heading > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; max-width: 480px; margin-top: 28px; }
.opening { border-left: 2px solid var(--wine); padding-left: 20px; margin-top: 36px; display: flex; flex-direction: column; gap: 7px; }
.opening span { color: var(--muted); font-size: 14px; }
.booking-form { background: var(--paper); padding: 48px; box-shadow: 0 20px 60px rgba(70,45,30,.08); }
.booking-form label { display: flex; flex-direction: column; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.booking-form input, .booking-form select {
  height: 52px; border: 0; border-bottom: 1px solid #aaa095; background: transparent;
  color: var(--ink); outline: none; text-transform: none; letter-spacing: 0; border-radius: 0;
}
.booking-form input:focus, .booking-form select:focus { border-color: var(--wine); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 28px 0; }
.booking-form > .button { width: 100%; margin-top: 34px; }
.booking-form > small { display: block; text-align: center; color: var(--muted); margin-top: 12px; }
.form-message { padding: 15px 18px; margin-bottom: 24px; line-height: 1.5; }
.form-message.success { color: #29462d; background: #e4eee2; border-left: 3px solid #49684c; }
.form-message.error { color: #681b2b; background: #f4e4e5; border-left: 3px solid #681b2b; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.contact { display: grid; grid-template-columns: 42% 58%; padding: 0; min-height: 560px; }
.contact-card { background: #252b24; color: #fff; padding: 90px 7vw; }
.contact-card .eyebrow { color: #c9bda8; }
.contact-card h2 { font-size: clamp(38px, 3.6vw, 57px); }
.contact-card > p:not(.eyebrow) { color: #d6d9d3; line-height: 1.7; margin: 27px 0; }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.contact-card .text-link { color: #fff; border-color: #fff; }
.map {
  position: relative; overflow: hidden; background-color: #ddd2be;
  background-image:
    linear-gradient(24deg, transparent 47%, rgba(86,98,76,.25) 48%, rgba(86,98,76,.25) 50%, transparent 51%),
    linear-gradient(-35deg, transparent 47%, rgba(104,27,43,.12) 48%, rgba(104,27,43,.12) 49%, transparent 50%);
  background-size: 180px 140px, 240px 190px;
}
.map::after { content: ""; position: absolute; left: -10%; right: -10%; top: 54%; height: 70px; background: #9aafa8; transform: rotate(-4deg); opacity: .8; }
.river { position: absolute; top: 51%; left: 8%; z-index: 2; color: white; font: italic 18px Georgia, serif; transform: rotate(-4deg); }
.pin { position: absolute; z-index: 3; left: 61%; top: 36%; width: 64px; height: 64px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--wine); color: white; display: grid; place-items: center; font: 28px Georgia, serif; }
.pin small { position: absolute; transform: rotate(45deg); top: 72px; color: var(--wine); font: 700 10px Arial; text-transform: uppercase; letter-spacing: .12em; }
.town { position: absolute; left: 24%; top: 28%; letter-spacing: .25em; font-size: 13px; color: #6f695f; }

footer { background: #151713; color: #ddd8cf; padding: 55px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand div { display: flex; flex-direction: column; gap: 5px; }
.footer-brand small { color: #9c9b94; }
footer > p { max-width: 340px; font-size: 11px; color: #92928d; line-height: 1.6; }
.footer-links { display: flex; gap: 24px; font-size: 12px; }

@keyframes heroReveal { from { opacity: .5; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }

@media (max-width: 1050px) {
  .desktop-nav, .site-header > .button { display: none; }
  .mobile-menu { display: block; margin-left: auto; position: relative; }
  .mobile-menu summary { width: 46px; height: 46px; list-style: none; display: grid; place-content: center; gap: 7px; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 26px; height: 1px; background: var(--ink); display: block; }
  .mobile-menu nav { position: absolute; right: 0; top: 55px; width: min(340px, 88vw); background: var(--paper); padding: 30px; box-shadow: 0 18px 50px rgba(0,0,0,.14); display: flex; flex-direction: column; gap: 22px; }
  .hero { grid-template-columns: 48% 52%; }
  .hero-copy { padding-left: 5vw; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
}

@media (max-width: 760px) {
  .site-header { height: 78px; padding: 0 20px; }
  .brand-monogram { font-size: 43px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { order: 2; padding: 55px 22px 38px; min-height: 590px; }
  .hero-image { order: 1; min-height: 48vh; }
  h1 { font-size: clamp(45px, 13vw, 62px); }
  .hero-text { font-size: 16px; margin-top: 27px; }
  .hero-actions { width: 100%; margin-top: 29px; }
  .hero-actions .button { width: 100%; }
  .trust-line { flex-wrap: wrap; gap: 10px; padding-top: 42px; }
  .trust-line .leaf { display: none; }
  .section { padding: 80px 22px; }
  .intro, .section-heading, .reservation { grid-template-columns: 1fr; gap: 48px; }
  .facts { justify-content: space-between; gap: 10px; }
  .wine-grid { grid-template-columns: 1fr; }
  .wine-card { padding: 40px 24px; }
  .visit { display: flex; flex-direction: column; }
  .visit-photo { min-height: 470px; }
  .visit-copy { padding: 75px 22px; }
  .booking-form { padding: 30px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 28px; }
  .contact { grid-template-columns: 1fr; }
  .contact-card { padding: 75px 22px; }
  .map { min-height: 400px; }
  footer { flex-direction: column; align-items: flex-start; padding: 50px 22px; }
  .footer-links { flex-wrap: wrap; }
}
