/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #2b2b2b;
  background: #fafaf7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: #8a7a55; }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: .01em;
  color: #1c1c1c;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.2; }
h3 { font-size: 1.4rem; }
h4 { font-size: .95rem; letter-spacing: .15em; text-transform: uppercase; }

p { margin: 0 0 1em; }
.eyebrow {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #8a7a55;
  margin: 0 0 .8em;
}
.lead { font-size: 1.15rem; max-width: 60ch; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border: 1px solid #1c1c1c;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: transparent;
  color: #1c1c1c;
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover { background: #1c1c1c; color: #fff; }
.btn-primary { background: #1c1c1c; color: #fff; }
.btn-primary:hover { background: #8a7a55; border-color: #8a7a55; color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.header-inner {
  width: min(1400px, 94%);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand img { height: 50px; width: auto; }

.menu-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  padding: 0;
  flex-direction: column; gap: 6px; align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px; background: #1c1c1c; transition: all .25s ease;
}

.primary-nav { display: flex; align-items: center; gap: 2.5rem; }
.primary-nav > ul {
  display: flex; gap: 2rem;
}
.primary-nav a {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.primary-nav a[aria-current="page"] { color: #8a7a55; }

.nav-meta { display: flex; align-items: center; gap: 1.5rem; }
.nav-meta .lang, .nav-meta .social { display: flex; gap: .75rem; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.nav-meta .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid currentColor; border-radius: 50%;
  font-style: italic;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: 64px 0 0 0;
    background: #fafaf7;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > ul { flex-direction: column; gap: 1.25rem; text-align: center; }
  .primary-nav a { font-size: 1rem; }
}

/* ---------- Home hero ---------- */
.home-hero {
  position: relative;
  min-height: 85vh;
  display: grid; place-items: end start;
  color: #fff;
  overflow: hidden;
}
.home-hero .hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.55)),
    url('/assets/hero.jpg') center/cover no-repeat,
    linear-gradient(135deg, #1f3a4d, #44697f);
  z-index: 0;
}
.home-hero .hero-overlay {
  position: relative; z-index: 1;
  width: 100%;
  padding: 5rem 0 4rem;
}
.home-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: .25em;
}
.home-hero .eyebrow { color: rgba(255,255,255,.85); }
.home-hero .lead { color: rgba(255,255,255,.95); margin-bottom: 2rem; }

.home-intro {
  padding: 5rem 0 3rem;
  text-align: center;
}
.home-intro p { max-width: 65ch; margin-inline: auto; }

/* ---------- Tile grid ---------- */
.home-tiles { padding: 3rem 0 5rem; }
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd;
}
.tile a {
  position: absolute; inset: 0;
  display: block;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.tile:hover img { transform: scale(1.05); }
.tile-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
}
.tile-cta {
  background: #1c1c1c; color: #fff;
  display: grid; place-items: center;
}
.tile-cta a { position: static; display: grid; place-items: center; height: 100%; width: 100%; }
.tile-cta .tile-label {
  position: static; background: none; padding: 0;
  letter-spacing: .15em; text-transform: uppercase; font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Features ---------- */
.home-features { padding: 4rem 0 6rem; background: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.features-grid h3 { font-size: 1.25rem; }

/* ---------- Venue pages ---------- */
.venue-hero {
  padding: 6rem 0 3rem;
  text-align: center;
  background: #fff;
}
.venue-hero .lead { margin-inline: auto; }

.venue-body { padding: 2rem 0 4rem; background: #fff; }
.venue-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 4rem;
}
.venue-copy p { font-size: 1.05rem; }
.venue-resources {
  border-top: 1px solid #e3dfd4;
  padding-top: 1.25rem;
}
.venue-resources h3 { font-size: 1rem; letter-spacing: .15em; text-transform: uppercase; }
.venue-resources ul { display: flex; flex-direction: column; gap: .5rem; }
.venue-resources a {
  display: inline-block;
  font-size: .85rem; letter-spacing: .1em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

@media (max-width: 800px) {
  .venue-body-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- Gallery ---------- */
.venue-gallery { padding: 3rem 0 5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px;
}
.gallery-item { margin: 0; overflow: hidden; aspect-ratio: 1 / 1; background: #e3dfd4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- Venue CTA ---------- */
.venue-cta {
  padding: 5rem 0;
  background: #1c1c1c;
  color: #fff;
  text-align: center;
}
.venue-cta h2 { color: #fff; }
.venue-cta .btn { color: #fff; border-color: #fff; }
.venue-cta .btn:hover { background: #fff; color: #1c1c1c; }

/* ---------- Contact ---------- */
.contact-hero {
  padding: 6rem 0 3rem;
  text-align: center;
  background: #fff;
}
.contact-body { padding: 2rem 0 6rem; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 4rem;
  align-items: start;
}
.contact-info p { line-height: 1.7; }
.contact-info a { border-bottom: 1px solid currentColor; }

.contact-form {
  background: #fafaf7;
  padding: 2.5rem;
  border: 1px solid #e3dfd4;
}
.contact-form h2 { margin-top: 0; }
.field { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.field label {
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: .4rem; color: #555;
}
.field input,
.field select,
.field textarea {
  font-family: inherit; font-size: 1rem; color: inherit;
  padding: .8rem 1rem;
  background: #fff;
  border: 1px solid #d6cfbf;
  border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: #8a7a55;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #141414;
  color: #cfc8b8;
  padding: 4rem 0 1.5rem;
}
.footer-inner {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.site-footer ul { display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.site-footer a:hover { color: #fff; }
.footer-tagline { font-size: .9rem; max-width: 30ch; opacity: .8; }
.footer-contact address { font-style: normal; line-height: 1.8; font-size: .9rem; }
.footer-contact .social { flex-direction: row; gap: 1rem; margin-top: 1rem; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; }

.footer-bottom {
  width: min(1200px, 92%);
  margin-inline: auto;
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  font-size: .75rem; color: #8c8678; letter-spacing: .1em;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
