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

:root {
  --page:    #F8F4EC;
  --page2:   #F2EBD9;
  --page3:   #EDE3CE;
  --white:   #FDFAF4;
  --ink:     #1A1209;
  --ink2:    #2E2015;
  --ink3:    #4A3520;
  --gold:    #B8832A;
  --gold2:   #D4A84B;
  --gold3:   #F0CC80;
  --wine:    #7B1728;
  --wine2:   #9E1F35;
  --wine3:   #C23048;
  --sand:    #C4A882;
  --muted:   #8A7560;
  --serif:  Georgia, 'Times New Roman', serif;
  --body:   system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(248,244,236,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184,131,42,0.18);
  transition: padding 0.4s, background 0.4s;
}
.nav-logo {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink3);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--wine);
  color: var(--white);
  padding: 0.65rem 1.7rem;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--wine2); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); display: block; }

/* ── HERO ── */
#hero {
  min-height: 80vh;
  display: grid; grid-template-columns: 1.05fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  background: var(--page);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 11rem 4rem 5.5rem;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold2), transparent);
}
.h-eyebrow {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.h-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold); }
.h-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
}
.h-headline em { font-style: italic; font-weight: 100; color: var(--wine); }
.h-sub {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.9s 0.55s forwards;
}
.h-actions {
  display: flex; gap: 1.4rem; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.btn-main {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--wine);
  color: var(--white);
  padding: 1rem 2.4rem;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.3s;
}
.btn-main:hover { background: var(--wine2); }
.btn-ghost {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink3);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1.5px solid var(--sand);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-ghost::after { content: '→'; font-size: 1rem; transition: transform 0.25s; }
.btn-ghost:hover::after { transform: translateX(4px); }
/* hero right */
.hero-right {
  background: linear-gradient(150deg, #2E1508 0%, #4A1E0A 40%, #1A0A04 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 11rem 4rem 5.5rem;
}
.hero-right-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,75,0.12);
  pointer-events: none;
}
.hero-right-ornament::before {
  content: ''; position: absolute; inset: 35px; border-radius: 50%;
  border: 1px solid rgba(212,168,75,0.08);
}
.hero-right-ornament::after {
  content: ''; position: absolute; inset: 80px; border-radius: 50%;
  border: 1px solid rgba(212,168,75,0.06);
}
.hero-rlabel {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240,204,128,0.6);
  margin-bottom: 1.2rem;
  opacity: 0; animation: fadeIn 0.9s 0.7s forwards;
}
.hero-rquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 100;
  font-style: italic;
  line-height: 1.4;
  color: rgba(253,250,244,0.9);
  margin-bottom: 2.8rem;
  opacity: 0; animation: fadeUp 0.9s 0.85s forwards;
}
.hero-stats {
  display: flex; gap: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 1.05s forwards;
}
.hs-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold2);
  line-height: 1;
}
.hs-lbl {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,250,244,0.35);
  margin-top: 0.3rem;
}
.hero-gold-line {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold2) 30%, var(--wine3) 70%, transparent);
}

/* ── CHAIRMAN ── */
#chairman {
  background: var(--wine);
  padding: 8rem 4rem;
  position: relative; overflow: hidden;
}
#chairman::before {
  content: '"';
  position: absolute; top: -5rem; left: 2rem;
  font-family: var(--serif);
  font-size: 28rem; font-weight: 400;
  color: rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none;
}
.ch-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.ch-label {
  font-family: var(--body);
  font-size: 0.63rem; font-weight: 400;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
}
.ch-label::before, .ch-label::after { content: ''; flex: 0 0 50px; height: 1px; background: rgba(240,204,128,0.4); }
.ch-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.72;
  color: rgba(253,250,244,0.9);
  text-align: center;
  margin-bottom: 2.5rem;
}
.ch-sig {
  font-family: var(--body);
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold3);
  text-align: center;
}

/* ── SECTION LABELS / TITLES ── */
.sec-label {
  font-family: var(--body);
  font-size: 0.63rem; font-weight: 400;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.sec-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
}
.sec-title em { font-style: italic; font-weight: 400; color: var(--wine); }
.sec-title-light { color: rgba(253,250,244,0.95); }
.sec-title-light em { color: var(--gold3); }

/* ── VISION ── */
#vision { background: var(--page2); padding: 8rem 4rem; }
.vis-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 4.5rem;
  background: rgba(184,131,42,0.2);
}
.vis-card {
  background: var(--white);
  padding: 3.5rem 3rem;
  position: relative;
}
.vis-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--wine), var(--gold));
}
.vis-card-lbl {
  font-family: var(--body);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.vis-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 400;
  color: var(--ink); margin-bottom: 1.2rem; line-height: 1.15;
}
.vis-card p { font-family: var(--body); font-size: 0.9rem; line-height: 1.85; color: var(--muted); }
.vals-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 4rem; padding-top: 4rem;
  border-top: 1px solid rgba(184,131,42,0.2);
}
.val-pill {
  font-family: var(--body);
  font-size: 0.63rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(74,53,32,0.15);
  color: var(--ink3);
}
.val-pill.hi { border-color: var(--gold); color: var(--gold); background: rgba(184,131,42,0.06); }

/* ── PORTFOLIO ── */
#portfolio { background: var(--page); padding: 8rem 4rem; }
.port-hdr {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,131,42,0.25);
  margin-bottom: 5rem;
}
.port-intro {
  font-family: var(--serif);
  font-size: 1.1rem; font-style: italic; font-weight: 400;
  color: var(--muted); max-width: 400px; line-height: 1.7;
}
.port-section-label {
  font-family: var(--body);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.port-featured { margin-bottom: 5rem; }
.port-featured-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.port-collection { }
.port-list {
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.wine-card {
  background: var(--white);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(184,131,42,0.12);
}
.wine-card--row {
  flex-direction: row;
  align-items: stretch;
}
.wine-card--row .wine-bottle-img {
  width: 34%; flex-shrink: 0;
  min-height: 300px;
  padding: 2rem 1.5rem;
}
.wine-card--row .wine-bottle-img::after {
  background: linear-gradient(to right, transparent, var(--white));
  bottom: 0; left: auto; right: 0; top: 0;
  width: 48px; height: auto;
}
.wine-card--row .wine-body {
  width: 66%;
  padding: 2.75rem 3rem;
  justify-content: center;
}
.wine-card--row .wc-attrs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
}
.wine-bottle-photo {
  width: 100%;
  height: 250px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.wine-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,18,9,0.12); z-index: 2; }
/* Monarca house wines — featured highlight */
.wine-card--house {
  background: linear-gradient(180deg, #FBF7EE 0%, var(--white) 100%);
  box-shadow: inset 0 0 0 1px rgba(184,131,42,0.35);
}
.wine-card--house::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  z-index: 4;
}
.wine-card--house:hover {
  box-shadow: inset 0 0 0 1px rgba(184,131,42,0.45), 0 24px 56px rgba(123,23,40,0.1);
}
.wine-card--house .wine-bottle-img {
  background: linear-gradient(170deg, var(--page3) 0%, #F5E8C8 100%);
}
.wine-card--house .wine-bottle-img::after {
  background: linear-gradient(to top, #FBF7EE, transparent);
}
.wine-card--house .wine-num-badge { color: rgba(184,131,42,0.28); }
.wine-card--house .wine-label-tag {
  background: var(--gold);
  color: var(--ink);
}
.wine-card--house .wc-rule { width: 48px; background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.wine-card--house .wc-name { color: var(--wine); }
.wine-card--house .wc-region { color: var(--wine2); }
/* bottle image area */
.wine-bottle-img {
  width: 100%;
  background: linear-gradient(170deg, var(--page3) 0%, var(--page2) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.wine-bottle-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}
/* inline SVG bottle */
.bottle-svg { position: relative; z-index: 1; }
.wine-num-badge {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--serif);
  font-size: 3.5rem; font-weight: 400;
  color: rgba(184,131,42,0.15);
  line-height: 1; z-index: 2;
}
.wine-label-tag {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  background: var(--wine);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.55rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.35rem 1rem;
  z-index: 3;
}
.wine-body { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; }
.wc-region {
  font-family: var(--body);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
.wc-name {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 400;
  color: var(--ink); line-height: 1;
  margin-bottom: 0.2rem;
}
.wc-type {
  font-family: var(--serif);
  font-size: 0.95rem; font-style: italic; font-weight: 400;
  color: var(--wine); margin-bottom: 1.8rem;
}
.wc-rule { width: 28px; height: 2px; background: var(--gold); margin-bottom: 1.8rem; }
.wc-desc { font-family: var(--body); font-size: 0.85rem; line-height: 1.85; color: var(--muted); margin-bottom: 2rem; flex: 1; }
.wc-attrs { display: flex; flex-direction: column; gap: 0; }
.wc-attr {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; padding: 0.65rem 0;
  border-bottom: 1px solid rgba(74,53,32,0.08);
}
.wc-al { font-family: var(--body); color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }
.wc-av { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ink); font-size: 0.85rem; }
.wc-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem;
  font-family: var(--body);
  font-size: 0.67rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
  transition: gap 0.25s, color 0.25s;
}
.wc-cta:hover { color: var(--gold); gap: 0.9rem; }
.wc-cta::after { content: '→'; font-size: 1rem; }

/* ── EXPERIENCES ── */
#experiences { background: var(--page2); padding: 8rem 4rem; }
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 4.5rem;
  background: rgba(184,131,42,0.15);
}
.exp-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.exp-card:hover { background: #FBF7EE; }
.exp-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--wine);
  transition: width 0.5s;
}
.exp-card:hover::after { width: 100%; }
.exp-icon-box {
  width: 48px; height: 48px;
  background: var(--wine);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
}
.exp-icon-box .ui-icon {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--white);
}
.exp-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.9rem;
}
.exp-card p { font-family: var(--body); font-size: 0.86rem; line-height: 1.82; color: var(--muted); }
.exp-tag {
  margin-top: 1.8rem;
  font-family: var(--body);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}

/* ── EDUCATION ── */
#education { background: var(--page); padding: 8rem 4rem; }
.edu-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.edu-body p { font-family: var(--body); font-size: 0.9rem; line-height: 1.9; color: var(--muted); margin-bottom: 1.4rem; margin-top: 2rem; }
.edu-feats { margin-top: 3rem; display: flex; flex-direction: column; }
.edu-feat {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(184,131,42,0.18);
}
.edu-feat-n {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 400;
  color: var(--gold2); line-height: 1; flex-shrink: 0;
}
.edu-feat h4 {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.35rem;
}
.edu-feat p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin: 0; }
.edu-panel {
  background: linear-gradient(145deg, var(--wine) 0%, #4A0D18 100%);
  padding: 4rem 3.5rem;
  position: relative; overflow: hidden;
}
.edu-panel::before {
  content: 'WINE';
  position: absolute; bottom: -0.5rem; right: -0.5rem;
  font-family: var(--serif);
  font-size: 7rem; font-weight: 400;
  color: rgba(255,255,255,0.05);
  line-height: 1; pointer-events: none;
}
.edu-pq {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 400; font-style: italic;
  color: rgba(253,250,244,0.9);
  line-height: 1.65; margin-bottom: 0.8rem;
  position: relative; z-index: 1;
}
.edu-pa {
  font-family: var(--body);
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold3); margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.edu-stats { display: flex; gap: 2.5rem; position: relative; z-index: 1; }
.eds-n { font-family: var(--serif); font-size: 2.6rem; font-weight: 400; color: var(--gold2); }
.eds-l { font-family: var(--body); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(253,250,244,0.4); margin-top: 0.2rem; }

/* ── TEAM ── */
#team { background: var(--page); padding: 8rem 4rem; }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(184,131,42,0.15);
}
.team-card {
  background: var(--white);
  padding: 3.5rem 3rem;
  transition: background 0.3s;
}
.team-card:hover { background: #FBF7EE; }
.team-partner {
  font-family: var(--body);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.team-card h3 {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.6rem;
}
.team-role {
  font-family: var(--serif);
  font-size: 0.95rem; font-style: italic; font-weight: 400;
  color: var(--wine); margin-bottom: 1.5rem;
}
.team-bio {
  font-family: var(--body);
  font-size: 0.86rem; line-height: 1.82; color: var(--muted);
}

/* ── PARTNERSHIPS ── */
#partnerships { background: var(--page2); padding: 8rem 4rem; }
.pt-intro { max-width: 640px; margin-bottom: 4.5rem; }
.pt-intro p { font-family: var(--body); font-size: 0.9rem; line-height: 1.85; color: var(--muted); margin-top: 1.5rem; }
.partner-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(184,131,42,0.15);
}
.partner-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}
.partner-card:hover { background: #FBF7EE; }
.pc-icon-box {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(184,131,42,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
}
.pc-icon-box .ui-icon { width: 1.1rem; height: 1.1rem; color: var(--gold); }
.partner-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.7rem; }
.partner-card p { font-family: var(--body); font-size: 0.82rem; line-height: 1.8; color: var(--muted); }

/* ── AFRICA ── */
#africa {
  background: linear-gradient(135deg, #1A0804 0%, #2E1208 50%, #180604 100%);
  padding: 8rem 4rem; position: relative; overflow: hidden;
}
#africa::after {
  content: 'AFRICA';
  position: absolute; right: -1.5rem; bottom: -1.5rem;
  font-family: var(--serif);
  font-size: 15rem; font-weight: 400;
  color: rgba(255,255,255,0.035); pointer-events: none;
  white-space: nowrap; line-height: 1;
}
.africa-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.africa-content .sec-label { color: var(--gold3); }
.africa-content .sec-label::before { background: var(--gold3); }
.africa-content p { font-family: var(--body); font-size: 0.9rem; line-height: 1.9; color: rgba(253,250,244,0.55); margin-top: 1.5rem; }
.africa-mkts { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.8rem; }
.africa-mkt {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold2);
  background: rgba(253,250,244,0.04);
  transition: background 0.25s;
}
.africa-mkt:hover { background: rgba(253,250,244,0.08); }
.africa-mkt span { font-family: var(--body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(253,250,244,0.65); }
.africa-mkt strong { margin-left: auto; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 0.82rem; color: var(--gold2); }
.africa-phil { border: 1px solid rgba(212,168,75,0.2); padding: 3.5rem; }
.africa-phil p { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; font-style: italic; line-height: 1.75; color: rgba(253,250,244,0.85); }
.africa-phil cite { display: block; margin-top: 1.5rem; font-family: var(--body); font-style: normal; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold3); }

/* ── COLLECTOR TIERS ── */
#collector { background: var(--page); padding: 8rem 4rem; }
.coll-top { max-width: 700px; margin: 0 auto 5rem; text-align: center; }
.coll-top .sec-label { justify-content: center; }
.coll-top .sec-label::before { display: none; }
.coll-top > p { font-family: var(--body); font-size: 0.9rem; line-height: 1.85; color: var(--muted); margin-top: 1.5rem; }
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(184,131,42,0.15);
}
.tier-card { background: var(--white); padding: 3.5rem 2.5rem; position: relative; }
.tier-card.feat { background: var(--wine); }
.tier-card.feat .tier-name, .tier-card.feat .tier-price, .tier-card.feat .t-li { color: rgba(253,250,244,0.85); }
.tier-card.feat .tier-badge { color: var(--gold3); }
.tier-card.feat .t-li::before { background: var(--gold3); }
.tier-badge { font-family: var(--body); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.tier-name { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
.tier-price { font-family: var(--body); font-size: 0.8rem; color: var(--muted); margin-bottom: 2.5rem; }
.t-ul { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.t-li { font-family: var(--body); font-size: 0.84rem; color: var(--muted); display: flex; gap: 0.8rem; align-items: flex-start; }
.t-li::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 0.45rem; }

/* ── INQUIRY ── */
#inquiry { background: var(--page2); padding: 8rem 4rem; }
.inq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 7rem; align-items: start; }
.inq-info .sec-title { margin-bottom: 1.5rem; }
.inq-info p { font-family: var(--body); font-size: 0.9rem; line-height: 1.85; color: var(--muted); margin-bottom: 1.4rem; }
.inq-details { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 1rem; }
.inq-detail { display: flex; gap: 1rem; align-items: center; }
.inq-detail--start { align-items: flex-start; }
.inq-detail--start .inq-icon { margin-top: 0.15rem; }
.inq-location-body {
  font-family: var(--body);
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--muted);
}
.inq-location-title {
  display: block;
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.45rem;
}
.inq-location-body address { font-style: normal; margin-bottom: 0.55rem; }
.inq-location-body a {
  display: block;
  font-family: var(--body);
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.inq-location-body a + a { margin-top: 0.15rem; }
.inq-location-body a:hover { color: var(--wine); }
.inq-detail span {
  font-family: var(--body);
  font-size: 0.84rem;
  color: var(--muted);
}
.inq-icon {
  width: 36px; height: 36px;
  background: rgba(123,23,40,0.1);
  border: 1px solid rgba(123,23,40,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.inq-icon .ui-icon { width: 0.9rem; height: 0.9rem; color: var(--wine); }

.ui-icon {
  display: block;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.inq-detail a { font-family: var(--body); font-size: 0.84rem; color: var(--muted); text-decoration: none; transition: color 0.25s; }
.inq-detail a:hover { color: var(--wine); }
.inq-form { background: var(--white); padding: 4rem; border: 1px solid rgba(184,131,42,0.2); position: relative; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  font-family: var(--body);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
}
.form-status--success {
  color: var(--ink);
  background: rgba(184,131,42,0.12);
  border: 1px solid rgba(184,131,42,0.25);
}
.form-status--error {
  color: var(--wine);
  background: rgba(123,23,40,0.06);
  border: 1px solid rgba(123,23,40,0.2);
}
.form-head { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
.form-sub { font-family: var(--body); font-size: 0.8rem; color: var(--muted); margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.fg label { font-family: var(--body); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.fg input, .fg select, .fg textarea {
  background: transparent; border: none;
  border-bottom: 1.5px solid rgba(184,131,42,0.3);
  padding: 0.75rem 0; font-family: var(--body);
  font-size: 0.92rem; color: var(--ink); outline: none;
  transition: border-color 0.25s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--wine); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-btn {
  width: 100%; padding: 1.1rem; background: var(--wine); color: var(--white);
  border: none; cursor: pointer; font-family: var(--body);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 0.3s; margin-top: 0.8rem;
}
.form-btn:hover:not(:disabled) { background: var(--wine2); }
.form-btn:disabled { cursor: not-allowed; opacity: 0.85; }
.form-priv { font-family: var(--body); font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 1rem; line-height: 1.5; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 1rem 4rem 2.5rem; }
.ft-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(253,250,244,0.08);
}
.ft-logo { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: rgba(253,250,244,0.9); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.ft-logo em { font-style: italic; color: var(--gold2); }
.ft-desc { font-family: var(--body); font-size: 0.82rem; line-height: 1.8; color: rgba(253,250,244,0.3); }
.ft-col-h { font-family: var(--body); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1.5rem; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.ft-links a { font-family: var(--body); font-size: 0.84rem; color: var(--page2); text-decoration: none; transition: color 0.25s; }
.ft-links a:hover { color: rgba(253,250,244,0.8); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; }
.ft-copy { font-family: var(--body); font-size: 0.72rem; color: var(--page2); }
.ft-tag { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--page2); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s, transform 0.75s; }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── MOBILE MENU ── */
#mob-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--page); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.2rem;
}
#mob-menu.open { display: flex; }
#mob-menu a { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: var(--ink); text-decoration: none; }
#mob-menu a:hover { color: var(--wine); }
.mob-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.4rem; cursor: pointer; background: none; border: none; color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 55vh; padding: 5rem 1.5rem 4rem; }
  .hero-left { padding: 8rem 1.5rem 4rem; }
  #chairman, #vision, #portfolio, #experiences, #team, #education,
  #partnerships, #africa, #collector, #inquiry { padding: 5rem 1.5rem; }
  .vis-grid, .port-featured-grid, .exp-grid, .team-grid, .edu-inner,
  .africa-grid, .partner-grid, .tier-grid, .inq-grid,
  .port-hdr { grid-template-columns: 1fr; }
  .port-hdr { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .wine-card--row { flex-direction: column; }
  .wine-card--row .wine-bottle-img { width: 100%; min-height: 280px; }
  .wine-card--row .wine-bottle-img::after {
    background: linear-gradient(to top, var(--white), transparent);
    bottom: 0; left: 0; right: 0; top: auto;
    width: auto; height: 60px;
  }
  .wine-card--row .wine-body { width: 100%; padding: 2.5rem; }
  .wine-card--row .wc-attrs { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}