@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Source+Sans+3:wght@400;600;700&display=swap");

:root{
  --bg-light:#f4efe8;
  --bg-soft:#eadccf;
  --taupe:#d4bdad;
  --taupe-deep:#c8b09f;
  --ink:#191919;
  --ink-soft:#2a2a2a;
  --white:#ffffff;
  --border:#343434;
  --max:1200px;
  --radius:18px;
  --shadow:0 14px 34px rgba(0,0,0,.12);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:#fff;
  color:var(--ink);
  font-family:"Source Sans 3", Arial, Helvetica, sans-serif;
  font-size:18px;
  line-height:1.6;
}

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

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

a:hover{
  text-decoration:none;
}

.container{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(25,25,25,.96);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}

.header-inner{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand,
h1,
h2{
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
}

.brand{
  color:#fff;
  font-size:2rem;
  line-height:1;
  white-space:nowrap;
  letter-spacing:.02em;
}

.nav{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  background:var(--taupe);
  border:2px solid var(--border);
  border-radius:8px;
  padding:10px 16px;
  font-size:.98rem;
  font-weight:700;
  color:var(--ink);
  transition:background .2s ease, transform .2s ease;
}

.nav a:hover,
.nav a:focus-visible{
  background:var(--taupe-deep);
  transform:translateY(-1px);
}

.hero{
  min-height:64vh;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(rgba(25,25,25,.56), rgba(25,25,25,.56)),
    var(--hero-image, linear-gradient(135deg, #2a2a2a 0%, #191919 100%)) center/cover no-repeat;
  background-color:#191919;
}

.home-page{
  --hero-image:url("../Images/IMG_0100.JPG");
}

.venue-page{
  --hero-image:url("../Images/IMG_0122.JPG");
}

.contact-page{
  --hero-image:url("../Images/IMG_0098.JPG");
}

.guide-page{
  --hero-image:url("../Images/IMG_0126.JPG");
}

.privacy-page .hero{
  min-height:48vh;
}

.hero-inner{
  padding:96px 0;
  max-width:880px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(212,189,173,.18);
  font-size:.88rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

h1,h2,h3{
  margin:0 0 18px;
  font-weight:500;
  line-height:1.08;
}

h1{
  font-size:clamp(3rem, 6vw, 5.3rem);
  max-width:12ch;
}

h2{
  font-size:clamp(2rem, 4vw, 3.15rem);
}

h3{
  margin:0 0 12px;
  font-size:1.35rem;
  font-weight:700;
}

p{
  margin:0 0 18px;
}

.hero p{
  max-width:46rem;
  font-size:1.22rem;
  color:rgba(255,255,255,.94);
}

.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.btn{
  display:inline-block;
  padding:14px 24px;
  border-radius:8px;
  border:2px solid var(--border);
  font-weight:700;
  transition:transform .2s ease, background .2s ease;
}

.btn-primary{
  background:var(--taupe);
  color:var(--ink);
  box-shadow:var(--shadow);
}

.btn-secondary{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.72);
}

.btn:hover,
.btn:focus-visible{
  transform:translateY(-2px);
}

.section{
  padding:88px 0;
}

section[id]{
  scroll-margin-top:104px;
}

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

.section-white{
  background:#fff;
}

.section-dark{
  background:var(--ink);
  color:#fff;
}

.intro{
  max-width:900px;
}

.split,
.location-grid,
.contact-grid,
.split-feature,
.two-column{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:start;
}

.split{
  grid-template-columns:1.05fr .95fr;
  align-items:center;
}

.location-grid{
  grid-template-columns:.95fr 1.05fr;
}

.image-wrap,
.image-card,
.detail-card,
.card,
.panel-light,
.text-panel,
.intro-card,
.policy-card,
.policy-nav,
.cta-box,
.contact-box,
.guide-card{
  border-radius:18px;
}

.image-wrap,
.image-card,
.detail-card{
  background:var(--taupe);
  border:2px solid var(--border);
  padding:14px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.image-wrap img,
.image-card img,
.detail-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
}

.image-tall img{
  aspect-ratio:4/5;
}

.image-wide img{
  aspect-ratio:16/10;
}

.panel,
.card,
.text-panel,
.policy-card{
  background:rgba(255,255,255,.06);
  border:2px solid rgba(255,255,255,.14);
  padding:30px;
}

.card,
.text-panel,
.policy-card{
  background:#fff;
  border-color:rgba(25,25,25,.08);
  box-shadow:var(--shadow);
}

.panel-light,
.intro-card,
.cta-box,
.contact-box,
.guide-card{
  background:var(--bg-soft);
  border:2px solid var(--border);
  padding:30px;
  box-shadow:var(--shadow);
}

.section-dark .card,
.section-dark .text-panel,
.section-dark .policy-card,
.section-dark .image-card{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
  box-shadow:none;
}

.feature-list,
.hours-list{
  margin:18px 0 0;
  padding-left:22px;
}

.feature-list li,
.hours-list li{
  margin:0 0 12px;
}

.map-panel,
.map-placeholder{
  min-height:360px;
  border-radius:18px;
  background:var(--taupe);
  border:2px solid var(--border);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.map-panel iframe,
.map-placeholder iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

.location-note,
.map-caption,
.image-caption,
.note,
.footer-links{
  font-size:.95rem;
}

.location-note,
.map-caption,
.image-caption{
  margin-top:10px;
  font-weight:700;
  opacity:.82;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}

.gallery-stack{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:28px;
}

.detail-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.detail-card p{
  margin:12px 4px 4px;
}

.quote-block{
  max-width:880px;
  border-left:4px solid var(--taupe);
  padding-left:24px;
}

.carousel{
  background:var(--taupe);
  border:2px solid var(--border);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow);
}

.carousel-frame{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  background:#111;
  aspect-ratio:16/10;
}

.carousel-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .8s ease, visibility .8s ease;
}

.carousel-slide.is-active{
  opacity:1;
  visibility:visible;
}

.carousel-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.carousel-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px;
  color:#fff;
  background:linear-gradient(transparent, rgba(0,0,0,.76));
  font-weight:700;
}

.contact-list{
  margin:0;
  padding:0;
  list-style:none;
}

.contact-list li{
  margin:0 0 18px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.contact-list li:last-child{
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none;
}

.label{
  display:block;
  margin-bottom:6px;
  font-size:.84rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.78;
}

.contact-value{
  font-size:1.15rem;
}

form{
  display:grid;
  gap:16px;
}

input,
textarea,
select{
  width:100%;
  border:2px solid rgba(25,25,25,.12);
  border-radius:8px;
  padding:14px 16px;
  font:inherit;
  color:var(--ink);
  background:#fff;
}

textarea{
  min-height:150px;
  resize:vertical;
}

input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:var(--border);
}

.social-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}

.social-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:8px;
  background:var(--white);
  border:2px solid rgba(25,25,25,.10);
  font-weight:700;
  transition:transform .2s ease, background .2s ease;
}

.social-link:hover{
  transform:translateY(-2px);
  background:#f8f8f8;
}

.social-link svg{
  width:20px;
  height:20px;
  display:block;
  flex:0 0 20px;
}

.policy-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:34px;
  align-items:start;
}

.policy-nav{
  position:sticky;
  top:110px;
  background:#fff;
  border:2px solid rgba(25,25,25,.08);
  padding:24px;
  box-shadow:var(--shadow);
}

.policy-nav a{
  display:block;
  margin:0 0 10px;
  padding:10px 12px;
  border-radius:8px;
  font-weight:700;
  background:var(--bg-soft);
}

.policy-content{
  display:grid;
  gap:24px;
}

.policy-card ul{
  margin:0 0 18px;
  padding-left:22px;
}

.guide-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.guide-card{
  background:#fff;
}

.guide-card .meta{
  display:grid;
  gap:8px;
  margin:0 0 16px;
}

.guide-card .meta div{
  display:flex;
  gap:8px;
}

.guide-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.guide-actions a{
  border:2px solid var(--border);
  border-radius:8px;
  padding:9px 14px;
  font-weight:700;
  background:var(--taupe);
}

.site-footer{
  background:var(--ink);
  color:rgba(255,255,255,.86);
  padding:32px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
}

.footer-title{
  margin:0 0 6px;
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  font-size:1.25rem;
}

.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
  font-weight:700;
}

.footer-links a{
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width: 980px){
  .split,
  .location-grid,
  .contact-grid,
  .split-feature,
  .two-column,
  .gallery-grid,
  .detail-grid,
  .policy-layout,
  .guide-grid{
    grid-template-columns:1fr;
  }

  .gallery-stack{
    grid-template-rows:auto;
  }

  .policy-nav{
    position:static;
  }
}

@media (max-width: 860px){
  .header-inner{
    padding:14px 0;
    flex-direction:column;
    align-items:flex-start;
  }

  .nav{
    justify-content:flex-start;
  }

  h1{
    max-width:none;
  }

  .footer-inner{
    flex-direction:column;
  }

  .footer-links{
    justify-content:flex-start;
  }
}

@media (max-width: 640px){
  body{
    font-size:17px;
  }

  .container,
  .header-inner{
    width:min(var(--max), calc(100% - 28px));
  }

  .section{
    padding:64px 0;
  }

  .nav a,
  .button-row .btn,
  .guide-actions a{
    width:100%;
    text-align:center;
  }

  .carousel-caption{
    position:static;
    background:#111;
  }
}

@media (prefers-reduced-motion: reduce){
  .carousel-slide{
    transition:none;
  }
}
