:root {
  --bg: #fdf6ee;
  --surface: rgba(255, 255, 255, 0.70);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #25170f;
  --muted: rgba(37, 23, 15, 0.72);
  --line: rgba(37, 23, 15, 0.10);

  --brand: #8b4a2b;
  --brand-2: #a35b34;
  --accent: #d24a5f;

  --radius: 16px;
  --shadow: 0 14px 30px rgba(0,0,0,0.12);
  --shadow-soft: 0 10px 24px rgba(0,0,0,0.08);

  --container: 1180px;

  --whatsapp: #25d366;
  --instagram: #e4405f;
}

html[data-theme="dark"] {
  --bg: #0f0f12;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --line: rgba(255, 255, 255, 0.12);

  --brand: #c08b6a;
  --brand-2: #d5a07f;
}

* { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
::selection { background: rgba(210, 74, 95, 0.18); color: var(--text); }
body {
  min-height: 100%;
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(210, 74, 95, 0.16), transparent 60%),
    radial-gradient(1000px 520px at 95% 10%, rgba(139, 74, 43, 0.18), transparent 60%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 8px;
}
img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.0)), var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.brand:hover .brand-title span { color: var(--brand); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-height: 60px;
}
.brand-mark img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-title strong {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: 0.2px;
  font-size: 20px;
}
.brand-title span {
  font-size: 12px;
  color: var(--muted);
  transition: color 200ms ease;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), background 280ms ease, color 280ms ease, box-shadow 320ms ease;
}
.nav-links a:hover {
  background: var(--surface-strong);
  color: var(--text);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(139, 74, 43, 0.12);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(210,74,95,0.0), rgba(210,74,95,0.7), rgba(210,74,95,0.0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease, background 280ms ease, border-color 280ms ease;
}
.btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 16px 32px rgba(0,0,0,0.14); }
.btn:active { transform: translateY(0) scale(0.98); transition-duration: 100ms; }
.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
}
.btn.primary:hover {
  box-shadow: 0 14px 36px rgba(139, 74, 43, 0.30);
}
.btn.ghost { background: transparent; box-shadow: none; }
.btn.ghost:hover { background: var(--surface); box-shadow: var(--shadow-soft); }

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
a .pill:hover, a.pill:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(210, 74, 95, 0.12);
  border-color: rgba(210, 74, 95, 0.30);
}

.pill.highlight {
  border-color: rgba(210, 74, 95, 0.40);
  color: var(--text);
  background: radial-gradient(circle at 0 0, rgba(210,74,95,0.18), transparent 60%), var(--surface-strong);
}

.hero {
  padding: 36px 0 24px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(680px 320px at 85% 10%, rgba(210,74,95,0.14), transparent 65%);
  opacity: 0.8;
  z-index: -1;
}

.hero-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.hero-band__text {
  padding: 36px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-band__media {
  border-left: 1px solid var(--line);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}
.hero-campaign {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero-campaign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-campaign__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.62), transparent);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-campaign__label strong { font-size: 16px; }
.hero-campaign__label span { font-size: 13px; opacity: 0.85; }
.hero-campaign--text {
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(400px 240px at 30% 50%, rgba(210,74,95,0.18), transparent 70%),
    radial-gradient(360px 200px at 70% 50%, rgba(139,74,43,0.18), transparent 70%),
    var(--surface-strong);
}
.hero-campaign--text .hero-campaign__label {
  position: static;
  background: transparent;
  color: var(--text);
  text-align: center;
  padding: 24px;
}
.hero-campaign--text .hero-campaign__label strong { font-size: 20px; color: var(--text); }
.hero-campaign--text .hero-campaign__label span { color: var(--muted); }
.hero-campaign--empty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(400px 240px at 50% 50%, rgba(210,74,95,0.10), transparent 70%),
    var(--surface-strong);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 300ms ease,
    border-color 300ms ease;
}
.card.pad { padding: 18px; }

.card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

.placeholder-media {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(500px 260px at 20% 20%, rgba(210, 74, 95, 0.22), transparent 60%),
    radial-gradient(540px 260px at 80% 30%, rgba(139, 74, 43, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}

/* Category pills row */
.section--cats { padding: 0 0 20px; }
.cats-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cat-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 240ms ease;
}
.cat-pill:hover {
  background: var(--surface-strong);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 74, 43, 0.14);
}
.cat-pill--all {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent;
  color: white;
}
.cat-pill--all:hover {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-color: transparent;
  color: white;
}

/* Empty state */
.grid-empty {
  grid-column: 1 / -1;
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* About page */
.about-header { margin-bottom: 0; }
.about-text {
  line-height: 1.9;
  color: var(--muted);
  font-size: 15px;
}
.about-with-img {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: start;
}
.about-with-img__img {
  overflow: hidden;
  padding: 0;
}
.about-with-img__img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.section { padding: 24px 0 36px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.section-head h2 { margin: 0; font-size: 18px; letter-spacing: 0.2px; }
.section-head p { margin: 0; color: var(--muted); font-size: 13px; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, border-color 300ms ease;
}
.product:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 18px 40px rgba(210, 74, 95, 0.14), 0 6px 14px rgba(0,0,0,0.08);
  border-color: rgba(210, 74, 95, 0.30);
}
.product .thumb {
  height: 168px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}
.product .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product:hover .thumb img {
  transform: scale(1.08);
}
.product .thumb .noimg {
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 40px;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  color: var(--brand);
  background:
    radial-gradient(340px 200px at 30% 20%, rgba(210, 74, 95, 0.12), transparent 60%),
    radial-gradient(340px 200px at 70% 35%, rgba(139, 74, 43, 0.12), transparent 60%),
    var(--surface-strong);
}
.product strong { font-weight: 650; letter-spacing: 0.2px; }
.product small { color: var(--muted); }
.price { font-weight: 700; }

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), background 280ms ease, color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.chip:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.chip:active { transform: translateY(0) scale(0.97); transition-duration: 100ms; }
.chip.active { background: rgba(210, 74, 95, 0.16); border-color: rgba(210, 74, 95, 0.30); color: var(--text); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

/* Product detail */
.detail-media-card {
  overflow: hidden;
  padding: 0;
}
.detail-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.detail-main-img:hover img { transform: scale(1.03); }
.detail-extra-imgs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
}
.detail-extra-thumb {
  flex: 0 0 90px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 200ms ease, transform 200ms ease;
}
.detail-extra-thumb:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.detail-extra-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-grid { grid-template-columns: repeat(6, 1fr); }
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  cursor: pointer;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, border-color 300ms ease;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 36px rgba(210, 74, 95, 0.12), 0 6px 14px rgba(0,0,0,0.10);
  border-color: rgba(210, 74, 95, 0.25);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .noimg { height: 100%; display: grid; place-items: center; color: var(--muted); }

.footer {
  margin-top: 0;
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}
.footer a {
  color: inherit;
  transition: color 280ms ease, transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}
.footer a:hover { color: var(--text); transform: translateY(-1px); }

/* ── Lightbox ──────────────────────────────────── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  user-select: none;
}
.lb-overlay.open { display: flex; }

.lb-img-wrap {
  max-width: min(92vw, 980px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  transition: opacity 180ms ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.lb-img.fading { opacity: 0; }

.lb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease;
  z-index: 301;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  width: 52px;
  height: 80px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease;
  z-index: 301;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-nav.hidden { display: none; }

.lb-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* ── Contact Page ───────────────────────────────── */
.contact-header { text-align: center; }
.contact-header h1 {
  margin: 14px 0 8px;
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 36px;
  letter-spacing: 0.2px;
}
.contact-header p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease, border-color 300ms ease;
}
a.contact-item { cursor: pointer; }
a.contact-item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(139, 74, 43, 0.12), 0 4px 10px rgba(0,0,0,0.06);
  border-color: rgba(139, 74, 43, 0.25);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), background 280ms ease, border-color 280ms ease;
}
a.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(-3deg);
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}
.contact-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.contact-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}
.contact-value {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--muted);
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), color 280ms ease;
}
a.contact-item:hover .contact-arrow {
  transform: translateX(6px);
  color: var(--brand);
}

.contact-item--whatsapp:hover { border-color: rgba(37, 211, 102, 0.35); }
.contact-item--whatsapp .contact-icon { background: rgba(37, 211, 102, 0.10); border-color: rgba(37, 211, 102, 0.20); }
.contact-item--instagram:hover { border-color: rgba(228, 64, 95, 0.35); }
.contact-item--instagram .contact-icon { background: rgba(228, 64, 95, 0.10); border-color: rgba(228, 64, 95, 0.20); }

.contact-map {
  overflow: hidden;
  min-height: 420px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ── Footer Social Links ──────────────────────────── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.footer-social a:hover {
  transform: translateY(-3px) scale(1.12);
  background: var(--surface-strong);
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(139, 74, 43, 0.15);
}
.footer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ── Theme Toggle Button ──────────────────────────── */
[data-theme-toggle] {
  font-size: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  position: relative;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), background 280ms ease, box-shadow 280ms ease !important;
}
[data-theme-toggle]:hover {
  transform: translateY(-2px) rotate(15deg) scale(1.08) !important;
  background: var(--surface) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10) !important;
}
[data-theme-toggle]:active {
  transform: rotate(-10deg) scale(0.95) !important;
  transition-duration: 100ms !important;
}
[data-theme-toggle]::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cline x1='12' y1='1' x2='12' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='23'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78'/%3E%3Cline x1='1' y1='12' x2='3' y2='12'/%3E%3Cline x1='21' y1='12' x2='23' y2='12'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cline x1='12' y1='1' x2='12' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='23'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78'/%3E%3Cline x1='1' y1='12' x2='3' y2='12'/%3E%3Cline x1='21' y1='12' x2='23' y2='12'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: transform 200ms ease;
}
html[data-theme="dark"] [data-theme-toggle]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E");
}

@media (max-width: 980px) {
  .hero-band { grid-template-columns: 1fr; }
  .hero-band__media { border-left: none; border-top: 1px solid var(--line); min-height: 240px; }
  .hero-band__text { padding: 28px 24px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .about-with-img { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
  .contact-map iframe { min-height: 320px; }
  .hero h1 { font-size: 32px; }
  .contact-header h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 520px) {
  .hero-band__text { padding: 22px 18px; }
  .grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-title strong { font-size: 18px; }
  .hero h1 { font-size: 26px; }
}

