/*=====================================================NICA CONFORT HOME — Landing Premium Paleta: crema,
arena,
oro suave,
blanco roto Tipografía: Cormorant Garamond+Montserrat=====================================================*/
*,

*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f5efe8;
  --sand: #e4d8c8;
  --sand-dark: #c9b89f;
  --gold: #b89a6a;
  --gold-light: #d4b88a;
  --dark: #1a1714;
  --dark-mid: #2e2925;
  --text: #3d3530;
  --text-light: #7a6e65;
  --white: #fdfaf6;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* =====================================================
   POPUP
===================================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 8888;
  background: rgba(26, 23, 20, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--transition);
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 56px 48px 48px;
  max-width: 460px;
  width: 92%;
  text-align: center;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.5s var(--transition);
  box-shadow: 0 40px 100px rgba(26, 23, 20, 0.25);
  box-sizing: border-box;
}

.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.popup-close:hover {
  color: var(--dark);
}

.popup-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.popup-icon {
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--gold);
}

.popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 6px;
}

.popup-subtitle {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.popup-discount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.popup-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

#form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.popup-input {
  border: 1px solid var(--sand);
  background: var(--cream);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  cursor: text;
  width: 100%;
}

.popup-input::placeholder {
  color: var(--text-light);
}

.popup-input:focus {
  border-color: var(--gold);
}

.btn-enviar {
  background: var(--dark);
  color: var(--cream);
  border: none;
  padding: 15px 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}

.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px #c9b89f;
}


.popup-legal {
  font-size: 10px;
  color: var(--sand-dark);
  letter-spacing: 0.05em;
}

/* =====================================================
   HEADER
===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(245, 239, 232, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  box-shadow: 0 1px 0 var(--sand);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
  /* El logo es oscuro sobre fondo claro, perfecto para el header */
}

.header.scrolled .logo-img {
  opacity: 0.9;
}

.logo-img:hover {
  opacity: 0.75;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.logo-icon {
  color: var(--gold);
  font-size: 16px;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  width: 100%;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 80%, rgba(184, 154, 106, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 120% at 80% 20%, rgba(201, 184, 159, 0.15) 0%, transparent 55%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--cream) 0%, #ece4d9 50%, var(--sand) 100%);
}

.grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.hero-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 9vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.title-line.italic {
  font-style: italic;
  color: var(--gold);
}

.hero-phrase {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}

.hero-phrase::before,
.hero-phrase::after {
  content: '—';
  color: var(--gold-light);
  opacity: 0.6;
  margin: 0 10px;
  font-style: normal;
  font-size: 0.85em;
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 52px;
  letter-spacing: 0.06em;
}

/* COUNTDOWN */
.countdown-wrap {
  margin-bottom: 52px;
}

.countdown-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.count-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.02em;
  position: relative;
}

.count-num::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.count-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
}

.count-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 200;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.6;
}

/* BOTÓN WSP */
.btn-wsp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 16px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}

.btn-wsp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
  background: #20c05c;
}

.btn-wsp--large {
  padding: 20px 42px;
  font-size: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 239, 232, 0.4);
  color: var(--cream);
  padding: 14px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  margin-top: 32px;
}

.btn-outline:hover {
  background: rgba(245, 239, 232, 0.1);
  border-color: rgba(245, 239, 232, 0.7);
}

/* SCROLL INDICATOR */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--gold-light);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}

.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: horizontal-tb;
}

/* =====================================================
   TICKER
===================================================== */
.ticker-wrap {
  background: var(--dark);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(184, 154, 106, 0.2);
  border-bottom: 1px solid rgba(184, 154, 106, 0.2);
}

.ticker {
  display: flex;
  gap: 0;
  animation: tickerMove 35s linear infinite;
  white-space: nowrap;
}

.ticker span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  letter-spacing: 0.08em;
  padding-right: 0;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =====================================================
   GALLERY
===================================================== */
.gallery-section {
  padding: 100px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.section-tag.light {
  color: var(--sand);
  border-color: rgba(212, 184, 138, 0.4);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* GRID ASIMÉTRICO */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: transform 0.5s var(--transition), box-shadow 0.5s;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.card-img {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: height 0.4s;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card:nth-child(3) .card-img,
.gallery-card:nth-child(4) .card-img {
  height: 320px;
}

.card-img--tall {
  height: 100%;
  min-height: 560px;
}

.card-img--wide {
  height: 220px;
}

.card-texture {
  display: none;
}

.card-icon {
  font-size: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s;
}

.gallery-card:hover .card-icon {
  transform: scale(1.08);
}

.card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.gallery-card:hover .card-shimmer {
  left: 150%;
}

.card-info {
  padding: 28px 30px 32px;
}

.card-cat {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}

.card-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.card-tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--sand);
  padding: 4px 12px;
}

/* =====================================================
   VALUES SECTION
===================================================== */
.values-section {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
}

.values-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.values-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 100% 50%, rgba(184, 154, 106, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(201, 184, 159, 0.05) 0%, transparent 50%);
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}


.values-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  margin-top: 16px;
}

.values-title em {
  font-style: italic;
  color: var(--gold-light);
}

.values-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 239, 232, 0.65);
  line-height: 2;
  letter-spacing: 0.04em;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}

.value-item {
  position: relative;
}

.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(184, 154, 106, 0.2);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.value-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(245, 239, 232, 0.5);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
  padding: 130px 24px;
  background: var(--cream);
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-decor {
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.05;
}

.cta-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  letter-spacing: 0.06em;
  margin-bottom: 44px;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--dark-mid);
  border-top: 1px solid rgba(184, 154, 106, 0.15);
  padding: 48px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--sand);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(228, 216, 200, 0.4);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(228, 216, 200, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-links span {
  color: rgba(228, 216, 200, 0.2);
}

.footer-copy {
  font-size: 10px;
  color: rgba(228, 216, 200, 0.25);
  letter-spacing: 0.08em;
}

.yo a {
  color: #b89a6a;
  text-decoration: none;
}

/* =====================================================
   BOTÓN FLOTANTE WHATSAPP
===================================================== */
.wsp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.wsp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

.wsp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wspPulse 2.5s ease-out infinite;
}

@keyframes wspPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* =====================================================
   SCROLL REVEAL
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   HAMBURGER MENU
===================================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s var(--transition);
  transform-origin: center;
}

.menu-toggle--open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle--open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .header {
    padding: 20px 24px;
  }

  .header.scrolled {
    padding: 14px 24px;
  }

  .nav {
    gap: 20px;
  }

  .gallery-section {
    padding: 80px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-card:nth-child(2) {
    grid-row: auto;
  }

  .card-img--tall {
    min-height: 260px;
    height: 260px;
  }

  .values-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-section {
    padding: 80px 24px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 48px;
  }

  .count-num {
    font-size: 38px;
  }

  .count-item {
    min-width: 64px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 239, 232, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px 28px;
    gap: 0;
    border-top: 1px solid var(--sand);
    box-shadow: 0 8px 30px rgba(26, 23, 20, 0.1);
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--sand);
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .header-inner {
    position: relative;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -24px;
    right: -24px;
  }

  .hero {
    padding: 100px 20px 80px;
  }

  .popup-card {
    padding: 44px 20px 28px;
  }

  .popup-discount {
    font-size: 56px;
  }
}
