:root {
  --green-950: #102f22;
  --green-900: #173d2b;
  --green-800: #24583a;
  --green-700: #2f6a47;
  --purple-700: #8f3091;
  --purple-600: #9c369c;
  --purple-100: #f3e7f3;
  --paper: #f7f4ee;
  --sand: #ece5d8;
  --white: #ffffff;
  --ink: #20241f;
  --muted: #687068;
  --line: #dcd8cf;
  --shadow: 0 20px 50px rgba(18, 47, 34, .11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.maintenance-bar {
  background: var(--green-950);
  color: var(--white);
  font-size: .92rem;
}
.maintenance-bar .container {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  text-align: center;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e7b4e7;
  box-shadow: 0 0 0 5px rgba(231, 180, 231, .12);
  flex: 0 0 auto;
}

.container { width: var(--container); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 216, 207, .8);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-block; flex: 0 1 470px; }
.brand img { width: min(470px, 48vw); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 650;
  color: var(--green-950);
}
.main-nav a { text-decoration: none; }
.main-nav a:not(.button):hover { color: var(--purple-700); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-950);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  color: var(--white);
  background: var(--purple-700);
  box-shadow: 0 12px 25px rgba(143, 48, 145, .22);
}
.button--primary:hover { background: var(--purple-600); }
.button--ghost {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.button--ghost:hover { background: rgba(255,255,255,.15); }
.button--small { min-height: 43px; padding-inline: 17px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 78px;
  color: var(--white);
  background: var(--green-900);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 15%, rgba(156,54,156,.28), transparent 32%),
    radial-gradient(circle at 82% 80%, rgba(255,255,255,.08), transparent 28%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 58px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #ead2ea;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 {
  max-width: 670px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.2vw, 5.4rem);
  letter-spacing: -.055em;
  font-weight: 760;
}
.hero-lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 70px rgba(0,0,0,.25);
}
.hero-badge {
  position: absolute;
  left: -30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  width: min(340px, 88%);
  padding: 18px 20px;
  color: var(--green-950);
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.22rem; }
.hero-badge span { display: block; color: var(--muted); font-size: .92rem; }
.hero-badge__bubble {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--purple-700);
  border-radius: 50% 50% 50% 14%;
  font-size: 1.15rem;
  font-weight: 900;
}

.section { padding: 96px 0; }
.section--white { background: var(--white); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}
.section-heading__text { max-width: 720px; }
.section-heading h2,
.about-copy h2,
.contact-panel h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  letter-spacing: -.045em;
}
.section-heading p,
.about-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 1.06rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: start;
}
.about-copy p + p { margin-top: 16px; }
.signature-logo {
  width: min(480px, 92%);
  margin-top: 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat {
  min-height: 170px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(18,47,34,.05);
}
.stat strong {
  display: block;
  color: var(--purple-700);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.stat span { display: block; margin-top: 12px; color: var(--green-950); font-weight: 720; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 270px 270px;
  gap: 18px;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--sand);
}
.gallery-grid figure:first-child { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(16,47,34,.78);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: .8rem;
  font-weight: 700;
}

.finder-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  margin-bottom: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(18,47,34,.06);
}
.search-wrap { position: relative; flex: 1 1 360px; }
.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.search-wrap input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px 0 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: var(--paper);
}
.search-wrap input:focus { border-color: var(--purple-700); box-shadow: 0 0 0 4px var(--purple-100); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--green-950);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 720;
}
.filter-button:hover,
.filter-button.is-active { color: var(--white); background: var(--green-900); border-color: var(--green-900); }
.result-count { margin-left: auto; color: var(--muted); white-space: nowrap; font-size: .92rem; }

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.store-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(18,47,34,.055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.store-card:hover { transform: translateY(-4px); border-color: #cbc2ca; box-shadow: var(--shadow); }
.store-card__top { min-height: 105px; }
.country-tag {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 13px;
  color: var(--purple-700);
  background: var(--purple-100);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.store-card h3 { margin-bottom: 0; color: var(--green-950); font-size: 1.35rem; letter-spacing: -.025em; }
.store-detail {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  margin-top: 17px;
  color: var(--muted);
  font-size: .94rem;
}
.store-detail svg { margin-top: 3px; color: var(--green-700); }
.store-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}
.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 62px;
  padding: 7px 4px;
  text-decoration: none;
  color: var(--green-950);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 750;
}
.action:hover { color: var(--purple-700); border-color: var(--purple-700); }
.action--primary { color: var(--white); background: var(--purple-700); border-color: var(--purple-700); }
.action--primary:hover { color: var(--white); background: var(--purple-600); }
.store-contact-line {
  display: grid;
  gap: 3px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  overflow-wrap: anywhere;
}
.store-contact-line a { color: var(--muted); text-decoration: none; }
.store-contact-line a:hover { color: var(--purple-700); text-decoration: underline; }
.empty-state { grid-column: 1 / -1; padding: 60px; text-align: center; color: var(--muted); background: var(--white); border-radius: var(--radius-md); }

.contact-section { padding: 0 0 96px; }
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 6vw, 70px);
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius-lg);
}
.contact-panel::after {
  content: "BD";
  position: absolute;
  right: -12px;
  bottom: -72px;
  color: rgba(255,255,255,.055);
  font-size: 18rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.12em;
}
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel h2 { color: var(--white); }
.contact-panel p { max-width: 650px; margin: 0; color: rgba(255,255,255,.78); }
.contact-panel__actions { display: flex; flex-direction: column; gap: 10px; min-width: 230px; }

.site-footer {
  padding: 44px 0 30px;
  color: var(--green-950);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.footer-brand img { width: min(410px, 80vw); }
.footer-brand p { max-width: 660px; margin: 15px 0 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: var(--green-950); font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--purple-700); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .83rem;
}

@media (max-width: 1040px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button) { display: none; }
  .hero-grid { gap: 36px; }
  .stores-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { gap: 45px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .maintenance-bar .container { min-height: 52px; align-items: flex-start; padding-block: 10px; }
  .header-inner { min-height: 72px; }
  .brand img { width: min(310px, 68vw); }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.button) { display: block; padding: 10px 8px; }
  .main-nav .button { margin-top: 6px; }
  .hero { padding: 48px 0 62px; }
  .hero-grid,
  .about-grid,
  .contact-panel,
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.1rem); }
  .hero-visual { margin-top: 8px; }
  .hero-badge { left: 16px; bottom: 16px; }
  .section { padding: 70px 0; }
  .section-heading { display: block; }
  .section-heading__text { margin-bottom: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 310px 220px 220px; }
  .gallery-grid figure:first-child { grid-row: auto; }
  .finder-bar { align-items: stretch; flex-direction: column; }
  .result-count { margin-left: 2px; }
  .stores-grid { grid-template-columns: 1fr; }
  .contact-panel__actions { min-width: 0; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 460px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { min-height: 140px; }
  .hero-actions .button { width: 100%; }
  .hero-badge { width: calc(100% - 32px); }
  .store-actions { gap: 6px; }
  .store-card { padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
