/* =========================================================
   PARS & PINTS — styles.css
   Inspired by thegolfbar.com structure
   Brand: forest green (#1a3829) + antique gold (#c9a84c)
   ========================================================= */

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

:root {
  /* Brand palette */
  --green-brand:   #1a3829;
  --green-dark:    #122a1e;
  --green-deeper:  #0d2018;
  --green-mid:     #1f4030;
  --green-accent:  #2d5c42;

  --gold:          #c9a84c;
  --gold-light:    #ddb96a;
  --gold-pale:     #e8d199;
  --gold-dim:      rgba(201,168,76,0.18);

  --bg:            var(--green-deeper);
  --bg-surface:    var(--green-dark);
  --bg-card:       var(--green-brand);
  --bg-card-hover: var(--green-mid);

  --text:          #f2ede5;
  --text-muted:    #8db09a;
  --text-dim:      #4d7060;

  --border:        rgba(201,168,76,0.18);
  --border-muted:  rgba(255,255,255,0.07);

  --radius:        4px;
  --radius-lg:     10px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--green-deeper); }
::-webkit-scrollbar-thumb { background: var(--green-accent); border-radius: 4px; }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.1; color: var(--text); }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 900; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 700; }
h4 { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 700; color: var(--gold); }
h5 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 700; color: var(--text-muted); }
em { font-style: italic; color: var(--gold); font-weight: inherit; }
p  { color: var(--text-muted); line-height: 1.75; }
strong { color: var(--text); font-weight: 600; }

/* ----- LAYOUT ----- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.container-narrow { max-width: 820px; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.center { text-align: center; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-label.center { display: inline-block; width: 100%; }
.section-label.gold-on-dark { color: var(--gold-light); }

.section-title { margin-bottom: 1.25rem; }
.section-sub { max-width: 620px; margin-bottom: 3rem; }
.section-sub.center { margin-left: auto; margin-right: auto; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deeper);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.3); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--green-deeper); transform: translateY(-2px); }

.btn-nav { background: var(--gold); color: var(--green-deeper); padding: 0.6rem 1.3rem; font-size: 0.72rem; }
.btn-nav:hover { background: var(--gold-light); }

.btn-sm  { padding: 0.6rem 1.25rem; font-size: 0.72rem; }
.btn-lg  { padding: 1.05rem 2.3rem; font-size: 0.9rem; }


/* =========================================================
   NAV
   ========================================================= */
#nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: rgba(13, 32, 24, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#nav.scrolled {
  background: rgba(13, 32, 24, 0.97);
  box-shadow: 0 1px 0 var(--border), 0 8px 30px rgba(0,0,0,0.3);
  padding: 0.85rem 0;
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-mark { height: 36px; width: 36px; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}
.logo-text em { font-style: italic; color: var(--gold); }

.nav-links {
  display: flex; align-items: center;
  gap: 0.4rem;
  list-style: none;
}
.nav-links > li > a {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.5rem 0.8rem;
  transition: color var(--transition);
}
.nav-links > li > a:not(.btn-nav):hover { color: var(--gold); }
.nav-links .btn-nav { margin-left: 0.6rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =========================================================
   HERO  (parallax)
   ========================================================= */
.parallax-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.parallax-hero .parallax-bg {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(45,92,66,0.4) 0%, transparent 70%),
    linear-gradient(180deg, #0b1c14 0%, #1a3829 50%, #0b1c14 100%),
    url("../assets/logos/Header_Aaron%20Swing.webp");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 0%, rgba(13,32,24,0.85) 90%),
    linear-gradient(180deg, rgba(13,32,24,0.4) 0%, rgba(13,32,24,0.2) 50%, rgba(13,32,24,0.9) 100%);
}

.hero-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 8rem clamp(1.25rem, 5vw, 3rem) 5rem;
  text-align: center;
}

.hero-logo {
  height: clamp(110px, 14vw, 160px);
  width: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 6px 30px rgba(201,168,76,0.25));
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-headline { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
.hero-sub-dot { color: var(--gold); }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(201,168,76,0.5);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}


/* =========================================================
   LOCATION CARD
   ========================================================= */
.section-location { background: var(--bg-surface); padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }

.section-location .section-label,
.section-location .section-title { text-align: center; }
.section-location .section-title { margin-bottom: 2.5rem; }

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
}

.location-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.location-col h4 { margin-bottom: 0.65rem; }
.location-col address,
.location-col p,
.location-col a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.location-col .info-link { color: var(--gold); transition: var(--transition); display: inline-block; }
.location-col .info-link:hover { color: var(--gold-light); }
.location-col .hours-note { color: var(--text-dim); font-style: italic; font-size: 0.9rem; }
.location-col .hours-text { font-size: 0.9rem; color: var(--text); line-height: 1.8; margin: 0; }

.location-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-muted);
}


/* =========================================================
   FEATURED TILES
   ========================================================= */
.section-features { padding: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-tile {
  position: relative;
  display: block;
  min-height: 440px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

.feature-tile-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.2,0,0.2,1);
}

.feature-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(13,32,24,0.85) 100%);
  transition: opacity var(--transition);
}

.feature-tile:hover .feature-tile-bg { transform: scale(1.06); }

.feature-tile-content {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 440px;
  gap: 0.75rem;
}

.feature-tile-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.feature-tile-content h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  color: var(--text);
}

.feature-tile-content p {
  color: rgba(242,237,229,0.85);
  font-size: 0.95rem;
  max-width: 36ch;
}

.feature-tile-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  transition: var(--transition);
}

.feature-tile:hover .feature-tile-link { color: var(--gold-light); transform: translateX(4px); }


/* =========================================================
   ABOUT
   ========================================================= */
.section-about { background: var(--bg); text-align: center; }

.about-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.85;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 3rem;
}

.about-quote {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.about-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}
.about-quote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}


/* =========================================================
   PARALLAX SECTIONS
   ========================================================= */
.parallax-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
  isolation: isolate;
}

.parallax-section .parallax-bg {
  position: absolute;
  inset: -15% 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-bays .parallax-bg {
  background-image:
    linear-gradient(135deg, rgba(26,56,41,0.5) 0%, rgba(13,32,24,0.7) 100%),
    url("../assets/logos/People.webp");
}

.parallax-parties .parallax-bg {
  background-image:
    linear-gradient(135deg, rgba(13,32,24,0.7) 0%, rgba(26,56,41,0.5) 100%),
    url("../assets/logos/Aarton%20Tournament.webp");
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(13,32,24,0.6) 100%);
}

.parallax-content { width: 100%; }

.parallax-text {
  max-width: 580px;
  background: rgba(13, 32, 24, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.parallax-text-right { margin-left: auto; }

.parallax-text h2 { color: var(--text); margin-bottom: 1.25rem; }
.parallax-text p {
  color: rgba(242,237,229,0.92);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.parallax-features {
  list-style: none;
  margin-bottom: 2rem;
}
.parallax-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
}
.parallax-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.parallax-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }


/* =========================================================
   MENU
   ========================================================= */
.section-menu { background: var(--bg-surface); text-align: center; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}
.menu-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
}
.menu-col:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }

.menu-col-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.menu-col-icon-wrap svg { width: 28px; height: 28px; }

.menu-col h3 { margin-bottom: 1.25rem; }

.menu-category-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  margin-top: -0.75rem;
}

.menu-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.75rem;
}

em.menu-price {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

.menu-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.menu-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-muted);
}
.menu-list li:last-child { border-bottom: none; padding-bottom: 0; }
.menu-list strong { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text); font-weight: 600; }
.menu-list span { font-size: 0.83rem; color: var(--text-muted); }


/* =========================================================
   PRESS
   ========================================================= */
.section-press { background: var(--bg); }

.press-logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
  padding: 2rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3.5rem;
}

.press-logo-link {
  opacity: 0.55;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.press-logo-link:hover { opacity: 1; }

.press-logo-fallback {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}



.press-articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.press-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: var(--transition);
  flex: 0 1 calc(33.333% - 0.85rem);
  min-width: 280px;
  max-width: 380px;
}
.press-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.press-card-pub {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-card-headline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  flex: 1;
}

.press-card-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: var(--transition);
}
.press-card:hover .press-card-link { color: var(--gold-light); }


/* =========================================================
   SOCIAL
   ========================================================= */
.section-social { background: var(--bg-surface); text-align: center; }

.social-feeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  text-align: left;
}

.social-feed-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.social-feed-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-muted);
}

.social-platform-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.social-platform-name {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex: 1;
}
.social-handle {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}
.social-handle:hover { color: var(--gold-light); }

.social-feed-embed {
  min-height: 560px;
  background: #fff;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.instagram-feed {
  background: var(--bg-surface);
  padding: 1.5rem;
}
.instagram-feed .instagram-media { margin: 0 auto !important; width: 100% !important; max-width: 480px !important; }

.fb-embed { background: #fff; }
.fb-embed iframe { display: block; width: 100%; max-width: 540px; min-height: 560px; border: 0; }


/* =========================================================
   FIND US
   ========================================================= */
.section-find { background: var(--bg); }

.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.find-us-info { display: flex; flex-direction: column; gap: 1.5rem; }
.find-us-info .section-title { margin-bottom: 1rem; }

.info-block h4 { margin-bottom: 0.5rem; }
.info-block address,
.info-block p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}
.info-block p { margin-bottom: 0; }
.info-block .info-link { color: var(--gold); transition: var(--transition); }
.info-block .info-link:hover { color: var(--gold-light); }
.info-block .hours-note { color: var(--text-dim); font-style: italic; }
.info-block .hours-text { color: var(--text); margin: 0; line-height: 1.9; }

.find-us-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 420px;
}
.find-us-map iframe { display: block; filter: grayscale(20%); }

.map-placeholder {
  min-height: 420px;
  background:
    radial-gradient(ellipse at center, var(--green-mid) 0%, var(--green-brand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.map-placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
}
.map-placeholder-inner p { color: var(--text); margin: 0.5rem 0; }
.map-placeholder-inner svg { opacity: 0.7; }


/* =========================================================
   FOOTER
   ========================================================= */
#footer {
  background: var(--green-deeper);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-nav-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.footer-logo-mark { height: 56px; width: 56px; margin-bottom: 0.25rem; }
.footer-logo { font-size: 1.6rem; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-nav h5 { margin-bottom: 1.1rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav ul a,
.footer-nav address {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1.7;
}
.footer-nav ul a:hover { color: var(--gold); }
.footer-nav address { margin-bottom: 0.5rem; }

.footer-directions { display: inline-block; margin-top: 0.25rem; color: var(--gold) !important; font-size: 0.82rem !important; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-muted);
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }


/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: none; }


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-tile, .feature-tile-content { min-height: 380px; }
  .location-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .find-us-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .press-card { flex: 0 1 calc(50% - 0.65rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* ---- NAV ---- */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--green-deeper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    z-index: 200;
    padding: 5rem 2rem 3rem;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; text-align: center; }
  .nav-links > li > a {
    display: block;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-muted);
    width: 100%;
  }
  .nav-links > li:last-child > a { border-bottom: none; }
  .nav-links .btn-nav {
    display: inline-block;
    margin: 1.5rem auto 0;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    border-bottom: none !important;
    width: auto;
  }
  .nav-toggle { display: flex; z-index: 201; }

  /* ---- HERO ---- */
  .hero-inner { padding: 7rem 1.5rem 4rem; }
  .hero-sub { font-size: 0.9rem; letter-spacing: 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; padding: 1rem 2rem; }

  /* ---- LOCATION ---- */
  .location-cta-row { flex-direction: column; align-items: stretch; }
  .location-cta-row .btn { text-align: center; justify-content: center; }

  /* ---- FEATURES ---- */
  .feature-tile, .feature-tile-content { min-height: 300px; }

  /* ---- PARALLAX SECTIONS ---- */
  .parallax-section { min-height: auto; padding: 4rem 0; }
  .parallax-text { max-width: 100%; }
  .parallax-text-right { margin-left: 0; }
  .parallax-ctas { flex-direction: column; }
  .parallax-ctas .btn { width: 100%; text-align: center; justify-content: center; }

  /* ---- MENU ---- */
  .menu-col { padding: 1.75rem 1.5rem; }

  /* ---- PRESS ---- */
  .press-logo-bar { gap: 1.25rem 2rem; padding: 1.5rem 0 2.5rem; }
  .press-card { min-width: 0; max-width: 100%; flex: 1 1 100%; }

  /* ---- SOCIAL ---- */
  .social-feeds-grid { grid-template-columns: 1fr; }
  .social-feed-embed { min-height: 400px; }

  /* ---- FIND US ---- */
  .find-us-map { min-height: 300px; }
  .map-placeholder { min-height: 300px; }

  /* ---- FOOTER ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  #footer { padding: 3rem 0 1.5rem; }

  .footer-brand {
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }
  .footer-socials { justify-content: center; }
  .footer-socials a { width: 44px; height: 44px; }

  .footer-nav-row {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }

  .footer-grid > .footer-nav {
    text-align: center;
  }
  .footer-grid > .footer-nav h5 { text-align: center; }

  .footer-bottom { margin-top: 2rem; }

  /* ---- DISABLE PARALLAX TRANSFORM on mobile (perf + iOS compat) ---- */
  .parallax-section .parallax-bg,
  .parallax-hero .parallax-bg { transform: none !important; inset: 0; }
}

@media (max-width: 480px) {
  /* ---- TYPOGRAPHY ---- */
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }

  /* ---- LAYOUT ---- */
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }

  /* ---- HERO ---- */
  .hero-logo { height: 90px; }
  .hero-inner { padding: 6rem 1.25rem 3.5rem; }
  .hero-sub-dot { display: none; }
  .hero-sub { display: flex; flex-direction: column; gap: 0.35rem; align-items: center; }

  /* ---- LOCATION ---- */
  .location-card { padding: 1.5rem; }
  .location-row { gap: 1.25rem; }

  /* ---- FEATURES ---- */
  .feature-tile, .feature-tile-content { min-height: 260px; }

  /* ---- ABOUT ---- */
  .about-quote { padding: 1.5rem 0.75rem; }

  /* ---- PARALLAX ---- */
  .parallax-text { padding: 1.5rem; }
  .parallax-features li { font-size: 0.9rem; }

  /* ---- PRESS ---- */
  .press-logo-fallback { font-size: 0.7rem; }
  .press-card { padding: 1.5rem; }

  /* ---- BUTTONS ---- */
  .btn-lg { padding: 0.95rem 1.75rem; font-size: 0.85rem; }

  /* ---- FOOTER ---- */
  .footer-grid { gap: 1.75rem; }
  .footer-socials a { width: 44px; height: 44px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .parallax-bg { transform: none !important; }
}
