/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #fffaf5;
  color: #1a0a00;
  overflow-x: hidden;
}

/* ─── VARIABLES ────────────────────────────────────────── */
:root {
  --red:      #d91c1c;
  --red-dark: #a00f0f;
  --red-light:#ff4b4b;
  --yellow:   #f5c518;
  --yellow-light:#ffe564;
  --yellow-dark: #c49a00;
  --cream:    #fff8ee;
  --white:    #ffffff;
  --text:     #1a0a00;
  --text-muted:#7a4a2a;
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── NAVBAR ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 70px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(217,28,28,.12);
  transition: background .3s;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--red);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--yellow-dark); }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text);
  font-weight: 500; font-size: .95rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .5rem 1.4rem;
  border-radius: 50px;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-2px); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 3px; background: var(--red); border-radius: 2px;
  transition: all .3s;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fef3e2 0%, #fff8ee 60%, #ffe8e8 100%);
  display: flex; align-items: center;
  padding: 100px 6vw 60px;
  position: relative; overflow: hidden;
}

/* decorative blobs */
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,197,24,.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(217,28,28,.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-24px); }
}

.hero-content {
  max-width: 560px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: #5a3000; font-weight: 600; font-size: .82rem;
  padding: .4rem 1rem; border-radius: 50px;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 14px rgba(245,197,24,.45);
}
.hero-badge::before { content: '🔥'; }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--red-dark);
  margin-bottom: 1.2rem;
}
h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--yellow-dark), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 2rem;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(217,28,28,.4);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(217,28,28,.5); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.8rem; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 900;
  color: var(--red);
}
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.hero-img {
  flex: 1; display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
}
.hero-img-circle {
  width: clamp(300px, 38vw, 520px);
  height: clamp(300px, 38vw, 520px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 40%, var(--red-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(8rem, 18vw, 16rem);
  box-shadow:
    0 0 0 20px rgba(245,197,24,.15),
    0 0 0 40px rgba(245,197,24,.08),
    0 30px 80px rgba(217,28,28,.25);
  animation: float 5s ease-in-out infinite;
  position: relative;
}
/* decorative dots around circle */
.dot {
  position: absolute; border-radius: 50%;
  background: var(--yellow);
  animation: float 4s ease-in-out infinite;
}
.dot:nth-child(2) { width:22px;height:22px; top:5%; right:8%; animation-delay:-1s; }
.dot:nth-child(3) { width:14px;height:14px; bottom:12%; left:6%; background:var(--red-light); animation-delay:-2s; }
.dot:nth-child(4) { width:32px;height:32px; top:40%; right:-4%; animation-delay:-.5s; }

/* ─── SECTION UTILITY ───────────────────────────────────── */
section { padding: 90px 6vw; }
.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: #5a3000; font-weight: 700; font-size: .78rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--red-dark);
  margin-bottom: 1rem;
}
.section-title span {
  background: linear-gradient(90deg, var(--yellow-dark), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--text-muted); font-size: .98rem;
  max-width: 560px; line-height: 1.7;
}

/* ─── MARQUEE STRIP ─────────────────────────────────────── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  padding: 14px 0; overflow: hidden; position: relative;
}
.marquee-track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap; color: var(--yellow);
  font-weight: 700; font-size: .95rem; letter-spacing: .5px;
  display: flex; align-items: center; gap: .7rem;
}
.marquee-sep { color: rgba(255,255,255,.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about-card {
  border-radius: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  aspect-ratio: 1;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transition: transform .3s;
}
.about-card:hover { transform: scale(1.04); }
.about-card:nth-child(1) { background: linear-gradient(135deg,#fff3cc,#ffe066); }
.about-card:nth-child(2) { background: linear-gradient(135deg,#ffe5e5,#ffaaaa); margin-top: 1.5rem; }
.about-card:nth-child(3) { background: linear-gradient(135deg,#ffe5e5,#ffaaaa); }
.about-card:nth-child(4) { background: linear-gradient(135deg,#fff3cc,#ffe066); margin-top: -1.5rem; }

.about-text .section-sub { margin-bottom: 2rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.feature-list li {
  display: flex; align-items: center; gap: .9rem;
  font-size: .95rem; color: var(--text);
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: #5a3000; font-weight: 900; font-size: .85rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(245,197,24,.4);
}

/* ─── MENU ──────────────────────────────────────────────── */
.menu { background: var(--cream); }
.menu-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.filter-tabs {
  display: flex; gap: .6rem; flex-wrap: wrap;
}
.tab-btn {
  padding: .5rem 1.2rem; border-radius: 50px; border: 2px solid var(--red);
  background: transparent; color: var(--red);
  font-weight: 600; font-size: .85rem; cursor: pointer;
  transition: all .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--red); color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.6rem;
}
.menu-card {
  background: var(--white); border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(217,28,28,.18);
}
.menu-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  position: relative; overflow: hidden;
}
.menu-card-img .badge-new {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: #5a3000;
  font-size: .7rem; font-weight: 800; padding: 3px 10px; border-radius: 50px;
}
.menu-card-img .badge-hot {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-size: .7rem; font-weight: 800; padding: 3px 10px; border-radius: 50px;
}
.menu-card-body { padding: 1.2rem 1.4rem 1.4rem; }
.menu-card-name {
  font-weight: 700; font-size: 1.05rem; margin-bottom: .35rem;
}
.menu-card-desc {
  font-size: .83rem; color: var(--text-muted);
  line-height: 1.55; margin-bottom: 1rem;
}
.menu-card-footer {
  display: flex; justify-content: space-between; align-items: center;
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 900; color: var(--red);
}
.price-old {
  font-size: .78rem; color: #bbb; text-decoration: line-through;
  display: block; font-family: 'Poppins', sans-serif; font-weight: 400;
}
.add-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); border: none; cursor: pointer;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(217,28,28,.4);
  transition: transform .2s, box-shadow .2s;
}
.add-btn:hover { transform: scale(1.15); box-shadow: 0 8px 20px rgba(217,28,28,.5); }

/* ─── HOW IT WORKS ──────────────────────────────────────── */
.how { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%); color: var(--white); }
.how .section-title { color: var(--yellow); }
.how .section-sub { color: rgba(255,255,255,.75); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.step {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px; padding: 2rem 1.6rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background .3s, transform .3s;
}
.step:hover { background: rgba(255,255,255,.18); transform: translateY(-6px); }
.step-icon {
  width: 70px; height: 70px; border-radius: 20px;
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 1.2rem;
  box-shadow: 0 8px 24px rgba(245,197,24,.4);
}
.step-num {
  font-size: .72rem; font-weight: 800; letter-spacing: 1.5px;
  color: var(--yellow); text-transform: uppercase; margin-bottom: .5rem;
}
.step-title { font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.step-desc { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: var(--cream); border-radius: 24px; padding: 1.8rem;
  border: 1.5px solid rgba(245,197,24,.3);
  transition: box-shadow .3s, transform .3s;
}
.testi-card:hover {
  box-shadow: 0 12px 36px rgba(245,197,24,.25);
  transform: translateY(-5px);
}
.testi-stars { color: var(--yellow-dark); font-size: 1.1rem; margin-bottom: .9rem; }
.testi-text {
  font-size: .9rem; line-height: 1.7; color: var(--text-muted);
  font-style: italic; margin-bottom: 1.2rem;
}
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
}
.testi-name { font-weight: 700; font-size: .92rem; }
.testi-loc { font-size: .78rem; color: var(--text-muted); }

/* ─── PROMO BANNER ──────────────────────────────────────── */
.promo {
  background: linear-gradient(135deg, #ffcc00 0%, #ff8800 50%, var(--red) 100%);
  text-align: center; padding: 80px 6vw;
  position: relative; overflow: hidden;
}
.promo::before {
  content: '🥟'; font-size: 14rem; opacity: .08;
  position: absolute; top: -40px; left: -40px;
  line-height: 1;
}
.promo::after {
  content: '🥢'; font-size: 12rem; opacity: .08;
  position: absolute; bottom: -30px; right: -20px;
}
.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900;
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.promo-desc {
  color: rgba(255,255,255,.88); font-size: 1rem;
  max-width: 500px; margin: 0 auto 2rem; line-height: 1.7;
}
.countdown {
  display: flex; justify-content: center; gap: 1rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.count-box {
  background: rgba(255,255,255,.2); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 16px; padding: 1rem 1.4rem;
  min-width: 80px; text-align: center;
  color: var(--white);
}
.count-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; display: block;
}
.count-label { font-size: .7rem; font-weight: 600; letter-spacing: 1px; opacity: .8; text-transform: uppercase; }
.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.btn-white:hover { background: var(--cream); }

/* ─── CONTACT ───────────────────────────────────────────── */
.contact {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900; color: var(--red-dark);
  margin-bottom: 1.5rem;
}
.info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.4rem;
}
.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(245,197,24,.35);
}
.info-label { font-weight: 700; font-size: .85rem; margin-bottom: .25rem; }
.info-val { font-size: .9rem; color: var(--text-muted); }
.socials {
  display: flex; gap: .8rem; margin-top: 2rem;
}
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; text-decoration: none;
  background: var(--white); border: 2px solid rgba(217,28,28,.15);
  transition: all .2s;
}
.social-btn:hover { background: var(--red); transform: translateY(-3px); }

/* order form */
.order-form {
  background: var(--white); border-radius: 28px;
  padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.order-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900; color: var(--red-dark);
  margin-bottom: 1.6rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-weight: 600; font-size: .88rem;
  margin-bottom: .45rem; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem; border-radius: 12px;
  border: 2px solid rgba(217,28,28,.15);
  font-family: 'Poppins', sans-serif; font-size: .9rem;
  background: var(--cream); color: var(--text);
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: #1a0a00; color: rgba(255,255,255,.75);
  padding: 60px 6vw 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo-text { font-size: 1.6rem; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin: .9rem 0 1.2rem; line-height: 1.6; }
.footer-title { font-weight: 700; font-size: .95rem; color: var(--yellow); margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .87rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.newsletter { margin-top: .5rem; }
.newsletter p { font-size: .84rem; color: rgba(255,255,255,.55); margin-bottom: .8rem; }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input {
  flex: 1; padding: .65rem 1rem; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08);
  color: var(--white); font-size: .85rem; font-family: 'Poppins', sans-serif;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--yellow); }
.newsletter-form button {
  padding: .65rem 1.1rem; background: var(--yellow);
  color: #5a3000; border: none; border-radius: 10px;
  font-weight: 700; cursor: pointer; font-size: .85rem;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--yellow-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; color: rgba(255,255,255,.35);
}

/* ─── CART TOAST ─────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white); padding: 1rem 1.5rem;
  border-radius: 16px; font-weight: 600; font-size: .9rem;
  box-shadow: 0 8px 30px rgba(217,28,28,.5);
  display: flex; align-items: center; gap: .7rem;
  transform: translateX(200%);
  transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
}
.toast.show { transform: translateX(0); }

/* ─── FLOATING CART ──────────────────────────────────────── */
.cart-fab {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border: none; cursor: pointer; font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(245,197,24,.55);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s;
}
.cart-fab:hover { transform: scale(1.12); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: var(--white);
  width: 22px; height: 22px; border-radius: 50%;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  display: none;
}

/* ─── SCROLL TO TOP ──────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 998;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: var(--white);
  border: none; font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(217,28,28,.4);
  display: none; align-items: center; justify-content: center;
  transition: transform .2s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; text-align: center; padding: 110px 6vw 60px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img { margin-top: 3rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); padding: 1.5rem 6vw;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
    gap: 1.2rem;
  }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr 1fr; }
}
