:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --bg: #faf8f5;
  --bg-alt: #f0ebe3;
  --surface: #ffffff;
  --text: #1a1612;
  --text-muted: #6b6358;
  --accent: #8b5a2b;
  --accent-hover: #6d4520;
  --accent-soft: rgba(139, 90, 43, 0.12);
  --border: rgba(26, 22, 18, 0.08);
  --shadow: 0 8px 32px rgba(26, 22, 18, 0.08);
  --hero-overlay: linear-gradient(135deg, rgba(26, 22, 18, 0.72) 0%, rgba(139, 90, 43, 0.45) 100%);
  --header-bg: rgba(250, 248, 245, 0.92);
}

[data-theme="dark"] {
  --bg: #12100e;
  --bg-alt: #1a1714;
  --surface: #221e1a;
  --text: #f5f0e8;
  --text-muted: #a89f92;
  --accent: #c9956a;
  --accent-hover: #dbaa7f;
  --accent-soft: rgba(201, 149, 106, 0.15);
  --border: rgba(245, 240, 232, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --hero-overlay: linear-gradient(135deg, rgba(18, 16, 14, 0.88) 0%, rgba(139, 90, 43, 0.35) 100%);
  --header-bg: rgba(18, 16, 14, 0.92);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  overflow: hidden;
}

.logo-scissors {
  width: 1.4rem;
  height: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.theme-toggle:hover { transform: scale(1.05); }
.theme-toggle svg { width: 1.1rem; height: 1.1rem; }

[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--text);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--hero-overlay),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80") center/cover no-repeat;
  z-index: 0;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.hero-scissors-wrap {
  position: relative;
  width: clamp(180px, 22vw, 280px);
  height: clamp(180px, 22vw, 280px);
  display: grid;
  place-items: center;
}

.hero-scissors {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.floating-scissors {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  color: rgba(255, 255, 255, 0.18);
  opacity: 0.7;
}

.floating-scissors--1 {
  top: 18%;
  right: 8%;
  animation: float-drift 7s ease-in-out infinite;
}

.floating-comb {
  position: absolute;
  bottom: 22%;
  left: 6%;
  width: 2.5rem;
  height: 3.2rem;
  color: rgba(255, 255, 255, 0.22);
  animation: comb-sway 5s ease-in-out infinite;
}

@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-18px) rotate(-8deg); }
}

@keyframes comb-sway {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(14deg) translateY(-10px); }
}

.hair-strand {
  position: absolute;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(232, 201, 168, 0.7), transparent);
  border-radius: 2px;
  opacity: 0.55;
  animation: hair-fall linear infinite;
}

.hair-strand--1 { left: 12%; top: -10%; animation-duration: 6s; animation-delay: 0s; }
.hair-strand--2 { left: 28%; top: -10%; animation-duration: 7.5s; animation-delay: 1.2s; height: 36px; }
.hair-strand--3 { right: 22%; top: -10%; animation-duration: 5.5s; animation-delay: 2.4s; }
.hair-strand--4 { right: 10%; top: -10%; animation-duration: 8s; animation-delay: 0.8s; height: 42px; }

@keyframes hair-fall {
  0% { transform: translateY(0) rotate(12deg); opacity: 0; }
  10% { opacity: 0.55; }
  90% { opacity: 0.3; }
  100% { transform: translateY(110vh) rotate(-8deg); opacity: 0; }
}

.snip-flash {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin: -1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
  opacity: 0;
  animation: snip-flash 1.4s ease-in-out infinite;
}

.snip-line {
  position: absolute;
  top: 36%;
  left: 58%;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  opacity: 0;
  transform-origin: left center;
  animation: snip-spark 1.4s ease-in-out infinite;
}

.snip-line--1 { transform: rotate(-25deg); }
.snip-line--2 { transform: rotate(5deg); animation-delay: 0.05s; }
.snip-line--3 { transform: rotate(30deg); animation-delay: 0.1s; }

@keyframes snip-flash {
  0%, 35%, 65%, 100% { opacity: 0; transform: scale(0.5); }
  48%, 52% { opacity: 0.85; transform: scale(1.2); }
}

@keyframes snip-spark {
  0%, 38%, 62%, 100% { opacity: 0; transform: scaleX(0.2); }
  50% { opacity: 1; transform: scaleX(1); }
}

.hero-content {
  position: relative;
  color: #fff;
  padding-block: 4rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: #e8c9a8;
}

.hero-subtitle {
  max-width: 32rem;
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
}

.stat span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-icon--scissors {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--accent);
}

.service-icon--scissors .card-scissors {
  width: 100%;
  height: 100%;
}

.service-icon--animate {
  display: inline-block;
  transition: transform 0.35s ease;
}

.service-card:hover .service-icon--animate {
  transform: scale(1.15) rotate(-6deg);
}

.service-card--snip:hover .scissors-animated--hover {
  animation-duration: 0.55s;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--accent-soft);
}

.about-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--accent) 0%, transparent 60%),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=800&q=80") center/cover;
  opacity: 0.85;
}

.about-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-features {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.about-features li {
  font-weight: 500;
  color: var(--text);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.gallery-item span {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 999px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item.visible span,
.gallery-item:hover span {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item {
  transition: transform 0.4s ease;
}

.gallery-item.visible:hover,
.gallery-item:hover {
  transform: scale(1.02);
}

.g1 { background-image: url("https://images.unsplash.com/photo-1492106087820-71f1a00d2b11?w=600&q=80"); grid-row: span 2; }
.g2 { background-image: url("https://images.unsplash.com/photo-1562322140-8baeececf3df?w=600&q=80"); }
.g3 { background-image: url("https://images.unsplash.com/photo-1519699047748-de8e457a634e?w=600&q=80"); }
.g4 { background-image: url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?w=600&q=80"); }
.g5 { background-image: url("https://images.unsplash.com/photo-1522338242992-e1a54906a8da?w=600&q=80"); }
.g6 { background-image: url("https://images.unsplash.com/photo-1595476108010-b4d1f102b68f?w=600&q=80"); }

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.contact-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  color: var(--accent);
}

.contact-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-hint {
  font-size: 0.8rem;
  color: var(--accent);
}

.contact-value--address {
  font-size: 0.95rem;
}

.map-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-info {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.map-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.map-address {
  color: var(--text-muted);
  line-height: 1.7;
}

.map-wrap {
  min-height: 280px;
  background: var(--bg-alt);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.hours-card {
  max-width: 28rem;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}

.hours-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.hours-row:last-child { border-bottom: none; }

/* Footer */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.08); }

/* Scissors SVG */
.scissors-svg {
  display: block;
}

.scissor-blade--top {
  transform-origin: 60px 48px;
}

.scissor-blade--bottom {
  transform-origin: 60px 48px;
}

.scissor-pivot {
  fill: var(--accent);
}

.hero-scissors .scissor-pivot,
.floating-scissors .scissor-pivot,
.logo-scissors .scissor-pivot {
  fill: currentColor;
}

.logo-scissors .scissor-pivot {
  fill: #fff;
}

.scissors-animated .scissor-blade--top {
  animation: blade-open-top 1.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.scissors-animated .scissor-blade--bottom {
  animation: blade-open-bottom 1.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.scissors-animated--slow .scissor-blade--top,
.scissors-animated--slow .scissor-blade--bottom {
  animation-duration: 2.2s;
}

.scissors-animated--hover .scissor-blade--top,
.scissors-animated--hover .scissor-blade--bottom {
  animation-play-state: paused;
}

.service-card--snip:hover .scissors-animated--hover .scissor-blade--top,
.service-card--snip:hover .scissors-animated--hover .scissor-blade--bottom {
  animation-play-state: running;
}

@keyframes blade-open-top {
  0%, 100% { transform: rotate(0deg); }
  35%, 55% { transform: rotate(22deg); }
}

@keyframes blade-open-bottom {
  0%, 100% { transform: rotate(0deg); }
  35%, 55% { transform: rotate(-22deg); }
}

/* Entrance & scroll animations */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up 0.85s ease forwards;
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.75);
  animation: scale-in 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.19s; }
.reveal-delay-4 { transition-delay: 0.26s; }
.reveal-delay-5 { transition-delay: 0.33s; }
.reveal-delay-6 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .anim-fade-up, .anim-scale-in { opacity: 1; transform: none; }
}

/* Mobile */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-scissors-wrap {
    margin: 0 auto -2rem;
    width: clamp(140px, 40vw, 200px);
    height: clamp(140px, 40vw, 200px);
  }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin-inline: auto; }

  .floating-scissors--1 { right: 4%; width: 3rem; height: 3rem; }
  .floating-comb { left: 4%; width: 2rem; }

  .nav-links {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual { order: -1; max-width: 24rem; margin: 0 auto; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .g1 { grid-row: span 1; }

  .map-section {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .nav-actions .lang-switch { display: none; }
}
