:root {
  --bg: #f4efe6;
  --bg-soft: #efe6d8;
  --paper: rgba(255, 249, 240, 0.8);
  --ink: #1a1713;
  --muted: #6f6658;
  --line: rgba(26, 23, 19, 0.12);
  --forest: #223127;
  --forest-soft: #354b3c;
  --ember: #d36f23;
  --gold: #d9b15f;
  --shadow: 0 24px 80px rgba(24, 18, 12, 0.16);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-sm: 16px;
  --content-width: min(1180px, calc(100vw - 48px));
}

@font-face {
  font-family: "Burning Bench Chisel";
  src: url("https://irp.cdn-website.com/1d5d3fe4/fonts/chisel-d416_400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(211, 111, 35, 0.12), transparent 24rem),
    radial-gradient(circle at top right, rgba(34, 49, 39, 0.1), transparent 28rem),
    linear-gradient(180deg, #f7f2ea 0%, #f2ebe0 42%, #f4efe6 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 1.1rem max(calc((100vw - var(--content-width)) / 2), 24px);
  transition: padding 220ms ease, gap 220ms ease;
}

.site-header.is-condensed::before {
  opacity: 1;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 1;
  transition: background 220ms ease, box-shadow 220ms ease, border-radius 220ms ease;
  z-index: -1;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  width: fit-content;
  max-width: min(680px, 60vw);
}

.brand-mark-wrap {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3));
  transition: width 220ms ease, height 220ms ease, filter 220ms ease;
}

.brand-wordmark {
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 0;
  line-height: 1;
  text-align: center;
}

.brand-title,
.brand-subtitle {
  display: block;
  color: #f7f2ea;
  font-family: "Burning Bench Chisel", "Cinzel", serif;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-title {
  font-size: clamp(1.55rem, 1.9vw, 2.55rem);
  letter-spacing: 0.06em;
}

.brand-subtitle {
  margin-top: 0.28rem;
  color: rgba(229, 211, 158, 0.98);
  font-size: clamp(0.62rem, 0.7vw, 0.92rem);
  letter-spacing: 0.18em;
}

.site-header.is-condensed {
  gap: 1rem;
  padding: 0.72rem max(calc((100vw - var(--content-width)) / 2 + 18px), 42px);
}

.site-header.is-condensed .brand {
  max-width: min(470px, 47vw);
}

.site-header.is-condensed::before {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.is-condensed .brand-mark {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.24));
}

.site-header.is-condensed .brand-title {
  font-size: clamp(1.08rem, 1.3vw, 1.45rem);
  letter-spacing: 0.07em;
}

.site-header.is-condensed .brand-subtitle {
  margin-top: 0.18rem;
  font-size: clamp(0.46rem, 0.52vw, 0.68rem);
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.header-cta {
  color: #f6f1e8;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 248, 238, 0.24);
  border-radius: 999px;
  background: transparent;
  color: #f6f1e8;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8b162, #b87e2f);
  color: #13100b;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(184, 126, 47, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(184, 126, 47, 0.3);
}

.button-secondary,
.button-ghost {
  border-color: rgba(255, 248, 238, 0.28);
  background: transparent;
  color: #f6f1e8;
  box-shadow: none;
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 248, 238, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 4.25rem calc((100vw - var(--content-width)) / 2) 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 2rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(12, 12, 10, 0.28) 0%, rgba(12, 12, 10, 0.22) 24%, rgba(12, 12, 10, 0.74) 100%),
    linear-gradient(90deg, rgba(12, 12, 10, 0.54) 0%, rgba(12, 12, 10, 0.1) 48%, rgba(12, 12, 10, 0.46) 100%);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 45rem;
  padding-right: 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.gallery-copy h3,
.process-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  color: #f7f2ea;
  font-size: clamp(4rem, 10vw, 7.2rem);
}

.hero-text,
.section p,
.process-card p,
.craft-panel-copy p,
.footer-brand + p {
  line-height: 1.75;
}

.hero-text {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: rgba(247, 242, 234, 0.86);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-panel {
  margin-left: auto;
  width: min(100%, 320px);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(13, 13, 12, 0.62), rgba(13, 13, 12, 0.38));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.stat + .stat {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-number {
  display: block;
  color: #f7f2ea;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
}

.stat-label {
  color: rgba(247, 242, 234, 0.7);
  font-size: 0.95rem;
}

.section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 3.5rem 0;
}

.section h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--forest);
}

.section-heading {
  max-width: 46rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem 4rem;
  align-items: start;
}

.intro-copy {
  padding-top: 1.2rem;
}

.intro-copy p,
.feature-copy p,
.visit-copy p,
.wine-copy p {
  color: var(--muted);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem 4rem;
  align-items: center;
}

.feature-media img,
.craft-panel img,
.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.feature-copy h2 {
  margin-top: 0.3rem;
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.detail-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.detail-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--forest-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-value {
  color: var(--ink);
  font-size: 1rem;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
}

.gallery-card-tall {
  min-height: 36rem;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card-portrait img {
  transform: scale(1.12);
  transform-origin: center center;
}

.gallery-card-portrait:hover img {
  transform: scale(1.16);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.06), rgba(11, 10, 9, 0.7));
}

.gallery-copy {
  position: absolute;
  inset: auto 1.5rem 1.5rem;
  z-index: 1;
  color: #f7f2ea;
}

.gallery-copy h3 {
  font-size: 2.2rem;
}

.craft-section {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.process-card {
  padding: 1.7rem;
  border: 1px solid rgba(34, 49, 39, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.76);
  box-shadow: 0 18px 40px rgba(23, 18, 12, 0.06);
}

.process-step {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--ember);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.process-card h3 {
  color: var(--forest);
  font-size: 2rem;
}

.craft-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.75fr);
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.3rem;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(135deg, rgba(34, 49, 39, 0.08), rgba(211, 111, 35, 0.08));
}

.craft-panel-copy {
  align-self: center;
}

.wine-section {
  padding-top: 2rem;
}

.wine-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 2rem 4rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    radial-gradient(circle at top right, rgba(211, 111, 35, 0.12), transparent 18rem),
    linear-gradient(135deg, #18140f 0%, #221a13 48%, #1a1611 100%);
  box-shadow: var(--shadow);
}

.wine-bottle {
  display: flex;
  justify-content: center;
}

.wine-bottle img {
  max-height: 34rem;
  width: auto;
}

.wine-copy .eyebrow,
.wine-copy h2,
.wine-copy p {
  color: #f5efe6;
}

.wine-copy p {
  color: rgba(245, 239, 230, 0.76);
}

.wine-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 2rem;
}

.wine-notes span {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f5efe6;
  font-size: 0.86rem;
}

.visit-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem 4rem;
  align-items: center;
}

.visit-copy {
  padding-right: 1rem;
}

.visit-meta {
  margin: 1.7rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(211, 111, 35, 0.32);
}

.visit-meta p {
  margin: 0.2rem 0;
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 4rem;
  text-align: center;
}

.footer-brand {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.footer-brand img {
  border-radius: 24px;
}

.site-footer p {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 800ms ease,
    transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .gallery-card img,
  .button,
  .site-header::before,
  .hero-image {
    transition: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero,
  .intro-grid,
  .feature,
  .visit-strip,
  .wine-card,
  .craft-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-panel {
    margin-top: 2rem;
    margin-left: 0;
    width: min(100%, 420px);
  }

  .gallery-band,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-tall {
    min-height: 24rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .site-header::before {
    inset: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .brand {
    max-width: 100%;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
  }

  .brand-title {
    font-size: clamp(1.28rem, 5vw, 2rem);
  }

  .brand-subtitle {
    font-size: clamp(0.55rem, 2vw, 0.8rem);
  }

  .header-menu {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-top: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(255, 248, 238, 0.12);
    border-radius: 24px;
    background: rgba(255, 248, 238, 0.06);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .site-header.nav-open .header-menu {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav a {
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid rgba(255, 248, 238, 0.12);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    width: 100%;
  }

  .site-header.is-condensed .brand,
  .site-header.is-condensed .header-menu {
    max-width: 100%;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 2.75rem;
    gap: 1.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section {
    padding: 2.125rem 0;
  }

  .gallery-copy {
    inset: auto 1.2rem 1.2rem;
  }

  .gallery-copy h3 {
    font-size: 1.9rem;
  }

  .process-card {
    padding: 1.35rem;
  }

  .process-card h3 {
    font-size: 1.8rem;
  }

  .craft-panel {
    gap: 1.3rem;
    padding: 1rem;
  }

  .wine-card {
    gap: 1.4rem;
  }

  .visit-copy {
    padding-right: 0;
  }

  .hero h1 {
    max-width: 9ch;
  }
}

@media (max-width: 540px) {
  :root {
    --content-width: min(100vw - 28px, 1180px);
    --radius-xl: 26px;
    --radius-lg: 20px;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-title {
    font-size: 1.08rem;
    letter-spacing: 0.05em;
  }

  .brand-subtitle {
    margin-top: 0.14rem;
    font-size: 0.45rem;
    letter-spacing: 0.11em;
    white-space: normal;
  }

  .site-header.is-condensed .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-header.is-condensed .brand-subtitle {
    display: none;
  }

  .site-header.is-condensed .brand-title {
    font-size: 0.9rem;
  }

  .hero-actions,
  .site-nav {
    width: 100%;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-panel {
    padding: 1.15rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .gallery-card,
  .gallery-card-tall {
    min-height: 20rem;
  }

  .gallery-copy h3 {
    font-size: 1.65rem;
  }

  .section h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .wine-notes span {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}
