/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: #2D2D2D;
  background: #FDF8F5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== CSS VARIABLES ========== */
:root {
  --pink: #F5C6D0;
  --pink-dark: #E8A0B0;
  --gold: #C9A84C;
  --gold-light: #E8D5A0;
  --charcoal: #2D2D2D;
  --gray: #6B6B6B;
  --offwhite: #FDF8F5;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sub: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-label: 'Montserrat', Arial, sans-serif;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}
.nav.scrolled {
  padding: 16px 60px;
  background: linear-gradient(135deg, #5f4370 0%, #7b5a8e 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-logo-img {
  height: 40px;
  width: auto;
  transition: all 0.4s;
}
.nav.scrolled .nav-logo-img {
  height: 34px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links li { list-style: none; }
.nav-links a,
.nav-links li a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after,
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links li a:hover::after { width: 100%; }
.nav.scrolled .nav-links a,
.nav.scrolled .nav-links li a { color: rgba(255,255,255,0.85); }
.nav-links a:hover,
.nav-links li a:hover { color: var(--gold); }

/* Mobile menu */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}
.nav.scrolled .nav-burger span { background: var(--white); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(165deg, #5f4370 0%, #4a3560 50%, #3d2b52 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 100px 40px 60px;
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* Mobile menu logo */
.mobile-menu-logo {
  margin-bottom: 40px;
  margin-top: 20px;
}
/* Hide header logo when mobile menu is open */
body.menu-open .nav-logo {
  opacity: 0;
  pointer-events: none;
}
.mobile-menu-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Mobile menu nav links */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.mobile-menu-nav a {
  font-family: var(--font-label);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s, transform 0.3s;
}
.mobile-menu-nav a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* Mobile menu CTA */
.mobile-menu-cta {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 14px 40px;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}
.mobile-menu-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Mobile menu tagline */
.mobile-menu-tagline {
  font-family: var(--font-sub);
  font-size: 16px;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 28px;
  text-align: center;
}

/* Mobile menu social icons */
.mobile-menu-social {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.mobile-menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s, transform 0.3s;
}
.mobile-menu-social a:hover {
  color: var(--gold-light);
  transform: scale(1.1);
}
.mobile-menu-social svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu email */
.mobile-menu-email {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.mobile-menu-email:hover {
  color: var(--gold-light);
}

/* Burger transforms to X when menu open */
.mobile-menu.open ~ .nav .nav-burger span,
body.menu-open .nav-burger span { background: var(--white); }
body.menu-open .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
body.menu-open .nav { background: transparent !important; border-bottom: none !important; }
body.menu-open .nav-links { display: none; }

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}
.hero-slide[data-slide="1"] .hero-image img {
  object-position: 30% 30%;
}
.hero-slide.active .hero-image img {
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.05) 70%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 40px 100px;
  max-width: 900px;
}
.hero-name {
  margin-bottom: 20px;
  line-height: 0;
}
.hero-logo {
  width: clamp(280px, 50vw, 600px);
  height: auto;
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-tagline {
  font-family: var(--font-sub);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 40px;
  letter-spacing: 1px;
}
/* Hero dots */
.hero-nav {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}
.hero-subtitle {
  font-family: var(--font-label);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 40px;
  overflow: hidden;
}
.hero-subtitle span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-break {
  display: none;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn-gold {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-gold:hover {
  background: #b8963f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}
.btn-outline {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== QUOTE SECTION ========== */
.quote-section {
  padding: 120px 40px;
  background: var(--offwhite);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-text {
  font-family: var(--font-sub);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  max-width: 850px;
  line-height: 1.5;
  position: relative;
}
.quote-text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 120px;
  color: var(--gold-light);
  position: absolute;
  top: -60px;
  left: -30px;
  opacity: 0.4;
  line-height: 1;
}
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-top: 50px;
  transform-origin: left;
}

/* ========== SECTION SHARED ========== */
.section-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 60px;
}

/* ========== MANY HATS ========== */
.hats-section {
  padding: 120px 0;
  background: var(--offwhite);
  overflow: hidden;
}
.hats-section .section-label,
.hats-section .section-title {
  padding: 0 60px;
}
.hats-grid {
  display: flex;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 60px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hats-grid::-webkit-scrollbar { display: none; }
.hat-card {
  min-width: 280px;
  max-width: 300px;
  flex-shrink: 0;
  padding: 45px 35px;
  border: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  transition: all 0.4s ease;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  scroll-snap-align: start;
}
.hat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.hat-icon {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
}
.hat-icon svg {
  width: 40px;
  height: 40px;
  display: inline-block;
}
.hat-title {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.hat-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* Hats dots */
.hats-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.hat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-dark);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.hat-dot.active {
  opacity: 1;
  background: var(--gold);
}

/* ========== FEATURED IN ========== */
.press-bar {
  padding: 80px 60px;
  background: var(--offwhite);
  text-align: center;
  overflow: hidden;
}
.press-bar .section-label { margin-bottom: 40px; }
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.press-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  opacity: 0.3;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.press-logo:hover {
  opacity: 1;
  color: var(--gold);
}

/* ========== ABOUT PREVIEW ========== */
.about-preview {
  padding: 120px 60px;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transition: box-shadow 0.5s ease;
}
.about-image-wrapper:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.about-image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: grayscale(20%);
}
.about-image-wrapper:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transition: width 0.5s ease, height 0.5s ease;
}
.about-image-wrapper:hover::after {
  width: 160px;
  height: 160px;
}
.about-text .section-label { text-align: left; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}
.link-arrow {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 16px; }
.link-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

/* ========== IMPACT NUMBERS ========== */
.impact-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #F5C6D0 0%, #f8d5dc 50%, #fce4e9 100%);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.impact-item { padding: 30px 20px; }
.impact-icon {
  display: block;
  margin-bottom: 16px;
  color: var(--charcoal);
  opacity: 0.4;
}
.impact-icon svg {
  width: 32px;
  height: 32px;
  display: inline-block;
}
.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 10px;
}
.impact-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(45,45,45,0.6);
}

/* ========== GALLERY PREVIEW ========== */
.gallery-section {
  padding: 120px 60px;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 50px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item:first-child img { height: 100%; }
.gallery-item::after {
  content: 'View';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }
.gallery-cta { text-align: center; }

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 120px 40px;
  background: var(--offwhite);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials-section .section-label { margin-bottom: 50px; }
.testimonial-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 250px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.testimonial-slide.active { opacity: 1; }
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 100px;
  color: var(--gold-light);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-sub);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 30px;
}
.testimonial-author {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
}
.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-dark);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.testimonial-dot.active {
  opacity: 1;
  background: var(--gold);
}

/* ========== CTA / BOOKING ========== */
.cta-section {
  position: relative;
  padding: 160px 40px;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,45,45,0.75);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-content p {
  font-family: var(--font-sub);
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  padding: 80px 60px 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  margin-bottom: 0;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: #b8963f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* ========== ANIMATION HELPERS ========== */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal-line { transform: scaleX(0); transform-origin: left; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav { padding: 20px 40px; }
  .nav.scrolled { padding: 14px 40px; }
  .hero-content { padding: 0 30px 80px; }
  .about-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 18px 24px; }
  .hero-content { padding: 0 24px 100px; }
  .hero-nav { bottom: 40px; }
  .hero-subtitle { font-size: 10px; letter-spacing: 3px; padding: 0 24px; text-align: center; }
  .mobile-break { display: block; }
  .mobile-break + span { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 240px; text-align: center; }
  .quote-section { padding: 80px 24px; }
  .hats-section { padding: 80px 0; }
  .hats-section .section-label,
  .hats-section .section-title { padding: 0 24px; }
  .hats-grid { padding: 10px 24px 20px; }
  .hat-card { min-width: 260px; }
  .press-logos { gap: 30px; }
  .about-preview { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper img { height: 450px; }
  .about-text .section-label { text-align: center; }
  .about-text h2 { text-align: center; }
  .about-text p { text-align: center; }
  .about-text .link-arrow { justify-content: center; }
  .impact-section { padding: 80px 24px; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-section { padding: 80px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-item img { height: 260px; }
  .testimonials-section { padding: 80px 24px; }
  .cta-section { padding: 100px 24px; }
  .footer { padding: 60px 24px 30px; }
  .footer::before { left: 24px; right: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .hero-name { letter-spacing: 2px; }
  .hero-subtitle { letter-spacing: 3px; }
  .impact-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    display: block;
    columns: 2;
    column-gap: 8px;
  }
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 8px;
  }
  .gallery-item:first-child { grid-row: unset; }
  .gallery-item:nth-child(n+5) { display: none; }
  .gallery-item img { height: auto; object-fit: cover; }
  .press-logo { font-size: 15px; }
}