:root {
  --primary: #9b1b30;
  --primary-dark: #7a1526;
  --primary-soft: #fdf2f4;
  --gold: #c9a227;
  --gold-soft: #f5ecd4;
  --bg: #ffffff;
  --dark: #1a1a1c;
  --muted: #5c6370;
  --border: #e5e7eb;
  --accent: #f8f9fb;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  --radius: 16px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
}

.brand-name-hi {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--dark);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav-call {
  padding: 10px 18px;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 16px;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  margin-top: 4px;
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ── Hero ── */
.hero {
  padding: 48px 0 72px;
  background:
    radial-gradient(ellipse at top left, var(--primary-soft) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, var(--gold-soft) 0%, transparent 50%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(155, 27, 48, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.12;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 12px;
}

button.btn {
  font-family: inherit;
}

button.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-stat {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.hero-stat span {
  font-size: 12px;
  color: var(--muted);
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-card-body {
  padding: 20px;
}

.hero-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 11px;
  background: var(--accent);
}

/* ── Sections ── */
section {
  padding: 72px 0;
}

.section-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 15px;
  color: var(--muted);
}

/* ── About ── */
.about {
  background: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-content p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-content p:first-of-type {
  color: var(--dark);
  font-size: 16px;
}

.about-highlight {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  margin-top: 20px;
  font-size: 14px;
}

.about-highlight strong {
  display: block;
  margin-bottom: 10px;
}

.about-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.about-list div {
  padding-left: 14px;
  position: relative;
}

.about-list div::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ── Products ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 18px;
}

.product-card-body h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.product-card-body p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  border: 1px solid var(--border);
}

/* ── Locations ── */
.locations {
  background: var(--accent);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  border-bottom: 1px solid var(--border);
}

.location-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.location-card-header h3 {
  font-size: 18px;
  margin: 0;
}

.location-card-body {
  padding: 20px;
}

.location-detail {
  margin-bottom: 14px;
}

.location-detail-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.location-detail p {
  font-size: 14px;
  color: var(--dark);
  margin: 0;
  line-height: 1.6;
}

.location-detail a {
  color: var(--primary);
  font-weight: 600;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-phone-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-grid--balanced {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
}

.gallery-grid--balanced .gallery-item--hero {
  grid-column: 1 / -1;
  grid-row: span 1;
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--primary-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.7;
}

.testimonial-name {
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item strong,
.contact-item strong a {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--dark);
}

.contact-item strong a:hover {
  color: var(--primary);
}

.contact-item span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form-wrap {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input,
textarea,
select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 27, 48, 0.1);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #dc2626;
}

.form-consent {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
  color: var(--dark);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-consent-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.form-consent-note a {
  color: var(--primary);
}

.form-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

.form-alert--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.map-embed {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand .brand-name {
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-grid--balanced {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid--balanced .gallery-item--hero {
    grid-column: 1 / -1;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, background 0.2s;
}

.whatsapp-float:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.06);
}

/* ── Policy pages ── */
.policy-content {
  padding: 48px 0 72px;
}

.policy-container {
  max-width: 800px;
}

.policy-container h1 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 8px;
}

.policy-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.policy-body h2 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--dark);
}

.policy-body p,
.policy-body li {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.policy-body ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.policy-body a {
  color: var(--primary);
  text-decoration: underline;
}

.policy-contact-box {
  margin-top: 36px;
  padding: 22px;
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.policy-contact-box h2 {
  font-size: 17px;
  margin-bottom: 8px;
}

.policy-contact-box ul {
  list-style: none;
  padding: 0;
}

.policy-contact-box li {
  font-size: 14px;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: 15px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .gallery-grid--balanced {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid--balanced .gallery-item--hero {
    grid-column: 1 / -1;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 14px;
    font-size: 12px;
  }

  .btn-nav-call {
    padding: 9px 14px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .gallery-grid,
  .gallery-grid--balanced {
    grid-template-columns: 1fr;
  }

  .gallery-grid--balanced .gallery-item--hero {
    grid-column: 1;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  section {
    padding: 52px 0;
  }
}
