@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --wine: #651b24;
  --wine-dark: #3f0d14;
  --logo-cream: #fef8f3;
  --cream: #f7f1e8;
  --paper: #fffdf9;
  --ink: #26211f;
  --muted: #6f6761;
  --gold: #b79765;
  --border: rgba(65, 32, 26, .15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Montserrat, Arial, sans-serif;
  --shadow: 0 24px 60px rgba(49, 22, 18, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); text-align: center; }
.section { padding: clamp(88px, 10vw, 144px) 0; }
.section-kicker, .eyebrow { margin: 0 0 18px; color: var(--wine); font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; line-height: .98; }
h1 { max-width: 900px; margin-bottom: 28px; font-size: clamp(3.25rem, 8vw, 7.2rem); letter-spacing: -.045em; }
h2 { margin-bottom: 26px; font-size: clamp(2.6rem, 5vw, 4.8rem); letter-spacing: -.035em; }
h3 { line-height: 1.25; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 16px; background: white; color: var(--wine); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; background: var(--logo-cream); color: var(--ink); border-bottom: 1px solid var(--border); transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(49, 22, 18, .08); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { position: relative; width: 196px; height: 64px; overflow: hidden; flex: none; }
.brand img { width: 196px; height: auto; margin-top: 1px; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a { text-decoration: none; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: #d8b58a; }
.nav-cta { padding: 10px 17px; border: 1px solid currentColor; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; color: currentColor; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: white; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media { background: url("assets/wine-pouring.webp") center 55% / cover no-repeat; transform: scale(1.01); }
.hero-overlay { background: linear-gradient(90deg, rgba(31, 8, 10, .82) 0%, rgba(50, 13, 17, .54) 53%, rgba(30, 9, 10, .12) 100%), linear-gradient(0deg, rgba(22, 7, 8, .35), transparent 45%); }
.hero-content { position: relative; z-index: 1; padding-top: 120px; padding-bottom: 90px; }
.hero .eyebrow { color: #e1c6a3; }
.hero-lead { max-width: 650px; margin-bottom: 36px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 24px; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cream); color: var(--wine-dark); }
.button-ghost { border-color: rgba(255,255,255,.7); color: white; }
.button-ghost:hover { background: white; color: var(--wine-dark); }
.scroll-cue { position: absolute; z-index: 2; right: 4vw; bottom: 32px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; text-decoration: none; }

.intro { background: var(--paper); }
.intro-copy { font-family: var(--serif); font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.35; }
.intro .narrow > p:last-of-type { color: var(--muted); }
.values { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--border); }
.values div { padding: 25px 16px; }
.values div + div { border-left: 1px solid var(--border); }
.values strong, .values span { display: block; }
.values strong { color: var(--wine); font-family: var(--serif); font-size: 1.6rem; }
.values span { color: var(--muted); font-size: .75rem; }

.wine-section { background: var(--cream); }
.text-section-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr); align-items: start; gap: clamp(55px, 10vw, 140px); }
.section-heading-left h2 { max-width: 560px; margin-bottom: 0; }
.section-copy > p:not(.section-kicker) { color: var(--muted); }
.wine-list { margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.wine-list li { display: flex; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border); }
.wine-list > li > span { color: var(--gold); font-family: var(--serif); font-size: 1.3rem; }
.wine-list strong, .wine-list small { display: block; }
.wine-list strong { font-size: .95rem; }
.wine-list small { color: var(--muted); }

.services { background: var(--paper); }
.section-heading { max-width: 680px; margin: 0 auto 55px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 350px; padding: 40px 34px; border: 1px solid var(--border); transition: transform .3s, box-shadow .3s, background .3s, color .3s; }
.service-card:hover { transform: translateY(-6px); background: var(--wine); color: white; box-shadow: var(--shadow); }
.service-card svg { width: 54px; margin: 28px 0 34px; fill: none; stroke: var(--wine); stroke-width: 1.5; transition: stroke .3s; }
.service-card:hover svg { stroke: #e1c6a3; }
.service-card h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 2rem; }
.service-card p { color: var(--muted); font-size: .88rem; transition: color .3s; }
.service-card:hover p { color: rgba(255,255,255,.75); }
.service-number { position: absolute; top: 24px; right: 28px; color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }

.team { background: #22201e; color: white; }
.team-text-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr); align-items: start; gap: clamp(60px, 10vw, 150px); }
.team .section-kicker { color: #d8b58a; }
.team-intro { max-width: 520px; color: rgba(255,255,255,.66); }
.people { display: grid; gap: 0; }
.people article { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.16); }
.people article:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.people h3 { margin: 0 0 2px; font-family: var(--serif); font-size: 1.8rem; }
.people p { margin: 0; color: rgba(255,255,255,.66); font-size: .84rem; }
.people .role { margin-bottom: 6px; color: #d8b58a; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.contact { padding: clamp(90px, 11vw, 150px) 0; background: var(--wine); color: white; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(60px, 10vw, 140px); }
.contact-copy h2 { max-width: 720px; }
.contact-copy > p:not(.section-kicker) { max-width: 580px; color: rgba(255,255,255,.72); }
.section-kicker.light { color: #e1c6a3; }
.button-light { margin-top: 20px; background: white; color: var(--wine); }
.contact-details { font-style: normal; }
.contact-details > div { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.22); }
.contact-details > div:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-details span { display: block; margin-bottom: 5px; color: #e1c6a3; font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-details a { text-underline-offset: 4px; }
.contact-details p { margin: 0; }

.site-footer { background: #1c1917; color: rgba(255,255,255,.55); }
.footer-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: .72rem; }
.footer-inner p { margin: 0; }
.footer-inner a { text-decoration: none; }
.footer-brand { color: white; font-family: var(--serif); font-size: 2rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .container { width: min(100% - 30px, 680px); }
  .site-header { background: var(--logo-cream); }
  .header-inner { min-height: 74px; }
  .brand { width: 166px; height: 54px; }
  .brand img { width: 166px; }
  .menu-toggle { z-index: 2; width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span[aria-hidden] { width: 23px; height: 2px; background: currentColor; transition: transform .25s, opacity .25s; }
  .menu-toggle[aria-expanded="true"] span[aria-hidden]:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span[aria-hidden]:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span[aria-hidden]:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 74px 0 auto; display: grid; gap: 0; padding: 20px 25px 30px; background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--border); box-shadow: 0 16px 30px rgba(50,20,20,.08); visibility: hidden; pointer-events: none; transform: translateY(-130%); transition: transform .3s, visibility .3s; }
  .primary-nav.is-open { visibility: visible; pointer-events: auto; transform: translateY(0); }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .primary-nav .nav-cta { margin-top: 14px; padding-inline: 18px; text-align: center; border: 1px solid var(--wine); background: var(--wine); color: white; }
  .hero { min-height: 780px; }
  .hero-media { background-position: 60% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(28,7,9,.84), rgba(43,9,13,.46)); }
  .hero-content { padding-top: 130px; }
  .text-section-grid, .team-text-grid, .contact-grid { grid-template-columns: 1fr; }
  .text-section-grid, .team-text-grid { gap: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .contact-grid { align-items: start; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding: 80px 0; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .hero { min-height: 720px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .values { grid-template-columns: 1fr; }
  .values div + div { border-top: 1px solid var(--border); border-left: 0; }
  .service-card { padding: 32px 26px; }
  .contact { padding: 80px 0; }
  .footer-inner { padding: 30px 0; flex-direction: column; gap: 10px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
