/* ===================================
   Paul & George — Dark Avant-Garde
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: #0C0A09;
  color: #E7E5E4;
  overflow-x: hidden;
}

em, i {
  font-style: italic;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Noise Overlay --- */
#noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

#noise-overlay svg {
  width: 100%;
  height: 100%;
}

/* --- Cursor Spotlight --- */
#spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 242, 104, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 9997;
  border-radius: 50%;
  will-change: transform;
}

@media (pointer: coarse) {
  #spotlight { display: none; }
}

/* --- Particles Canvas --- */
#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  #particles { display: none; }
}

/* --- Navigation --- */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 100;
  transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 300ms;
}

#main-nav.scrolled {
  background: rgba(12, 10, 9, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  font-size: 20px;
  color: #E7E5E4;
  z-index: 101;
}

.nav-pills {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(231, 229, 228, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 6px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(231, 229, 228, 0.6);
  padding: 8px 20px;
  border-radius: 9999px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  background: #E7E5E4;
  color: #0C0A09;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  background: #D4F268;
  color: #0C0A09;
  padding: 12px 28px;
  border-radius: 9999px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
  transform: scale(1.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #E7E5E4;
  transition: all 300ms ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(12, 10, 9, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: 32px;
  color: #E7E5E4;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms ease, color 300ms;
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 50ms; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 100ms; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 150ms; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 200ms; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 250ms; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 300ms; }

.mobile-link:hover { color: #D4F268; }

.mobile-cta {
  color: #D4F268 !important;
  font-weight: 400;
}

@media (max-width: 768px) {
  .nav-pills, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
}

/* --- Section Helpers --- */
.section-padding {
  padding: 120px 80px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-weight: 200;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-weight: 300;
}

.section-sub {
  font-size: 18px;
  color: rgba(231, 229, 228, 0.5);
}

.section-body {
  font-size: 18px;
  color: rgba(231, 229, 228, 0.8);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-padding { padding: 80px 24px; }
  .section-title { font-size: 32px; }
}

/* --- Serrated Dividers --- */
.serrated-divider {
  height: 16px;
  position: relative;
  z-index: 2;
  mask-image: radial-gradient(circle at 10px 0, transparent 0, transparent 5px, black 5px);
  -webkit-mask-image: radial-gradient(circle at 10px 0, transparent 0, transparent 5px, black 5px);
  mask-size: 20px 10px;
  -webkit-mask-size: 20px 10px;
  mask-repeat: repeat-x;
  -webkit-mask-repeat: repeat-x;
}

.serrated-charcoal { background: #1C1917; }
.serrated-black { background: #0C0A09; }

/* --- Background Grid Pattern --- */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* --- HERO --- */
#hero {
  padding: 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-left {
  padding: 40px 0;
}

.hero-label {
  font-size: 14px;
  color: rgba(231, 229, 228, 0.5);
  margin-bottom: 32px;
}

.hero-title {
  font-weight: 200;
  font-size: 80px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title em {
  font-weight: 300;
  font-style: italic;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
}

.hero-sub {
  font-size: 20px;
  color: rgba(231, 229, 228, 0.6);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(70%);
  border: 2px solid #0C0A09;
  margin-left: -12px;
}

.avatar:first-child { margin-left: 0; }

.social-text {
  font-size: 14px;
  font-weight: 500;
  color: #D4F268;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #D4F268;
  color: #0C0A09;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 16px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: scale(1.05) rotate(1deg);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #E7E5E4;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  border-color: #D4F268;
  color: #D4F268;
}

.hero-right {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: visible;
}

.hero-image {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  border-radius: 10rem 10rem 24px 24px;
}

.sticky-note {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #D4F268;
  color: #1C1917;
  padding: 24px 32px;
  border-radius: 24px;
  transform: rotate(6deg);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.sticky-note:hover {
  transform: rotate(0deg) scale(1.02);
}

.sticky-price {
  display: block;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
}

.sticky-label {
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  #hero { padding: 100px 24px 60px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right { order: -1; }

  .hero-image {
    height: 60vh;
    width: 100%;
  }

  .hero-title { font-size: 42px; }

  .sticky-note {
    top: 20px;
    right: 20px;
    left: auto;
    bottom: auto;
  }
}

/* --- SCROLL ANIMATION SECTION --- */
#animation-section {
  height: 600vh;
  position: relative;
}

@media (max-width: 1024px) { #animation-section { height: 400vh; } }
@media (max-width: 768px) { #animation-section { height: 300vh; } }

.anim-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

.anim-overlay h2 {
  color: #E7E5E4;
  letter-spacing: -0.02em;
}

.anim-overlay em {
  font-weight: 300;
}

.anim-text-1 { justify-content: flex-end; align-items: flex-start; }
.anim-text-2 { justify-content: flex-end; align-items: flex-end; text-align: right; }
.anim-text-3 { justify-content: center; align-items: center; text-align: center; }
.anim-text-4 { justify-content: center; align-items: center; text-align: center; }

.anim-sub {
  font-size: 16px;
  color: rgba(231, 229, 228, 0.5);
  margin-top: 12px;
}

.anim-line {
  width: 0;
  height: 2px;
  background: #D4F268;
  margin: 24px auto 0;
  transition: width 600ms ease;
}

.anim-line.expanded { width: 80px; }

.anim-arrow {
  margin-top: 24px;
  animation: pulse-arrow 1s ease-in-out infinite alternate;
}

@keyframes pulse-arrow {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

@media (max-width: 768px) {
  .anim-overlay { padding: 40px 24px; }
  .anim-overlay h2 { font-size: 32px !important; }
}

/* --- STORY / ÜBER UNS --- */
.story-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.story-image-col { position: relative; }

.fig-label {
  font-family: monospace;
  font-size: 10px;
  color: #D4F268;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.fig-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4F268;
  display: inline-block;
}

.story-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 600ms ease;
}

.story-image-wrap:hover .story-image {
  filter: grayscale(0%);
}

.catalog-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
}

.fig-label-small {
  font-family: monospace;
  font-size: 10px;
  color: #D4F268;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.fig-dot-small {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D4F268;
  display: inline-block;
}

.catalog-label p {
  font-size: 12px;
  color: #E7E5E4;
}

.story-text-col { max-width: 520px; }

.story-text-col .section-title {
  font-size: 48px;
  margin-bottom: 24px;
}

.story-text-col .section-body {
  margin-bottom: 48px;
}

.stats-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.stat { text-align: left; }

.stat-number {
  font-weight: 300;
  font-size: 40px;
  color: #D4F268;
  display: block;
  line-height: 1;
}

.stat-plus {
  font-weight: 300;
  font-size: 40px;
  color: #D4F268;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(231, 229, 228, 0.5);
  margin-top: 8px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  align-self: center;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-image { width: 70vw; margin: 0 auto; }
  .story-text-col .section-title { font-size: 32px; }

  .stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider:last-of-type { display: none; }
}

/* --- COCKTAILS --- */
.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  gap: 0;
  margin-bottom: -8px;
  position: relative;
  z-index: 2;
  padding-left: 16px;
}

.tab {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 16px 32px;
  background: #292524;
  color: rgba(231, 229, 228, 0.6);
  border: none;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transform: rotate(-2deg);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tab:nth-child(2) { transform: rotate(-1.5deg); margin-left: -8px; }
.tab:nth-child(3) { transform: rotate(-1deg); margin-left: -8px; }

.tab.active {
  background: #D4F268;
  color: #0C0A09;
  transform: rotate(-1deg) scale(1.05);
  z-index: 3;
}

.tabs-content {
  background: #1C1917;
  border-radius: 0 24px 24px 24px;
  padding: 60px;
  position: relative;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cocktail-card {
  background: #292524;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 400ms ease;
}

.cocktail-card:hover { transform: translateY(-4px); }

.card-offset { transform: translateY(24px); }
.card-offset:hover { transform: translateY(20px); }

.cocktail-image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.cocktail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 600ms ease, transform 400ms ease;
}

.cocktail-card:hover .cocktail-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.cocktail-info {
  padding: 24px;
}

.cocktail-name {
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cocktail-name em {
  font-style: italic;
}

.cocktail-desc {
  font-size: 14px;
  color: rgba(231, 229, 228, 0.5);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cocktail-price {
  font-weight: 600;
  font-size: 16px;
  color: #D4F268;
}

@media (max-width: 768px) {
  .tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .tab { transform: none !important; white-space: nowrap; }
  .tab.active { transform: scale(1.05) !important; }

  .tabs-content { padding: 32px 20px; border-radius: 0 0 24px 24px; }

  .cocktail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    padding-bottom: 16px;
  }

  .cocktail-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .card-offset { transform: none; }
}

/* --- STICKY CTA --- */
.sticky-cta-card {
  max-width: 640px;
  background: #D4F268;
  color: #1C1917;
  padding: 48px;
  border-radius: 24px;
  transform: rotate(2deg);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.sticky-cta-body {
  font-size: 18px;
  color: rgba(28, 25, 23, 0.7);
  margin-top: 16px;
}

.sticky-cta-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 24px 0;
}

.sticky-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-block;
  background: #0C0A09;
  color: #D4F268;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 16px;
  transition: transform 300ms ease;
}

.btn-dark:hover { transform: scale(1.05); }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: #1C1917;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 16px;
  border: 1px solid #1C1917;
  transition: all 300ms ease;
}

.btn-outline-dark:hover {
  background: #1C1917;
  color: #D4F268;
}

@media (max-width: 768px) {
  .sticky-cta-card {
    transform: none;
    margin: 0 -4px;
    border-radius: 20px;
  }
  .sticky-cta-card:hover { transform: scale(1.01); }
}

/* --- TESTIMONIALS --- */
.carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 100%;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .review-card { flex: 0 0 33.333%; }
}

.review-card > div,
.review-card > p,
.review-card > .review-stars {
  /* container inside */
}

.review-card {
  /* inner styling via nested div */
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-card {
  background: #1C1917;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 12px;
  flex: 0 0 calc(33.333% - 24px);
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 calc(100% - 24px);
  }
}

.review-stars {
  color: #D4F268;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 18px;
  line-height: 1.7;
  color: #E7E5E4;
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-name {
  font-weight: 500;
  font-size: 14px;
}

.review-time {
  font-size: 14px;
  color: rgba(231, 229, 228, 0.4);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background 300ms ease;
  padding: 0;
}

.dot.active {
  background: #D4F268;
}

/* --- GALLERY --- */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 600ms ease, transform 400ms ease;
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.gallery-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: monospace;
  font-size: 10px;
  color: #D4F268;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(12, 10, 9, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  cursor: pointer;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 24px;
  object-fit: contain;
  transform: scale(0.8);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open img {
  transform: scale(1);
}

@media (max-width: 768px) {
  .lightbox { display: none; }
  .gallery-item { cursor: default; }
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 80px;
}

.contact-left .section-title {
  margin-bottom: 32px;
}

.contact-address {
  margin-bottom: 40px;
}

.contact-address p {
  font-size: 20px;
  margin-bottom: 4px;
}

.contact-phone {
  color: #D4F268;
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  margin-top: 8px;
}

.contact-phone:hover {
  text-decoration: underline;
}

.contact-hours {
  margin-bottom: 40px;
}

.hours-label {
  font-weight: 600;
  font-size: 14px;
  color: rgba(231, 229, 228, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hours-table {
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  max-width: 320px;
}

.contact-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-map {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: grayscale(80%) invert(92%) contrast(83%);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .contact-map { height: 320px; }
}

/* --- FOOTER --- */
.site-footer {
  padding: 60px 80px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-address {
  font-size: 14px;
  color: rgba(231, 229, 228, 0.5);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(231, 229, 228, 0.5);
  transition: color 300ms ease;
}

.footer-nav a:hover { color: #E7E5E4; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-phone {
  color: #D4F268;
  font-size: 16px;
  font-weight: 500;
}

.footer-route {
  font-size: 14px;
  color: rgba(231, 229, 228, 0.5);
}

.footer-route:hover { color: #E7E5E4; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(231, 229, 228, 0.3);
}

@media (max-width: 768px) {
  .site-footer { padding: 48px 24px 0; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav { align-items: center; }
  .footer-contact { align-items: center; }
}

/* --- Animation helpers (initial states set by JS) --- */
[data-animate] {
  will-change: transform, opacity;
}