:root {
  --gold: #c9a84c;
  --gold-light: #e0b86a;
  --gold-dark: #a8882e;
  --black: #0d0d0d;
  --dark: #141414;
  --dark-2: #1e1e1e;
  --dark-3: #2a2a2a;
  --white: #f5f0e8;
  --muted: #888;
  --text: #d4cfc5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-bengali: 'Noto Sans Bengali', sans-serif;
  --radius: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background var(--transition);
  animation: navDrop 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.navbar.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.logo-name em { font-style: normal; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: #aaa;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
  position: relative;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  transition: var(--transition);
  font-size: 13px;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-count {
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────── */
.hero {
  position: relative;
  height: 500px;
  margin-top: var(--navbar-h);
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1610 50%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Decorative gold lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.025) 60px,
      rgba(201,168,76,0.025) 61px
    );
}

.hero-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
}
.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(201,168,76,0.04);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 86px;
  font-weight: 300;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}

.hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.8;
  font-family: var(--font-bengali);
}

/* ── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .hero-tag  { animation: fadeUp 0.6s ease 0.1s forwards; opacity: 0; }
.hero-content .hero-title { animation: fadeUp 0.7s ease 0.25s forwards; opacity: 0; }
.hero-content .hero-divider { animation: fadeUp 0.6s ease 0.4s forwards; opacity: 0; }
.hero-content .hero-sub  { animation: fadeUp 0.6s ease 0.55s forwards; opacity: 0; }

/* ── SECTION HEADING ────────────────────── */
.section-head {
  text-align: center;
  padding: 70px 20px 20px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.section-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  font-family: var(--font-bengali);
}

/* ── STORY SECTION ──────────────────────── */
.story-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 40px 70px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text-side { }

.story-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.story-heading {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.story-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.story-para {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 14px;
  font-family: var(--font-bengali);
}

.story-visual-side {
  position: relative;
}

.story-card-bg {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story-card-bg::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.story-year {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 10px;
}

.story-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.story-brand em { color: var(--gold); font-style: normal; }

.story-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.story-card-divider {
  width: 40px; height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 20px auto;
}

.story-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-body);
}
.story-location svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── STATS ROW ──────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 40px 80px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  background: var(--dark-2);
  padding: 36px 20px;
  text-align: center;
  transition: background var(--transition);
}
.stat-item:hover { background: var(--dark-3); }

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ── COLLECTION CARDS ───────────────────── */
.collection-section {
  padding: 10px 40px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.col-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.col-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

.col-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  animation: floatSlow 4s ease-in-out infinite;
}
.col-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.col-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.col-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--font-bengali);
}

/* ── MISSION ────────────────────────────── */
.mission-section {
  padding: 0 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.mission-inner {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-inner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mission-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.mission-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-inner h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}

.mission-inner p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-bengali);
}

.mission-quote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.12);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
}

/* ── WHY US ─────────────────────────────── */
.why-section {
  padding: 0 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.why-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--font-bengali);
}

/* ── CTA ────────────────────────────────── */
.cta-section {
  padding: 0 40px 100px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner {
  background: var(--gold);
  border-radius: 20px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  position: relative;
}

.cta-inner p {
  font-size: 15px;
  color: rgba(0,0,0,0.65);
  margin-bottom: 30px;
  font-family: var(--font-bengali);
  position: relative;
}

.cta-btn {
  display: inline-block;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}
.cta-btn:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ── NEWSLETTER ─────────────────────────── */
.newsletter {
  padding: 100px 60px;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.08);
}
.newsletter-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.newsletter-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-family: var(--font-bengali);
}
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.newsletter-form button {
  padding: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.newsletter-form small {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.nl-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
  font-family: var(--font-bengali);
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  background: var(--dark-2);
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-links h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links ul li a,
.footer-links ul li span {
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
  font-family: var(--font-body);
}
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .story-grid { gap: 30px; }
  .hero-title { font-size: 64px; }
  .collection-section, .mission-section, .why-section, .cta-section { padding-left: 24px; padding-right: 24px; }
  .story-section { padding: 20px 24px 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .newsletter-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 60px; }
  .navbar { padding: 0 20px; }

  .nav-links {
    position: fixed;
    top: var(--navbar-h); left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open {
    max-height: 400px;
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links a::after { display: none; }
  .menu-toggle { display: flex; }

  .hero { height: 400px; }
  .hero-title { font-size: 46px; }
  .hero-sub { font-size: 13px; }

  .story-grid { grid-template-columns: 1fr; }
  .story-section { padding: 20px 16px 50px; }
  .stats-row { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .collection-section, .mission-section, .why-section, .cta-section { padding-left: 16px; padding-right: 16px; }
  .mission-inner { padding: 40px 24px; }
  .section-title { font-size: 32px; }

  .newsletter { padding: 60px 20px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 30px; }
  .newsletter-text h2 { font-size: 32px; }

  .footer { padding: 50px 20px 24px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .social-links { justify-content: center; }

  .footer-links h4 { text-align: center; }

  .footer-links ul { align-items: center; }

  .footer-links ul li a:hover { padding-left: 0; }

  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .cta-inner h2 { font-size: 32px; }
}
/* =========================================
   SHARED SITE FOOTER (matches style.css)
   ========================================= */
.container{max-width:1280px;margin:0 auto;padding:0 40px;}
footer{background:var(--black);color:#cfc9c0;padding:70px 0 30px;border-top:1px solid rgba(255,255,255,0.05);}
.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:30px;padding-bottom:50px;border-bottom:1px solid rgba(255,255,255,0.08);}
.foot-logo{font-family:var(--font-display);color:#fff;font-size:22px;font-weight:700;letter-spacing:1px;margin-bottom:14px;}
.foot-logo em{font-style:normal;color:var(--gold);}
.foot-desc{font-size:13px;line-height:1.7;max-width:240px;margin-bottom:20px;color:#a29b90;}
.socials{display:flex;gap:12px;}
.social-btn{width:34px;height:34px;border-radius:50%;border:1px solid rgba(255,255,255,0.15);display:flex;align-items:center;justify-content:center;color:#a29b90;transition:all .2s;}
.social-btn:hover{background:var(--gold);border-color:var(--gold);color:var(--black);}
.foot-col h4{color:#fff;font-size:13px;letter-spacing:0.5px;margin-bottom:18px;}
.foot-col ul{list-style:none;padding:0;margin:0;}
.foot-col ul li{margin-bottom:11px;}
.foot-col ul a,.foot-col ul span{font-size:13px;color:#a29b90;transition:color .2s;}
.foot-col ul a:hover{color:var(--gold);}
.foot-input{display:flex;margin-top:14px;border:1px solid rgba(255,255,255,0.15);border-radius:8px;overflow:hidden;max-width:100%;}
.foot-input input{flex:1;min-width:0;background:transparent;border:none;padding:11px 12px;font-size:12px;color:#fff;outline:none;}
.foot-input input::placeholder{color:#7a7268;}
.foot-input button{width:40px;display:flex;align-items:center;justify-content:center;background:var(--gold);color:var(--black);}
.foot-bottom{padding-top:26px;display:flex;justify-content:space-between;font-size:12px;color:var(--muted);flex-wrap:wrap;gap:8px;}
@media (max-width:1024px){ .foot-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:768px){
  .foot-grid{
    grid-template-columns:1fr 1fr;
    text-align:left;
    gap:24px 16px;
  }
  .foot-grid > div:first-child{
    grid-column:1 / -1;
    text-align:center;
  }
  .foot-grid > div:first-child .socials{justify-content:center;}

  .foot-grid > div:nth-child(4){
    grid-column:1 / -1;
    text-align:center;
  }

  .foot-desc{
    margin-left:auto;
    margin-right:auto;
  }

  /* নতুন যোগ করুন — copyright লাইন দুটোকে center এ আনতে */
  .foot-bottom{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
  }
}
@media (max-width:480px){
  .container{padding:0 16px;}
  .foot-grid{
    grid-template-columns:1fr 1fr;
    text-align:left;
    gap:24px 16px;
  }
}
footer .container {
  display: block;
}
