:root {
  --ink: #201a16;
  --brown: #4a3025;
  --cocoa: #6b4838;
  --gold: #c3a267;
  --cream: #f3ede4;
  --paper: #fcfaf6;
  --sage: #84907b;
  --line: rgba(74, 48, 37, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 116px; }
.eyebrow { margin: 0 0 20px; color: var(--cocoa); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: #e9d8b8; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; }
h2 { font-size: clamp(43px, 5vw, 76px); line-height: .98; }
p { line-height: 1.75; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 27px; border: 1px solid transparent; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #211a15; }
.button-gold:hover { background: #d4ba89; }
.button-dark { background: var(--brown); color: #fff; }
.button-dark:hover { background: var(--ink); }
.text-link { display: inline-block; padding-block: 7px; border-bottom: 1px solid var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { margin-left: 8px; }
.light-link { color: white; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; color: white; background: transparent; border-bottom: 1px solid rgba(255,255,255,.23); transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease; }
.site-header.scrolled { background: rgba(28, 20, 15, .97); border-bottom-color: rgba(255,255,255,.08); box-shadow: 0 4px 24px rgba(0,0,0,.18); }
.header-inner { height: 92px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 230px; height: 70px; }
.brand img { width: 100%; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 38px; }
.site-nav a { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding-block: 12px; }
.site-nav a:hover, .site-nav a.active { color: #ead9b8; }
.site-nav .nav-inquiry { display: none; }
.header-inquiry { display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 22px; background: var(--gold); color: #211a15; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: background .2s, transform .2s; }
.header-inquiry:hover { background: #d4ba89; transform: translateY(-2px); }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; border: 1px solid rgba(255,255,255,.4); background: transparent; color: white; cursor: pointer; }
.nav-toggle-bars { position: relative; display: block; width: 18px; height: 2px; background: currentColor; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; transition: transform .2s; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-open .nav-toggle-bars { background: transparent; }
.nav-open .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; min-height: 820px; color: white; overflow: hidden; background: #261d18; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: slowZoom 18s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,19,15,.87) 0%, rgba(30,22,17,.59) 47%, rgba(30,22,17,.12) 83%), linear-gradient(0deg, rgba(25,18,14,.65), transparent 45%); }
.hero-content { position: relative; z-index: 2; min-height: 820px; padding-top: 205px; }
.hero h1 { max-width: 760px; font-size: clamp(58px, 7.2vw, 103px); line-height: .91; }
.hero-copy { max-width: 570px; margin: 30px 0 38px; color: rgba(255,255,255,.86); font-size: 17px; }
.button-row { display: flex; align-items: center; gap: 34px; }
.hero-meta { position: absolute; z-index: 2; right: 40px; bottom: 32px; display: flex; gap: 26px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.hero-meta span + span::before { content: "•"; margin-right: 26px; color: var(--gold); }
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.08); } }

.intro-section { display: grid; grid-template-columns: 1fr .85fr; gap: 100px; align-items: start; }
.intro-copy { padding-top: 38px; max-width: 540px; }
.intro-copy .lead { margin-top: 0; font-family: Georgia, "Times New Roman", serif; font-size: 25px; line-height: 1.5; }
.intro-copy > p:not(.lead) { color: #62564d; }
.intro-copy .text-link { margin-top: 16px; }

.venue-section { background: var(--cream); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; margin-bottom: 52px; }
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.venue-card { display: grid; grid-template-columns: 43% 1fr; min-height: 340px; background: var(--paper); overflow: hidden; }
.venue-art { position: relative; overflow: hidden; background-size: cover; background-position: center; }
.venue-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, transparent, rgba(31,21,16,.55)); }
.venue-art span { position: absolute; z-index: 2; left: 22px; bottom: 18px; color: white; font-family: Georgia, serif; font-size: 44px; font-style: italic; }
.venue-art-01 { background-image: linear-gradient(140deg, rgba(85,47,27,.08), rgba(36,23,17,.42)), url('../assets/hero-ballroom.png'); }
.venue-art-02 { background-image: linear-gradient(140deg, rgba(107,72,56,.12), rgba(54,38,29,.45)), url('../assets/garden-room.png'); background-position: 45% 70%; }
.venue-art-03 { background-image: linear-gradient(140deg, rgba(117,98,71,.1), rgba(29,24,20,.52)), url('../assets/ballroom.png'); background-position: 78% 50%; }
.venue-art-04 { background-image: linear-gradient(140deg, rgba(106,91,70,.06), rgba(31,24,18,.4)), url('../assets/chapel-ceremony.png'); background-position: center; }
.venue-card-copy { padding: 42px 36px 34px; display: flex; flex-direction: column; align-items: flex-start; }
.venue-card h3 { font-size: 37px; }
.venue-card-copy > p:not(.eyebrow) { color: #6b5e54; font-size: 14px; line-height: 1.65; }
.venue-card-copy a { margin-top: auto; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 5px; }

.feature-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }
.feature-image-wrap { position: relative; height: 720px; }
.feature-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.image-note { position: absolute; left: -25px; bottom: 38px; padding: 17px 22px; background: var(--paper); font-family: Georgia, serif; font-size: 17px; font-style: italic; }
.feature-copy { max-width: 500px; }
.feature-copy h2 em { color: var(--cocoa); }
.feature-copy > p:not(.eyebrow) { margin: 30px 0; color: #65584e; }
.feature-list { margin: 0 0 36px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 14px; letter-spacing: .03em; text-transform: uppercase; }
.feature-list span { display: inline-block; width: 55px; color: var(--gold); font-family: Georgia, serif; font-style: italic; }

.testimonial-section { padding: 112px 0; background: var(--brown); color: white; text-align: center; }
.testimonial-inner { max-width: 940px; }
blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 5vw, 61px); line-height: 1.18; letter-spacing: -.025em; }
.testimonial-note { margin-top: 30px; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.cta-section { padding-block: 102px; display: grid; grid-template-columns: 1fr .7fr; gap: 100px; align-items: center; }
.cta-section h2 { font-size: clamp(45px, 5.4vw, 74px); }
.cta-section > div:last-child p { margin-top: 0; color: #665a51; }
.cta-section .button { margin-top: 18px; }

.page-hero { min-height: 520px; padding-top: 92px; display: flex; align-items: center; color: white; background: linear-gradient(115deg, rgba(34,23,17,.97), rgba(78,49,36,.87)), url('../assets/hero-ballroom.png') center/cover; }
.page-hero-inner { padding-block: 92px 72px; }
.page-hero h1 { max-width: 900px; font-size: clamp(58px, 8vw, 104px); line-height: .93; }
.page-hero p:last-child { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.74); font-size: 17px; }

.spaces-list { display: flex; flex-direction: column; gap: 120px; }
.space-detail { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: center; }
.space-detail.reverse { grid-template-columns: .92fr 1.08fr; }
.space-detail.reverse .space-image { order: 2; }
.space-image { position: relative; height: 590px; overflow: hidden; }
.space-image img { width: 100%; height: 100%; object-fit: cover; }
.space-image span { position: absolute; left: 24px; bottom: 18px; color: rgba(255,255,255,.9); font-family: Georgia, serif; font-size: 72px; font-style: italic; }
.space-copy h2 { font-size: clamp(52px, 6vw, 83px); }
.space-copy > p:not(.eyebrow) { margin: 28px 0; color: #66594f; }
.space-copy ul { margin: 0 0 32px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.space-copy li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.capacity-note { padding-block: 100px; background: var(--brown); color: white; }
.capacity-inner { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: end; }
.capacity-inner p:last-child { color: rgba(255,255,255,.7); font-size: 16px; }

.services-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; align-items: end; }
.services-intro > p { color: #66594f; font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-bottom: 116px; }
.service-card { min-height: 320px; padding: 38px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card > span { color: var(--gold); font-family: Georgia, serif; font-size: 19px; font-style: italic; }
.service-card h3 { margin: 64px 0 18px; font-size: 33px; }
.service-card p { color: #6b5e54; font-size: 14px; }
.package-band { background: var(--brown); color: white; }
.package-inner { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px; }
.package-photo { margin-left: calc((100vw - min(1180px, calc(100vw - 48px))) / -2); }
.package-photo img { width: 100%; height: 100%; object-fit: cover; }
.package-copy { padding: 100px 0 100px 90px; align-self: center; }
.package-copy h2 { font-size: clamp(50px, 5vw, 73px); }
.package-copy h2 em { color: #dec69a; }
.package-copy > p:not(.eyebrow) { margin: 32px 0; color: rgba(255,255,255,.68); }

.gallery-heading { display: grid; grid-template-columns: .5fr 1fr; gap: 80px; align-items: start; margin-bottom: 70px; }
.gallery-heading h2 { max-width: 800px; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 420px 330px 360px; gap: 18px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(30,21,16,.55), transparent 45%); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; z-index: 2; left: 22px; bottom: 18px; color: white; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.gallery-a { grid-row: 1 / 3; grid-column: 1; }
.gallery-b { grid-row: 1; grid-column: 2 / 4; }
.gallery-c { grid-row: 2 / 4; grid-column: 2; }
.gallery-d { grid-row: 3; grid-column: 1; }
.gallery-b img, .gallery-c img { object-position: center; }
.gallery-d img { object-position: center 35%; }
.gallery-quote { grid-row: 2 / 4; grid-column: 3; background: var(--cream); padding: 46px 32px; display: flex; flex-direction: column; justify-content: center; }
.gallery-quote span { color: var(--gold); font-family: Georgia, serif; font-size: 80px; line-height: .6; }
.gallery-quote p { font-family: Georgia, serif; font-size: 28px; line-height: 1.35; }
.gallery-cta { padding-block: 110px; background: var(--brown); color: white; text-align: center; }
.gallery-cta h2 { max-width: 860px; margin: 0 auto 38px; }

.contact-section { display: grid; grid-template-columns: 1fr .85fr; gap: 100px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 580px; margin: 30px 0; color: #65584e; font-size: 17px; }
.contact-actions { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.contact-card { padding: 48px; background: var(--brown); color: white; }
.contact-row { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-row > span { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-row a, .contact-row p { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.65; }

.inquiry-form-wrap { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--line); max-width: 580px; }
.inquiry-form-wrap h3 { font-size: 32px; }
.inquiry-form-note { margin: 16px 0 32px; color: #65584e; font-size: 15px; }
.inquiry-form { scroll-margin-top: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; margin-bottom: 8px; color: var(--cocoa); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font-size: 14px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; }
.inquiry-form .button { margin-top: 4px; }
.form-status { margin: 16px 0 0; min-height: 20px; font-size: 13px; color: var(--cocoa); }
.form-status.success { color: #4a6b3f; }
.tour-steps { padding-block: 110px; background: var(--cream); }
.tour-steps h2 { max-width: 700px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 65px; border-top: 1px solid var(--line); }
.steps-grid article { padding: 34px 40px 20px 0; border-right: 1px solid var(--line); }
.steps-grid article + article { padding-left: 40px; }
.steps-grid article:last-child { border-right: 0; }
.steps-grid span { color: var(--gold); font-family: Georgia, serif; font-size: 18px; font-style: italic; }
.steps-grid h3 { margin: 48px 0 16px; font-size: 31px; }
.steps-grid p { color: #6b5e54; font-size: 14px; }

.site-footer { background: #1f1814; color: white; }
.footer-main { padding-block: 78px 55px; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; }
.footer-brand img { width: 260px; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.58); font-size: 14px; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-main a { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; }
.footer-main a:hover { color: white; }
.footer-label { margin: 0 0 12px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-bottom { padding-block: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .shell { width: min(100% - 32px, 680px); }
  .section { padding-block: 82px; }
  .header-inner { height: auto; min-height: 88px; grid-template-columns: 1fr auto; padding-block: 20px; }
  .brand { width: 190px; grid-column: 1; grid-row: 1; }
  .header-inquiry { display: none; }
  .nav-toggle { display: inline-flex; grid-column: 2; grid-row: 1; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; flex-direction: column; align-items: flex-start; gap: 0; max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .nav-open .site-nav { max-height: 360px; padding-bottom: 20px; background: #241a14; }
  .site-nav a { padding-block: 10px; width: 100%; }
  .site-nav .nav-inquiry { display: block; margin-top: 8px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); color: var(--gold); }
  .hero, .hero-content { min-height: 740px; }
  .hero-content { padding-top: 225px; }
  .hero-meta { display: none; }
  .intro-section, .feature-section, .cta-section { grid-template-columns: 1fr; gap: 50px; }
  .space-detail, .space-detail.reverse, .services-intro, .capacity-inner, .contact-section { grid-template-columns: 1fr; gap: 52px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form-wrap { margin-top: 44px; padding-top: 36px; }
  .space-detail.reverse .space-image { order: 0; }
  .space-image { height: 520px; }
  .spaces-list { gap: 90px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .package-inner { grid-template-columns: 1fr; }
  .package-photo { margin: 0; height: 520px; }
  .package-copy { padding: 70px 0; }
  .gallery-heading { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 330px 330px 300px; }
  .gallery-a { grid-row: 1 / 3; grid-column: 1; }
  .gallery-b { grid-row: 1; grid-column: 2; }
  .gallery-c { grid-row: 3; grid-column: 1 / 3; }
  .gallery-d { grid-row: 4; grid-column: 1; }
  .gallery-quote { grid-row: 2; grid-column: 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article, .steps-grid article + article { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .intro-copy { padding-top: 0; }
  .venue-grid { grid-template-columns: 1fr; }
  .feature-image-wrap { height: 600px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; gap: 45px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 520px); }
  .hero h1 { font-size: 53px; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 20px; }
  .section-heading-row { align-items: flex-start; }
  .desktop-link { display: none; }
  .venue-card { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .space-image { height: 430px; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .contact-card { padding: 34px 25px; }
  .contact-row { grid-template-columns: 80px 1fr; }
  .gallery-grid { display: flex; flex-direction: column; }
  .gallery-grid figure { height: 390px; }
  .gallery-quote { min-height: 310px; }
  .venue-art { min-height: 250px; }
  .feature-image-wrap { height: 500px; }
  .image-note { left: 12px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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