/* Design DNA: Split-screen hero — tasting copy left / Galilee vineyard rows right; burgundy grape + vine green; refined winery hospitality mood */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --gw-burgundy: #6B1E2C;
  --gw-vine: #4A6B3A;
  --gw-parchment: #F6F0E4;
  --gw-oak: #2A211C;
  --gw-burgundy-light: #8B3A48;
  --gw-vine-light: #6A8F58;
  --gw-gold: #C4A35A;
  --gw-white: #FFFFFF;
  --gw-font-display: 'Cormorant Garamond', Georgia, serif;
  --gw-font-body: 'Raleway', 'Segoe UI', sans-serif;
  --gw-max-width: 1200px;
  --gw-radius: 4px;
  --gw-shadow: 0 4px 24px rgba(42, 33, 28, 0.12);
  --gw-transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--gw-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gw-oak);
  background: var(--gw-parchment);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gw-burgundy); text-decoration: none; transition: color var(--gw-transition); }
a:hover { color: var(--gw-burgundy-light); }

h1, h2, h3, h4 {
  font-family: var(--gw-font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--gw-oak);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

p { margin-bottom: 1rem; }

.gw-container {
  width: 100%;
  max-width: var(--gw-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.gw-header {
  background: var(--gw-oak);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gw-burgundy);
}

.gw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--gw-max-width);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
}

.gw-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.gw-logo__mark {
  width: 38px;
  height: 38px;
  background: var(--gw-burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gw-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gw-parchment);
}

.gw-logo__text {
  font-family: var(--gw-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gw-parchment);
  letter-spacing: 0.04em;
}

.gw-logo__sub {
  display: block;
  font-family: var(--gw-font-body);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gw-gold);
  margin-top: -2px;
}

.gw-nav { display: flex; gap: 1.8rem; list-style: none; }

.gw-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-parchment);
  opacity: 0.85;
  transition: opacity var(--gw-transition), color var(--gw-transition);
}

.gw-nav a:hover,
.gw-nav a.gw-nav__active { opacity: 1; color: var(--gw-gold); }

.gw-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.gw-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gw-parchment);
  transition: var(--gw-transition);
}

/* ── Hero Split-screen ── */
.gw-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}

.gw-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem max(1.5rem, calc((100vw - var(--gw-max-width)) / 2 + 1.5rem));
  background: var(--gw-parchment);
}

.gw-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gw-vine);
  margin-bottom: 1.2rem;
}

.gw-hero__title {
  margin-bottom: 1.2rem;
  color: var(--gw-burgundy);
}

.gw-hero__title em {
  font-style: italic;
  color: var(--gw-oak);
}

.gw-hero__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gw-oak);
  opacity: 0.85;
  max-width: 440px;
  margin-bottom: 2rem;
}

.gw-hero__image {
  position: relative;
  overflow: hidden;
}

.gw-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--gw-parchment) 0%, transparent 18%);
}

/* ── Buttons ── */
.gw-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--gw-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--gw-transition), color var(--gw-transition), transform var(--gw-transition);
  text-decoration: none;
}

.gw-btn--primary {
  background: var(--gw-burgundy);
  color: var(--gw-parchment);
}

.gw-btn--primary:hover {
  background: var(--gw-burgundy-light);
  color: var(--gw-white);
}

.gw-btn--outline {
  background: transparent;
  color: var(--gw-burgundy);
  border: 2px solid var(--gw-burgundy);
}

.gw-btn--outline:hover {
  background: var(--gw-burgundy);
  color: var(--gw-parchment);
}

.gw-btn--vine {
  background: var(--gw-vine);
  color: var(--gw-parchment);
}

.gw-btn--vine:hover { background: var(--gw-vine-light); color: var(--gw-white); }

.gw-btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Sections ── */
.gw-section { padding: 5rem 0; }

.gw-section--dark {
  background: var(--gw-oak);
  color: var(--gw-parchment);
}

.gw-section--dark h2,
.gw-section--dark h3 { color: var(--gw-parchment); }

.gw-section--burgundy { background: var(--gw-burgundy); color: var(--gw-parchment); }
.gw-section--burgundy h2, .gw-section--burgundy h3 { color: var(--gw-parchment); }

.gw-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.gw-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gw-vine);
  margin-bottom: 0.8rem;
}

.gw-section--dark .gw-section__eyebrow,
.gw-section--burgundy .gw-section__eyebrow { color: var(--gw-gold); }

.gw-section__header p {
  font-weight: 300;
  opacity: 0.85;
}

.gw-divider {
  width: 60px;
  height: 2px;
  background: var(--gw-burgundy);
  margin: 1rem auto;
}

.gw-section--dark .gw-divider,
.gw-section--burgundy .gw-divider { background: var(--gw-gold); }

/* ── Cards Grid ── */
.gw-grid {
  display: grid;
  gap: 2rem;
}

.gw-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gw-grid--2 { grid-template-columns: repeat(2, 1fr); }

.gw-card {
  background: var(--gw-white);
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: var(--gw-shadow);
  transition: transform var(--gw-transition);
}

.gw-card:hover { transform: translateY(-4px); }

.gw-card__img { aspect-ratio: 16/10; overflow: hidden; }
.gw-card__img img { width: 100%; height: 100%; object-fit: cover; }

.gw-card__body { padding: 1.6rem; }

.gw-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gw-vine);
  margin-bottom: 0.5rem;
}

.gw-card__price {
  font-family: var(--gw-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gw-burgundy);
  margin: 0.6rem 0;
}

.gw-card__meta {
  font-size: 0.82rem;
  color: var(--gw-oak);
  opacity: 0.6;
  margin-bottom: 1rem;
}

/* ── Page Hero (inner pages) ── */
.gw-page-hero {
  position: relative;
  height: 42vh;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.gw-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,33,28,0.85) 0%, rgba(42,33,28,0.3) 60%, transparent 100%);
}

.gw-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem 3rem;
  max-width: var(--gw-max-width);
  margin: 0 auto;
  width: 100%;
}

.gw-page-hero h1 {
  color: var(--gw-parchment);
  margin-bottom: 0.5rem;
}

.gw-page-hero p {
  color: var(--gw-parchment);
  opacity: 0.8;
  font-weight: 300;
  margin: 0;
}

/* ── Split Content ── */
.gw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.gw-split__img {
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: var(--gw-shadow);
}

/* ── Tasting Packages ── */
.gw-package {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: var(--gw-white);
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: var(--gw-shadow);
  margin-bottom: 2rem;
}

.gw-package__img { overflow: hidden; }
.gw-package__img img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }

.gw-package__body {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gw-package__includes {
  list-style: none;
  margin: 1rem 0;
}

.gw-package__includes li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
}

.gw-package__includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gw-vine);
  font-size: 0.7rem;
}

/* ── Gallery ── */
.gw-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gw-gallery__item {
  position: relative;
  border-radius: var(--gw-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gw-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gw-gallery__item:hover img { transform: scale(1.05); }

.gw-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(42,33,28,0.85));
  color: var(--gw-parchment);
  font-family: var(--gw-font-display);
  font-size: 1.1rem;
}

/* ── Story blocks ── */
.gw-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.gw-story--reverse { direction: rtl; }
.gw-story--reverse > * { direction: ltr; }

.gw-story__num {
  font-family: var(--gw-font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gw-burgundy);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -1rem;
}

/* ── CTA Banner ── */
.gw-cta {
  position: relative;
  border-radius: var(--gw-radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gw-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 30, 44, 0.72);
}

.gw-cta__content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 560px;
}

.gw-cta__content h2 { color: var(--gw-parchment); margin-bottom: 1rem; }
.gw-cta__content p { color: var(--gw-parchment); opacity: 0.9; margin-bottom: 1.5rem; }

/* ── Contact Form ── */
.gw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.gw-form-group { margin-bottom: 1.2rem; }

.gw-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--gw-oak);
}

.gw-form-group input,
.gw-form-group select,
.gw-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(42,33,28,0.2);
  border-radius: var(--gw-radius);
  font-family: var(--gw-font-body);
  font-size: 0.95rem;
  background: var(--gw-white);
  color: var(--gw-oak);
  transition: border-color var(--gw-transition);
}

.gw-form-group input:focus,
.gw-form-group select:focus,
.gw-form-group textarea:focus {
  outline: none;
  border-color: var(--gw-burgundy);
}

.gw-form-group textarea { resize: vertical; min-height: 120px; }

.gw-info-card {
  background: var(--gw-oak);
  color: var(--gw-parchment);
  padding: 2.5rem;
  border-radius: var(--gw-radius);
}

.gw-info-card h3 { color: var(--gw-gold); margin-bottom: 1.5rem; }

.gw-info-item {
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(246,240,228,0.12);
}

.gw-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.gw-info-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gw-gold);
  margin-bottom: 0.3rem;
}

.gw-info-item a { color: var(--gw-parchment); }
.gw-info-item a:hover { color: var(--gw-gold); }

/* ── Privacy ── */
.gw-legal { max-width: 780px; margin: 0 auto; }
.gw-legal h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.gw-legal h3 { margin: 1.8rem 0 0.8rem; font-size: 1.2rem; }
.gw-legal ul { margin: 0.5rem 0 1rem 1.5rem; }
.gw-legal li { margin-bottom: 0.4rem; }

/* ── Footer ── */
.gw-footer {
  background: var(--gw-oak);
  color: var(--gw-parchment);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--gw-burgundy);
}

.gw-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.gw-footer__col h4 {
  font-family: var(--gw-font-display);
  font-size: 1.15rem;
  color: var(--gw-gold);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.gw-footer__col p,
.gw-footer__col li {
  font-size: 0.88rem;
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.8;
}

.gw-footer__col ul { list-style: none; }
.gw-footer__col a { color: var(--gw-parchment); opacity: 0.8; }
.gw-footer__col a:hover { color: var(--gw-gold); opacity: 1; }

.gw-footer__bottom {
  border-top: 1px solid rgba(246,240,228,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.6;
}

/* ── Cookie Modal ── */
.gw-cookie {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 33, 28, 0.55);
}

.gw-cookie__box {
  background: var(--gw-white);
  border-radius: var(--gw-radius);
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(42,33,28,0.25);
}

.gw-cookie__box h3 {
  font-family: var(--gw-font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gw-burgundy);
}

.gw-cookie__box p {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.gw-cookie__actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

/* ── Utilities ── */
.gw-text-center { text-align: center; }
.gw-mb-0 { margin-bottom: 0; }
.gw-mt-2 { margin-top: 2rem; }

/* ── Responsive: 900px ── */
@media (max-width: 900px) {
  .gw-hero { grid-template-columns: 1fr; min-height: auto; }
  .gw-hero__copy { padding: 3rem 1.5rem; order: 1; }
  .gw-hero__image { order: 0; height: 50vh; min-height: 300px; }
  .gw-hero__image::after { background: linear-gradient(to bottom, transparent 70%, var(--gw-parchment) 100%); }

  .gw-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gw-split, .gw-story, .gw-contact-grid { grid-template-columns: 1fr; }
  .gw-story--reverse { direction: ltr; }
  .gw-package { grid-template-columns: 1fr; }
  .gw-package__body { padding: 1.5rem; }
  .gw-gallery { grid-template-columns: repeat(2, 1fr); }
  .gw-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: 560px ── */
@media (max-width: 560px) {
  .gw-burger { display: flex; }

  .gw-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gw-oak);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 2px solid var(--gw-burgundy);
  }

  .gw-nav.gw-nav--open { display: flex; }
  .gw-nav li { border-bottom: 1px solid rgba(246,240,228,0.08); }
  .gw-nav a { display: block; padding: 0.8rem 0; }

  .gw-header__inner { position: relative; }

  .gw-grid--3, .gw-grid--2 { grid-template-columns: 1fr; }
  .gw-gallery { grid-template-columns: 1fr; }
  .gw-footer__grid { grid-template-columns: 1fr; }
  .gw-footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .gw-btn-group { flex-direction: column; }
  .gw-btn { text-align: center; }
  .gw-section { padding: 3rem 0; }
  .gw-page-hero { height: 32vh; }
}
