/* ═══════════════════════════════════════════════════════
   INTERIORISTA ESTUDIO VALENCIA — Barrios v2 "Casa Mediterránea"
   Typography: Cormorant Garamond + DM Sans
   Palette: Terracotta · Sand · Gold · Cream
═══════════════════════════════════════════════════════ */

:root {
  --cream:    #FAF7F2;
  --sand:     #EDE4D5;
  --sand-d:   #D9CAB8;
  --terra:    #7A3820;
  --terra-l:  #A8522E;
  --terra-xl: #C87B50;
  --gold:     #BF9550;
  --gold-l:   #D4B472;
  --dark:     #1A1210;
  --mid:      #3D2B22;
  --muted:    #8C7A6E;
  --white:    #FFFFFF;
  --border:   rgba(122,56,32,.14);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w:    1160px;
  --nav-h:    72px;
  --radius:   3px;
  --radius-lg:12px;
  --shadow:   0 4px 32px rgba(26,18,16,.07);
  --shadow-lg:0 16px 64px rgba(26,18,16,.13);
  --trans:    .3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 96px; }
.section--light  { background: var(--white); }
.section--warm   { background: var(--cream); }
.section--sand   { background: var(--sand); }
.section--dark   { background: var(--dark); }
.section--contact{ background: var(--dark); }

.section-header { margin-bottom: 64px; }
.section-header p { max-width: 540px; color: var(--muted); margin-top: 14px; font-size: .95rem; line-height: 1.75; }
.section-header--center { text-align: center; }
.section-header--center p { margin-inline: auto; }
.section-header--light h2 { color: var(--cream); }
.section-header--light .eyebrow { color: var(--gold-l); }
.section-header--light .eyebrow::before { background: var(--gold-l); }
.section-header--light p { color: rgba(250,247,242,.6); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--terra-l);
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: currentColor; }
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }
.eyebrow--light { color: var(--gold-l); }
.eyebrow--light::before { background: var(--gold-l); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); color: var(--white); margin-bottom: 20px; }
h1 em { font-style: italic; color: var(--terra-xl); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--dark); margin-bottom: 14px; }
h2 em { font-style: italic; color: var(--terra-l); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); color: var(--dark); margin-bottom: 8px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all var(--trans); white-space: nowrap; cursor: pointer;
}
.btn--primary {
  background: var(--terra); color: var(--white); border-color: var(--terra);
}
.btn--primary:hover { background: var(--terra-l); border-color: var(--terra-l); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(122,56,32,.3); }
.btn--ghost {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.85); }
.btn--ghost-dark {
  background: transparent; color: var(--terra); border-color: var(--terra);
}
.btn--ghost-dark:hover { background: var(--terra); color: var(--white); }
.btn--hero-primary {
  background: var(--white); color: var(--dark); border-color: var(--white); font-size: .8rem; padding: 16px 32px;
}
.btn--hero-primary:hover { background: var(--terra-xl); border-color: var(--terra-xl); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.btn--phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: transparent; color: var(--white);
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.5); border-radius: var(--radius);
  transition: all var(--trans);
}
.btn--phone:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.85); transform: translateY(-1px); }
.btn--phone.btn--full { width: 100%; justify-content: center; }
.btn--submit {
  width: 100%; justify-content: center; background: var(--terra);
  color: var(--white); border: none; font-size: .85rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; padding: 17px 32px;
  border-radius: var(--radius); transition: all var(--trans); cursor: pointer;
  display: inline-flex; align-items: center;
}
.btn--submit:hover:not(:disabled) { background: var(--terra-l); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(122,56,32,.3); }
.btn--submit:disabled { opacity: .6; cursor: not-allowed; }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { font-size: .9rem; padding: 16px 36px; }
.btn-nav {
  display: none; padding: 10px 20px; background: var(--dark); color: var(--white);
  font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; border-radius: var(--radius); transition: background var(--trans);
}
.btn-nav:hover { background: var(--terra); }
.btn-mobile {
  display: block; width: 100%; text-align: center; padding: 14px;
  background: var(--terra); color: var(--white);
  font-size: .85rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  border-radius: var(--radius);
}

/* ── NAVIGATION ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .45s ease, border-color .45s ease, box-shadow .45s ease;
}
#header.scrolled {
  background: rgba(250,247,242,.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(26,18,16,.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Transparent state: white elements */
#header:not(.scrolled) .nav__logo-img { filter: brightness(0) invert(1); }
#header:not(.scrolled) .nav__links a { color: rgba(255,255,255,.78); }
#header:not(.scrolled) .nav__links a:hover { color: var(--white); }
#header:not(.scrolled) .nav__links a::after { background: var(--gold); }
#header:not(.scrolled) .nav__dropdown-menu a { color: var(--dark); }
#header:not(.scrolled) .nav__dropdown-menu a:hover { color: var(--terra); }
#header:not(.scrolled) .nav__dropdown-toggle { color: rgba(255,255,255,.78); }
#header:not(.scrolled) .nav__dropdown-toggle:hover { color: var(--white); }
#header:not(.scrolled) .nav__burger span { background: var(--white); }
#header:not(.scrolled) .nav__phone { color: rgba(255,255,255,.8); }
#header:not(.scrolled) .nav__phone:hover { color: var(--white); }
#header:not(.scrolled) .nav__cta { background: var(--gold); border-color: var(--gold); }
#header:not(.scrolled) .nav__cta:hover { background: var(--gold-l); border-color: var(--gold-l); }

.nav { display: flex; align-items: center; height: var(--nav-h); gap: 0; }
.nav__logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav__logo-img { height: 36px; width: auto; object-fit: contain; transition: filter .45s ease; }
.nav__links { display: none; gap: 24px; list-style: none; margin-inline: auto; justify-content: center; align-items: center; }
.nav__links > li { display: flex; align-items: center; }
.nav__links a {
  font-size: .7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); transition: color var(--trans); padding-block: 4px; position: relative;
}
.nav__links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--terra); transition: width var(--trans); }
.nav__links a:hover { color: var(--terra); }
.nav__links a:hover::after { width: 100%; }

.nav__right { display: none; align-items: center; gap: 16px; flex-shrink: 0; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 500; color: var(--muted);
  white-space: nowrap; transition: color var(--trans);
}
.nav__phone svg { flex-shrink: 0; }
.nav__phone:hover { color: var(--terra); }
.nav__cta {
  background: var(--gold); color: var(--white); border-color: var(--gold);
  border-radius: var(--radius); font-size: .75rem; padding: 12px 24px;
  transition: background var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap; display: inline-flex; align-items: center; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; border: 1.5px solid transparent;
}
.nav__cta:hover { background: var(--gold-l); border-color: var(--gold-l); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(191,149,80,.35); }

.nav__has-dropdown { position: relative; }
.nav__dropdown-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); background: none; border: none; padding: 4px 0; cursor: pointer; transition: color var(--trans);
}
.nav__dropdown-toggle:hover { color: var(--terra); }
.nav__dropdown-toggle svg { transition: transform var(--trans); }
.nav__has-dropdown.is-open .nav__dropdown-toggle { color: var(--terra); }
.nav__has-dropdown.is-open .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 230px; padding: 8px 0; z-index: 200;
}
.nav__dropdown-menu::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav__has-dropdown.is-open .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block; padding: 10px 20px; font-size: .82rem; font-weight: 500;
  color: var(--dark); transition: background var(--trans), color var(--trans); letter-spacing: 0; text-transform: none;
}
.nav__dropdown-menu a:hover { background: var(--sand); color: var(--terra); }
.nav__dropdown-all { border-top: 1px solid var(--border); margin-top: 4px; font-weight: 700 !important; color: var(--terra) !important; }

.nav__burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; margin-left: auto; flex-shrink: 0; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--dark); border-radius: 2px; transition: all var(--trans); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__mobile { background: var(--cream); border-top: 1px solid var(--border); padding: 20px 24px; }
.nav__mobile[hidden] { display: none; }
.nav__mobile ul { display: flex; flex-direction: column; margin-bottom: 16px; }
.nav__mobile ul li a { display: block; padding: 13px 0; font-size: .9rem; font-weight: 500; color: var(--dark); border-bottom: 1px solid var(--border); transition: color var(--trans); }
.nav__mobile ul li a:hover { color: var(--terra); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--sand); padding: 10px 0; border-bottom: 1px solid var(--border); }
.breadcrumb__inner { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted); flex-wrap: wrap; }
.breadcrumb__inner a { color: var(--terra-l); transition: color var(--trans); }
.breadcrumb__inner a:hover { color: var(--terra); text-decoration: underline; }
.breadcrumb__sep { opacity: .4; font-size: .7rem; }

/* ── HERO BARRIO ── */
.hero-barrio {
  position: relative; min-height: 76vh; display: flex;
  align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.hero-barrio__bg { position: absolute; inset: 0; }
.hero-barrio__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,16,.62) 0%, rgba(26,18,16,.45) 55%, rgba(26,18,16,.72) 100%);
}
.hero-barrio__content { position: relative; z-index: 2; max-width: 860px; padding: calc(var(--nav-h) + 48px) 24px 48px; }
.hero-barrio__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .65rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 20px;
}
.hero-barrio__eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero-barrio__sub {
  font-size: clamp(.9rem, 1.8vw, 1.05rem); color: rgba(250,247,242,.8);
  max-width: 600px; margin-inline: auto; margin-bottom: 36px; line-height: 1.75;
}
.hero-barrio__sub strong { color: var(--white); font-weight: 600; }
.hero-barrio__actions { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-bottom: 44px; }
.hero-barrio__proof {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  border: 1px solid rgba(191,149,80,.3); border-radius: var(--radius); overflow: hidden;
}
.proof-item { padding: 14px 24px; text-align: center; border-right: 1px solid rgba(191,149,80,.2); }
.proof-item:last-child { border-right: none; }
.proof-item strong { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 4px; }
.proof-item span { font-size: .62rem; color: rgba(250,247,242,.55); letter-spacing: 1.5px; text-transform: uppercase; }
.proof-divider { display: none; }

/* ── INTRO LOCAL ── */
.intro-local { padding-block: 80px; }
.intro-local__grid { display: grid; gap: 40px; align-items: start; }
.intro-local__text p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.intro-local__cta-box {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.intro-local__cta-box p { font-size: .9rem; color: var(--muted); }
.intro-local__cta-box strong { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--dark); margin-bottom: 4px; }

/* ── TRUST BLOCK ── */
.trust-section { padding-block: 0 80px; }
.trust-block {
  background: var(--dark); border-radius: var(--radius-lg); padding: 48px 40px;
  position: relative; overflow: hidden;
}
.trust-block::before {
  content: '"'; position: absolute; top: -20px; left: 20px;
  font-family: var(--serif); font-size: 180px; color: rgba(250,247,242,.04);
  line-height: 1; pointer-events: none;
}
.trust-block__label {
  font-size: .68rem; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold-l); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.trust-block__label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.trust-block__text {
  font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(250,247,242,.88); line-height: 1.75; margin-bottom: 32px; font-style: italic;
}
.trust-block__items { display: grid; gap: 14px; }
.trust-block__item { display: flex; align-items: flex-start; gap: 14px; font-size: .9rem; color: rgba(250,247,242,.72); }
.trust-block__item-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── SERVICES GRID (barrio version – icon cards) ── */
.services-grid { display: grid; gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon { color: var(--terra); margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.service-card__link { font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--terra-l); transition: color var(--trans); }
.service-card__link:hover { color: var(--terra); }

/* ── PROCESS LIST (barrio version – vertical+horizontal) ── */
.process-list { display: flex; flex-direction: column; margin-bottom: 48px; }
.process-item {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.process-item:last-child { border-bottom: none; }
.process-item__num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  color: var(--sand-d); flex-shrink: 0; width: 52px; line-height: 1;
  transition: color var(--trans);
}
.process-item:hover .process-item__num { color: var(--terra-xl); }
.process-item h3 { margin-bottom: 5px; }
.process-item p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; gap: 20px; }
.testimonial {
  background: rgba(255,255,255,.07); border: 1px solid rgba(250,247,242,.1);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: background var(--trans);
}
.testimonial:hover { background: rgba(255,255,255,.11); }
.testimonial--featured { background: rgba(250,247,242,.12); border-color: rgba(250,247,242,.2); }
.testimonial__stars { font-size: 15px; color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; }
.testimonial p {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: rgba(250,247,242,.85); line-height: 1.75; margin-bottom: 20px;
}
.testimonial footer strong { display: block; font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.testimonial footer span { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-l); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none;
  font-family: var(--sans); font-size: .95rem; font-weight: 600; color: var(--dark);
  text-align: left; cursor: pointer; transition: color var(--trans);
}
.faq-question:hover { color: var(--terra); }
.faq-question svg { flex-shrink: 0; transition: transform var(--trans); color: var(--terra-l); }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: .92rem; color: var(--muted); line-height: 1.8; }
.faq-answer.open { display: block; }

/* ── BARRIOS CHIPS ── */
.barrios-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.barrio-chip {
  display: inline-block; padding: 9px 20px;
  background: var(--cream); border: 1px solid var(--border); border-radius: 24px;
  font-size: .8rem; font-weight: 500; color: var(--dark); transition: all var(--trans);
}
.barrio-chip:hover { background: var(--terra); border-color: var(--terra); color: var(--white); transform: translateY(-2px); }

/* ── CONTACT ── */
.contact-wrapper { display: grid; gap: 48px; }
.contact-info h2 { color: var(--cream); margin-bottom: 12px; }
.contact-info__list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; margin-bottom: 24px; }
.contact-info__list li { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: rgba(250,247,242,.72); }
.contact-info__list li svg { color: var(--gold); flex-shrink: 0; }
.contact-info__list a { color: rgba(250,247,242,.88); transition: color var(--trans); }
.contact-info__list a:hover { color: var(--gold-l); }
.contact-trust { display: flex; flex-direction: column; gap: 8px; font-size: .78rem; color: rgba(250,247,242,.4); }
.contact-form-wrap {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 24px; color: var(--dark); }
.form-row { display: grid; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .5px; color: var(--dark); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .92rem; color: var(--dark); background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans); outline: none; -webkit-appearance: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--terra); box-shadow: 0 0 0 3px rgba(122,56,32,.10);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field--check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-field--check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--terra); }
.form-field--check label { font-size: .78rem; color: var(--muted); font-weight: 400; margin-bottom: 0; }
.form-field--check a { color: var(--terra-l); text-decoration: underline; }
.form-note { text-align: center; font-size: .75rem; color: var(--muted); margin-top: 10px; }
.form-msg { text-align: center; font-size: .88rem; font-weight: 600; min-height: 20px; margin-top: 8px; padding: 10px; border-radius: var(--radius); }
.form-msg.success { background: #e8f5e9; color: #2e7d32; }
.form-msg.error { background: #fdecea; color: #c62828; }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(250,247,242,.55); }
.footer__grid { display: grid; gap: 36px; padding-top: 56px; padding-bottom: 36px; }
.footer__brand p { font-size: .82rem; line-height: 1.75; color: rgba(250,247,242,.38); margin: 12px 0; }
.footer__address { font-size: .82rem; color: rgba(250,247,242,.38); line-height: 1.85; }
.footer__address a { color: rgba(250,247,242,.5); transition: color var(--trans); }
.footer__address a:hover { color: var(--gold-l); }
.footer__logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: .6; }
.footer__col h4 {
  font-family: var(--sans); font-size: .65rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(250,247,242,.75); margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col ul li a { font-size: .82rem; color: rgba(250,247,242,.4); transition: color var(--trans); }
.footer__col ul li a:hover { color: var(--gold-l); }
.footer__bottom {
  border-top: 1px solid rgba(250,247,242,.07); padding-block: 20px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: .75rem; color: rgba(250,247,242,.28); text-align: center;
}
.footer__legal { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.footer__legal a { font-size: .75rem; color: rgba(250,247,242,.28); transition: color var(--trans); }
.footer__legal a:hover { color: var(--gold-l); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MEDIA QUERIES ── */
@media (min-width: 640px) {
  .hero-barrio__actions { flex-direction: row; justify-content: center; }
  .proof-item { padding-inline: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 900px) {
  .section { padding-block: 96px; }
  .nav__links { display: flex; }
  .nav__right { display: flex; }
  .nav__burger { display: none; }
  /* Dropdown opens on hover on desktop */
  .nav__has-dropdown:hover .nav__dropdown-menu { display: block; }
  .nav__has-dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
  .intro-local__grid { grid-template-columns: 1.6fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
  .trust-block__items { grid-template-columns: 1fr 1fr; }
  .process-list {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    flex-direction: unset;
  }
  .process-item {
    flex-direction: column; border-bottom: none;
    border-right: 1px solid var(--border); padding: 0 28px 0 0;
  }
  .process-item:last-child { border-right: none; }
  .process-item__num { margin-bottom: 14px; }
}
