/* ============================================
   ATELIER — Landing
   Paleta:  --dark #2c2118  --cream #f3ece1  --gold #c9a173  --ink #1a1410
   Tipos:   Cormorant Garamond (display) · Montserrat (UI)
============================================ */

:root {
  --dark: #2c2118;
  --dark-2: #3a2c1f;
  --cream: #f3ece1;
  --cream-2: #ece2d2;
  --gold: #c9a173;
  --gold-soft: #d9b98f;
  --ink: #1a1410;
  --muted: #7a6a58;
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(0,0,0,0.10);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Montserrat", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(48px, 6vw, 88px); letter-spacing: -0.5px; }
h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.3px; }
h3 { font-size: 20px; font-weight: 500; }
em { font-style: italic; font-weight: 400; color: inherit; }

.section-head {
  margin-bottom: 60px;
}
.section-head.center { text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-soft); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

.btn-link {
  background: none;
  color: #fff;
  letter-spacing: 0.22em;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  border-radius: 0;
}
.btn-link:hover { border-bottom-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 11px 22px; font-size: 11px; }

/* Round nav buttons (carousel) */
.circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.circle-btn:hover { background: rgba(201,161,115,0.1); }
.circle-btn-filled { background: var(--gold); color: #fff; }
.circle-btn-filled:hover { background: var(--gold-soft); }

/* ---------- Image placeholders (replace with real <img>) ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    linear-gradient(135deg, #d8cdb9 0%, #b8a78c 100%);
  border-radius: 2px;
  overflow: hidden;
}
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.logo img {
  display: block;
  height: 68px;
  width: auto;
}
.logo-light img {
  height: 78px;
}

/* ============ HEADER ============ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 22px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-main ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0; padding: 0;
}
.nav-main a {
  color: rgba(255,255,255,0.85);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: capitalize;
}
.nav-main a:hover { color: #1a1a1a; }
.nav-cta-mobile { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 60;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: #fff;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.legal-page .nav-toggle span,
body.nav-open .nav-toggle span { background: #fff; }
body.nav-open .nav-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.site-header .btn {
  background: #261C19;
  color: #fff;
  border-color: #261C19;
}
.site-header .btn:hover {
  background: #3a2c25;
  border-color: #3a2c25;
}

/* ============ HERO ============ */
.hero {
  background: var(--dark) url('assets/bghero.png') center/cover no-repeat;
  color: #fff;
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: end;
  min-height: 640px;
}
.hero-copy {
  max-width: 680px;
  padding-bottom: 80px;
}
.hero-image {
  align-self: end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.hero-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: #fff;
}
.hero-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 64px;
  height: 1px;
  background: #fff;
}
.hero-copy h1 {
  margin: 0 0 28px;
  color: #261C19;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
}
.hero-copy h1 em {
  display: inline-block;
  color: #fff;
}
.hero-text {
  max-width: 460px;
  color: #F9F9F9;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
}
.hero-actions .btn {
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.hero-actions .btn-link {
  padding: 12px 4px;
}
.hero-actions .btn-primary {
  background: #261C19;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
}
.hero-actions .btn-primary:hover {
  background: #3a2c25;
}
.hero-actions .btn-link {
  background: transparent;
  color: #261C19;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  border-bottom-color: #261C19;
}
.hero-actions .btn-link:hover {
  color: #261C19;
  border-bottom-color: #261C19;
}
/* ============ MÉTODO ============ */
.method {
  background: #FAF9F6;
  padding: 110px 0;
}
.method .eyebrow,
.director .eyebrow,
.gallery .eyebrow {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #C5A880;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.method h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: #261C19;
}
.method .lead {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #3A2E2A;
}
.method-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.method-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.method-steps li {
  position: relative;
  z-index: 1;
  text-align: left;
}
.method-steps li:nth-child(2),
.method-steps li:nth-child(4) {
  margin-top: 32px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E8E1D1;
  color: #C5A880;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}
.method-steps h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #261C19;
}
.method-steps p {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: #3A2E2A;
  margin: 0;
}

/* ============ ESPECIALIZACIÓN ============ */
.services {
  padding: 110px 0;
  background: #fff;
}
.services .eyebrow {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #C5A880;
  letter-spacing: 0.2em;
}
.services h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.services-image {
  position: relative;
  min-height: 600px;
}
.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  position: absolute;
  inset: 0;
}
.img-square { aspect-ratio: 1 / 1.1; }

.services-carousel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-slides {
  position: relative;
  flex: 1;
}
.services-slide {
  display: none;
}
.services-slide.is-active {
  display: block;
  animation: slideFade .4s ease;
}
@keyframes slideFade {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-item {
  border-bottom: 1px solid var(--line-dark);
}
.services-item-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
}
.services-num {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 14px;
  color: #C5A880;
  letter-spacing: 0.1em;
  min-width: 24px;
}
.services-item-text h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 4px;
  color: #261C19;
  line-height: 1.25;
}
.services-titular {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: #3A2E2A;
}
.services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  padding: 6px 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: #C5A880;
  text-transform: uppercase;
  transition: color .2s;
}
.services-toggle .toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #C5A880;
  font-size: 14px;
  line-height: 1;
  transition: transform .25s ease, background .2s, color .2s;
}
.services-toggle:hover { color: #261C19; }
.services-toggle:hover .toggle-icon {
  background: #C5A880;
  color: #fff;
  border-color: #C5A880;
}
.services-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
  background: #261C19;
  color: #fff;
  border-color: #261C19;
}

.services-detail {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 42px;
  transition: max-height .4s ease, padding .4s ease, opacity .3s ease;
  opacity: 0;
}
.services-item.is-open .services-detail {
  max-height: 600px;
  padding: 0 0 22px 42px;
  opacity: 1;
}
.services-detail p {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: #3A2E2A;
  margin: 0 0 14px;
  line-height: 1.7;
}
.services-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-points li {
  position: relative;
  padding-left: 16px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #3A2E2A;
  margin-bottom: 6px;
}
.services-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: #C5A880;
}

.services-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
}
.services-counter {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #3A2E2A;
}
.services-counter .current { color: #261C19; font-weight: 500; }

/* ============ QUOTE ============ */
.quote {
  background: #F5F2EF;
  padding: 120px 0;
  text-align: center;
}
.quote-mark {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--gold);
  margin: 0 auto 32px;
  font-size: 0;
}
.quote-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.25;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto 36px;
}
.quote-body {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #3a2e28;
  font-size: 20px;
  line-height: 24px;
  opacity: 0.8;
}

/* ============ DIRECCIÓN TÉCNICA ============ */
.director {
  padding: 110px 0;
  background: #fff;
}
.director-carousel {
  position: relative;
}
.director-slide {
  display: none;
}
.director-slide.is-active {
  display: block;
  animation: slideFade .4s ease;
}
.director-inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}
.director-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.director-slide[data-slide="2"] .director-image img {
  aspect-ratio: 3 / 4;
  object-position: left center;
}
.director-image .img-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 520px;
}
.director-copy .eyebrow {
  margin-bottom: 16px;
  display: inline-block;
}
.director-copy h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  color: #261C19;
  margin-bottom: 6px;
}
.role {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #3a2e2a;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.director-copy p {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #3a2e2a;
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 540px;
}
.director-copy p.role {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.director-nav {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

/* ============ GALERÍA ============ */
.gallery {
  padding: 110px 0 90px;
  background: #faf9f6;
}
.gallery h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  color: #261c19;
}
.gallery .lead {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #3a2e2a;
}
.gallery-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.gallery-item {
  flex: 0 0 auto;
  width: 24%;
  margin: 0 -2.6%;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.95;
  transform: scale(0.92);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.gallery-carousel > .gallery-item:nth-child(1),
.gallery-carousel > .gallery-item:nth-child(5) { z-index: 1; }
.gallery-carousel > .gallery-item:nth-child(2),
.gallery-carousel > .gallery-item:nth-child(4) { z-index: 2; transform: scale(0.96); }
.gallery-carousel > .gallery-item:nth-child(3) {
  width: 28%;
  z-index: 3;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 22px 50px rgba(38, 28, 25, 0.22);
}
.gallery-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ============ FORMULARIO ============ */
.contact {
  background: #261C19;
  padding: 110px 0;
}
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(58, 46, 42, 0.5);
  border: 1px solid rgba(214, 200, 176, 0.2);
  padding: 56px 56px 48px;
  text-align: center;
  border-radius: 2px;
}
.contact-card h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  white-space: nowrap;
  color: #fff;
  margin-bottom: 14px;
}
.contact-sub {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #e8e1d1;
  font-size: 14px;
  margin: 0 auto 36px;
  max-width: 480px;
}
.contact-form { text-align: left; }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 12px;
}
.contact-form .field {
  position: relative;
  display: block;
  padding-top: 18px;
  margin-bottom: 12px;
}
.contact-form .field.full { margin-bottom: 12px; }
.contact-form input,
.contact-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(214, 200, 176, 0.3);
  border-radius: 0;
  color: #fff;
  padding: 12px 0 10px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  outline: none;
  transition: border-color .25s;
}
.contact-form input:focus,
.contact-form select:focus {
  border-bottom-color: #d6c8b0;
}
.contact-form .field span {
  position: absolute;
  left: 0;
  top: 30px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(232, 225, 209, 0.7);
  letter-spacing: normal;
  text-transform: none;
  pointer-events: none;
  transition: top .25s ease, font-size .25s ease, letter-spacing .25s ease, color .25s ease;
}
.contact-form .field input:focus ~ span,
.contact-form .field input:not(:placeholder-shown) ~ span,
.contact-form .field select:focus ~ span,
.contact-form .field select:valid ~ span {
  top: 0;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(232, 225, 209, 0.9);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #d6c8b0 50%), linear-gradient(135deg, #d6c8b0 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 6px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.contact-form select option {
  color: #261C19;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
}
.legal {
  flex: 1;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
  max-width: 380px;
}
.form-actions { flex-shrink: 0; }
.btn-submit {
  background: #C5A880;
  color: #261C19;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  border: 0;
  letter-spacing: 0.18em;
}
.btn-submit:hover {
  background: #d6b78f;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #261C19;
  color: rgba(214, 200, 176, 0.7);
  padding: 70px 0 24px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p {
  color: rgba(214, 200, 176, 0.7);
  margin: 18px 0 22px;
  max-width: 280px;
  font-size: 12.5px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(214, 200, 176, 0.4);
  color: rgba(214, 200, 176, 0.85);
  transition: color .2s, border-color .2s;
}
.socials a:hover {
  border-color: #d6c8b0;
  color: #fff;
}
.socials svg { display: block; }

.footer-col h4 {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: #C5A880;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-col li {
  margin-bottom: 10px;
  color: rgba(214, 200, 176, 0.7);
}
.footer-col li span {
  color: rgba(214, 200, 176, 0.5);
  font-size: 12px;
}
.footer-col a:hover { color: #fff; }

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.reserved {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(214, 200, 176, 0.55);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  color: rgba(214, 200, 176, 0.55);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.footer-bottom a:hover { color: var(--gold); }

/* ============ LEGAL PAGES ============ */
.legal-page .site-header {
  position: relative;
  background: #261C19;
}
.legal-hero {
  background: #261C19;
  color: #fff;
  padding: 60px 0 90px;
  text-align: center;
}
.legal-hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.legal-hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: #fff;
  margin-bottom: 14px;
}
.legal-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.legal-meta {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 225, 209, 0.7);
  margin: 0;
}
.legal-content {
  background: #faf9f6;
  padding: 80px 0 110px;
}
.legal-content .container {
  max-width: 820px;
}
.legal-content .legal-intro {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #3a2e2a;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(38, 28, 25, 0.12);
}
.legal-content h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: 24px;
  color: #261c19;
  margin: 44px 0 16px;
  letter-spacing: -0.2px;
}
.legal-content p,
.legal-content li {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: #3a2e2a;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-content li { margin-bottom: 8px; }
.legal-content strong {
  color: #261c19;
  font-weight: 500;
}
.legal-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 161, 115, 0.4);
  transition: border-color .2s ease;
}
.legal-content a:hover { border-bottom-color: var(--gold); }

/* ============ RESPONSIVE ============ */

/* ---- Tablet ancho ---- */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .hero-inner { gap: 24px; }
  .services-grid { gap: 50px; }
  .director-inner { gap: 50px; }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 30px; }
}

/* ---- Tablet ---- */
@media (max-width: 960px) {
  .header-inner .header-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .header-inner { gap: 16px; }
  .legal-page .site-header { padding: 18px 0; }

  .nav-main {
    position: fixed;
    inset: 0;
    background: #261C19;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 50;
  }
  body.nav-open .nav-main {
    opacity: 1;
    visibility: visible;
  }
  .nav-main ul {
    flex-direction: column;
    gap: 22px;
    text-align: center;
    padding: 20px;
  }
  .nav-main a {
    color: #f3ece1;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
  }
  .nav-main a:hover { color: var(--gold); }
  .nav-cta-mobile {
    display: block;
    margin-top: 14px;
  }
  .nav-cta-mobile a {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .nav-cta-mobile a:hover {
    background: var(--gold);
    color: #fff;
  }
  body.nav-open { overflow: hidden; }

  .hero { padding: 130px 0 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
    padding-top: 0;
  }
  .hero-copy { padding-bottom: 50px; max-width: 100%; }
  .hero-image { display: none; }
  .hero-text { max-width: 100%; }

  .method, .services, .director, .gallery, .contact, .quote { padding: 90px 0; }

  .method-steps { grid-template-columns: 1fr 1fr; gap: 50px 40px; }
  .method-steps::before { display: none; }
  .method-steps li:nth-child(2),
  .method-steps li:nth-child(4) { margin-top: 0; }

  .services-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-image { min-height: 420px; }
  .services-image .img-placeholder { min-height: 360px; }

  .director-inner { grid-template-columns: 1fr; gap: 40px; }
  .director-image img { max-width: 480px; margin: 0 auto; }

  .quote { padding: 90px 0; }
  .quote-title { font-size: clamp(28px, 4.6vw, 40px); }
  .quote-body { font-size: 17px; line-height: 1.55; }

  .gallery-carousel > .gallery-item:nth-child(1),
  .gallery-carousel > .gallery-item:nth-child(5) { display: none; }
  .gallery-carousel > .gallery-item { width: 30%; margin: 0 -2%; }
  .gallery-carousel > .gallery-item:nth-child(3) { width: 40%; }

  .contact-card { padding: 40px 28px; }
  .contact-card h2 { white-space: normal; }
  .row-2 { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .footer-brand { grid-column: 1 / -1; }

  .legal-hero { padding: 50px 0 70px; }
  .legal-content { padding: 60px 0 90px; }
}

/* ---- Móvil ---- */
@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .logo img { height: 56px; }

  .hero { padding: 110px 0 0; }
  .hero-copy { padding-bottom: 40px; }
  .hero-copy h1 { font-size: clamp(40px, 11vw, 60px); margin-bottom: 22px; }
  .hero-copy .eyebrow { margin-bottom: 22px; }
  .hero-copy .eyebrow::before { width: 32px; }
  .hero-text { font-size: 14px; margin-bottom: 28px; }
  .hero-actions { flex-wrap: wrap; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions .btn-link { width: auto; }

  .method, .services, .director, .gallery, .contact, .quote { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .method-steps { grid-template-columns: 1fr; gap: 36px; }
  .step-num { width: 56px; height: 56px; font-size: 20px; margin-bottom: 18px; }

  .services-grid { gap: 40px; }
  .services-image { min-height: 320px; }
  .services-item-head { grid-template-columns: auto 1fr; gap: 12px; }
  .services-toggle {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding-top: 4px;
  }
  .services-toggle .toggle-label { display: none; }
  .services-item-text h3 { font-size: 18px; }

  .quote { padding: 70px 0; }
  .quote-title { font-size: clamp(24px, 6.5vw, 32px); }
  .quote-title br { display: none; }
  .quote-body { font-size: 15px; }

  .director-copy h2 { font-size: clamp(32px, 7vw, 42px); }
  .director-copy .role { font-size: 12px; margin-bottom: 22px; }
  .director-copy p { font-size: 15px; }

  .gallery-carousel > .gallery-item { width: 36%; margin: 0 -2.5%; }
  .gallery-carousel > .gallery-item:nth-child(3) { width: 46%; }

  .contact-card { padding: 32px 22px; }
  .contact-card h2 { font-size: clamp(24px, 6vw, 32px); }
  .form-footer { flex-direction: column; align-items: stretch; gap: 18px; margin-top: 40px; }
  .form-actions { text-align: stretch; }
  .btn-submit { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 20px;
  }

  .legal-hero { padding: 40px 0 60px; }
  .legal-hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .legal-content { padding: 50px 0 70px; }
  .legal-content .legal-intro { font-size: 15px; padding-bottom: 24px; margin-bottom: 36px; }
  .legal-content h2 { font-size: 20px; margin-top: 32px; }
  .legal-content p, .legal-content li { font-size: 14.5px; line-height: 1.7; }
}

/* ---- Móvil pequeño ---- */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .logo img { height: 48px; }
  .logo-light img { height: 60px; }
  .hero-copy h1 { font-size: 38px; }
  .gallery-carousel > .gallery-item { width: 38%; margin: 0 -3%; }
  .gallery-carousel > .gallery-item:nth-child(3) { width: 50%; }
}
