/* ============================================================
   RGS OBRAS Y SERVICIOS — style.css
   Paleta: Navy #0f1923 · Gold #c49a3c · Cream #f8f4ee
   Tipografía: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --navy:   #0f1923;
  --navy2:  #162230;
  --gold:   #c49a3c;
  --goldl:  #e0b84e;
  --cream:  #f8f4ee;
  --white:  #ffffff;
  --gray:   #8a9aaa;
  --grayl:  #e8ecf0;
  --text:   #1e2d3d;
  --r:      8px;
  --shadow: 0 8px 40px rgba(15,25,35,.12);
  --shadow-s: 0 2px 16px rgba(15,25,35,.07);
  --t:      .32s cubic-bezier(.4,0,.2,1);
  --fd:     'Cormorant Garamond', Georgia, serif;
  --fb:     'Outfit', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

.sh { text-align: center; margin-bottom: 52px; }
.sh h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 600;
  color: var(--navy); line-height: 1.2; margin-bottom: 12px;
}
.sh p { color: var(--gray); font-size: .95rem; max-width: 500px; margin: 0 auto; }
.sh.lt h2   { color: #fff; }
.sh.lt p    { color: rgba(255,255,255,.6); }
.sh.lt .tag { color: var(--goldl); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--fb); font-size: .9rem; font-weight: 500;
  padding: 13px 28px; border-radius: var(--r); border: 2px solid transparent;
  cursor: pointer; transition: var(--t); text-align: center;
}
.btn-p { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-p:hover { background: var(--goldl); border-color: var(--goldl); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(196,154,60,.35); }
.btn-g { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-g:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-fw { width: 100%; }

/* ---- HEADER ---- */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background var(--t), box-shadow var(--t);
}
#hdr.sc { background: var(--navy); box-shadow: 0 2px 30px rgba(0,0,0,.35); }

.hdr-in {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; max-width: 1140px; margin: 0 auto;
  transition: padding var(--t);
}
#hdr.sc .hdr-in { padding: 12px 20px; }

.logo { display: flex; align-items: baseline; gap: 7px; }
.logo-r { font-family: var(--fd); font-size: 1.5rem; font-weight: 600; color: var(--gold); letter-spacing: .05em; }
.logo-t { font-size: .82rem; color: #fff; letter-spacing: .04em; }
.logo-t em { color: var(--gold); font-style: italic; }

#nav { display: flex; align-items: center; gap: 4px; }
#nav a {
  font-size: .87rem; color: rgba(255,255,255,.8);
  padding: 8px 12px; border-radius: 6px; transition: var(--t); white-space: nowrap;
}
#nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 600 !important; padding: 9px 18px !important;
  border-radius: var(--r) !important;
}
.nav-cta:hover { background: var(--goldl) !important; }

/* Hamburger button */
.ham {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: rgba(255,255,255,.1); border: none;
  border-radius: 6px; cursor: pointer; padding: 9px; z-index: 250; flex-shrink: 0;
}
.ham span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--t); transform-origin: center;
}

/* Nav overlay (dark backdrop) */
#nav-ol {
  display: none; position: fixed; inset: 0;
  background: rgba(5,12,20,.6); z-index: 280;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
#nav-ol.open { display: block; }

/* ---- HERO ---- */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.h-slider {
  position: absolute; inset: 0; z-index: 0;
}
.h-slide {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .7s ease;
}
.h-slide.is-active { opacity: 1; }
.h-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,.82) 0%, rgba(26,58,82,.72) 60%, rgba(13,32,48,.86) 100%);
}
.h-slide::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,154,60,.17) 0%, transparent 65%),
              radial-gradient(circle at 15% 85%, rgba(196,154,60,.07) 0%, transparent 45%);
}
.h-shape {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(196,154,60,.1); pointer-events: none; z-index: 1;
}
.h-shape::before {
  content: ''; position: absolute; inset: 44px; border-radius: 50%;
  border: 1px solid rgba(196,154,60,.07);
}

.h-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 130px 20px 90px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.h-content {
  width: 50%;
}

.h-logo-wrap {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.h-logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.h-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(196,154,60,.4); border-radius: 20px;
  padding: 5px 15px; margin-bottom: 24px;
  animation: fadeup .7s ease both;
}
.h-content h1 {
  font-family: var(--fd);
  font-size: clamp(2.3rem, 6vw, 3.9rem); font-weight: 300; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
  animation: fadeup .7s .1s ease both;
}
.h-content h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.h-content > p {
  font-size: 1rem; color: rgba(255,255,255,.7); max-width: 500px;
  margin-bottom: 36px; animation: fadeup .7s .2s ease both;
}
.h-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; animation: fadeup .7s .3s ease both; }
.h-stats { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; animation: fadeup .7s .4s ease both; }
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: var(--fd); font-size: 1.85rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-l { font-size: .74rem; color: rgba(255,255,255,.5); letter-spacing: .04em; margin-top: 3px; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ---- SERVICIOS ---- */
#srv { padding: 88px 0; background: var(--cream); }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff; border-radius: 12px; padding: 30px 26px;
  border: 1px solid var(--grayl); transition: var(--t); display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card.navy     { background: var(--navy); border-color: var(--navy); }
.card.gold-cta { background: linear-gradient(135deg, var(--gold), var(--goldl)); border-color: transparent; }

.card-ico {
  width: 48px; height: 48px; margin-bottom: 16px;
  background: rgba(196,154,60,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; padding: 10px; flex-shrink: 0;
}
.card-ico img { width: 100%; height: 100%; }
.navy .card-ico { background: rgba(196,154,60,.2); }

.card h3 { font-family: var(--fd); font-size: 1.2rem; font-weight: 600; margin-bottom: 9px; color: var(--navy); }
.navy h3     { color: #fff; }
.gold-cta h3 { color: var(--navy); font-size: 1.1rem; }
.card > p    { font-size: .88rem; color: var(--gray); line-height: 1.7; flex: 1; }
.navy > p    { color: rgba(255,255,255,.6); }
.gold-cta > p { color: rgba(15,25,35,.65); margin-bottom: 18px; flex: 1; }
.card-link { display: inline-block; margin-top: 20px; font-size: .85rem; font-weight: 500; color: var(--gold); }
.gold-cta .btn-p { background: var(--navy); border-color: var(--navy); color: #fff; }
.gold-cta .btn-p:hover { background: var(--navy2); border-color: var(--navy2); }

/* ---- PROCESO ---- */
#proc { padding: 88px 0; background: var(--navy); position: relative; overflow: hidden; }
#proc::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,154,60,.09) 0%, transparent 60%);
  pointer-events: none;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 20px 16px; position: relative;
}
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 42px; right: -1px; width: 50%; height: 2px;
  background: linear-gradient(to right, rgba(196,154,60,.5), rgba(196,154,60,.1));
}
.step-n { font-family: var(--fd); font-size: 2.7rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.step h3 { font-family: var(--fd); font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step p  { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ---- NOSOTROS ---- */
#nos { padding: 88px 0; }
.nos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.nos-img { position: relative; }
.nos-frame {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); line-height: 0;
}
.nos-frame img { width: 100%; height: 380px; object-fit: cover; }
.nos-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--gold); color: var(--navy); border-radius: 12px;
  padding: 16px 20px; text-align: center; box-shadow: 0 8px 28px rgba(196,154,60,.4);
}
.badge-n { display: block; font-family: var(--fd); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.badge-l { font-size: .74rem; font-weight: 500; letter-spacing: .04em; opacity: .85; }
.nos-text h2 {
  font-family: var(--fd); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.nos-text p  { color: var(--gray); margin-bottom: 13px; font-size: .94rem; }
.nos-list    { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.nos-list li { display: flex; align-items: center; gap: 10px; font-size: .93rem; }
.chk {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(196,154,60,.15);
  color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; flex-shrink: 0;
}

/* ---- GALERÍA ---- */
#gal { padding: 88px 0; background: var(--cream); }
.gal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 230px 230px; gap: 14px;
}
.gi { border-radius: 11px; overflow: hidden; position: relative; cursor: pointer; }
.gi.big { grid-column: span 2; grid-row: span 2; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gi:hover img { transform: scale(1.05); }
.gi-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,25,35,.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: var(--t);
}
.gi:hover .gi-ov { opacity: 1; }
.gi-ov span { color: #fff; font-size: .87rem; font-weight: 500; }

/* ---- TESTIMONIOS ---- */
#test { padding: 88px 0; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tv {
  background: var(--cream); border-radius: 12px; padding: 30px 26px;
  border: 1px solid var(--grayl); display: flex; flex-direction: column; gap: 13px;
  transition: var(--t);
}
.tv:hover { box-shadow: var(--shadow-s); }
.tv.dark   { background: var(--navy); border-color: var(--navy); }
.tv .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.tv blockquote { font-size: .92rem; color: var(--gray); line-height: 1.75; font-style: italic; flex: 1; }
.tv.dark blockquote { color: rgba(255,255,255,.65); }
.tv cite   { font-size: .8rem; font-weight: 600; color: var(--navy); font-style: normal; }
.tv.dark cite { color: var(--gold); }

/* ---- CONTACTO ---- */
#cnt { padding: 88px 0; background: var(--cream); }
.cnt-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.cnt-info h2 {
  font-family: var(--fd); font-size: clamp(1.7rem, 3vw, 2.25rem); font-weight: 600;
  color: var(--navy); margin-bottom: 12px; line-height: 1.2;
}
.cnt-info > p { color: var(--gray); margin-bottom: 34px; font-size: .94rem; }
.cnt-items { display: flex; flex-direction: column; gap: 14px; }
.cnt-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 17px; background: #fff; border-radius: 10px;
  border: 1px solid var(--grayl); transition: var(--t);
}
.cnt-item:hover { border-color: var(--gold); box-shadow: 0 4px 14px rgba(196,154,60,.15); }
.cnt-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(196,154,60,.1); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 9px;
}
.cnt-ico img { width: 100%; height: 100%; }
.cnt-lbl { display: block; font-size: .72rem; color: var(--gray); letter-spacing: .04em; text-transform: uppercase; }
.cnt-val { display: block; font-size: .93rem; font-weight: 500; color: var(--navy); margin-top: 2px; }

.cnt-form { background: #fff; border-radius: 14px; padding: 38px 34px; box-shadow: var(--shadow); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.fg label { font-size: .8rem; font-weight: 500; color: var(--text); }
.fg input,
.fg select,
.fg textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--grayl); border-radius: var(--r);
  font-family: var(--fb); font-size: .9rem; color: var(--text);
  background: #fff; transition: var(--t); outline: none;
  appearance: none; -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,60,.12);
}
.fg textarea { resize: vertical; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.f-status {
  font-size: .8rem;
  color: #b03030;
  margin-top: 10px;
  text-align: center;
}
.f-note { font-size: .75rem; color: var(--gray); margin-top: 10px; text-align: center; }

.form-ok {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px; gap: 16px;
}
.form-ok img { width: 64px; margin-bottom: 8px; }
.form-ok h3 { font-family: var(--fd); font-size: 1.8rem; color: var(--navy); }
.form-ok p  { color: var(--gray); }
.hidden { display: none !important; }

/* ---- FOOTER ---- */
#ftr { background: var(--navy); color: #fff; padding: 56px 0 0; }
.ftr-in {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.ftr-brand .logo { display: block; width: 150px; margin: 0 auto 12px; }
.ftr-brand > img { width: 150px; max-width: 150px; display: block; margin: 0 0 12px; }
.ftr-brand p { font-size: .85rem; color: rgba(255,255,255,.45); max-width: 240px; line-height: 1.7; }
.ftr-col { display: flex; flex-direction: column; }
.ftr-col h4 { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ftr-col a,
.ftr-col span { font-size: .85rem; color: rgba(255,255,255,.5); padding: 4px 0; transition: color var(--t); }
.ftr-col a:hover { color: #fff; }
.ftr-bot { text-align: center; padding: 18px 20px; }
.ftr-bot p { font-size: .77rem; color: rgba(255,255,255,.3); }

/* ---- ANIMATIONS ---- */
@keyframes fadeup {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rv { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.rv.vi { opacity: 1; transform: none; }

/* ---- FAQ ---- */
#faq { padding: 88px 0; background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--grayl); border-radius: var(--r); overflow: hidden; transition: border-color var(--t); }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  font-family: var(--fb); font-size: .95rem; font-weight: 500; color: var(--navy);
  flex: 1; line-height: 1.4;
}
.faq-item summary::after {
  content: '+'; color: var(--gold); font-size: 1.5rem; line-height: 1;
  flex-shrink: 0; transition: transform var(--t);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > p { padding: 0 22px 18px; font-size: .9rem; color: var(--gray); line-height: 1.75; }

/* ============================================================
   RESPONSIVE — TABLET  (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {

  /* Show hamburger, hide inline nav */
  .ham { display: flex; }
  #nav {
    display: none;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(270px, 82vw);
    flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--navy2); padding: 72px 16px 36px;
    box-shadow: -10px 0 40px rgba(0,0,0,.45);
    z-index: 300; overflow-y: auto;
  }
  #nav.open { display: flex; }
  #nav a { width: 100%; font-size: 1rem; padding: 12px 16px; border-radius: 8px; }
  #nav .nav-cta { margin-top: 10px; text-align: center; justify-content: center; }

  /* Hero */
  .h-shape  { display: none; }
  .h-inner { flex-direction: column; gap: 28px; padding: 110px 20px 80px; }
  .h-content, .h-logo-wrap { width: 100%; }
  .h-logo-wrap { justify-content: flex-start; }
  .h-logo-img { max-width: 320px; }

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

  /* Process: 2×2 grid */
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .step { border-bottom: 1px solid rgba(196,154,60,.08); padding: 28px 20px; }
  .step:nth-child(odd)  { border-right: 1px solid rgba(196,154,60,.08); }
  .step:nth-last-child(-n+2) { border-bottom: none; }

  /* Nosotros: stacked */
  .nos-grid { grid-template-columns: 1fr; gap: 60px; }
  .nos-badge { bottom: -16px; right: -10px; }

  /* Gallery: 2-col, big spans full width */
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 12px; }
  .gi.big   { grid-column: span 2; grid-row: auto; height: 260px; }
  .gi       { height: 190px; }

  /* Testimonios: 2-col, dark card spans both */
  .test-grid { grid-template-columns: 1fr 1fr; }
  .tv.dark   { grid-column: span 2; }

  /* Contact: single column */
  .cnt-grid { grid-template-columns: 1fr; gap: 44px; }

  /* Footer: 2 cols, brand full */
  .ftr-in { grid-template-columns: 1fr 1fr; }
  .ftr-brand { grid-column: span 2; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* Tighter vertical spacing */
  #srv, #proc, #nos, #gal, #test, #cnt { padding: 60px 0; }
  .sh { margin-bottom: 32px; }

  /* Header: hide subtitle text */
  .logo-t { display: none; }

  /* Hero */
  .h-inner { padding: 90px 20px 60px; }
  .h-content h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .h-btns { flex-direction: column; }
  .h-btns .btn { width: 100%; text-align: center; }
  .h-stats { gap: 14px; }
  .stat-n  { font-size: 1.5rem; }
  .stat-div { height: 28px; }

  /* Services: single column */
  .srv-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Process: single column */
  .steps { grid-template-columns: 1fr; }
  .step::after    { display: none; }
  .step           { border-right: none !important; border-bottom: 1px solid rgba(196,154,60,.1) !important; padding: 22px 16px; }
  .step:last-child { border-bottom: none !important; }

  /* Nosotros */
  .nos-frame img { height: 260px; }
  .nos-badge     { bottom: -14px; right: -6px; padding: 12px 16px; }
  .badge-n       { font-size: 1.5rem; }

  /* Gallery: single column, overlays always visible */
  .gal-grid  { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; }
  .gi.big    { grid-column: span 1; height: 200px; }
  .gi        { height: 170px; }
  .gi-ov     { opacity: 1; }

  /* Testimonios: single column */
  .test-grid { grid-template-columns: 1fr; }
  .tv.dark   { grid-column: span 1; }

  /* Contact form */
  .f-row     { grid-template-columns: 1fr; }
  .cnt-form  { padding: 26px 18px; }

  /* Footer: single column */
  .ftr-in    { grid-template-columns: 1fr; gap: 26px; }
  .ftr-brand { grid-column: span 1; }
}
