/* ═══════════════════════════════════════════════════════════
   CHECKMATE THE TEA CAFE — Main Stylesheet
   Color palette: Deep espresso + warm gold + ivory
═══════════════════════════════════════════════════════════ */

:root {
  --bg:         #0f0b08;
  --bg-card:    #17110d;
  --fg:         #f0ead8;
  --fg-muted:   #8a7d6b;
  --gold:       #d4a017;
  --gold-hover: #e5b428;
  --gold-dim:   rgba(212,160,23,0.15);
  --border:     rgba(212,160,23,0.18);
  --border-soft: rgba(255,255,255,0.07);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
  --container:  1200px;
  --radius:     0;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }

/* ── Utilities ── */
.gold        { color: var(--gold); }
.italic      { font-style: italic; }
.text-center { text-align: center; }
.bg-dark     { background: var(--bg); }
.bg-card     { background: var(--bg-card); }
.border-y    { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.container {
  max-width: 1800px;
  width: 96%;
  margin: 0 auto;
  padding: 0 0;
}
@media (min-width: 768px)  { .container { padding: 0 48px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }

.container-narrow { max-width: 1000px; }

.section {
  padding: 96px 0;
}
@media (min-width: 768px) { .section { padding: 128px 0; } }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #0f0b08;
}
.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 28px rgba(212,160,23,0.35);
}
.btn-outline {
  border: 1px solid rgba(240,234,216,0.3);
  color: var(--fg);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS & TITLES
═══════════════════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label span:not(.line) {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-label.center { justify-content: center; }
.line {
  display: block;
  height: 1px;
  width: 48px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
  }
}

.section-header-center {
  text-align: center;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .section-header-center { margin-bottom: 80px; } }

.section-desc {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}
@media (min-width: 768px) { .section-desc { text-align: right; } }

.body-text {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15,11,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
max-width: 1800px;
  width: 96%;
 margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px)  { .nav-container { padding: 0 48px; height: 76px; } }
@media (min-width: 1024px) { .nav-container { padding: 0 64px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212,160,23,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-logo:hover .nav-logo-icon { background: var(--gold-dim); }
.logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: 9px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-top: 1px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.6);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

.nav-cta {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: rgba(15,11,8,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.7);
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--transition);
}
.mobile-link:hover, .mobile-link.active-mobile { color: var(--gold); }
.mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1529699211952-734e80c4d42b?w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,11,8,0.96) 40%, rgba(15,11,8,0.55) 70%, rgba(15,11,8,0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 64px;
  max-width: 700px;
}
@media (min-width: 768px)  { .hero-content { padding: 140px 48px 80px; max-width: 800px; } }
@media (min-width: 1024px) { .hero-content { padding: 140px 64px 80px; max-width: calc(var(--container) + 0px); } }

.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 0;
}
.hero-title.italic { font-style: italic; color: var(--gold); margin-bottom: 28px; }

.hero-tagline {
  font-size: 17px;
  font-weight: 300;
  color: rgba(240,234,216,0.65);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
}
@media (min-width: 480px) { .hero-btns { flex-direction: row; } }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(212,160,23,0.2);
}
.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-soft);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}

.image-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
  margin: 0 auto;
}
@media (min-width: 900px) { .image-frame { margin: 0; } }

.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212,160,23,0.35);
  transform: translate(18px, 18px);
  z-index: 0;
}
.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 2;
  background: var(--gold);
  color: #0f0b08;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-top: 4px;
}

.quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--fg);
  margin: 28px 0 36px;
  line-height: 1.5;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.mini-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.mini-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════════ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 700px) {
  .menu-grid { grid-template-columns: 1fr 1fr; column-gap: 64px; }
}

.menu-item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 20px;
  transition: border-color var(--transition);
}
.menu-item:hover { border-color: rgba(212,160,23,0.3); }

.menu-info { flex: 1; }
.menu-name-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.menu-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--fg);
  transition: color var(--transition);
  margin-bottom: 6px;
}
.menu-item:hover .menu-name { color: var(--gold); }
.menu-name-row .menu-name { margin-bottom: 0; }

.menu-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(212,160,23,0.35);
  background: var(--gold-dim);
  padding: 2px 8px;
}
.menu-desc {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
}
.menu-price {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.menu-footnote {
  text-align: center;
  color: var(--fg-muted);
  font-size: 13px;
  font-style: italic;
  margin-top: 48px;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
}

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

.gallery-large {
  grid-column: span 2;
  grid-row: span 1;
}
@media (min-width: 768px) {
  .gallery-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .gallery-wide {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════ */
.chess-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: repeating-conic-gradient(rgba(240,234,216,1) 0% 25%, transparent 0% 50%);
  background-size: 48px 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 32px;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-card:hover { border-color: rgba(212,160,23,0.45); }

.feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: #0f0b08;
  border-color: var(--gold);
}
.feature-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(212,160,23,0.35); }

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.big-quote {
  font-family: var(--font-serif);
  font-size: 72px;
  color: rgba(212,160,23,0.18);
  line-height: 0.8;
  margin-bottom: 8px;
  select: none;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: rgba(240,234,216,0.88);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.03em;
}
.author-role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  margin-top: 3px;
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity var(--transition);
}
.reviews-link:hover { opacity: 0.8; }


.navbar {
  background: #0f0b08 !important;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-value {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.8;
}
.phone-link { color: var(--fg-muted); transition: color var(--transition); }
.phone-link:hover { color: var(--gold); }

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}
@media (min-width: 480px) { .contact-btns { flex-direction: row; } }

.contact-map {
  height: 420px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
@media (min-width: 900px) { .contact-map { height: 480px; } }
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.82) contrast(0.88);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--bg-card); border-top: 1px solid var(--border-soft); }
.footer .container { padding-top: 64px; padding-bottom: 64px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; gap: 64px; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-about {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 280px;
}
.footer-heading {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }
.footer-contact p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.footer-hours { color: var(--gold) !important; font-weight: 500; }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p { font-size: 12px; color: var(--fg-muted); }
.footer-tagline { font-family: var(--font-serif); font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.42s; }
.delay-5 { transition-delay: 0.52s; }
.delay-6 { transition-delay: 0.65s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE FINAL TOUCHES
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 22px; }
  .hero-content { padding-bottom: 48px; }
  .about-image { order: 1; }
  .about-text  { order: 2; }
  .image-badge { right: 0; bottom: -20px; }
}

