:root {
  --black: #000000;
  --black-soft: #0c0c0c;
  --gold: #c4a574;
  --gold-dim: #8a7350;
  --white: #ffffff;
  --grey: #999999;
  --grey-dark: #666666;
  --border: rgba(255, 255, 255, 0.14);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --header-h: 72px;
  --gold-barlow: #c5b358;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s, opacity 0.25s; }
a:hover { color: var(--gold); }

/* Header — transparent on hero, solid after scroll */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s, border-color 0.4s;
}

.site-header--hero {
  background: transparent;
  border-bottom: none;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav--hero .nav-links--hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  gap: 1rem;
}

.nav-links a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.lang-switcher {
  display: flex;
  border: 1px solid var(--border);
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.45rem;
  background: transparent;
  border: none;
  color: var(--grey);
  cursor: pointer;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  justify-self: end;
  grid-column: 3;
}

.nav-toggle span { width: 22px; height: 1px; background: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn:hover { background: var(--white); color: var(--black); }
.btn-ghost { border-color: rgba(255,255,255,0.5); }
.btn-full { width: 100%; }

.gold-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Hero — full-screen photo (first page only) */
.hero--barlow {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 420px;
  padding: calc(var(--header-h) + 2rem) 2rem 12vh 3.5rem;
}

.hero-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.75rem;
  color: var(--gold-barlow);
}

.hero-logo:hover { opacity: 0.85; color: var(--gold-barlow); }

.hero-logo-icon {
  color: var(--gold-barlow);
  opacity: 0.9;
}

.hero-logo-text {
  font-family: "Pinyon Script", "Cormorant Garamond", cursive;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-barlow);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-barlow);
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.hero-lead {
  font-size: 0.78rem;
  color: #b0b0b0;
  line-height: 2;
  max-width: 32ch;
  margin-bottom: 1.1rem;
}

.hero-lead:last-of-type {
  margin-bottom: 2.5rem;
}

.hero-scroll {
  display: inline-flex;
  opacity: 0.7;
}

.hero-scroll:hover { opacity: 1; }

.hero-scroll-icon {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
}

.hero-scroll-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 5px;
  background: var(--gold-barlow);
  border-radius: 1px;
  animation: scroll-dot 2.2s ease infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.25; transform: translateX(-50%) translateY(9px); }
}

.hero-social {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: opacity 0.35s;
}

.hero-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--grey-dark);
}

.hero-social a:hover {
  border-color: var(--gold-barlow);
  color: var(--gold-barlow);
  opacity: 1;
}

.hero-social svg { opacity: 0.85; }

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.feature-card:hover img { transform: scale(1.05); }

.feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
  text-align: center;
}

.feature-overlay span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.feature-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.feature-link {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--grey);
}

/* Banner */
.banner {
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

/* Menus */
.menus {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menus-head {
  text-align: center;
  margin-bottom: 3rem;
}

.menus-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.menus-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--grey-dark);
  font-style: italic;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.menu-tab {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--grey);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  margin-bottom: -1px;
}

.menu-tab:hover { color: var(--white); }
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category {
  margin-bottom: 4rem;
}

.menu-category h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.menu-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.menu-item .price {
  font-size: 0.85rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.5;
}

.menu-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Gallery */
.gallery-section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s;
}

.gallery-grid img:hover { opacity: 0.8; }

/* Events */
.events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-top: 1px solid var(--border);
}

.events-inner {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.events-inner h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.events-inner p {
  color: var(--grey);
  margin-bottom: 2rem;
  max-width: 36ch;
}

.events-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* Contact */
.contact {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-grid h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-desc { color: var(--grey); margin-bottom: 2rem; }

.contact-info dt {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

.contact-info dd { color: var(--grey); font-size: 0.9rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
}

.contact-form select {
  cursor: pointer;
  color-scheme: dark;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-bottom-color: var(--gold); }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-status {
  font-size: 0.8rem;
  color: var(--gold);
  text-align: center;
}

.form-status--error { color: #e07070; }

.toast--error {
  background: #8b2e2e;
  color: var(--white);
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 1px solid var(--border);
  filter: grayscale(100%) invert(90%) contrast(85%);
}

/* Footer */
.footer {
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--black-soft);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-logo { display: inline-block; margin-bottom: 1rem; }

.footer-grid p,
.footer-grid li,
.footer-grid a {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 2;
}

.footer-grid h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.footer-grid ul { list-style: none; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 0.75rem; color: var(--grey-dark); }

.back-top {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.back-top:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
  z-index: 200;
  transition: transform 0.4s;
}

.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .nav-links--hero { display: none; }
  .nav-toggle { display: flex; }

  .nav.is-open .nav-links--hero {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--black);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 99;
    align-items: flex-start;
  }

  .hero--barlow {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-copy {
    max-width: none;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 10vh;
    justify-content: flex-end;
  }

  .hero-lead { max-width: none; }

  .hero-social {
    position: absolute;
    right: 1rem;
    top: auto;
    bottom: 1.5rem;
    transform: none;
    flex-direction: row;
  }

  .nav--hero .nav-links--hero {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }

  .features,
  .menu-items,
  .contact-grid,
  .events,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { min-height: 300px; }
  .feature-card img { min-height: 300px; }
}

@media (max-width: 600px) {
  .menu-items { grid-template-columns: 1fr; }
  .menu-downloads { flex-direction: column; align-items: center; }
}
