:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2d2a26;
  background: #f9f5f0;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6dfd5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #4a1f1f;
}

.brand-logo {
  width: 2.2rem;
  height: 2.2rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: #4a1f1f;
  text-decoration: none;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #4a1f1f;
  color: #4a1f1f;
  border-radius: 0.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.hero {
  background: radial-gradient(circle at top left, rgba(255, 250, 245, 0.95), transparent 48%),
    linear-gradient(180deg, #f4e9df 0%, #fff8f2 100%);
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 670px;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  min-height: 420px;
  border-radius: 2rem;
  border: 1px solid rgba(74, 31, 31, 0.15);
  position: relative;
  box-shadow: 0 30px 60px rgba(95, 61, 52, 0.12);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(74, 31, 31, 0.95);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 2.25rem;
}

.hero-stats div {
  background: #fff;
  border: 1px solid #e7dfd6;
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: #4a1f1f;
}

.hero-stats span {
  color: #6d5f55;
  font-size: 0.95rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #7c5b4f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.8rem;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  color: #3e2723;
}

p {
  margin: 0 0 1.5rem;
  color: #51473f;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: #4a1f1f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  color: #3e2723;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.story-card {
  background: #fff;
  border: 1px solid #e7dfd6;
  border-radius: 1.75rem;
  padding: 2rem;
  position: relative;
}

.story-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #4a1f1f;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlights-card {
  background: #fff;
  border: 1px solid #e7dfd6;
  border-radius: 1.75rem;
  padding: 1.75rem;
}

.highlights-card h3 {
  margin-top: 0;
  color: #4a1f1f;
}

.highlights-card p {
  margin: 0.85rem 0 0;
  color: #5c4f46;
}

.about-grid,
.wine-grid,
.visit-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-grid article,
.wine-card,
.visit-cards > div {
  background: #fff;
  border: 1px solid #e7dfd6;
  border-radius: 1.5rem;
  padding: 1.75rem;
}

.about-grid article h3,
.wine-card h3,
.visit-cards h3 {
  margin-top: 0;
  color: #4a1f1f;
}

.wine-card p,
.visit-cards p {
  margin: 0.75rem 0 0;
  color: #5c4f46;
}

.wine-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visit-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-card {
  background: #fff;
  border: 1px solid #e7dfd6;
  border-radius: 1.75rem;
  padding: 1.75rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-card h3 {
  margin-top: 0;
  color: #4a1f1f;
}

.gallery-card p {
  margin: 0.85rem 0 0;
  color: #5c4f46;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e7dfd6;
  border-radius: 1.75rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.testimonial-card p {
  margin: 0 0 1.25rem;
  color: #5c4f46;
  font-style: italic;
}

.testimonial-card strong {
  color: #4a1f1f;
}

.newsletter-card {
  background: #fff;
  border: 1px solid #e7dfd6;
  border-radius: 2rem;
  padding: 2rem;
  text-align: center;
}

.newsletter-form {
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin-top: 1.5rem;
}

.newsletter-form label {
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #3e2723;
}

.newsletter-form input {
  width: 100%;
  max-width: 420px;
}

.newsletter-form button {
  padding: 1rem 1.8rem;
  border-radius: 999px;
  background: #4a1f1f;
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #652a2a;
}

@media (max-width: 900px) {
  .wine-grid,
  .visit-cards,
  .gallery-grid,
  .story-grid,
  .highlights-grid,
  .testimonial-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: #fff;
  border: 1px solid #e7dfd6;
  border-radius: 1.5rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border: none;
  background: #f9f5f0;
  color: #3e2723;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 0;
  color: #5c4f46;
  padding-bottom: 1.25rem;
}

.faq-item.open .faq-answer {
  max-height: 160px;
  padding: 0 1.5rem 1.25rem;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: #3e2723;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9d3cb;
  border-radius: 0.85rem;
  padding: 0.95rem 1rem;
  font: inherit;
  color: #3d3733;
  background: #fff;
}

.contact-form button {
  width: fit-content;
  padding: 0.95rem 1.6rem;
  border: none;
  border-radius: 999px;
  background: #4a1f1f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  background: #652a2a;
}

.form-note {
  display: block;
  margin-top: 0.75rem;
  color: #7c5b4f;
  font-size: 0.9rem;
}

.form-note code {
  background: #fff6f1;
  padding: 0.1rem 0.3rem;
  border-radius: 0.35rem;
}

.site-footer {
  border-top: 1px solid #e6dfd5;
  padding: 2rem 0 1.5rem;
  background: #fffaf5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.footer-about p,
.footer-contact p {
  margin: 1rem 0 0;
  color: #5c4f46;
  line-height: 1.7;
}

.footer-contact h3,
.footer-social h3 {
  margin: 0;
  color: #3e2723;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-links a {
  color: #4a1f1f;
  text-decoration: none;
  font-weight: 600;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #e6dfd5;
  padding-top: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #6d5f55;
  text-align: center;
}

@media (max-width: 900px) {
  .wine-grid,
  .visit-cards,
  .gallery-grid,
  .story-grid,
  .highlights-grid,
  .testimonial-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    display: none;
    padding-top: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
