/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --taupe: #eae3dd;
  --dark: #231f20;
  --gold: #b8975a;
  --gold-light: #d4b06a;
  --white: #ffffff;
  --text: #3d3935;
  --text-light: #7a726c;
  --nav-height: 80px;
  --topbar-height: 38px;
  --transition: 0.35s ease;
  --shadow: 0 8px 40px rgba(35,31,32,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
p { line-height: 1.8; color: var(--text-light); }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.05rem;
  max-width: 680px;
  margin: 1.25rem auto 0;
}

/* ============================
   LAYOUT
   ============================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-text {
  padding: 5rem 4rem 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.two-col.reverse .col-text { padding: 5rem 2rem 5rem 4rem; }

.col-image { position: relative; overflow: hidden; min-height: 480px; }
.col-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.col-image:hover img { transform: scale(1.04); }

.mt-2 { margin-top: 0.5rem; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,151,90,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: transparent;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35,31,32,0.15);
}
.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.75rem; }

/* ============================
   TOP BAR
   ============================ */
.top-bar {
  background: var(--dark);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-social a {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-right: 0.85rem;
  transition: color var(--transition);
}
.top-social a:hover { color: var(--gold); }
.top-phone { color: rgba(255,255,255,0.8); font-size: 0.82rem; }
.top-phone a { color: rgba(255,255,255,0.8); }
.top-phone a:hover { color: var(--gold); }
.top-phone i { margin-right: 0.4rem; color: var(--gold); }

/* ============================
   NAVIGATION
   ============================ */
.main-nav {
  position: fixed;
  top: var(--topbar-height);
  left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  z-index: 150;
  border-bottom: 1px solid rgba(35,31,32,0.08);
  transition: all var(--transition);
}
.main-nav.scrolled {
  top: 0;
  box-shadow: 0 4px 24px rgba(35,31,32,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 48px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-links > li > a i { font-size: 0.6rem; transition: transform var(--transition); }
.nav-links > li:hover > a { color: var(--gold); }
.nav-links > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 300;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(35,31,32,0.06);
  transition: all var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--taupe); color: var(--gold); padding-left: 1.6rem; }

/* CTA Nav link */
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 0;
}
.nav-cta:hover { background: var(--dark) !important; color: var(--white) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--topbar-height) + var(--nav-height));
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(35,31,32,0.72) 0%,
    rgba(35,31,32,0.45) 50%,
    rgba(35,31,32,0.60) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 0 2rem;
  animation: heroFadeIn 1.4s ease both;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideUp 0.9s 0.3s ease forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: slideUp 0.9s 0.55s ease forwards;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0;
  animation: slideUp 0.9s 0.75s ease forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.9s 0.95s ease forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollPulse 2s infinite;
}

/* ============================
   SECTIONS
   ============================ */
.section-celebrate {
  padding: 6rem 0;
  background: var(--white);
}
.section-celebrate h2 { margin: 0.5rem 0 0; }

.celebrate-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(35,31,32,0.1);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Why section */
.section-why { background: var(--white); }
.section-why .col-text { padding-right: 3rem; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 0; margin-top: 0.5rem; border-top: 1px solid rgba(35,31,32,0.12); }
.accord-item { border-bottom: 1px solid rgba(35,31,32,0.12); }
.accord-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.accord-btn:hover { color: var(--gold); }
.accord-btn i { font-size: 0.75rem; transition: transform 0.3s ease; flex-shrink: 0; }
.accord-item.open .accord-btn i { transform: rotate(45deg); }
.accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accord-item.open .accord-body { max-height: 300px; }
.accord-body p, .accord-body ul { padding-bottom: 1rem; }

.location-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.3rem 1rem;
}
.location-list li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 0.15rem 0;
}
.location-list li::before {
  content: '— ';
  color: var(--gold);
}

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 0.65rem; margin: 0.5rem 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text);
}
.feature-list li i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* Floor plans - dark */
.section-dark { background: var(--dark); }
.section-dark .col-text { padding-left: 3rem; }
.section-dark .section-eyebrow { color: var(--gold); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark .feature-list li { color: rgba(255,255,255,0.8); }
.section-dark .feature-list li i { color: var(--gold); }

/* Accolades - taupe */
.section-taupe { background: var(--taupe); }
.section-taupe .col-text { padding-left: 3rem; }
.two-col.reverse .col-text.section-taupe { padding: 5rem 2rem 5rem 4rem; }

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.7);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
}
.award-item i { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.award-item span { font-size: 0.8rem; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* Gallery */
.section-gallery { background: var(--white); }
.gallery-image-wrap { position: relative; overflow: hidden; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35,31,32,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-image-wrap:hover .gallery-overlay { opacity: 1; }
.gallery-btn {
  background: var(--white);
  color: var(--dark);
  padding: 0.85rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.gallery-btn:hover { background: var(--gold); color: var(--white); }

/* ============================
   CTA BANNER
   ============================ */
.section-cta-banner { background: var(--taupe); padding: 5rem 0; }
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cta-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cta-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cta-item-accent { background: var(--dark); }
.cta-item-accent h3 { color: var(--white); }
.cta-item-accent p { color: rgba(255,255,255,0.7); }
.cta-icon { font-size: 2.2rem; color: var(--gold); }
.cta-item h3 { font-size: 1.2rem; }
.cta-item .btn { align-self: center; margin-top: 0.5rem; }

/* ============================
   TESTIMONIALS
   ============================ */
.section-testimonials { padding: 6rem 0; background: var(--dark); }
.section-testimonials .section-eyebrow { color: var(--gold); }
.section-testimonials h2 { color: var(--white); margin-bottom: 3rem; }

.testimonial-slider { position: relative; overflow: hidden; max-width: 700px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
  flex: 0 0 100%;
  padding: 2rem;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1.25rem; }
.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================
   FOOTER
   ============================ */
.site-footer { background: #1a1718; padding: 5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 1rem; line-height: 1.7; }
.footer-logo { height: 48px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 0.5rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,151,90,0.1); }
.footer-col h4 { color: var(--white); margin-bottom: 1.25rem; font-size: 0.8rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.6rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-col p i { color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.footer-col p a { color: rgba(255,255,255,0.5); }
.footer-col p a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  z-index: 100;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--dark); transform: translateY(-3px); }

/* ============================
   INTERNAL PAGE HEADER
   ============================ */
.hero-internal {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--topbar-height) + var(--nav-height));
  background: var(--dark);
}
.hero-internal .hero-overlay {
  background: linear-gradient(135deg, rgba(35,31,32,0.85) 0%, rgba(35,31,32,0.65) 100%);
}
.hero-internal .hero-title {
  margin-bottom: 0.5rem;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
}
.breadcrumb a:hover {
  color: var(--white);
}

.internal-content {
  padding: 6rem 0;
  background: var(--white);
}

/* ============================
   PREMIUM LAYOUT COMPONENTS
   ============================ */
.premium-article {
  max-width: 900px;
  margin: 0 auto;
}
.premium-article p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.premium-article p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: 0.8rem;
  margin-top: -0.2rem;
  color: var(--gold);
}
.premium-article h2 {
  margin: 3rem 0 1.5rem;
  font-size: 2.2rem;
  text-align: center;
}
.premium-article h3 {
  margin: 2rem 0 1rem;
  color: var(--gold);
}
.premium-article img {
  border-radius: 4px;
  box-shadow: var(--shadow);
  margin: 2.5rem 0;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* Fix for icons inside scraped content */
.premium-article i, 
.premium-article .fas, 
.premium-article .fab, 
.premium-article .far {
  font-size: 1.25rem !important;
  color: var(--gold);
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-member {
  background: var(--taupe);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition);
}
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.team-member-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.team-member h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.team-member p {
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Location Showcase */
.location-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.location-content h2 { margin-bottom: 1.5rem; }
.location-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .location-showcase { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================
   KEYFRAMES
   ============================ */
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .col-text { padding: 3.5rem 2rem !important; }
  .col-image { min-height: 380px; }
  .section-dark .col-text { padding: 3.5rem 2rem !important; }
  .celebrate-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: fixed;
    top: calc(var(--topbar-height) + var(--nav-height));
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow);
    padding: 1rem 0 2rem;
    max-height: calc(100vh - var(--topbar-height) - var(--nav-height));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .nav-toggle { display: flex; }
  .dropdown { position: static; box-shadow: none; border-top: none; opacity: 1; visibility: visible; transform: none; background: var(--taupe); display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .location-list { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .top-bar { display: none; }
  .main-nav { top: 0; }
  .hero { padding-top: var(--nav-height); }
}

@media (max-width: 480px) {
  .celebrate-stats { grid-template-columns: 1fr 1fr; }
  .col-text { padding: 2.5rem 1.5rem !important; }
}
