@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --wine: #6B2737;
  --wine-dark: #4A1A26;
  --wine-mid: #55202D;
  --wine-light: #FDF4F5;
  --gold: #B8943F;
  --gold-dark: #8E7030;
  --gold-light: #F8F0DC;
  --cream: #FAF8F4;
  --charcoal: #1C1917;
  --charcoal-mid: #292524;
  --text: #292524;
  --text-light: #78716C;
  --border: #E7E5E4;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--wine);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.3px;
}
.topbar a { color: var(--gold); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* ---- NAV ---- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--wine);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); letter-spacing: -0.2px; }
.logo-sub { font-size: 0.65rem; font-weight: 600; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--wine); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone svg { color: var(--wine); }
.btn-nav {
  background: var(--wine);
  color: white;
  padding: 0.55rem 1.35rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--wine-dark); transform: translateY(-1px); color: white; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }
.nav-mobile { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; }
.nav-mobile a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.9rem; padding: 0.75rem 0; display: block; border-bottom: 1px solid var(--border); }
.nav-mobile .btn-nav { margin-top: 1rem; display: inline-block; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--charcoal); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.btn-wine {
  background: var(--wine);
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
  display: inline-block;
}
.btn-wine:hover { background: var(--wine-dark); color: white; }
.btn-wine-outline {
  background: transparent;
  color: var(--wine);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  border: 1.5px solid var(--wine);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-wine-outline:hover { background: var(--wine); color: white; }

/* ---- HERO ---- */
.hero {
  background: var(--wine);
  color: white;
  padding: 96px 1.5rem 128px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), 0 100%);
  margin-bottom: -56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(184,148,63,0.06) 0px,
    rgba(184,148,63,0.06) 1px,
    transparent 1px,
    transparent 28px
  ),
  repeating-linear-gradient(
    -45deg,
    rgba(184,148,63,0.06) 0px,
    rgba(184,148,63,0.06) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,148,63,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(184,148,63,0.3);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- STATS ---- */
.stats-strip {
  background: var(--charcoal);
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700; color: var(--gold); letter-spacing: -0.5px; }
.stat-lbl { font-size: 0.8rem; color: #9CA3AF; margin-top: 0.25rem; font-weight: 500; letter-spacing: 0.3px; }

/* ---- SECTION ---- */
.section { padding: 88px 1.5rem; }
.section-alt { background: var(--cream); }
.section-wine { background: var(--wine); color: white; }
.section-dark { background: var(--charcoal); color: white; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-wine .eyebrow { color: rgba(184,148,63,0.9); }
.section-dark .eyebrow { color: var(--gold); }
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-wine h2, .section-dark h2 { color: white; }
.section p.lead {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-wine p.lead, .section-dark p.lead { color: rgba(255,255,255,0.75); }

/* ---- ROLES GRID ---- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.role-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.role-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(107,39,55,0.1);
  transform: translateY(-2px);
}
.role-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.role-card h4 { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); line-height: 1.35; }

/* ---- HOW WE WORK ---- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
}
.how-num {
  width: 44px;
  height: 44px;
  background: var(--wine);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.how-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.how-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

/* ---- WHY US ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text .eyebrow { color: rgba(184,148,63,0.9); }
.why-text h2 { font-size: 2.1rem; }
.why-text p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.85; margin-bottom: 1rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.why-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.why-panel {
  background: white;
  border-radius: 12px;
  padding: 2.25rem;
}
.why-panel h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.why-row { display: flex; align-items: flex-start; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.why-row:last-child { border-bottom: none; }
.why-row-icon { width: 40px; height: 40px; background: var(--wine-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-row-text strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
.why-row-text span { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi {
  background: white;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  position: relative;
}
.testi::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--wine); opacity: 0.1; position: absolute; top: 0.25rem; left: 1.25rem; line-height: 1; }
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testi p { font-size: 0.875rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.testi-author strong { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); display: block; }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ---- CTA ---- */
.cta-section {
  background: var(--charcoal);
  color: white;
  text-align: center;
  padding: 88px 1.5rem;
}
.cta-section h2 { font-family: 'Playfair Display', serif; color: white; font-size: 2.5rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 0.75rem; }
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p { color: #9CA3AF; font-size: 1rem; max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.8; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--wine);
  color: white;
  padding: 56px 1.5rem 80px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-bottom: -40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(184,148,63,0.05) 0px, rgba(184,148,63,0.05) 1px, transparent 1px, transparent 28px),
  repeating-linear-gradient(-45deg, rgba(184,148,63,0.05) 0px, rgba(184,148,63,0.05) 1px, transparent 1px, transparent 28px);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; font-weight: 500; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 580px; line-height: 1.75; }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .eyebrow { color: var(--gold); }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--charcoal); letter-spacing: -0.2px; margin-bottom: 1rem; }
.about-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; }
.about-panel {
  background: var(--cream);
  border-radius: 12px;
  padding: 2.25rem;
  border: 1px solid var(--border);
}
.about-panel h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.5rem; }
.kv { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.kv:last-child { border-bottom: none; }
.kv .k { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }
.kv .v { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); text-align: right; }

.vals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.val-card { text-align: center; padding: 2rem 1.25rem; }
.val-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--wine); margin-bottom: 0.5rem; }
.val-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; }
.val-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

/* ---- ROLES PAGE ---- */
.roles-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.role-block {
  background: white;
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.role-block:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(107,39,55,0.08); }
.role-block-icon {
  width: 48px;
  height: 48px;
  background: var(--wine-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.role-block-text h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.35rem; }
.role-block-text p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { background: var(--cream); border-radius: 10px; padding: 1.25rem; border: 1px solid var(--border); }
.contact-card h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--wine); margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.875rem; color: var(--text); line-height: 1.65; }
.contact-card a { color: var(--wine); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-form-box { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; min-height: 650px; }
.ghl-wrap { width: 100%; min-height: 650px; }

/* ---- FOOTER ---- */
.footer { background: var(--charcoal); color: #9CA3AF; padding: 4rem 1.5rem 1.5rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.65fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 260px; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.footer-logo .logo-name { color: white; }
.footer-logo .logo-sub { color: var(--gold); }
.footer-col h5 { color: white; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.8rem; color: #9CA3AF; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-hours { margin-top: 0.75rem; font-size: 0.8rem; color: #6B7280; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: #4B5563; }
.footer-bottom a { color: #6B7280; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .roles-grid { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { font-size: 2.8rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-panel { max-width: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .vals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 72px 1.5rem 110px; }
  .hero h1 { font-size: 2.2rem; }
  .stats-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .roles-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .roles-page-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 2rem; }
  .section h2 { font-size: 1.9rem; }
  .cta-section h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns, .cta-btns { flex-direction: column; align-items: center; }
  .stats-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .vals-grid { grid-template-columns: 1fr 1fr; }
}
