:root {
  --color-primary: #1E1E1E;
  --color-bg: #F8F6F1;
  --color-accent: #C49A6C;
  --color-accent-secondary: #4A6B8C;
  --color-bg-dark: #2F201C;
  --color-white: #FFFFFF;
  --color-text: #1E1E1E;
  --color-text-light: #6B6560;
  --color-border: #E0DCD6;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-16 { margin-top: 16px; }
.mb-48 { margin-bottom: 48px; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }

.error-section {
  padding-top: calc(var(--nav-height) + 120px);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 10vw, 8rem);
  color: var(--color-accent);
  line-height: 1;
}

.offer-card-dark {
  background: transparent !important;
  border-color: rgba(255,255,255,0.15) !important;
}

.offer-card-title {
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.badge-tau {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-bg);
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
  margin-top: 12px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: 52px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.nav-links a.active {
  color: var(--color-primary);
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
}

.nav-links a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}

.nav-whatsapp:hover {
  opacity: 0.9;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.75) 0%, rgba(30,30,30,0.3) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: #B07D4F;
  color: var(--color-white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-primary);
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: var(--color-white);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.category-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .category-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-dark);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.category-card-overlay h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-white);
}

.category-card-overlay span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== TEXTURE SECTION (signature) ===== */
.texture-section {
  position: relative;
  overflow: hidden;
}

.texture-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(196, 154, 108, 0.04) 40px,
      rgba(196, 154, 108, 0.04) 41px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(196, 154, 108, 0.03) 60px,
      rgba(196, 154, 108, 0.03) 61px
    );
  z-index: 0;
}

.texture-section > * {
  position: relative;
  z-index: 1;
}

/* ===== OFFER GRID ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.offer-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.offer-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.offer-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.offer-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.section-dark .faq-item {
  border-color: rgba(255,255,255,0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  color: var(--color-text);
  gap: 16px;
}

.section-dark .faq-question {
  color: var(--color-white);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.section-dark .faq-answer-inner {
  color: rgba(255,255,255,0.75);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto 32px;
}

.section-dark .cta-section p {
  color: rgba(255,255,255,0.7);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--color-text);
}

.section-dark .form-group label {
  color: var(--color-white);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.85rem;
  line-height: 1.5;
}

.section-dark .form-checkbox {
  color: rgba(255,255,255,0.8);
}

/* ===== FORM RESPONSE ===== */
.form-response {
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

.form-response-success {
  background: rgba(37, 211, 102, 0.15);
  color: #1DA851;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-response-error {
  background: rgba(207, 46, 46, 0.12);
  color: #CF2E2E;
  border: 1px solid rgba(207, 46, 46, 0.25);
}

.page-hero-sm {
  min-height: 40vh;
}

/* ===== COCINAS PAGE SPECIFIC ===== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

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

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* ===== VIDEO + TEXT SECTION ===== */
.video-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: #000;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.video-poster:hover img {
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.75);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
}

.video-poster:hover .video-play-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--color-white);
}

.video-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== PREMIUM GALLERY ===== */
.gallery-grid-premium {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.gallery-grid-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.gallery-grid-premium img:hover {
  transform: scale(1.02);
}

.gallery-hero {
  grid-row: span 2;
}

.gallery-hero img {
  height: 100%;
  min-height: 400px;
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-side img {
  flex: 1;
  min-height: 190px;
}

.gallery-full {
  grid-column: 1 / -1;
}

.gallery-full img {
  max-height: 400px;
}

.gallery-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-row img {
  max-height: 320px;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-column-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.two-column-text p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.two-column-image img {
  width: 100%;
  border-radius: 12px;
}

/* ===== CONTACT PAGE ===== */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-channel-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.3s;
}

.contact-channel-card:hover {
  transform: translateY(-4px);
}

.contact-channel-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-channel-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-channel-card p,
.contact-channel-card a {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.contact-channel-card .btn {
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 50px;
  width: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a,
.footer-credit-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover,
.footer-credit-link:hover {
  color: var(--color-white);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float-tooltip {
  background: var(--color-white);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--color-accent);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--color-white);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
  padding: 0 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 2px solid var(--color-accent);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
}

.cookie-banner-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 600px;
}

.cookie-banner-link {
  font-size: 0.85rem;
  color: var(--color-primary);
  text-decoration: underline;
  margin-top: 4px;
  display: inline-block;
  font-weight: 600;
}

.cookie-banner-link:hover {
  color: var(--color-accent);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.cookie-btn-primary:hover {
  background: #B07D4F;
  color: var(--color-white);
}

.cookie-btn-ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.cookie-btn-ghost:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.legal-page {
  padding-top: calc(var(--nav-height) + 60px);
}

.legal-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

/* ===== LEGAL CONTENT ===== */
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 12px 0 20px;
  padding-left: 24px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-primary);
}

.cookie-table {
  overflow-x: auto;
  margin: 24px 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--color-bg);
  color: var(--color-primary);
}

.cookie-table td {
  color: var(--color-text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-channels {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-text-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .gallery-hero {
    grid-row: auto;
  }

  .gallery-hero img {
    min-height: 250px;
  }

  .gallery-side img {
    min-height: 150px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
  }

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

  .nav-whatsapp {
    display: none;
  }

  .nav-whatsapp-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 8px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

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

  .video-text-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .gallery-hero {
    grid-row: auto;
  }

  .gallery-hero img {
    min-height: 200px;
  }

  .gallery-side img {
    min-height: 150px;
  }

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

  .contact-channels {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cookie-banner-text p {
    max-width: none;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .nav-whatsapp-mobile {
    display: none;
  }
}
