@font-face {
  font-family: "Americana AR";
  src: url("/fonts/americana.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Quattrocento Sans AR";
  src: url("/fonts/quattrocento1.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Quattrocento Sans AR";
  src: url("/fonts/quattrocento2.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --ar-ink: #1a1a1a;
  --ar-gray-dark: #333333;
  --ar-gray: #666666;
  --ar-gray-light: #eeeeee;
  --ar-cream: #f9f9f9;
  --ar-accent: #56614c; /* Olive */
  --ar-accent-warm: #b36545; /* Clay */
  --ar-border: rgba(0, 0, 0, 0.1);
  --ar-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Quattrocento Sans AR", sans-serif;
  color: var(--ar-ink);
  background: white;
  line-height: 1.6;
  font-size: 18px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

.shell {
  width: min(1100px, calc(100vw - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--ar-accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Americana AR", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.lead {
  font-size: 1.2rem;
  color: var(--ar-gray-dark);
  margin-bottom: 2rem;
}

.copy p {
  color: var(--ar-gray-dark);
}

.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.btn-primary {
  background: var(--ar-ink);
  color: white;
}

.btn-primary:hover {
  background: black;
}

.btn-ghost {
  background: transparent;
  border-color: var(--ar-ink);
  color: var(--ar-ink);
}

.btn-ghost:hover {
  background: var(--ar-ink);
  color: white;
}

/* Header */
.ar-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: black;
  color: white;
  padding: 0.5rem 0;
}

.header-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  border-radius: 0;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-actions .btn-primary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.header-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.utility-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.utility-link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-bg-light {
  background: var(--ar-cream);
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 800px;
}

/* Hero */
.hero-panel {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-panel .shell {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 900px;
}

.hero-panel .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.hero-panel h1 {
  font-size: clamp(2.75rem, 6.9vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-panel h1 span {
  display: block;
  color: #e9dcc6; /* sand/warm accent that works on dark bg */
}

.hero-panel .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 800px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-panel .btn-primary {
  background: white;
  color: var(--ar-ink);
}

.hero-panel .btn-primary:hover {
  background: var(--ar-gray-light);
}

.hero-panel .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel .btn-ghost:hover {
  background: white;
  color: var(--ar-ink);
}

.story-quote {
  max-width: 36rem;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(179, 101, 69, 0.5);
  font-style: italic;
  color: var(--ar-gray-dark);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

/* Cards */
.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--ar-shadow);
  border: 1px solid var(--ar-border);
}

.card h3 {
  margin-top: 0;
}

.wine-card {
  padding: 0;
  overflow: hidden;
}

.wine-card-media {
  aspect-ratio: 1.08;
  border-radius: 12px 12px 0 0;
}

.wine-card-body {
  padding: 1.5rem 1.6rem 1.7rem;
}

.wine-card-body p {
  margin: 0;
  color: var(--ar-gray-dark);
}

/* Specific elements */
.frame {
  overflow: hidden;
  border-radius: 12px;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.medal-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.medal-row img {
  height: 80px;
  width: auto;
  border-radius: 0;
}

.section-provenance {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75),
    rgba(249, 249, 249, 0.9)
  );
}

.provenance-grid,
.cinematic-grid {
  align-items: stretch;
}

.provenance-photo,
.cinematic-photo {
  min-height: 460px;
}

.provenance-copy,
.cinematic-copy {
  align-self: center;
}

.section-cinematic {
  background: linear-gradient(
    135deg,
    rgba(86, 97, 76, 0.06),
    rgba(179, 101, 69, 0.08)
  );
}

.quote-line {
  margin-top: 1.75rem;
  font-family: "Americana AR", serif;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.35;
  color: var(--ar-ink);
}

.fullbleed-hero {
  position: relative;
  padding: 10rem 0;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.fullbleed-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lifestyle-strip .frame {
  aspect-ratio: 1;
}

/* Footer */
.site-footer {
  background: white;
  padding: 5rem 0;
  border-top: 1px solid var(--ar-border);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ar-accent);
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: underline;
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 960px) {
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-nav {
    display: none;
  }

  .header-actions .utility-links {
    display: none;
  }

  .brand img {
    height: 58px;
  }

  .lifestyle-strip {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-panel {
    min-height: 80vh;
    padding: 4rem 0;
  }

  .hero-panel .shell {
    margin: 0 auto;
    width: min(1100px, calc(100vw - 40px));
  }

  .provenance-photo,
  .cinematic-photo {
    min-height: 320px;
  }
}
