/* =============================================
   DESIGN TOKENS — exact values from Figma Make
   ============================================= */
:root {
  /* Colors */
  --background:          #FAF9F6;
  --foreground:          #1A1916;
  --card:                #FFFFFF;
  --primary:             #1C2B3A;
  --primary-foreground:  #FAF9F6;
  --secondary:           #F0EDE6;
  --muted:               #EDE9E1;
  --muted-foreground:    #7A7060;
  --accent:              #4A7C6F;
  --accent-bg:           rgba(74, 124, 111, 0.10);
  --border:              rgba(26, 25, 22, 0.10);
  --border-solid:        #E5E2DB;
  --input-bg:            #F0EDE6;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-sm:  0.5rem;    /* 8px  */
  --radius-md:  0.75rem;   /* 12px */
  --radius-lg:  1rem;      /* 16px */
  --radius-xl:  1.25rem;   /* 20px */
  --radius-2xl: 1.5rem;    /* 24px — cards */
  --radius-full: 9999px;   /* pill */

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);

  /* Layout */
  --nav-h:      64px;
  --container:  1152px;
  --section-py: 96px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
textarea { resize: none; }

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

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.eyebrow--accent { color: var(--accent); }

.eyebrow__line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.eyebrow--center {
  display: flex;
  justify-content: center;
}

/* Headings */
h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--foreground);
}

h2 em {
  font-style: italic;
  font-weight: 400;
}

h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn--primary:hover { opacity: 0.88; }

.btn--ghost {
  background: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--border-solid);
}

.btn--ghost:hover { background: var(--secondary); }

.btn--full { width: 100%; }

.btn--icon { gap: 6px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.navbar.scrolled {
  border-color: var(--border);
}

.navbar__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar__logo-icon {
  font-size: 20px;
  color: var(--accent);
}

.navbar__logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.navbar__nav a {
  font-size: 14px;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.navbar__nav a:hover { color: var(--foreground); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.navbar__phone {
  font-size: 14px;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.navbar__phone:hover { color: var(--foreground); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.navbar__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
}

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

/* Mobile dropdown */
.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.navbar__mobile.open { display: flex; }

.navbar__mobile a {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.navbar__mobile a:hover { color: var(--foreground); }

.navbar__mobile .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 96px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero__desc {
  font-size: 18px;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 400px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero__stat-val {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.hero__divider {
  width: 1px;
  height: 40px;
  background: var(--border-solid);
  flex-shrink: 0;
}

/* Hero image */
.hero__visual {
  position: relative;
}

.hero__img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--secondary);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* Badge */
.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 3px;
}

.hero__badge-sub {
  font-size: 12px;
  color: var(--muted-foreground);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: var(--section-py) 0;
  background: var(--secondary);
}

.services__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
}

.services__title {
  font-size: clamp(36px, 4vw, 48px);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.service-card:hover { box-shadow: var(--shadow-md); }

.service-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-card__icon {
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 18px;
  margin: 0;
}

.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background: var(--muted);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  align-self: flex-start;
}

.service-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s ease;
  align-self: flex-start;
}

.service-card:hover .service-card__link { gap: 10px; }

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: var(--section-py) 0;
  background: var(--background);
}

.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

/* Horizontal connector line */
.process__line {
  position: absolute;
  top: 32px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 1px;
  background: var(--border-solid);
  pointer-events: none;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__num {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(74, 124, 111, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  background: var(--background);
  margin: 0 auto 24px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.process__step:hover .process__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.process__step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process__step p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* =============================================
   HIGHLIGHT BAND
   ============================================= */
.band {
  background: var(--primary);
  padding: var(--section-py) 0;
}

.band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.band__left h2 {
  color: #fff;
  margin-bottom: 16px;
}

.band__left h2 em {
  color: rgba(255,255,255,0.65);
}

.band__left p {
  font-size: 16px;
  color: rgba(250, 249, 246, 0.65);
  line-height: 1.7;
}

.band__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.band__stat {
  border: 1px solid rgba(250, 249, 246, 0.10);
  border-radius: var(--radius-xl);
  padding: 20px;
}

.band__stat-val {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.band__stat-label {
  font-size: 13px;
  color: rgba(250, 249, 246, 0.55);
  line-height: 1.4;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--background);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--foreground);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
  background: var(--secondary);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 2px;
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--muted-foreground);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: var(--section-py) 0;
  background: var(--secondary);
}

.faq__inner {}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq__question:hover { color: var(--accent); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.faq__item.open .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq__answer.open { max-height: 240px; }

.faq__answer p {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: var(--section-py) 0;
  background: var(--background);
}

.contact__header {
  text-align: center;
  margin-bottom: 56px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact__form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 32px;
}

.contact__form-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact__form-sub {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 32px;
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--foreground);
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122, 112, 96, 0.5); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(74, 124, 111, 0.50);
  box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.12);
}

/* Custom select */
.select-wrap {
  position: relative;
}

.select-wrap select {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--foreground);
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 12px 40px 12px 16px;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.select-wrap select:focus {
  border-color: rgba(74, 124, 111, 0.50);
  box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.12);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted-foreground);
}

/* Contact info cards */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s;
}

.contact__info-card:hover { box-shadow: var(--shadow-sm); }

.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--accent-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-sup {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 2px;
}

.contact__info-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 4px;
}

.contact__info-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.contact__map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 220px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--accent-bg);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  font-size: 13px;
  color: var(--muted-foreground);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 13px;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--foreground); }

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

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

  .contact__inner {
    gap: 32px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --nav-h: 60px;
  }

  /* Navbar */
  .navbar__nav,
  .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 72px;
  }

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

  .hero__visual { order: -1; }

  .hero__title { font-size: clamp(40px, 9vw, 56px); }

  .hero__desc { font-size: 16px; max-width: 100%; }

  .hero__badge {
    bottom: -16px;
    left: 16px;
  }

  /* Services */
  .services__grid { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process__steps { grid-template-columns: 1fr; gap: 32px; }
  .process__line  { display: none; }

  /* Band */
  .band__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer__links { justify-content: center; }
  .footer__social { justify-content: center; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .hero__stats { gap: 16px; }
  .hero__stat-val { font-size: 20px; }

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

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

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

  .contact__form-wrap { padding: 24px 20px; }
}

/* =============================================
   LOGO IMAGEN
   ============================================= */
.navbar__logo-img {
  height: 150px;
  width: auto;
  display: block;
}

/* =============================================
   HERO — overrides
   ============================================= */
.hero__stat-val {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__img {
  transform: scale(1.18);
  transform-origin: center 30%;
}

/* =============================================
   BACKGROUNDS — patrón alternante
   Hero        → --background  (#FAF9F6)
   Servicios   → --card        (#FFFFFF)
   Galería     → --secondary   (#F0EDE6)
   Proceso     → --background  (#FAF9F6)
   Band        → --primary     (#1C2B3A)
   Testimonios → --card        (#FFFFFF)
   FAQ         → --secondary   (#F0EDE6)
   Contacto    → --background  (#FAF9F6)
   ============================================= */
.services     { background: var(--card); }
.gallery      { background: var(--secondary); }
.testimonials { background: var(--card); }

/* =============================================
   SERVICIOS — header
   ============================================= */
.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 52px;
}

/* =============================================
   SERVICE CARDS — sc3
   ============================================= */
.sc3-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sc3 {
  background: var(--background);
  border: 1px solid var(--border-solid);
  border-radius: 20px;
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
  cursor: default;
}

.sc3::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px; right: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.28s ease, left 0.28s ease, right 0.28s ease;
}

.sc3:hover {
  box-shadow: 0 8px 28px rgba(26, 25, 22, 0.09);
  transform: translateY(-4px);
  border-color: transparent;
}

.sc3:hover::before {
  opacity: 1;
  left: 0;
  right: 0;
}

.sc3__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sc3__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.sc3:hover .sc3__icon-wrap {
  background: var(--accent);
  color: #fff;
}

.sc3__head-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sc3__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

.sc3__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 0;
}

.sc3__desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.sc3__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sc3__pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sc3__pills span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background: var(--muted);
  border-radius: 100px;
  padding: 4px 9px;
  white-space: nowrap;
}

.sc3__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.22s ease;
}

.sc3:hover .sc3__link { gap: 8px; }

/* =============================================
   WEDDING CARD
   ============================================= */
.wedding-card {
  margin-top: 20px;
  background: var(--primary);
  border-radius: 1.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.wedding-card__left {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.wedding-card__left h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.wedding-card__left p {
  font-size: 15px;
  color: rgba(250, 249, 246, 0.9);
  line-height: 1.7;
}

.wedding-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wedding-card__badges span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(250, 249, 246, 0.8);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 100px;
}

.wedding-card__right {
  position: relative;
  min-height: 360px;
}

.wedding-card__img-wrap {
  position: absolute;
  inset: 0;
}

.wedding-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  opacity: 0.75;
}

.wedding-card__left .eyebrow--accent {
  color: rgba(250, 249, 246, 0.6);
}

/* =============================================
   GALLERY — Nuestra tienda
   ============================================= */
.gallery {
  padding: var(--section-py) 0;
}

.gallery__header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery__header h2 { margin-bottom: 8px; }

.gallery__header p {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 400px;
  margin: 8px auto 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.gallery__main {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

.gallery__thumb {
  flex: 1;
  border-radius: 1.25rem;
  overflow: hidden;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background: var(--muted);
  border: 2px dashed var(--border-solid);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted-foreground);
  text-align: center;
  padding: 20px;
}

.gallery__placeholder span {
  font-size: 24px;
  color: var(--accent);
  opacity: 0.5;
}

.gallery__placeholder p {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* =============================================
   TESTIMONIOS — avatar
   ============================================= */
.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-card__initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-card__initials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   BAND — números visibles sobre fondo oscuro
   ============================================= */
.band__stat-val {
  color: var(--primary-foreground);
  font-weight: 700;
}

/* =============================================
   RESPONSIVE — nuevos componentes
   ============================================= */
@media (max-width: 1024px) {
  .wedding-card          { grid-template-columns: 1fr; }
  .wedding-card__left    { padding: 32px 24px; }
  .wedding-card__right   { min-height: 220px; }
  .gallery__grid         { grid-template-columns: 1fr; }
  .gallery__side         { flex-direction: row; }
  .gallery__thumb        { flex: 1; }
  .gallery__placeholder  { min-height: 120px; }
}

@media (max-width: 480px) {
  .sc3-grid              { grid-template-columns: 1fr; }
  .wedding-card__badges  { flex-direction: column; align-items: flex-start; }
  .gallery__side         { flex-direction: column; }
}

/* =============================================
   BOTÓN PEQUEÑO
   ============================================= */
.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* =============================================
   FOOTER — iconos sociales
   ============================================= */
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer__social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-bg);
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--primary);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.cookie-banner__text { flex: 1; min-width: 0; }

.cookie-banner__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.cookie-banner__text p {
  font-size: 13px;
  color: rgba(250, 249, 246, 0.7);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: rgba(250, 249, 246, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn--ghost {
  color: rgba(250, 249, 246, 0.8);
  border-color: rgba(250, 249, 246, 0.3);
  background: transparent;
}

.cookie-banner__actions .btn--ghost:hover {
  background: rgba(250, 249, 246, 0.1);
  color: #fff;
  border-color: rgba(250, 249, 246, 0.5);
}

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* =============================================
   PÁGINAS LEGALES
   ============================================= */
.legal-page {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 96px;
  min-height: 70vh;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 6px;
}

.legal-page .legal-updated {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 56px;
  display: block;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--foreground);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
