*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FDFAF5;
  --white: #FFFFFF;
  --sand: #F2EBD9;
  --spice: #C8651A;
  --ink: #1C1410;
  --muted: #7A6E64;
  --border: #E8DFD0;
  --green: #4A7C59;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
}

.nav-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .04em;
}

.nav-logo span {
  color: var(--spice);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--spice);
}

/* Language switcher style */
.lang-switcher {
  display: flex;
  gap: .5rem;
  font-size: .7rem;
  margin-left: 1rem;
}

.lang-switcher button {
  background: none;
  border: 1px solid var(--border);
  padding: .2rem .5rem;
  border-radius: 4px;
  cursor: pointer;
  color: var(--muted);
  transition: all .2s;
}

.lang-switcher button.active {
  background: var(--spice);
  color: #fff;
  border-color: var(--spice);
}

.nav-cta {
  background: var(--ink) !important;
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 100px;
}

.nav-cta:hover {
  background: var(--spice) !important;
}

/* ── GLOBAL COMPONENTS ── */
.btn-dark {
  background: var(--ink);
  color: #fff;
  padding: .8rem 2rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background .25s;
  display: inline-block;
}

.btn-dark:hover {
  background: var(--spice);
}

.btn-outline {
  color: var(--ink);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  color: var(--spice);
  border-color: var(--spice);
}

.label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--spice);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--spice);
}

.h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}

.h2 em {
  font-style: italic;
  color: var(--spice);
}

/* ── SECTIONS ── */
section {
  padding: 7rem 5rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(64px + 4vh) 5rem 4vh;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--spice);
  margin-bottom: 1.6rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--spice);
}

.hero-h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.12;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--spice);
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-open {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2.5rem;
  font-size: .75rem;
  color: var(--green);
  font-weight: 500;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.hero-visual {
  flex: 0 0 400px;
  height: 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(28, 20, 16, 0.25);
  cursor: zoom-in;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--sand);
  border: 1px solid var(--border);
}

.hero-visual:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 35px 60px -15px rgba(28, 20, 16, 0.3);
}

.hero-visual:hover .hv-img img {
  transform: scale(1.08);
}

.hv-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.badge-et {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--spice);
  line-height: 1;
}

.badge-sub {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .35rem;
}

/* ── STRIP ── */
.strip {
  background: var(--ink);
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  padding: .9rem 3rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.strip strong {
  color: #f5c99a;
  font-weight: 400;
}

.strip-sep {
  opacity: .3;
}

/* ── ABOUT ── */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-body {
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin: 1.4rem 0;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}

.pill {
  padding: .38rem .95rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: .73rem;
  color: var(--muted);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.ac {
  background: var(--cream);
  padding: 1.6rem 1.8rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .2s;
}

.ac:hover {
  background: var(--white);
}

.ac-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ac-text h3 {
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: .25rem;
}

.ac-text p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CLUB ── */
#club {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.club-body {
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin: 1.4rem 0 2rem;
}

.club-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cg-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: .85rem;
  color: var(--ink);
}

.cg-icon {
  font-size: 1.2rem;
}

.cv-img img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ── MENU ── */
#menu {
  background: var(--sand);
  text-align: center;
}

.menu-sub {
  font-size: .92rem;
  color: var(--muted);
  font-weight: 300;
  margin: .6rem 0 3.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 740px;
  margin: 0 auto 1.5rem;
}

.mc {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background: var(--border);
  box-shadow: 0 2px 12px rgba(28, 20, 16, .07);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.mc:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(28, 20, 16, .13);
}

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

.mc-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.4rem 1.4rem;
  background: linear-gradient(transparent, rgba(28, 20, 16, .72));
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #fff;
  text-align: left;
}

/* PDF card */
.mc-pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  background: var(--cream);
}

.mc-pdf:hover {
  background: var(--white);
}

.mc-pdf-icon svg {
  width: 52px;
  height: 64px;
}

.mc-pdf-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
}

.mc-pdf-sub {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--spice);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.mc-pdf-sub::before,
.mc-pdf-sub::after {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--spice);
  opacity: .5;
}

.mc-pdf-badge {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .22rem .6rem;
  border-radius: 100px;
}

.menu-note {
  font-size: .72rem;
  color: var(--muted);
}

/* ── LOCATION ── */
#location {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ig {
  margin-bottom: 2rem;
}

.ig h4 {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--spice);
  margin-bottom: .55rem;
}

.ig p,
.ig a {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
  text-decoration: none;
  display: block;
}

.ig a:hover {
  color: var(--spice);
}

.dir-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.5rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-decoration: none;
  margin-top: .4rem;
  transition: background .2s;
}

.dir-btn:hover {
  background: var(--spice);
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(28, 20, 16, .07);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: #fff;
  padding: 2.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}

.f-logo em {
  font-style: italic;
  color: #f5c99a;
}

.f-links {
  display: flex;
  gap: 1.5rem;
}

.f-links a {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s;
}

.f-links a:hover {
  color: #fff;
}

.f-copy {
  font-size: .7rem;
  color: rgba(255, 255, 255, .28);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 20, 16, 0.95);
  backdrop-filter: blur(15px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .35s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(.95);
  transition: transform .35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  #hero {
    flex-direction: column;
    padding: calc(64px + 2rem) 1.5rem 4rem;
    height: auto;
    min-height: auto;
    gap: 3rem;
  }

  .hero-visual {
    flex: 0 0 450px;
    width: 100%;
    max-width: 400px;
    height: 500px;
    display: block;
  }

  section {
    padding: 4.5rem 1.5rem;
  }

  #about,
  #club,
  #location {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
