/* ═══════════════════════════════════════════════════════
   VINOS D'GUADIANA — Página Principal
   ═══════════════════════════════════════════════════════ */

:root {
  --brown: #482817;
  --amber: #AF6900;
  --muted-gold: #9E845C;
  --cream: #F5EBDA;
  --light-cream: #FAF7F2;
  --dark-brown: #623D2A;
  --gold-line: #D1B991;
  --bright-gold: #BB6500;
  --orange-gold: #C97801;
  --white: #ffffff;

  --font-display: 'Cormorant', serif;
  --font-body: 'Libre Baskerville', serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #e8dcc8;
  color: var(--brown);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 80px rgba(72, 40, 23, 0.1);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ═══════════════════ HEADER ═══════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  z-index: 100;
  padding: 30px 0;
  background: linear-gradient(to bottom, var(--cream) 60%, transparent);
  transition: background 0.3s, padding 0.3s;
}

.site-header.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(72, 40, 23, 0.08);
  padding: 20px 0;
}

.header-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 117px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-tree {
  width: 64px;
  height: auto;
  --fill-0: #482817;
}

.logo-text {
  height: 44px;
  width: auto;
  --fill-0: #482817;
}

.logo-text-styled {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 65px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--dark-brown);
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
}

.header-icons {
  display: flex;
  gap: 0;
}

.icon-btn {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-brown);
  position: relative;
  transition: all 0.3s;
}

.icon-btn:hover {
  background: var(--dark-brown);
  color: var(--cream);
}

.icon-btn + .icon-btn {
  margin-left: -1.5px;
}

.cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--amber);
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

/* ═══════════════════ HERO ═══════════════════ */

.hero {
  position: relative;
  height: 1080px;
  max-height: 100vh;
  padding-top: 130px;
  min-height: 700px;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg-texture.png') center bottom / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 300px;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--amber);
  letter-spacing: 8.4px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 91px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 30px;
  text-transform: capitalize;
}

.hero-desc {
  font-size: 20px;
  line-height: 2;
  color: var(--brown);
  max-width: 587px;
  margin-bottom: 50px;
}

.btn-outline {
  display: inline-block;
  padding: 18px 60px;
  border-top: 1.18px solid var(--amber);
  border-bottom: 1.18px solid var(--amber);
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--brown);
  letter-spacing: 1px;
  transition: all 0.4s;
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--cream);
}

.hero-artwork {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-45%);
  z-index: 1;
  animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-circle {
  width: 484px;
  height: 484px;
  background: var(--gold-line);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -40%);
}

.hero-bottle {
  position: relative;
  z-index: 2;
  height: 780px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(72, 40, 23, 0.3));
}

/* ═══════════════════ COMMON SECTION STYLES ═══════════════════ */

.section-subtitle {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--amber);
  letter-spacing: 8.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-subtitle.center {
  text-align: center;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 30px;
}

.section-heading.center {
  text-align: center;
}

.btn-solid {
  display: inline-block;
  padding: 18px 50px;
  background: var(--amber);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--light-cream);
  transition: all 0.4s;
  border: none;
  cursor: pointer;
}

.btn-solid:hover {
  background: var(--brown);
}

/* ═══════════════════ SECTION 1: HISTORY ═══════════════════ */

.section-history {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.gold-separator {
  width: 100%;
  height: 2px;
  background: var(--gold-line);
  margin-bottom: 60px;
}

.history-tabs {
  display: flex;
  justify-content: space-around;
  padding: 0 200px;
  margin-bottom: 40px;
}

.history-tab {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tab-number {
  font-family: var(--font-display);
  font-size: 90px;
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
}

.tab-info {
  padding-top: 16px;
}

.tab-title {
  display: block;
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--brown);
  letter-spacing: 2.4px;
  font-weight: 400;
}

.tab-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  color: var(--muted-gold);
  margin-top: 4px;
}

.tab-line {
  width: 160px;
  height: 1px;
  background: var(--gold-line);
  margin-top: 14px;
}

.history-content {
  display: flex;
  padding: 80px 115px 0;
  gap: 100px;
  position: relative;
}

.history-left {
  flex: 0 0 580px;
}

.history-text {
  font-size: 17px;
  line-height: 30px;
  color: var(--muted-gold);
  margin-bottom: 40px;
}

.history-text p + p {
  margin-top: 20px;
}

.history-right {
  flex: 1;
  position: relative;
}

.history-photo-wrapper {
  width: 627px;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  transform: rotate(-3deg);
  box-shadow: 10px 15px 40px rgba(72, 40, 23, 0.15);
}

.history-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-year {
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: var(--font-body);
  font-size: 80px;
  font-style: italic;
  color: var(--muted-gold);
  opacity: 0.5;
  letter-spacing: 8px;
}

.history-caption {
  font-size: 20px;
  color: var(--muted-gold);
  margin-top: 30px;
  text-align: right;
}

/* ═══════════════════ SECTION 2: FEATURES + BARRELS ═══════════════════ */

.section-features {
  padding: 0 74px 0;
  position: relative;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 30px 28px;
  min-height: 272px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(72, 40, 23, 0.1);
}

.feature-label {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--amber);
  letter-spacing: 2.55px;
  display: block;
  margin-bottom: 6px;
}

.feature-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 2.4px;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 17px;
  font-style: italic;
  color: var(--muted-gold);
}

.feature-img-wrapper {
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.feature-img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(-5px 5px 10px rgba(0, 0, 0, 0.15));
}

.feature-img.tasting-img {
  max-height: 70%;
}

.feature-img.harvest-img {
  max-height: 65%;
}

.feature-img.package-img {
  max-height: 80%;
  max-width: 45%;
}

.barrels-section {
  position: relative;
  height: 630px;
  border-radius: 10px;
  overflow: hidden;
}

.barrels-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.barrels-overlay {
  position: absolute;
  inset: 0;
  background: rgba(108, 65, 0, 0.3);
  mix-blend-mode: color;
}

.barrels-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--cream);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.barrels-number {
  display: block;
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 300;
  letter-spacing: 20px;
  line-height: 1;
}

.barrels-letter {
  display: block;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  line-height: 1;
}

.barrels-label {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.barrels-label-title {
  display: block;
  font-family: var(--font-body);
  font-size: 24px;
  color: white;
  letter-spacing: 2.4px;
}

.barrels-label-desc {
  display: block;
  font-size: 17px;
  color: var(--orange-gold);
}

/* ═══════════════════ SECTION 3: OUR BEST SPIRIT ═══════════════════ */

.section-spirit {
  padding: 100px 0 80px;
  overflow: hidden;
}

.spirit-desc {
  text-align: center;
  font-size: 17px;
  line-height: 30px;
  color: var(--muted-gold);
  max-width: 564px;
  margin: 0 auto 60px;
}

.spirit-carousel {
  display: flex;
  gap: 36px;
  padding: 0 115px;
  overflow: visible;
}

.spirit-card {
  flex: 0 0 calc(33.333% - 24px);
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
}

.spirit-bottle-wrap {
  flex: 0 0 100px;
  height: 386px;
  position: relative;
  z-index: 2;
}

.spirit-bottle {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(5px 10px 20px rgba(0, 0, 0, 0.2));
}

.spirit-info {
  background: var(--cream);
  border-radius: 11px;
  padding: 26px 24px 26px 40px;
  min-height: 255px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spirit-name {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.4;
  margin-bottom: 8px;
}

.spirit-variety {
  font-size: 17px;
  color: var(--amber);
  margin-bottom: 20px;
}

.spirit-purchase {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.stock-label {
  display: block;
  font-size: 17px;
  color: var(--muted-gold);
  margin-bottom: 2px;
}

.spirit-price {
  font-family: var(--font-body);
  font-size: 33px;
  color: var(--brown);
}

.spirit-actions {
  display: flex;
  gap: 0;
}

.spirit-btn {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--muted-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.spirit-btn + .spirit-btn {
  margin-left: -1.5px;
}

.spirit-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
}

.spirit-btn img {
  width: 22px;
  height: auto;
  --stroke-0: #AF6900;
  --fill-0: #AF6900;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--muted-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--muted-gold);
  transition: all 0.3s;
}

.carousel-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-line);
  transition: background 0.3s;
}

.dot.active {
  background: var(--amber);
}

/* ═══════════════════ SECTION 4: TESTIMONIAL ═══════════════════ */

.section-testimonial {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg-texture.png') center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.testimonial-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 138px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.testimonial-content {
  flex: 1;
  max-width: 726px;
}

.quote-mark {
  width: 88px;
  height: 62px;
  margin-bottom: 20px;
  --fill-0: #AF6900;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 30px;
  line-height: 45px;
  color: var(--brown);
  margin-bottom: 40px;
}

.testimonial-nav-arrows {
  position: absolute;
  top: 50%;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--muted-gold);
  pointer-events: auto;
  transition: all 0.3s;
  background: rgba(245, 235, 218, 0.8);
}

.testimonial-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 34px;
  color: var(--bright-gold);
  letter-spacing: 3.4px;
  margin-bottom: 6px;
}

.testimonial-role {
  font-size: 24px;
  color: var(--brown);
}

.testimonial-portrait {
  flex: 0 0 526px;
  height: 524px;
  position: relative;
}

.portrait-circle {
  position: absolute;
  inset: 0;
  background: var(--gold-line);
  border-radius: 50%;
  opacity: 0.6;
}

.portrait-photo {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: url('assets/images/photo-couple-laughing.jpg') center/cover no-repeat;
  overflow: hidden;
}

.portrait-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(255,255,255,0.2), transparent 60%);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  position: relative;
}

/* ═══════════════════ SECTION 5: NATURAL AUROMA ═══════════════════ */

.section-auroma {
  padding: 100px 115px 80px;
  position: relative;
  overflow: hidden;
}

.auroma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px 250px;
  gap: 24px;
  margin: 50px 0 60px;
}

.auroma-photo {
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.auroma-photo:hover {
  transform: scale(1.02);
}

.auroma-photo.p1 {
  background-image: url('assets/images/photo-grape-harvest.jpg');
}
.auroma-photo.p2 {
  background-image: url('assets/images/photo-glasses-toast.jpg');
}
.auroma-photo.p3 {
  background-image: url('assets/images/photo-worker-vineyard.jpg');
}
.auroma-photo.p4 {
  background-image: url('assets/images/photo-couple-bottle.jpg');
}
.auroma-photo.p5 {
  background-image: url('assets/images/photo-couple-table.jpg');
}
.auroma-photo.p6 {
  background-image: url('assets/images/photo-group-dinner.jpg');
}

.auroma-bottom {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.auroma-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
  flex: 0 0 auto;
}

.auroma-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.auroma-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auroma-feature-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.auroma-feature-desc {
  font-size: 15px;
  font-style: italic;
  color: var(--muted-gold);
}

.auroma-history-block {
  flex: 1;
}

.auroma-history-heading {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 20px;
}

.auroma-history-text {
  font-size: 17px;
  line-height: 30px;
  color: var(--muted-gold);
  margin-bottom: 30px;
}

/* ═══════════════════ SECTION 6: OUR VINEYARD ═══════════════════ */

.section-vineyard {
  padding: 40px 74px;
}

.vineyard-panoramic {
  position: relative;
  height: 700px;
  border-radius: 12px;
  overflow: hidden;
  background: url('assets/images/photo-aerial-sierra.jpg') center/cover no-repeat;
}

.vineyard-panoramic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(60, 50, 20, 0.6), rgba(80, 70, 30, 0.3));
}

.vineyard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(80, 70, 30, 0.15);
}

.vineyard-label {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}

.vineyard-title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.vineyard-desc {
  font-size: 17px;
  color: var(--orange-gold);
}

/* ═══════════════════ SECTION 7: TEAM ═══════════════════ */

.section-team {
  padding: 100px 115px 80px;
  position: relative;
  overflow: hidden;
}

.section-team::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: url('assets/images/hero-bg-texture.png') center bottom / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  text-align: left;
}

.team-photo {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s;
}

.team-photo:hover {
  transform: scale(1.03);
}

.team-photo.tp1 {
  background: linear-gradient(160deg, #8a7a6a 0%, #5a4a3a 100%);
}
.team-photo.tp2 {
  background: linear-gradient(160deg, #9a7a5a 0%, #6a5a4a 100%);
}
.team-photo.tp3 {
  background: linear-gradient(160deg, #7a8a6a 0%, #4a5a3a 100%);
}
.team-photo.tp4 {
  background: linear-gradient(160deg, #8a8a7a 0%, #5a5a4a 100%);
}

.team-name {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 17px;
  color: var(--amber);
  margin-bottom: 14px;
}

.team-desc {
  font-size: 15px;
  line-height: 24px;
  color: var(--muted-gold);
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  gap: 6px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-line);
  color: var(--muted-gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}

.social-icon:hover,
.social-icon.active {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
}

.social-icon svg {
  width: 14px;
  height: 12px;
}

/* ═══════════════════ SECTION 8: FAQ ═══════════════════ */

.section-faq {
  padding: 80px 115px;
  position: relative;
}

.section-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: url('assets/images/gold-decoration.png') left center / contain no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-left {
  width: 100%;
}

.section-faq .section-heading {
  text-align: center;
}

.faq-intro {
  font-size: 20px;
  color: var(--amber);
  margin-bottom: 40px;
  text-align: center;
}

.accordion {
  border-top: 1px solid var(--gold-line);
}

.accordion-item {
  border-bottom: 1px solid var(--gold-line);
}

.accordion-header {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--brown);
  text-align: left;
  transition: color 0.3s;
}

.accordion-header:hover {
  color: var(--amber);
}

.accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--amber);
  flex-shrink: 0;
  transition: all 0.3s;
}

.accordion-item.active .accordion-icon {
  background: var(--amber);
  color: white;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
}

.accordion-body p {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 28px;
  color: var(--muted-gold);
}

.faq-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-illustration {
  width: 100%;
  max-width: 600px;
  height: 500px;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(209, 185, 145, 0.15), transparent 70%);
}

.compass {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border: 2px solid var(--amber);
  border-radius: 50%;
}

.compass::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
}

.compass::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--amber);
}

.map-island {
  position: absolute;
  width: 180px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(209, 185, 145, 0.25), rgba(209, 185, 145, 0.05) 80%);
  border-radius: 60% 40% 50% 50%;
}

.island-1 { top: 200px; left: 20px; }
.island-2 { top: 120px; right: 30px; }
.island-3 { top: 40px; right: 0; width: 140px; height: 100px; }
.island-4 { bottom: 60px; right: 80px; width: 160px; height: 110px; }

.map-pin {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 20px;
  height: 28px;
}

.map-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--amber);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

.map-label {
  position: absolute;
  top: 10px;
  left: 60%;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-gold);
  letter-spacing: 1px;
}

/* ═══════════════════ SECTION 9: EVENTS ═══════════════════ */

.section-events {
  padding: 100px 115px 80px;
  position: relative;
  overflow: hidden;
}

.section-events::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg-texture.png') center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.events-inner {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  position: relative;
}

.events-list {
  flex: 0 0 540px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.event-card {
  display: flex;
  gap: 24px;
  background: var(--cream);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(72, 40, 23, 0.08);
}

.event-photo {
  flex: 0 0 160px;
  height: 140px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.event-photo.ev1 {
  background-image: url('assets/images/photo-valley-panoramic.jpg');
}
.event-photo.ev2 {
  background-image: url('assets/images/photo-sunset-tasting.jpg');
}
.event-photo.ev3 {
  background-image: url('assets/images/photo-friends-picnic.jpg');
}

.event-info {
  flex: 1;
}

.event-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.event-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted-gold);
}

.event-link {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--brown);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.event-link:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.events-cellar {
  flex: 1;
  position: relative;
}

.cellar-photo {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 10px;
  background: url('assets/images/photo-indoor-tasting.jpg') center/cover no-repeat;
}

.cellar-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 16px;
  color: var(--muted-gold);
}

/* ═══════════════════ SECTION 10: NEWSLETTER ═══════════════════ */

.section-newsletter {
  padding: 0 115px 80px;
  position: relative;
}

.newsletter-photos {
  display: flex;
  gap: 0;
  height: 400px;
  overflow: hidden;
}

.newsletter-photo {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.newsletter-photo.nl1 {
  background-image: url('assets/images/photo-couple-walking.jpg');
  border-radius: 12px 0 0 0;
}

.newsletter-photo.nl2 {
  background-image: url('assets/images/photo-pinot-firepit.jpg');
  border-radius: 0 12px 0 0;
}

.newsletter-card {
  max-width: 900px;
  margin: -100px auto 0;
  background: var(--light-cream);
  border-radius: 0 0 12px 12px;
  padding: 60px 80px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(72, 40, 23, 0.08);
}

.newsletter-sub {
  font-size: 20px;
  color: var(--amber);
  margin-bottom: 14px;
}

.newsletter-desc {
  font-size: 17px;
  line-height: 28px;
  color: var(--muted-gold);
  max-width: 600px;
  margin: 0 auto 40px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.newsletter-input {
  width: 100%;
  max-width: 500px;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--gold-line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brown);
  text-align: center;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input::placeholder {
  color: var(--muted-gold);
  font-style: italic;
}

.newsletter-input:focus {
  border-color: var(--amber);
}

.newsletter-btn {
  min-width: 180px;
}

/* ═══════════════════ SECTION 11: CLIENTS ═══════════════════ */

.section-clients {
  padding: 80px 200px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gold-line);
  margin-top: 60px;
}

.client-logo {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--gold-line);
  transition: background 0.3s;
}

.client-logo:hover {
  background: rgba(209, 185, 145, 0.1);
}

.client-placeholder,
.client-placeholder-text {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--muted-gold);
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.4;
  opacity: 0.7;
}

.client-placeholder-text small {
  font-size: 12px;
  letter-spacing: 1px;
  display: block;
  margin-top: 4px;
  opacity: 0.8;
}

.client-placeholder {
  font-size: 32px;
  font-weight: 600;
}

/* ═══════════════════ FOOTER ═══════════════════ */

.site-footer {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.footer-bg-texture {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: url('assets/images/hero-bg-texture.png') center bottom / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.footer-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 111px 60px;
  display: flex;
  gap: 60px;
  position: relative;
}

.footer-logo {
  flex: 0 0 400px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo-tree {
  width: 80px;
  height: auto;
  --fill-0: #482817;
}

.footer-logo-text {
  height: 54px;
  width: auto;
  --fill-0: #482817;
}

.footer-logo-text-styled {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 1px;
  line-height: 1.1;
}

.footer-col {
  flex: 1;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 2.4px;
  margin-bottom: 10px;
}

.footer-divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: var(--gold-line);
  margin-bottom: 20px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-style: italic;
  color: var(--muted-gold);
  line-height: 35px;
}

.footer-icon {
  flex-shrink: 0;
  --stroke-0: #BB6500;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  line-height: 35px;
}

.footer-links a {
  font-size: 17px;
  font-style: italic;
  color: var(--muted-gold);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-news {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item {
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 17px;
  color: var(--bright-gold);
}

.news-title {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--muted-gold);
  letter-spacing: 2px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 40px;
  position: relative;
}

.footer-bottom p {
  font-size: 17px;
  color: var(--brown);
}

.footer-bottom a {
  color: var(--amber);
  transition: opacity 0.3s;
}

.footer-bottom a:hover {
  opacity: 0.7;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════ RESERVATION MODAL ═══════════════════ */

.reservation-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.reservation-overlay[hidden] {
  display: none;
}

.reservation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(72, 40, 23, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.reservation-panel {
  position: relative;
  background: var(--light-cream);
  border-radius: 12px;
  padding: 60px 80px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(72, 40, 23, 0.2);
  animation: fadeInUp 0.4s ease;
}

.reservation-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-line);
  background: transparent;
  font-size: 24px;
  color: var(--muted-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.reservation-close:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
}

.reservation-desc {
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted-gold);
  margin-bottom: 40px;
}

.reservation-form {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--gold-line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brown);
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--amber);
}

.form-input::placeholder {
  color: var(--muted-gold);
  font-style: italic;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23AF6900' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px;
  cursor: pointer;
  padding-right: 24px;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 14px;
}

.form-textarea:focus {
  border-color: var(--amber);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-error {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: #c0392b;
  margin-top: 6px;
  min-height: 18px;
}

.form-input.invalid {
  border-color: #c0392b;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.reservation-submit {
  width: 100%;
}

.reservation-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.reservation-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted-gold);
  text-decoration: none;
  transition: color 0.3s;
}

.reservation-whatsapp:hover {
  color: #25D366;
}

/* Success state */
.reservation-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--amber);
  color: white;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: fadeInUp 0.5s ease;
}

.reservation-success .section-heading {
  margin-bottom: 20px;
}

.reservation-success .reservation-desc {
  margin-bottom: 30px;
}

/* Button styling for RESERVAR in event cards */
.btn-reservar {
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */

@media (max-width: 1400px) {
  .header-inner {
    padding: 0 60px;
  }

  .hero-content {
    padding-left: 120px;
  }

  .hero-title {
    font-size: 70px;
  }

  .hero-artwork {
    right: 40px;
  }

  .hero-bottle {
    height: 600px;
  }

  .hero-circle {
    width: 380px;
    height: 380px;
  }

  .history-tabs {
    padding: 0 100px;
  }

  .history-content {
    padding: 60px 120px 0;
    gap: 60px;
  }

  .history-left {
    flex: 0 0 450px;
  }

  .history-photo-wrapper {
    width: 100%;
  }

  .section-features {
    padding: 0 40px;
  }

  .spirit-carousel {
    padding: 0 60px;
  }

  .section-auroma {
    padding: 100px 60px 80px;
  }

  .section-team {
    padding: 100px 60px 80px;
  }

  .section-faq {
    padding: 80px 60px;
  }

  .section-events {
    padding: 100px 60px 80px;
  }

  .section-newsletter {
    padding: 0 60px 80px;
  }

  .section-clients {
    padding: 80px 100px;
  }

  .footer-inner {
    padding: 0 60px 60px;
  }

  .footer-logo {
    flex: 0 0 300px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 0 30px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 180px 40px 80px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    overflow: visible;
  }

  .hero-content {
    padding-left: 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-artwork {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 40px;
  }

  .hero-bottle {
    height: 400px;
  }

  .hero-circle {
    width: 280px;
    height: 280px;
  }

  .section-heading {
    font-size: 56px;
  }

  .history-tabs {
    padding: 0 40px;
    gap: 20px;
  }

  .tab-number {
    font-size: 60px;
  }

  .history-content {
    flex-direction: column;
    padding: 40px 40px 0;
  }

  .history-left {
    flex: none;
  }

  .history-right {
    margin-top: 40px;
  }

  .features-cards {
    grid-template-columns: 1fr;
  }

  .spirit-carousel {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .spirit-card {
    flex: none;
    width: 100%;
    max-width: 500px;
    flex-direction: column;
    align-items: center;
  }

  .spirit-bottle-wrap {
    flex: none;
    height: 280px;
  }

  .spirit-info {
    width: 100%;
    padding: 26px 24px;
  }

  .testimonial-inner {
    flex-direction: column;
    padding: 0 40px;
  }

  .testimonial-portrait {
    flex: none;
    width: 300px;
    height: 300px;
  }

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

  .auroma-bottom {
    flex-direction: column;
  }

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

  .faq-inner {
    max-width: 100%;
  }

  .reservation-panel {
    padding: 40px;
  }

  .events-inner {
    flex-direction: column;
  }

  .events-list {
    flex: none;
  }

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

  .footer-inner {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-logo {
    flex: 0 0 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 16px;
  }

  .logo {
    gap: 8px;
  }

  .site-header {
    padding: 14px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .logo-tree {
    width: 28px;
    height: 28px;
  }

  .logo-text-styled {
    font-size: 18px;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .hero-bottle {
    height: 300px;
  }

  .hero-circle {
    width: 220px;
    height: 220px;
  }

  .section-heading {
    font-size: 40px;
  }

  .section-heading.center {
    padding: 0 20px;
  }

  .section-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .section-subtitle.center {
    padding: 0 20px;
  }

  .spirit-desc {
    padding: 0 20px;
  }

  .spirit-carousel {
    padding: 0 16px;
  }

  .spirit-purchase {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .history-tabs {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .features-cards {
    grid-template-columns: 1fr;
  }

  .auroma-features {
    grid-template-columns: 1fr;
  }

  .reservation-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .reservation-panel {
    border-radius: 20px 20px 0 0;
    padding: 40px 24px;
    max-height: 95vh;
    animation: slideUp 0.4s ease;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-card {
    flex-direction: column;
  }

  .event-photo {
    flex: none;
    width: 100%;
    height: 180px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-card {
    padding: 40px 30px;
  }

  .btn-outline {
    padding: 14px 40px;
    font-size: 18px;
  }

  .btn-solid {
    padding: 14px 36px;
    font-size: 18px;
  }
}
