/* ============================================
   AMADOR ESTATE — DESIGN SYSTEM v1.0
   Palette: Wellness · Retreat · Wine
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Josefin+Sans:wght@300;400&display=swap');

:root {
  --sage: #8B9E7E;
  --sage-deep: #5C7253;
  --sage-light: #A8B89C;
  --sage-mist: #C5D1BC;
  --linen: #F5F0E8;
  --linen-warm: #EDE6DA;
  --cream: #FAF8F3;
  --clay: #C4977A;
  --clay-light: #D4AD94;
  --clay-deep: #A67B60;
  --wine: #7A3B4E;
  --wine-light: #9E5A6E;
  --charcoal: #2C2C28;
  --charcoal-soft: #3D3D38;
  --text-dark: #3A3832;
  --text-mid: #6B665C;
  --text-light: #9A9488;
  --green: #4A9E5C;
  --amber: #D4A04A;
  --red: #C45454;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Josefin Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-display); color: var(--text-dark); background: var(--cream); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .12s; }
.rd2 { transition-delay: .24s; }
.rd3 { transition-delay: .36s; }
.rd4 { transition-delay: .48s; }

/* ============================================
   NAVIGATION
============================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s var(--ease), padding .4s var(--ease), box-shadow .5s;
}
.site-nav.scrolled {
  background: rgba(250, 248, 243, .97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(139, 158, 126, .15);
}
.nav-brand { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--charcoal); letter-spacing: 1px; }
.nav-brand span { color: var(--sage-deep); }
.nav-menu { display: flex; gap: 32px; list-style: none; }
.nav-menu a {
  font-family: var(--font-body); font-size: 10px; font-weight: 300; letter-spacing: 2.5px;
  color: var(--text-mid); text-transform: uppercase; transition: color .3s; position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--sage); transition: width .3s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--sage-deep); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--font-body); font-size: 10px; font-weight: 300; letter-spacing: 2.5px;
  color: var(--cream); background: var(--sage-deep);
  padding: 10px 22px; text-transform: uppercase;
  border: none; border-radius: 2px; transition: background .3s;
}
.nav-cta:hover { background: var(--sage); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--sage-deep); transition: transform .3s, opacity .3s; }

/* ============================================
   COMMON SECTION ELEMENTS
============================================ */
.section-tag { font-family: var(--font-body); font-size: 9px; font-weight: 300; letter-spacing: 4px; color: var(--sage); text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: clamp(34px, 5vw, 58px); font-weight: 300; font-style: italic; line-height: 1.12; color: var(--charcoal); }
.section-title em { font-style: normal; color: var(--sage-deep); }
.section-text { font-size: clamp(15px, 1.4vw, 17px); font-weight: 300; color: var(--text-mid); line-height: 1.9; max-width: 520px; }
.rule { width: 40px; height: 1px; background: var(--sage-mist); margin: 24px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 60px; }

/* Buttons */
.btn {
  font-family: var(--font-body); font-size: 9px; font-weight: 300; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 14px 32px; border-radius: 2px;
  display: inline-block; cursor: pointer; transition: all .3s; border: none;
}
.btn-sage { background: var(--sage-deep); color: var(--cream); }
.btn-sage:hover { background: var(--sage); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text-mid); border: 1px solid var(--sage-mist); }
.btn-outline:hover { border-color: var(--sage); color: var(--sage-deep); }
.btn-clay { background: var(--clay); color: var(--cream); }
.btn-clay:hover { background: var(--clay-light); }
.btn-wine { background: var(--wine); color: var(--cream); }
.btn-wine:hover { background: var(--wine-light); }

/* ============================================
   HERO
============================================ */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media .fallback-bg { width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(250,248,243,.1) 0%, rgba(60,58,50,.3) 50%, rgba(44,44,40,.6) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 700px; padding: 0 24px; }
.hero-eyebrow { font-family: var(--font-body); font-size: 10px; font-weight: 300; letter-spacing: 5px; color: rgba(255,255,255,.6); text-transform: uppercase; margin-bottom: 28px; }
.hero-heading { font-size: clamp(44px, 7vw, 80px); font-weight: 300; font-style: italic; color: #fff; line-height: 1.05; }
.hero-heading em { font-style: normal; color: var(--sage-light); }
.hero-rule { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--sage-light), transparent); margin: 32px auto 0; }
.hero-subtitle { font-size: 18px; font-style: italic; font-weight: 300; color: rgba(255,255,255,.5); margin-top: 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-scroll-text { font-family: var(--font-body); font-size: 8px; letter-spacing: 3px; color: rgba(255,255,255,.3); text-transform: uppercase; }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(168,184,156,.5), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .4; } 50% { opacity: .9; } }

/* Hero stagger */
.hero-content > * { opacity: 0; transform: translateY(24px); animation: heroIn 1.6s ease both; }
.hero-eyebrow { animation-delay: .2s; }
.hero-heading { animation-delay: .4s; }
.hero-rule { animation-delay: .7s; }
.hero-subtitle { animation-delay: .9s; }
.hero-actions { animation-delay: 1.1s; }
.hero-scroll { animation: heroIn 1.8s 1.4s ease both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   BOOKING BAR
============================================ */
.booking-bar {
  max-width: 1100px; margin: -36px auto 0;
  position: relative; z-index: 10;
  background: var(--charcoal);
  padding: 20px 28px; border-radius: 3px;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.booking-form { display: flex; align-items: flex-end; gap: 14px; width: 100%; }
.bf { flex: 1; }
.bf label { display: block; font-family: var(--font-body); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--sage-light); margin-bottom: 5px; font-weight: 300; }
.bf input, .bf select { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(168,184,156,.2); color: var(--linen); font-family: var(--font-display); font-size: 15px; padding: 6px 0; outline: none; transition: border-color .3s; -webkit-appearance: none; border-radius: 0; }
.bf input:focus, .bf select:focus { border-bottom-color: var(--sage-light); }
.bf select option { background: var(--charcoal); color: var(--linen); }
.book-btn { font-family: var(--font-body); padding: 12px 28px; background: var(--sage-deep); color: var(--cream); border: none; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 300; transition: all .3s; border-radius: 2px; white-space: nowrap; }
.book-btn:hover { background: var(--sage); }

/* ============================================
   AVAILABILITY PANEL
============================================ */
.avail-panel { max-width: 1100px; margin: 0 auto; padding: 0 20px; overflow: hidden; max-height: 0; opacity: 0; transition: all .5s var(--ease); }
.avail-panel.open { max-height: 4000px; opacity: 1; padding: 32px 20px; margin-top: 16px; }
.avail-head { text-align: center; margin-bottom: 6px; }
.avail-head h3 { font-size: 22px; font-weight: 400; color: var(--charcoal); }
.avail-head p { font-family: var(--font-body); font-size: 10px; color: var(--text-light); margin-top: 4px; font-weight: 300; }
.avail-note { text-align: center; font-family: var(--font-body); font-size: 9px; color: var(--text-light); font-weight: 200; margin-bottom: 18px; }
.avail-note strong { color: var(--charcoal); font-weight: 400; }
.cg { display: flex; flex-direction: column; gap: 3px; }
.cc { background: var(--cream); border: 1px solid rgba(0,0,0,.04); display: grid; grid-template-columns: 260px 1fr; overflow: hidden; border-radius: 2px; opacity: 0; animation: cardIn .5s ease forwards; }
.cc:nth-child(1) { animation-delay: .1s; } .cc:nth-child(2) { animation-delay: .15s; } .cc:nth-child(3) { animation-delay: .2s; }
.cc:nth-child(4) { animation-delay: .25s; } .cc:nth-child(5) { animation-delay: .3s; } .cc:nth-child(6) { animation-delay: .35s; }
@keyframes cardIn { to { opacity: 1; } from { opacity: 0; transform: translateY(8px); } }
.cc:hover { box-shadow: 0 6px 20px rgba(0,0,0,.04); }
.cl { padding: 16px 20px; border-right: 1px solid rgba(0,0,0,.03); display: flex; flex-direction: column; justify-content: center; }
.cl-img { width: 100%; height: 80px; object-fit: cover; border-radius: 2px; margin-bottom: 8px; }
.cl .suite-type { font-family: var(--font-body); font-size: 7px; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); font-weight: 400; margin-bottom: 4px; }
.cl h3 { font-size: 17px; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.cl .suite-loc { font-family: var(--font-body); font-size: 9px; color: var(--text-light); font-weight: 200; margin-bottom: 4px; }
.cl .suite-features { font-family: var(--font-body); font-size: 8px; color: var(--text-light); font-weight: 200; line-height: 1.5; }
.cr { padding: 14px; display: flex; flex-direction: column; gap: 5px; }
.rr { display: grid; grid-template-columns: 1fr 80px 72px 110px; align-items: center; padding: 8px 12px; background: var(--linen); border: 1px solid rgba(0,0,0,.02); gap: 8px; transition: background .2s; border-radius: 2px; }
.rr:hover { background: rgba(139,158,126,.06); }
.rn { font-size: 11px; font-weight: 400; color: var(--charcoal); }
.rn span { display: block; font-family: var(--font-body); font-size: 8px; font-weight: 200; color: var(--text-light); margin-top: 1px; }
.rp { font-size: 18px; font-weight: 600; color: var(--charcoal); }
.rp small { font-family: var(--font-body); font-size: 8px; font-weight: 200; color: var(--text-light); }
.ra { display: flex; align-items: center; gap: 3px; font-family: var(--font-body); font-size: 8px; font-weight: 300; color: var(--text-light); }
.dot { width: 5px; height: 5px; border-radius: 50%; }
.dot.g { background: var(--green); } .dot.o { background: var(--amber); } .dot.r { background: var(--red); }
.rb { padding: 6px 12px; background: var(--sage-deep); color: var(--cream); border: none; font-family: var(--font-body); font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 300; transition: all .3s; text-align: center; display: inline-block; white-space: nowrap; border-radius: 2px; }
.rb:hover { background: var(--sage); }

/* ============================================
   PHOTO GALLERY STRIP
============================================ */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.photo-strip-item { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.photo-strip-item:hover img { transform: scale(1.04); }
.photo-strip-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; background: linear-gradient(to top, rgba(44,44,40,.65), transparent); font-family: var(--font-body); font-size: 8px; letter-spacing: 2.5px; color: rgba(255,255,255,.75); text-transform: uppercase; }

/* Full-width image break */
.full-image { width: 100%; height: 50vh; min-height: 300px; overflow: hidden; position: relative; }
.full-image img { width: 100%; height: 100%; object-fit: cover; }
.full-image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,44,40,.1), rgba(44,44,40,.4)); display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
.full-image-text { font-size: clamp(28px, 4vw, 48px); font-style: italic; font-weight: 300; color: #fff; }
.full-image-sub { font-family: var(--font-body); font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,.5); text-transform: uppercase; }

/* ============================================
   INTRO SECTION
============================================ */
.intro-section { background: var(--cream); padding: 100px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-img { width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; position: relative; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge { position: absolute; bottom: -20px; right: -20px; background: var(--sage-deep); color: var(--cream); padding: 20px 26px; border-radius: 3px; }
.intro-badge-num { font-size: 40px; font-weight: 300; line-height: 1; }
.intro-badge-label { font-family: var(--font-body); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; opacity: .7; margin-top: 2px; }

/* ============================================
   WINES SECTION (dark)
============================================ */
.wines-section { background: var(--charcoal); padding: 120px 0; color: var(--linen); }
.wines-section .section-tag { color: var(--sage-light); }
.wines-section .section-title { color: var(--linen); }
.wines-section .section-title em { color: var(--sage-light); }
.wines-section .section-text { color: var(--text-light); }
.wines-section .rule { background: rgba(168,184,156,.3); }
.wines-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; align-items: end; }
.wines-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.wine-card { background: var(--charcoal-soft); padding: 36px 20px 28px; display: flex; flex-direction: column; align-items: center; gap: 16px; transition: background .3s; cursor: pointer; border-radius: 2px; }
.wine-card:hover { background: rgba(92,114,83,.15); }
.wine-card-img { height: 200px; display: flex; align-items: center; justify-content: center; }
.wine-card-img img { max-height: 200px; width: auto; filter: drop-shadow(3px 6px 14px rgba(0,0,0,.4)); transition: transform .4s; }
.wine-card:hover .wine-card-img img { transform: translateY(-5px); }
.wine-card-name { font-size: 20px; font-style: italic; color: var(--linen); text-align: center; line-height: 1.2; }
.wine-card-type { font-family: var(--font-body); font-size: 8px; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; }
.wine-card-price { font-size: 18px; color: var(--sage-light); }
.wine-card-cta { font-family: var(--font-body); font-size: 7px; letter-spacing: 2px; color: var(--sage-mist); text-transform: uppercase; border-top: 1px solid rgba(168,184,156,.1); padding-top: 12px; width: 100%; text-align: center; transition: color .3s; opacity: .5; }
.wine-card:hover .wine-card-cta { opacity: 1; color: var(--sage-light); }

/* ============================================
   STAY / SUITES SECTION
============================================ */
.stay-section { background: var(--linen-warm); padding: 120px 0; }
.stay-section .section-tag { color: var(--clay-deep); }
.stay-section .section-title em { color: var(--clay); }
.stay-section .rule { background: var(--clay-light); opacity: .5; }
.stay-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-bottom: 3px; }
.room-card { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; border-radius: 2px; }
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.room-card:hover img { transform: scale(1.05); }
.room-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(44,44,40,.75), transparent); }
.room-name { font-size: 22px; font-style: italic; color: #fff; }
.room-detail { font-family: var(--font-body); font-size: 8px; letter-spacing: 2px; color: rgba(196,151,122,.7); text-transform: uppercase; margin-top: 4px; }

/* ============================================
   WELLNESS SECTION
============================================ */
.wellness-section { background: var(--sage-deep); padding: 100px 0; text-align: center; color: var(--cream); }
.wellness-section .section-tag { color: var(--sage-mist); }
.wellness-section .section-title { color: var(--cream); }
.wellness-section .section-title em { color: var(--sage-mist); }
.wellness-section .section-text { color: rgba(245,240,232,.6); margin: 0 auto; text-align: center; }
.wellness-section .rule { background: rgba(245,240,232,.2); margin: 24px auto; }
.wellness-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; margin-top: 48px; }
.wellness-card { background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; transition: background .3s; }
.wellness-card:hover { background: rgba(255,255,255,.1); }
.wellness-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.wellness-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; opacity: .8; }
.wellness-card:hover .wellness-card-img img { transform: scale(1.04); opacity: 1; }
.wellness-card-body { padding: 20px; text-align: center; }
.wellness-card-title { font-size: 20px; font-style: italic; color: var(--cream); margin-bottom: 6px; }
.wellness-card-desc { font-family: var(--font-body); font-size: 11px; font-weight: 300; color: rgba(245,240,232,.45); line-height: 1.6; }

/* ============================================
   PACKAGES SECTION
============================================ */
.packages-section { background: var(--cream); padding: 120px 0; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 60px; }
.package-card { background: var(--linen); border-radius: 2px; overflow: hidden; transition: box-shadow .3s; }
.package-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.package-card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.package-card:hover .package-card-img img { transform: scale(1.03); }
.package-card-body { padding: 28px 24px; }
.package-card-tag { font-family: var(--font-body); font-size: 7px; letter-spacing: 2px; color: var(--sage); text-transform: uppercase; margin-bottom: 8px; }
.package-card-title { font-size: 24px; font-style: italic; color: var(--charcoal); margin-bottom: 8px; }
.package-card-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.package-card-price { font-size: 22px; font-weight: 300; color: var(--sage-deep); margin-bottom: 16px; }
.package-card-price small { font-family: var(--font-body); font-size: 10px; color: var(--text-light); }

/* ============================================
   WINE CLUB TIERS
============================================ */
.club-section { background: var(--cream); padding: 120px 0; }
.club-section .section-tag { color: var(--wine); }
.club-section .section-title em { color: var(--wine); }
.club-header { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }
.club-header .rule { margin: 24px auto; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.tier-card { background: var(--linen); padding: 44px 28px; position: relative; border-radius: 2px; transition: box-shadow .3s; }
.tier-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.tier-card.featured { background: var(--linen-warm); border: 1px solid rgba(122,59,78,.15); }
.tier-card.featured::before { content: 'Most Popular'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--wine); color: var(--cream); font-family: var(--font-body); font-size: 7px; letter-spacing: 2px; padding: 4px 14px; text-transform: uppercase; border-radius: 0 0 3px 3px; }
.tier-name { font-family: var(--font-body); font-size: 10px; letter-spacing: 3px; color: var(--sage-deep); text-transform: uppercase; margin-bottom: 4px; }
.tier-tagline { font-size: 14px; font-style: italic; color: var(--text-light); margin-bottom: 24px; }
.tier-price { font-size: 48px; font-weight: 300; color: var(--charcoal); line-height: 1; }
.tier-price span { font-size: 16px; color: var(--text-light); }
.tier-cadence { font-family: var(--font-body); font-size: 7px; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; margin-top: 4px; margin-bottom: 28px; }
.tier-divider { height: 1px; background: var(--sage-mist); opacity: .4; margin-bottom: 24px; }
.perk { display: flex; gap: 10px; margin-bottom: 11px; align-items: flex-start; }
.perk-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sage); opacity: .5; margin-top: 6px; flex-shrink: 0; }
.perk-text { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.tier-cta { display: block; margin-top: 28px; font-family: var(--font-body); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; text-align: center; padding: 12px; border: 1px solid var(--sage-mist); color: var(--sage-deep); border-radius: 2px; transition: all .3s; }
.tier-cta:hover, .tier-card.featured .tier-cta { background: var(--sage-deep); color: var(--cream); border-color: var(--sage-deep); }

/* ============================================
   RETREATS SECTION
============================================ */
.retreats-section { background: var(--charcoal); padding: 120px 0; color: var(--linen); }
.retreats-section .section-tag { color: var(--clay-light); }
.retreats-section .section-title { color: var(--linen); }
.retreats-section .section-title em { color: var(--clay-light); }
.retreats-section .section-text { color: rgba(245,240,232,.5); }
.retreats-section .rule { background: rgba(196,151,122,.3); margin: 24px 0; }
.retreats-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; align-items: end; }
.retreats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.retreat-card { background: var(--charcoal-soft); padding: 36px 28px; border-radius: 2px; border-left: 2px solid var(--clay-deep); transition: background .3s; }
.retreat-card:hover { background: rgba(196,151,122,.08); }
.retreat-card-num { font-family: var(--font-body); font-size: 10px; letter-spacing: 3px; color: var(--clay-light); opacity: .4; margin-bottom: 12px; }
.retreat-card-title { font-size: 26px; font-style: italic; color: var(--linen); margin-bottom: 12px; }
.retreat-card-body { font-size: 14px; color: rgba(245,240,232,.45); line-height: 1.7; margin-bottom: 16px; }
.retreat-card-detail { font-family: var(--font-body); font-size: 9px; letter-spacing: 1.5px; color: var(--clay-light); opacity: .6; }
.retreat-card-price { font-family: var(--font-body); font-size: 11px; color: var(--clay-light); margin-top: 8px; }
.retreats-price-block { text-align: center; margin-top: 48px; padding: 36px; background: rgba(196,151,122,.06); border: 1px solid rgba(196,151,122,.12); border-radius: 2px; }
.retreats-price-amount { font-size: 48px; font-weight: 300; color: var(--clay-light); }
.retreats-price-detail { font-family: var(--font-body); font-size: 10px; color: rgba(245,240,232,.3); letter-spacing: 2px; margin-top: 6px; }

/* ============================================
   OLIVE OIL SECTION
============================================ */
.olive-section { background: var(--cream); padding: 120px 0; }
.olive-section .section-tag { color: #6A7840; }
.olive-section .section-title em { color: #6A7840; }
.olive-section .rule { background: rgba(106,120,64,.3); }
.olive-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
.olive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.olive-card { background: var(--linen); padding: 28px 22px; border-radius: 2px; transition: box-shadow .3s; }
.olive-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.olive-card-name { font-size: 20px; font-style: italic; color: var(--charcoal); margin-bottom: 6px; }
.olive-card-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.olive-card-price { font-family: var(--font-body); font-size: 11px; letter-spacing: 1px; color: #6A7840; }

/* ============================================
   FOOD / DINING SECTION
============================================ */
.food-section { background: var(--linen-warm); padding: 120px 0; }
.food-section .section-tag { color: var(--clay-deep); }
.food-section .section-title em { color: var(--clay); }
.food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 60px; }
.food-card { background: var(--cream); border-radius: 2px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.food-card-img { aspect-ratio: 1; overflow: hidden; }
.food-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.food-card:hover .food-card-img img { transform: scale(1.03); }
.food-card-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.food-card-tag { font-family: var(--font-body); font-size: 7px; letter-spacing: 2px; color: var(--clay); text-transform: uppercase; margin-bottom: 8px; }
.food-card-title { font-size: 26px; font-style: italic; color: var(--charcoal); margin-bottom: 8px; }
.food-card-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ============================================
   VISIT SECTION
============================================ */
.visit-section { background: var(--linen-warm); padding: 120px 0; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 32px; }
.visit-detail { background: var(--cream); padding: 24px 20px; border-radius: 2px; }
.visit-detail-label { font-family: var(--font-body); font-size: 7px; letter-spacing: 2.5px; color: var(--sage); text-transform: uppercase; margin-bottom: 5px; }
.visit-detail-value { font-size: 15px; color: var(--text-dark); line-height: 1.5; }
.visit-img { aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.visit-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   WOOCOMMERCE OVERRIDES
============================================ */
.woocommerce ul.products li.product {
  background: var(--linen); border-radius: 2px; overflow: hidden;
  transition: box-shadow .3s;
}
.woocommerce ul.products li.product:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display); font-size: 20px; font-style: italic;
  color: var(--charcoal); padding: 12px 16px 0;
}
.woocommerce ul.products li.product .price {
  font-family: var(--font-display); font-size: 18px; color: var(--sage-deep);
  padding: 4px 16px;
}
.woocommerce ul.products li.product .button,
.woocommerce .button,
.woocommerce button.button {
  font-family: var(--font-body) !important;
  font-size: 9px !important; letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--sage-deep) !important; color: var(--cream) !important;
  border: none !important; border-radius: 2px !important;
  padding: 12px 24px !important;
  transition: background .3s !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover { background: var(--sage) !important; }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: var(--charcoal); color: var(--linen); padding: 72px 0 36px; }
.footer-inner { max-width: 1300px; margin: 0 auto; padding: 0 60px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(168,184,156,.1); }
.footer-brand { font-size: 22px; color: var(--linen); margin-bottom: 12px; }
.footer-brand span { color: var(--sage-light); }
.footer-desc { font-size: 13px; color: rgba(245,240,232,.3); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-family: var(--font-body); font-size: 8px; letter-spacing: 3px; color: var(--sage-light); text-transform: uppercase; margin-bottom: 16px; opacity: .6; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(245,240,232,.3); transition: color .3s; }
.footer-links a:hover { color: var(--sage-light); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--font-body); font-size: 9px; letter-spacing: 1px; color: rgba(245,240,232,.15); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-family: var(--font-body); font-size: 8px; letter-spacing: 1.5px; color: rgba(245,240,232,.15); text-transform: uppercase; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .site-nav { padding: 16px 24px; }
  .site-nav.scrolled { padding: 12px 24px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 24px; }
  .intro-grid, .wines-header, .stay-header, .visit-grid, .retreats-header, .olive-header { grid-template-columns: 1fr; gap: 48px; }
  .wines-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid, .wellness-grid, .packages-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card { grid-template-columns: 1fr; }
  .retreats-grid { grid-template-columns: 1fr; }
  .olive-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .booking-bar { margin: -36px 12px 0; padding: 16px; }
  .booking-form { flex-direction: column; gap: 10px; }
  .cc { grid-template-columns: 1fr; }
  .rr { grid-template-columns: 1fr 1fr; gap: 4px; }
  .rn { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .wines-grid, .visit-details, .olive-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
