/* ============================================================
   FINCA RANCHO MONTE HEBRÓN — Main Stylesheet
   Brand colors derived from logo:
     Forest Green · Golden Sun · Amber Coffee · Coffee Brown
   Fonts: Playfair Display + Inter
   ============================================================ */

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

:root {
  /* Brand palette — from the logo */
  --green-deep:    #1B5E10;   /* dark mountain green */
  --green-mid:     #2D8A1E;   /* mid forest green */
  --green-bright:  #3DAA28;   /* logo ring / vibrant green */
  --sun:           #F5C700;   /* golden sunrise */
  --amber:         #C97A20;   /* coffee bean amber */
  --amber-light:   #E8A040;   /* lighter amber */
  --coffee:        #5C2E0C;   /* coffee brown */
  --coffee-deep:   #3A1A06;   /* deep espresso */
  --cherry:        #C8241E;   /* coffee cherry red */
  --cream:         #F8F4EC;   /* main background */
  --linen:         #EDE4CF;   /* section backgrounds */
  --linen-dark:    #D4C4A0;   /* borders */
  --white:         #FFFFFF;
  --text:          #1A0E06;
  --text-muted:    #5A4030;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(27,94,16,.10);
  --shadow:    0 6px 24px rgba(27,94,16,.15);
  --shadow-lg: 0 20px 60px rgba(27,94,16,.20);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: .75rem;
}
.section-eyebrow--light { color: var(--sun); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--coffee-deep);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--green-mid); font-weight: 400; }
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--sun); }
.section-title--white { color: var(--white); }
.section-title--white em { color: var(--sun); }

.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.section-desc--light { color: rgba(248,244,236,.82); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  letter-spacing: .04em;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary  { background: var(--green-mid);   color: var(--white); border-color: var(--green-mid); }
.btn--primary:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--sun      { background: var(--sun);  color: var(--coffee-deep); border-color: var(--sun); font-weight: 700; }
.btn--sun:hover { background: #e0b500; border-color: #e0b500; transform: translateY(-1px); }

.btn--ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.btn--ghost:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn--ghost-dark { background: transparent; color: var(--coffee-deep); border-color: var(--coffee-deep); }
.btn--ghost-dark:hover { background: var(--coffee-deep); color: var(--cream); }

.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; padding: .625rem 1.25rem; font-size: .8125rem; }
.btn--whatsapp:hover { background: #128C7E; border-color: #128C7E; }

.btn--sm { padding: .5rem 1.125rem; font-size: .8125rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.section-cta { text-align: center; margin-top: 3rem; }


/* ==============================================================
   LANGUAGE TOGGLE
   ============================================================== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 2px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .3rem .6rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.65);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn.active { background: var(--sun); color: var(--coffee-deep); }
.lang-btn:hover:not(.active) { color: var(--white); }


/* ==============================================================
   NAVIGATION
   ============================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(26,14,6,.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1.5rem;
}

.nav-logo { display: flex; align-items: center; gap: .75rem; flex: 0 1 auto; min-width: 0; }
.nav-logo-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; overflow: hidden; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700;
  color: var(--cream); letter-spacing: .02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.logo-sub {
  font-family: var(--font-accent);
  font-size: .7rem; font-weight: 300;
  color: var(--sun); letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* nav-right (language toggle + burger) must never shrink or get clipped */
.nav-right { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  font-size: .8125rem; font-weight: 500;
  color: rgba(248,244,236,.82);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--sun);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  background: var(--green-mid); color: var(--white) !important;
  padding: .45rem 1.125rem; border-radius: var(--radius-sm);
  font-size: .8125rem;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--green-bright) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ==============================================================
   HERO
   ============================================================== */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    140deg,
    rgba(26,14,6,.85) 0%,
    rgba(27,94,16,.55) 55%,
    rgba(26,14,6,.45) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 740px;
  animation: fadeUp .9s .2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--cream); margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--sun); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(248,244,236,.82);
  max-width: 540px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute; bottom: 2.5rem; right: 2rem; z-index: 1;
  animation: fadeUp .9s .7s both;
}
.hero-badge-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(245,199,0,.4);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform var(--transition);
}
.hero-badge-img:hover { transform: scale(1.08); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(248,244,236,.6); font-size: .6875rem; letter-spacing: .15em; text-transform: uppercase;
  animation: fadeUp .9s .9s both;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: rgba(248,244,236,.4);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: .5; }
  50%      { transform: scaleY(.4); opacity: .2; }
}


/* ==============================================================
   TRUST BAR
   ============================================================== */
.trust-bar { background: var(--coffee-deep); padding: 1.75rem 0; }
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; padding: .5rem 2.5rem; }
.trust-number {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700; color: var(--sun); line-height: 1;
}
.trust-label {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(248,244,236,.6); margin-top: .3rem;
}
.trust-divider { width: 1px; height: 40px; background: rgba(248,244,236,.15); }


/* ==============================================================
   ABOUT
   ============================================================== */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
  background: var(--linen);
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 52%; border-radius: var(--radius);
  overflow: hidden; border: 5px solid var(--cream);
  box-shadow: var(--shadow); aspect-ratio: 4/3;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; background: var(--linen); }

.about-text { color: var(--text-muted); margin-bottom: 1rem; font-size: .9875rem; }

.about-pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.pillar strong { display: block; font-size: .9375rem; color: var(--coffee-deep); margin-bottom: .2rem; }
.pillar p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* El Salvador badge strip */
.es-strip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--linen); border-left: 3px solid var(--green-mid);
  padding: .5rem 1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.25rem;
}
.es-strip span { font-size: .8125rem; color: var(--text-muted); }
.es-strip strong { font-size: .875rem; color: var(--green-deep); }


/* ==============================================================
   COFFEE SECTION
   ============================================================== */
.coffee-section { background: var(--linen); }

.coffee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.coffee-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.coffee-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.coffee-card-img {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--linen-dark);
}
.coffee-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.coffee-card:hover .coffee-card-img img { transform: scale(1.07); }

.coffee-badge {
  position: absolute; top: .875rem; left: .875rem;
  background: var(--green-mid); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 2px;
}
.coffee-badge--cherry { background: var(--cherry); }
.coffee-badge--sun { background: var(--amber); }

.coffee-card-body { padding: 1.5rem; }
.coffee-varietal {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: .3rem;
}
.coffee-name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--coffee-deep); margin-bottom: .5rem;
}
.coffee-notes { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; font-style: italic; }
.coffee-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--linen);
}
.coffee-cta-wa {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8125rem; font-weight: 600; color: #128C7E;
  transition: color var(--transition);
}
.coffee-cta-wa:hover { color: #075E54; }
.coffee-cta-wa svg { flex-shrink: 0; }


/* ==============================================================
   TOURS
   ============================================================== */
.tours-section { position: relative; overflow: hidden; padding: 6rem 0; }
.tours-bg-img { position: absolute; inset: 0; z-index: 0; }
.tours-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.tours-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,94,16,.93) 0%, rgba(26,14,6,.85) 100%);
}
.tours-inner { position: relative; z-index: 1; }
.tours-header { text-align: center; margin-bottom: 3.5rem; }
.tours-header .section-desc { margin: 0 auto; }

.tours-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 860px; margin: 0 auto;
}

.tour-card {
  background: rgba(248,244,236,.08);
  border: 1px solid rgba(248,244,236,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: var(--cream);
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  display: flex; flex-direction: column; gap: 0;
}
.tour-card:hover {
  background: rgba(248,244,236,.15);
  border-color: rgba(248,244,236,.4);
  transform: translateY(-5px);
}
.tour-card--featured {
  background: rgba(27,94,16,.35);
  border-color: var(--sun);
  border-width: 2px;
}
.tour-card--featured:hover { background: rgba(27,94,16,.5); }

.tour-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sun); color: var(--coffee-deep);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 20px; white-space: nowrap;
}
.tour-price-badge {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--sun); line-height: 1;
  margin-bottom: .25rem;
}
.tour-price-badge small {
  font-size: 1rem; font-weight: 400;
  font-family: var(--font-body); color: rgba(248,244,236,.7);
}
.tour-name {
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 700;
  margin-bottom: .375rem; margin-top: 1rem;
}
.tour-tagline {
  font-size: .8125rem; color: rgba(248,244,236,.7);
  margin-bottom: 1.5rem; font-style: italic;
}
.tour-includes {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 2rem; flex: 1;
}
.tour-includes li {
  font-size: .9rem; color: rgba(248,244,236,.9);
  padding-left: 1.4rem; position: relative;
}
.tour-includes li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--sun); font-weight: 700;
}

.tours-contact {
  text-align: center; margin-top: 3rem;
  padding: 1.5rem; background: rgba(248,244,236,.07);
  border-radius: var(--radius); border: 1px dashed rgba(248,244,236,.2);
}
.tours-contact p { color: rgba(248,244,236,.75); font-size: .9rem; margin-bottom: .875rem; }
.tours-contact strong { color: var(--sun); }
.tours-phone {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--cream); display: block; margin-bottom: 1rem;
  letter-spacing: .02em;
}
.tours-phone:hover { color: var(--sun); }


/* ==============================================================
   BOOKING FORM
   ============================================================== */
.booking-section { background: var(--cream); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: 5rem; align-items: start;
}
.booking-desc { color: var(--text-muted); font-size: .9375rem; margin: 1rem 0 2rem; }
.booking-contact-alt p { font-size: .875rem; color: var(--text-muted); margin-bottom: .75rem; }
.booking-phone {
  display: block; font-family: var(--font-display); font-size: 1.75rem;
  color: var(--coffee-deep); font-weight: 700; margin-bottom: 1rem;
  letter-spacing: .03em;
}
.booking-phone:hover { color: var(--green-mid); }

/* ---- Forms shared ---- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: .875rem; }
.form-group label { font-size: .8125rem; font-weight: 600; color: var(--coffee); letter-spacing: .03em; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: .9375rem; color: var(--text);
  background: var(--white); border: 1.5px solid var(--linen-dark);
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,138,30,.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--cherry); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-check { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.form-check input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px;
  margin-top: 2px; accent-color: var(--green-mid); cursor: pointer;
}
.form-check label { font-size: .8125rem; color: var(--text-muted); cursor: pointer; }
.form-check label a { color: var(--green-mid); text-decoration: underline; }

.form-feedback {
  margin-top: 1rem; padding: 1rem; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500;
}
.form-feedback.success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.form-feedback.error-msg { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }

.booking-form {
  background: var(--white); padding: 2.5rem;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}


/* ==============================================================
   CURSOS DE CAFÉ — Specialty coffee courses
   Dark coffee background with gold accents (mirrors the flyer)
   ============================================================== */
.courses-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,199,0,.08), transparent 70%),
    var(--coffee-deep);
  position: relative;
}
.section-header--light .section-eyebrow--light { color: var(--sun); }
.courses-section .section-header::after {
  /* gold bean divider on dark bg */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='14' viewBox='0 0 150 14'%3E%3Cline x1='0' y1='7' x2='48' y2='7' stroke='%23F5C700' stroke-width='1.4'/%3E%3Cline x1='102' y1='7' x2='150' y2='7' stroke='%23F5C700' stroke-width='1.4'/%3E%3Cg fill='%23F5C700'%3E%3Cellipse cx='61' cy='7' rx='4' ry='6'/%3E%3Cellipse cx='75' cy='7' rx='4' ry='6'/%3E%3Cellipse cx='89' cy='7' rx='4' ry='6'/%3E%3C/g%3E%3Cg fill='none' stroke='%233A1A06' stroke-width='1'%3E%3Cpath d='M61 2 Q63 7 61 12'/%3E%3Cpath d='M75 2 Q77 7 75 12'/%3E%3Cpath d='M89 2 Q91 7 89 12'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---- 3 pillars (Finca · Beneficio · Catación) ---- */
.course-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem; margin-bottom: 4rem;
  position: relative;
}
.course-pillar {
  text-align: center;
  padding: 1rem;
  position: relative;
}
.course-pillar + .course-pillar::before {
  content: "·";
  position: absolute; left: -1.4rem; top: 50%;
  transform: translateY(-50%);
  color: var(--sun); font-size: 1.5rem;
  opacity: .6;
}
.course-pillar-icon {
  display: inline-grid; place-items: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  color: var(--sun);
  background: radial-gradient(circle at 50% 38%, rgba(245,199,0,.20), rgba(92,46,12,.5));
  margin-bottom: 1.25rem;
  position: relative;
}
.course-pillar-icon::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1.5px dashed rgba(245,199,0,.45);
}
.course-pillar-icon svg { width: 36px; height: 36px; }
.course-pillar-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--cream);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.course-pillar-text {
  font-size: .9rem;
  color: rgba(248,244,236,.75);
  max-width: 240px; margin: 0 auto;
}

/* ---- Next course poster card ---- */
.next-course {
  background:
    linear-gradient(135deg, rgba(245,199,0,.10), rgba(201,122,32,.05)),
    rgba(248,244,236,.04);
  border: 1.5px solid rgba(245,199,0,.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.next-course::before {
  /* decorative dashed border (stamp feel) */
  content: "";
  position: absolute; inset: 10px;
  border: 1px dashed rgba(245,199,0,.22);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.next-course-poster { position: relative; z-index: 1; }
.next-course-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--coffee-deep);
  background: var(--sun);
  padding: .35rem .9rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}
.next-course-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--sun);
  margin-bottom: .4rem;
}
.next-course-tagline {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: rgba(248,244,236,.85);
  font-style: italic;
}
.next-course-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  position: relative; z-index: 1;
  padding-left: 2rem;
  border-left: 1px solid rgba(245,199,0,.25);
}
.next-course-detail {
  display: flex; flex-direction: column; gap: .25rem;
  text-align: center;
}
.next-course-label {
  font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,199,0,.75); font-weight: 600;
}
.next-course-value {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.next-course-note {
  font-size: .72rem;
  color: rgba(248,244,236,.55);
  font-style: italic;
}
.next-course-cta { align-self: center; position: relative; z-index: 1; }

/* ---- Past courses gallery ---- */
.past-courses-header {
  text-align: center;
  margin-bottom: 2rem;
}
.past-courses-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--cream);
  font-style: italic;
}
.courses-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.course-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--coffee);
  border: 1px solid rgba(245,199,0,.18);
  transition: transform var(--transition), border-color var(--transition);
}
.course-photo:hover {
  transform: translateY(-3px);
  border-color: var(--sun);
}
.course-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}


/* ==============================================================
   EVENTOS Y COMUNIDAD — Social proof / event feed
   ============================================================== */
.events-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,199,0,.06), transparent 70%),
    var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92,46,12,.06);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201,122,32,.25);
}

.event-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--linen-dark);
  overflow: hidden;
}
.event-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.06); }

.event-tag {
  position: absolute;
  top: .875rem; left: .875rem;
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 30px;
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.event-tag--sun        { background: var(--sun);        color: var(--coffee-deep); }
.event-tag--amber      { background: var(--amber);      color: var(--white); }
.event-tag--cherry     { background: var(--cherry);     color: var(--white); }
.event-tag--green-deep { background: var(--green-deep); color: var(--white); }

.event-card-body {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .65rem;
  flex: 1;
}
.event-partner {
  font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-mid); font-weight: 600;
  margin: 0;
}
.event-title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700;
  color: var(--coffee-deep);
  line-height: 1.3;
}
.event-text {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ==============================================================
   FACILITIES
   ============================================================== */
.facilities-section { background: var(--linen); }

.facilities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto; gap: 1.25rem;
}
.facility-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.facility-card--wide { grid-column: span 2; aspect-ratio: 16/7; }
.facility-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; background: var(--linen-dark);
}
.facility-card:hover img { transform: scale(1.06); }
.facility-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,14,6,.9) 30%, rgba(26,14,6,.0) 65%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem; opacity: 0; transition: opacity var(--transition);
}
.facility-card:hover .facility-overlay { opacity: 1; }
.facility-overlay h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--cream); margin-bottom: .375rem;
}
.facility-overlay p { font-size: .85rem; color: rgba(248,244,236,.8); }
@media (hover: none) { .facility-overlay { opacity: 1; } }


/* ==============================================================
   SHOP / ORDER
   ============================================================== */
.shop-section { background: var(--coffee-deep); }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.shop-content .section-eyebrow { color: var(--sun); }
.shop-desc { color: rgba(248,244,236,.75); margin-bottom: 2rem; font-size: .9375rem; }
.shop-perks { display: flex; flex-direction: column; gap: .875rem; }
.shop-perks li { display: flex; align-items: center; gap: .75rem; color: rgba(248,244,236,.85); font-size: .9rem; }
.shop-perks svg { color: var(--sun); flex-shrink: 0; }
.shop-order-form {
  background: var(--white); padding: 2.5rem;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.shop-form-title {
  font-family: var(--font-display); font-size: 1.375rem;
  color: var(--coffee-deep); margin-bottom: 1.75rem; font-weight: 700;
}
.shop-note { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: .75rem; font-style: italic; }


/* ==============================================================
   VISIT
   ============================================================== */
.visit-section { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.visit-details { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.visit-detail { display: flex; gap: 1rem; align-items: flex-start; }
.visit-detail svg { color: var(--green-mid); flex-shrink: 0; margin-top: .2rem; }
.visit-detail strong { display: block; font-size: .875rem; color: var(--coffee-deep); margin-bottom: .25rem; }
.visit-detail p { font-size: .9rem; color: var(--text-muted); }
.visit-detail a { color: var(--green-mid); }
.visit-detail a:hover { text-decoration: underline; }
.visit-social p { font-size: .8rem; color: var(--text-muted); margin-bottom: .875rem; letter-spacing: .08em; text-transform: uppercase; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: var(--linen);
  border-radius: 50%; color: var(--coffee-deep);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--green-mid); color: var(--white); }
.social-links--sm .social-link { width: 32px; height: 32px; background: rgba(248,244,236,.12); color: rgba(248,244,236,.65); }
.social-links--sm .social-link:hover { background: var(--green-mid); color: var(--white); }
.visit-map {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow);
  background: var(--linen); /* shown until the iframe loads */
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* "Open in Google Maps" pill — always reachable even if the iframe is blocked */
.visit-map-fallback {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--white);
  color: var(--coffee-deep);
  font-size: .75rem; font-weight: 600; letter-spacing: .02em;
  padding: .5rem .8rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.visit-map-fallback::before {
  content: "";
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D8A1E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21c4.6-4.3 7-7.7 7-11a7 7 0 10-14 0c0 3.3 2.4 6.7 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.visit-map-fallback:hover { background: var(--green-mid); color: var(--white); transform: translateY(-1px); }
.visit-map-fallback:hover::before { filter: brightness(0) invert(1); }
.map-placeholder {
  width: 100%; height: 100%; background: var(--linen);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted); text-align: center; padding: 2rem;
}
.map-placeholder svg { color: var(--linen-dark); }
.map-note { font-size: .8rem; max-width: 300px; line-height: 1.5; }
.map-note strong { color: var(--green-mid); }


/* ==============================================================
   NEWSLETTER
   ============================================================== */
.newsletter-section { background: var(--green-deep); padding: 3.5rem 0; }
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--white); margin-bottom: .4rem;
}
.newsletter-text p { font-size: .9rem; color: rgba(255,255,255,.8); }
.newsletter-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.newsletter-form input {
  font-family: var(--font-body); font-size: .9375rem;
  padding: .75rem 1.25rem; border-radius: var(--radius-sm); border: none;
  width: 280px; max-width: 100%; color: var(--text);
}
.newsletter-form input:focus { outline: 2px solid var(--sun); }
.newsletter-form .btn--sun { min-width: 120px; }


/* ==============================================================
   FOOTER
   ============================================================== */
.site-footer { background: var(--coffee-deep); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,244,236,.1);
}
.footer-brand-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-logo-img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(245,199,0,.3);
  flex-shrink: 0;
}
.footer-logo-text .logo-text { font-size: 1.25rem; }
.footer-tagline {
  font-family: var(--font-accent); font-size: .9375rem;
  color: rgba(248,244,236,.45); font-style: italic;
}
.footer-nav h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-nav a { font-size: .875rem; color: rgba(248,244,236,.6); transition: color var(--transition); }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom { padding: 1.25rem 0; background: rgba(0,0,0,.25); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(248,244,236,.4); }
.footer-location {
  font-size: .75rem; color: rgba(248,244,236,.35);
  display: flex; align-items: center; gap: .3rem;
}


/* ==============================================================
   CERTIFIED SEEDS / VIVERO
   ============================================================== */
.seeds-section {
  background:
    linear-gradient(135deg, rgba(27,94,16,0.04) 0%, rgba(245,199,0,0.06) 100%), var(--cream);
}
.seeds-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: center;
}
.seeds-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sun); color: var(--coffee-deep);
  font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .45rem 1rem; border-radius: 30px; margin-bottom: 1.25rem;
}
.seeds-badge svg { fill: var(--coffee-deep); stroke: var(--coffee-deep); }
.seeds-text { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; }
.seeds-points { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.seeds-point { display: flex; gap: 1rem; align-items: flex-start; }
.seeds-point-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.seeds-point strong { display: block; font-size: .9375rem; color: var(--green-deep); margin-bottom: .2rem; }
.seeds-point p { font-size: .85rem; color: var(--text-muted); margin: 0; }

.seeds-image { position: relative; }
.seeds-image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover;
  background: var(--linen);
}
.seeds-seal {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--green-mid); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
  box-shadow: var(--shadow); border: 4px solid var(--cream);
}
.seeds-seal-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--sun); }
.seeds-seal-text { font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; margin-top: .25rem; line-height: 1.3; }


/* ==============================================================
   RESTAURANT
   ============================================================== */
.restaurant-section { background: var(--cream); }
.restaurant-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem; align-items: stretch;
}
.restaurant-feature {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); min-height: 420px;
}
.restaurant-feature img {
  width: 100%; height: 100%; object-fit: cover;
  background: var(--linen); transition: transform .6s ease;
}
.restaurant-feature:hover img { transform: scale(1.04); }

.restaurant-menu { display: flex; flex-direction: column; gap: 1rem; }
.menu-card {
  background: var(--linen); border-left: 3px solid var(--green-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem; transition: background var(--transition), transform var(--transition);
}
.menu-card:hover { background: var(--linen-dark); transform: translateX(4px); }
.menu-card-head { display: flex; align-items: center; gap: .625rem; margin-bottom: .5rem; }
.menu-icon { font-size: 1.4rem; }
.menu-card h3 { font-family: var(--font-display); font-size: 1.125rem; color: var(--coffee-deep); }
.menu-card p { font-size: .85rem; color: var(--text-muted); }


/* ==============================================================
   RESPONSIVE
   ============================================================== */
@media (max-width: 1120px) and (min-width: 769px) {
  .nav-links { gap: 1.1rem; }
  .nav-link { font-size: .75rem; }
  .nav-right { gap: 1rem; }
}

@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .coffee-grid { grid-template-columns: repeat(3, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-card--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tours-grid { max-width: 700px; }
}

@media (max-width: 860px) {
  .tours-grid { grid-template-columns: 1fr; max-width: 480px; }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .shop-grid { grid-template-columns: 1fr; gap: 3rem; }
  .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .visit-map { height: 350px; }
  .seeds-grid { grid-template-columns: 1fr; gap: 4rem; }
  .seeds-image { order: -1; max-width: 480px; }
  .restaurant-grid { grid-template-columns: 1fr; }
  .restaurant-feature { min-height: 280px; }
  /* Courses: pillars stack, poster card collapses */
  .course-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .course-pillar + .course-pillar::before { display: none; }
  .next-course { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 1.5rem; text-align: center; }
  .next-course-info { padding-left: 0; border-left: 0; border-top: 1px solid rgba(245,199,0,.25); padding-top: 1.5rem; }
  .next-course-cta { justify-self: center; }
  .courses-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  /* Allow long buttons to wrap instead of forcing horizontal overflow */
  .btn { white-space: normal; text-align: center; max-width: 100%; }
  .btn--lg { padding: .9rem 1.4rem; font-size: .9rem; }
  .nav-toggle { display: flex; }
  .nav-right { gap: 1rem; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(26,14,6,.97); backdrop-filter: blur(8px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 0 2rem;
    transform: translateY(-120%); opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    border-top: 1px solid rgba(248,244,236,.1);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-link { padding: .875rem 1.5rem; border-bottom: 1px solid rgba(248,244,236,.07); display: block; }
  .nav-link::after { display: none; }
  .nav-link--cta { margin: 1rem 1.5rem 0; border-radius: var(--radius-sm); text-align: center; }
  .hero-badge { display: none; }
  .trust-bar-inner { flex-wrap: wrap; justify-content: center; }
  .trust-item { padding: .5rem 1.5rem; }
  .trust-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-img-main { aspect-ratio: 16/9; }
  .coffee-grid { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .facility-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }
}

@media (max-width: 480px) {
  .coffee-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-form, .shop-order-form { padding: 1.5rem; }
  .nav { gap: .5rem; }
  .nav-right { gap: .55rem; }
  .lang-btn { padding: .28rem .42rem; font-size: .68rem; }
  .nav-logo { gap: .5rem; }
  .nav-logo-text .logo-text { font-size: .85rem; letter-spacing: 0; }
  .nav-logo-text .logo-sub { font-size: .58rem; letter-spacing: .04em; }
  .nav-logo-img { width: 38px; height: 38px; }
  .tour-price-badge { font-size: 2.25rem; }
}

/* Extra-narrow phones: hide the logo subtitle to guarantee the burger fits */
@media (max-width: 360px) {
  .nav-logo-text .logo-sub { display: none; }
  .nav-logo-img { width: 34px; height: 34px; }
}

/* ---- Scroll-reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ==============================================================
   ARTISAN / RUSTIC ENHANCEMENTS
   Texture, hand-drawn icons, botanical ornaments, stamp details
   ============================================================== */

/* ---- Paper-grain texture over the whole page ---- */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Stamp-style icon badges (replaces emoji) ---- */
.pillar-icon, .seeds-point-icon, .menu-icon {
  position: relative;
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: radial-gradient(circle at 50% 38%, rgba(245,199,0,.18), rgba(45,138,30,.06));
  font-size: 0;            /* hide any leftover emoji text */
  margin-top: 0;
}
.pillar-icon::after, .seeds-point-icon::after, .menu-icon::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%;
  border: 1.4px dashed rgba(45,138,30,.45);
}
.pillar-icon svg, .seeds-point-icon svg, .menu-icon svg { width: 26px; height: 26px; }
.menu-icon { width: 46px; height: 46px; }
.menu-icon svg { width: 22px; height: 22px; }

/* ---- Ornamented section labels (flanking rules) ---- */
.section-eyebrow, .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.section-eyebrow::before, .hero-eyebrow::before {
  content: ""; width: 30px; height: 1.5px;
  background: currentColor; opacity: .65;
}
/* Centered headers get a rule on both sides */
.section-header .section-eyebrow::after,
.tours-header .section-eyebrow::after {
  content: ""; width: 30px; height: 1.5px;
  background: currentColor; opacity: .65;
}

/* ---- Coffee-bean divider under centered headers ---- */
.section-header::after,
.tours-header::after {
  content: "";
  display: block;
  width: 150px; height: 14px;
  margin: 1.4rem auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='14' viewBox='0 0 150 14'%3E%3Cline x1='0' y1='7' x2='48' y2='7' stroke='%23C97A20' stroke-width='1.4'/%3E%3Cline x1='102' y1='7' x2='150' y2='7' stroke='%23C97A20' stroke-width='1.4'/%3E%3Cg fill='%23C97A20'%3E%3Cellipse cx='61' cy='7' rx='4' ry='6'/%3E%3Cellipse cx='75' cy='7' rx='4' ry='6'/%3E%3Cellipse cx='89' cy='7' rx='4' ry='6'/%3E%3C/g%3E%3Cg fill='none' stroke='%23F8F4EC' stroke-width='1'%3E%3Cpath d='M61 2 Q63 7 61 12'/%3E%3Cpath d='M75 2 Q77 7 75 12'/%3E%3Cpath d='M89 2 Q91 7 89 12'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
/* On dark tours header, recolor beans to gold */
.tours-header::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='14' viewBox='0 0 150 14'%3E%3Cline x1='0' y1='7' x2='48' y2='7' stroke='%23F5C700' stroke-width='1.4'/%3E%3Cline x1='102' y1='7' x2='150' y2='7' stroke='%23F5C700' stroke-width='1.4'/%3E%3Cg fill='%23F5C700'%3E%3Cellipse cx='61' cy='7' rx='4' ry='6'/%3E%3Cellipse cx='75' cy='7' rx='4' ry='6'/%3E%3Cellipse cx='89' cy='7' rx='4' ry='6'/%3E%3C/g%3E%3Cg fill='none' stroke='%231B5E10' stroke-width='1'%3E%3Cpath d='M61 2 Q63 7 61 12'/%3E%3Cpath d='M75 2 Q77 7 75 12'/%3E%3Cpath d='M89 2 Q91 7 89 12'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---- Hand-drawn wavy underline on accent words ---- */
.section-title em, .hero-title em {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='10' viewBox='0 0 120 10'%3E%3Cpath d='M2 6 Q16 1 30 6 T58 6 T86 6 T118 6' fill='none' stroke='%232D8A1E' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% .42em;
  padding-bottom: .14em;
}
.section-title--light em, .section-title--white em, .hero-title em {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='10' viewBox='0 0 120 10'%3E%3Cpath d='M2 6 Q16 1 30 6 T58 6 T86 6 T118 6' fill='none' stroke='%23F5C700' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ---- Trust bar: bean-shaped separators ---- */
.trust-divider {
  width: 9px; height: 13px;
  background: var(--sun);
  opacity: .55;
  border-radius: 50% 50% 48% 48% / 55% 55% 45% 45%;
  transform: rotate(-18deg);
  position: relative;
}
.trust-divider::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 44%, var(--coffee-deep) 45%, var(--coffee-deep) 52%, transparent 53%);
  opacity: .6;
}

/* ---- Subtle depth vignette on flat light sections ---- */
.about, .booking-section, .visit-section, .restaurant-section {
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245,199,0,.06), transparent 60%);
}
.coffee-section, .facilities-section {
  background-image: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(27,94,16,.05), transparent 60%);
}

/* ---- Hero: richer vignette for depth ---- */
.hero-overlay {
  box-shadow: inset 0 -120px 180px -60px rgba(26,14,6,.85),
              inset 0 0 200px 40px rgba(26,14,6,.3);
}

/* ---- Section titles get a touch more character ---- */
.section-title, .hero-title { letter-spacing: -.01em; }
.section-eyebrow, .hero-eyebrow { font-weight: 700; }

/* ---- Coffee cards & menu cards: warmer, tactile hover ---- */
.coffee-card { border: 1px solid rgba(92,46,12,.07); }
.coffee-card:hover { border-color: rgba(201,122,32,.25); }

/* ---- Decorative corner ticks on the booking & order forms (ticket feel) ---- */
.booking-form, .shop-order-form { position: relative; }
.booking-form::before, .shop-order-form::before {
  content: ""; position: absolute; top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1.5px solid rgba(45,138,30,.16);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

@media (hover: none) { .trust-divider { display: none; } }

/* ---- Product bag shots: show full bag on clean background ---- */
.coffee-card-img--product { background: var(--white); }
.coffee-card-img--product img { object-fit: contain; padding: 1rem; }

/* ---- Honeypot anti-spam field (hidden from real users) ---- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---- Inline custom icons (scale with text, replace emoji) ---- */
.inline-ico {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
  flex-shrink: 0;
  margin-right: .35em;
}
