:root {
  --ink: #2d2520;
  --night: #171310;
  --muted: #665c54;
  --paper: #f9f6f0;
  --tan: #ece2d1;
  --red: #8d4636;
  --red-dark: #683126;
  --gold: #d9ae68;
  --line: #d8cdbc;
  --display: Georgia, 'Times New Roman', serif;
  --body: 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.8rem; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 16px; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(3.15rem, 7vw, 6.5rem); letter-spacing: -0.05em; }
h2 { font-size: clamp(2.35rem, 4vw, 4.3rem); letter-spacing: -0.04em; }
h3 { font-size: 1.65rem; }

.skip-link { position: fixed; z-index: 10; left: 1rem; top: -4rem; padding: .7rem 1rem; background: var(--paper); border: 1px solid var(--ink); }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 5; min-height: 5.4rem; padding: .5rem clamp(1rem, 4vw, 4.75rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: rgba(249, 246, 240, .94); border-bottom: 1px solid rgba(45, 37, 32, .12); backdrop-filter: blur(16px) saturate(1.1); }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; line-height: 1.08; white-space: nowrap; }
.brand img { width: 3.8rem; height: 3.8rem; object-fit: contain; }
.brand strong { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 400; }
.brand small { display: block; margin-top: .18rem; color: var(--muted); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(.8rem, 1.9vw, 1.8rem); font-size: .88rem; }
.site-nav a { text-decoration: none; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a:not(.nav-cta):focus-visible { text-decoration: underline; text-underline-offset: .35rem; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border: 1px solid transparent; padding: .78rem 1.15rem; font-size: .77rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.nav-cta { background: var(--red); color: white; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--red-dark); }
.menu-button { display: none; border: 1px solid var(--ink); padding: .56rem .75rem; background: transparent; color: var(--ink); font: inherit; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.hero { isolation: isolate; position: relative; min-height: min(790px, calc(100vh - 5.4rem)); display: grid; align-items: end; overflow: hidden; background: 50% 54% / cover no-repeat url('/images/barn-exterior.jpg'); color: white; }
.hero::before { content: ''; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 72% 38%, rgba(252, 197, 114, .27), transparent 23%), linear-gradient(90deg, rgba(9, 8, 7, .88) 0%, rgba(16, 11, 9, .64) 42%, rgba(16, 11, 9, .08) 82%), linear-gradient(0deg, rgba(9, 8, 7, .45), transparent 47%); mix-blend-mode: multiply; }
.hero::after { content: ''; pointer-events: none; position: absolute; z-index: 1; inset: 0; opacity: .22; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E"); }
.hero-shade { position: absolute; z-index: -1; inset: 0; border: clamp(12px, 2vw, 28px) solid rgba(255, 248, 238, .08); }
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 8vw, 8rem); animation: arrival 900ms cubic-bezier(.2,.8,.2,1) both; }
.hero .eyebrow { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; color: #f4d69f; font-size: .73rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.hero .eyebrow::before { content: ''; width: 2.8rem; height: 1px; background: currentColor; }
.hero h1 { max-width: 760px; margin-bottom: 1.45rem; text-shadow: 0 3px 34px rgba(0, 0, 0, .22); }
.hero p:not(.eyebrow) { max-width: 570px; margin-bottom: 2rem; font-size: clamp(1rem, 1.6vw, 1.25rem); text-shadow: 0 2px 16px rgba(0, 0, 0, .38); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button-light { background: #fff; color: var(--ink); }
.button-light:hover, .button-light:focus-visible { background: var(--gold); }
.button-ghost { border-color: rgba(255, 255, 255, .8); color: #fff; }
.button-ghost:hover, .button-ghost:focus-visible { background: white; color: var(--ink); }
.button-dark { background: var(--red); color: white; }
.button-dark:hover, .button-dark:focus-visible { background: var(--red-dark); }
.hero-index { position: absolute; z-index: 2; right: clamp(1.25rem, 5vw, 6rem); bottom: clamp(1.6rem, 5vw, 4rem); display: flex; align-items: flex-end; gap: .65rem; color: rgba(255, 249, 238, .85); line-height: .8; }
.hero-index span { font-family: var(--display); font-size: clamp(5rem, 13vw, 13rem); letter-spacing: -.1em; }
.hero-index small { padding-bottom: .6rem; font-size: .64rem; font-weight: 700; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.cinema-ribbon { display: flex; justify-content: center; gap: .9rem; padding: .8rem 1rem; overflow: hidden; background: var(--night); color: #e7c88d; font-family: var(--display); font-size: .82rem; letter-spacing: .06em; text-align: center; text-transform: uppercase; }

.section { position: relative; padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 8vw, 8rem); }
.section > * { max-width: 1320px; margin-left: auto; margin-right: auto; }
.section-label { margin-bottom: 1.25rem; color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr); gap: clamp(2rem, 9vw, 10rem); }
.two-column h2 { margin-bottom: 0; }
.lead { font-size: 1.17rem; }
.text-link { color: var(--red-dark); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: .3rem; }
.section-tan { background: var(--tan); }
.section-tan h2 { max-width: 760px; margin-bottom: 3rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-grid article { min-height: 235px; padding: 1.65rem; background: rgba(249, 246, 240, .7); border-top: 2px solid var(--red); }
.feature-number { color: var(--red); font-size: .75rem; letter-spacing: .12em; }
.feature-grid h3 { margin: .55rem 0 .8rem; }
.feature-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.note { margin-top: 2.7rem; max-width: 760px; padding: 1rem 1.25rem; border-left: 3px solid var(--red); color: var(--muted); font-size: .92rem; }
.note strong { color: var(--ink); }

.image-break { position: relative; min-height: clamp(250px, 43vw, 560px); background: center 58% / cover no-repeat url('/images/barn-02.jpg'); }
.image-break::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 8, 7, .23), transparent 60%); box-shadow: inset 0 0 0 clamp(8px, 1.6vw, 24px) rgba(249, 246, 240, .38); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.4rem; }
.section-heading h2 { margin: 0; }
.section-heading > p { max-width: 420px; margin: 0; color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: .75rem; }
.gallery img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; filter: saturate(.84) contrast(1.05); transition: filter .6s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.gallery > * { overflow: hidden; background: var(--night); }
.gallery img:hover { filter: saturate(1.06) contrast(1.03); transform: scale(1.045); }
.gallery img:nth-child(1), .gallery img:nth-child(6) { grid-column: span 7; grid-row: span 2; }
.gallery img:nth-child(2), .gallery img:nth-child(4), .gallery img:nth-child(8) { grid-column: span 5; }
.gallery img:nth-child(3), .gallery img:nth-child(5), .gallery img:nth-child(7), .gallery img:nth-child(9), .gallery img:nth-child(10), .gallery img:nth-child(11) { grid-column: span 4; }
.tour-section { overflow: hidden; color: white; background: radial-gradient(circle at 89% 4%, rgba(217, 174, 104, .38), transparent 28%), var(--red-dark); }
.tour-section::after { content: 'C&M'; position: absolute; right: -2vw; bottom: -10vw; color: rgba(255, 255, 255, .06); font-family: var(--display); font-size: clamp(14rem, 37vw, 36rem); font-style: italic; letter-spacing: -.15em; line-height: .7; pointer-events: none; }
.tour-section > div { max-width: 700px; }
.tour-section .section-label { color: #efc985; }
.tour-section h2 { margin-bottom: 1.2rem; }
.tour-section p { max-width: 540px; margin-bottom: 2rem; color: #f4e7dd; }
.tour-section .button-dark { background: var(--gold); color: #33271e; }
.tour-section .button-dark:hover, .tour-section .button-dark:focus-visible { background: white; }
.vendors-section { background: #e9e7dc; }
.vendor-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.vendor-list div { min-height: 92px; display: flex; align-items: center; padding: 1.25rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.24rem; }

.contact-section { background: linear-gradient(110deg, #fbf8f3, #f4eadc); }
.contact-section > * { width: 100%; max-width: 620px; margin: 0; }
.contact-copy h2 { margin-bottom: 1.2rem; }
.contact-copy > p { max-width: 420px; color: var(--muted); }
address { margin: 2rem 0 1.5rem; font-style: normal; line-height: 1.7; }
address strong { display: block; margin-bottom: .35rem; font-family: var(--display); font-size: 1.4rem; font-weight: 400; }
address a { text-underline-offset: .25rem; }
.contact-links { display: grid; gap: .3rem; }
.contact-links a { color: var(--red-dark); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: .2rem; }
.site-footer { padding: 2.2rem clamp(1.25rem, 8vw, 8rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--ink); color: #f2e9dd; font-size: .82rem; }
.site-footer > div { display: flex; align-items: center; gap: 1rem; }
.site-footer img { width: 3.35rem; height: 3.35rem; object-fit: contain; filter: sepia(.4) saturate(.7) brightness(1.6); }
.site-footer p { margin: 0; }

@keyframes arrival {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .site-header { padding-right: 1rem; padding-left: 1rem; }
  .menu-button { display: inline-block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; align-items: stretch; gap: 0; padding: .7rem 1rem 1rem; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: .7rem .4rem; }
  .nav-cta { margin-top: .5rem; }
  .two-column { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .vendor-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .brand img { width: 3.15rem; height: 3.15rem; }
  .brand strong { font-size: 1.16rem; }
  .hero { min-height: 670px; background-position: 58% center; }
  .hero-index { right: 1.25rem; bottom: 1.4rem; }
  .hero-index span { font-size: 5.8rem; }
  .cinema-ribbon { gap: .45rem; font-size: .68rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img, .gallery img:nth-child(n) { min-height: 185px; grid-column: span 1; grid-row: span 1; }
  .gallery img:nth-child(1), .gallery img:nth-child(6) { grid-column: span 2; min-height: 300px; }
  .vendor-list { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
