/* ============================================================
   TC Drizia-Miremont — Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --dark-green:  #1D2E1F;
  --mid-green:   #2C4A2F;
  --charcoal:    #2A2A28;
  --warm-gray:   #8A8580;
  --sand:        #C4B99F;
  --sand-light:  #EDE8DF;
  --tennis-y:    #C8B600;
  --olive:       #6B7C4E;
  --black:       #111110;

  --font-serif:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', sans-serif;

  --header-h:    88px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.serif { font-family: var(--font-serif); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-title.light { color: var(--white); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid currentColor;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-dark {
  color: var(--white);
  border-color: var(--white);
}
.btn-dark:hover {
  background: var(--white);
  color: var(--dark-green);
}

.btn-light {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-light:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-green {
  color: var(--white);
  background: var(--dark-green);
  border-color: var(--dark-green);
}
.btn-green:hover {
  background: var(--mid-green);
  border-color: var(--mid-green);
}

.btn-arrow::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

#header.transparent { background: transparent; }

#header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

#header.scrolled .nav-link,
#header.scrolled .lang-btn { color: var(--charcoal); }

#header.scrolled .logo-text { color: var(--dark-green); }

#header.scrolled .logo-sub { color: var(--warm-gray); }

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo { display: flex; flex-direction: column; gap: 2px; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
#header.scrolled .nav-link:hover { color: var(--dark-green); }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 20px; }

.lang-switcher { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  padding: 4px 0;
}
.lang-btn.active,
.lang-btn:hover { color: var(--white); }
#header.scrolled .lang-btn.active,
#header.scrolled .lang-btn:hover { color: var(--dark-green); }
.lang-sep { color: rgba(255,255,255,0.3); font-size: 11px; }
#header.scrolled .lang-sep { color: var(--warm-gray); }

.header-btns { display: flex; gap: 12px; }
.header-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  transition: var(--transition);
}
.header-cta:hover {
  background: var(--white);
  color: var(--dark-green);
  border-color: var(--white);
}
#header.scrolled .header-cta {
  border-color: var(--dark-green);
  color: var(--dark-green);
}
#header.scrolled .header-cta:hover {
  background: var(--dark-green);
  color: var(--white);
}
.header-cta.filled {
  background: var(--white);
  color: var(--dark-green);
  border-color: var(--white);
}
.header-cta.filled:hover {
  background: transparent;
  color: var(--white);
}
#header.scrolled .header-cta.filled {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}
#header.scrolled .header-cta.filled:hover {
  background: transparent;
  color: var(--dark-green);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
#header.scrolled .burger span { background: var(--charcoal); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark-green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-nav { display: flex; flex-direction: column; gap: 8px; margin-bottom: 48px; }
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 48px);
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-link:hover { opacity: 1; }

.mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.mobile-lang { display: flex; gap: 16px; margin-top: 8px; }
.mobile-lang a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.mobile-lang a.active,
.mobile-lang a:hover { color: var(--white); }

.menu-close {
  position: absolute;
  top: 30px; right: 48px;
  font-size: 28px;
  color: var(--white);
  opacity: 0.7;
}
.menu-close:hover { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1D2E1F 0%,
    #2C4A2F 40%,
    #1a3020 70%,
    #0e1e10 100%
  );
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1545809074-59472b3f5ecc?w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(10,20,10,0.5) 60%,
    rgba(10,20,10,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sand);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7.5vw, 110px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 52px;
  max-width: 420px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT / CLUB STORY
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--sand-light);
}

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 6px solid var(--white);
  background: var(--off-white);
}

.about-year {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 300;
  color: var(--sand-light);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -0.02em;
}

.about-text { color: var(--warm-gray); font-size: 16px; line-height: 1.85; margin: 24px 0 40px; }

.about-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--sand-light);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--dark-green);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 6px;
}

/* ============================================================
   FEATURES / PILLARS
   ============================================================ */
.features {
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.feature-card {
  background: var(--white);
  padding: 52px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--dark-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  font-size: 32px;
  margin-bottom: 28px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--dark-green);
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.75;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-top: 28px;
  transition: gap var(--transition);
}
.feature-link:hover { gap: 14px; }

/* ============================================================
   RESTAURANT PREVIEW
   ============================================================ */
.restaurant-preview {
  position: relative;
  overflow: hidden;
}

.restaurant-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.8s ease;
}

.restaurant-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,20,10,0.82) 40%,
    rgba(10,20,10,0.4) 100%
  );
}

.restaurant-content {
  position: relative;
  z-index: 2;
  padding: 140px 0;
  max-width: 560px;
}

.restaurant-content .section-label { color: var(--sand); }

.restaurant-content .section-title { color: var(--white); font-size: clamp(36px, 4.5vw, 60px); }

.restaurant-text {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.85;
  margin: 28px 0 44px;
}

.restaurant-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   NEWS
   ============================================================ */
.news { background: var(--white); }

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

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

.news-card {
  display: flex;
  flex-direction: column;
}

.news-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--sand-light);
  margin-bottom: 24px;
  transition: transform 0.6s ease;
  overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.04); }

.news-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 12px;
}
.news-cat { color: var(--olive); }

.news-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.75;
  flex: 1;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-top: 20px;
  transition: gap var(--transition);
}
.news-read-more:hover { gap: 14px; }

/* ============================================================
   INSTAGRAM / GALLERY STRIP
   ============================================================ */
.instagram { background: var(--off-white); padding: 80px 0; }

.insta-header {
  text-align: center;
  margin-bottom: 48px;
}
.insta-handle {
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand-light);
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-item:hover img { transform: scale(1.06); }

.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,46,31,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.insta-item:hover .insta-item-overlay { background: rgba(29,46,31,0.45); }
.insta-icon {
  color: var(--white);
  font-size: 22px;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-icon { opacity: 1; }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip {
  background: var(--dark-green);
  padding: 80px 0;
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}

.contact-divider {
  background: rgba(255,255,255,0.12);
  height: 80px;
  align-self: center;
}

.contact-item {
  padding: 0 48px;
  text-align: center;
}

.contact-item:first-child { padding-left: 0; }
.contact-item:last-child { padding-right: 0; }

.contact-item-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
  display: block;
}

.contact-item-value {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.footer-brand .logo-text { font-size: 20px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); }

.social-links { display: flex; gap: 16px; margin-top: 24px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 500;
  width: 48px; height: 48px;
  background: var(--dark-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--mid-green); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.85) 0%, rgba(10,20,10,0.3) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-content .section-label { color: var(--sand); }
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white);
  font-weight: 300;
  line-height: 1.08;
  margin-top: 12px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 64px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(4n+1) { grid-column: span 2; }
.gallery-item:nth-child(4n+1) { aspect-ratio: 16/9; }
.gallery-item:not(:nth-child(4n+1)) { aspect-ratio: 1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,46,31,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  opacity: 0;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(29,46,31,0.35);
  opacity: 1;
}

/* ============================================================
   MEMBERSHIP CARDS
   ============================================================ */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.membership-card {
  background: var(--off-white);
  padding: 52px 40px;
  position: relative;
  transition: var(--transition);
}

.membership-card.featured {
  background: var(--dark-green);
  color: var(--white);
}

.membership-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--tennis-y);
  color: var(--charcoal);
  padding: 5px 12px;
  position: absolute;
  top: 28px; right: 28px;
}

.membership-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 8px;
  color: inherit;
}

.membership-price {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  margin: 24px 0 8px;
  color: inherit;
}
.membership-price sup { font-size: 24px; vertical-align: top; margin-top: 8px; margin-right: 2px; }
.membership-price span { font-size: 14px; font-family: var(--font-body); opacity: 0.6; }

.membership-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.membership-card.featured .membership-features {
  border-top-color: rgba(255,255,255,0.15);
}

.membership-features li {
  font-size: 14px;
  color: var(--warm-gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.membership-card.featured .membership-features li { color: rgba(255,255,255,0.75); }
.membership-features li::before {
  content: '✓';
  color: var(--olive);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.membership-card.featured .membership-features li::before { color: var(--sand); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 36px; }

.contact-block h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--dark-green);
  margin-bottom: 10px;
}
.contact-block p, .contact-block a {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.8;
  display: block;
}
.contact-block a:hover { color: var(--dark-green); }

.map-frame {
  width: 100%;
  height: 480px;
  background: var(--sand-light);
  border: none;
  display: block;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  border: 1px solid var(--sand);
  background: var(--white);
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--dark-green); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   AOS CUSTOM
   ============================================================ */
[data-aos] { transition-duration: 0.8s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .header-inner { padding: 0 32px; }
  .hero-content { padding: 0 32px; padding-top: var(--header-h); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-year { font-size: 80px; }
}

@media (max-width: 1024px) {
  .main-nav, .header-btns { display: none; }
  .burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { right: 0; }

  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .contact-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-divider { display: none; }

  .membership-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: var(--header-h); }
  .section { padding: 80px 0; }

  .hero-title { font-size: clamp(38px, 10vw, 60px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .features-grid { grid-template-columns: 1fr; }

  .news-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-item { padding: 0; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-hero-content { padding: 40px 24px; }
  .mobile-menu { padding: 80px 24px; }
  .menu-close { right: 24px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; }
}

@media (max-width: 480px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 24px; }
}
