/* ============================================================
   HOGAR DEL CARMEN — Main Stylesheet
   ============================================================ */

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

:root {
  --cream:    #f8f0e4;
  --warm:     #fdf7ee;
  --terra:    #9b4a2f;
  --terra-l:  #c47050;
  --olive:    #6b7a52;
  --olive-l:  #93a472;
  --brown:    #1e140c;
  --brown-l:  #5e3d2a;
  --gold:     #b8872a;
  --gold-l:   #d4aa55;
  --text:     #1e140c;
  --text-l:   #6b5040;
  --shadow:   rgba(46, 31, 20, .14);
  --nav-h:    90px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── Animations ── */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes fadeUp {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(248, 240, 228, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 135, 42, .22);
  animation: slideDown .6s ease both;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: var(--nav-h);
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.nav-logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--brown);
  white-space: nowrap;
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-l);
  font-weight: 500;
  margin-top: 2px;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-l);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--terra); }

.nav-cta {
  background: linear-gradient(135deg, var(--brown), #3a1e0e);
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  transition: all .25s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--terra), #7a2e15) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(248, 240, 228, .99);
  border-top: 1px solid rgba(184, 135, 42, .18);
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}

.nav-drawer.open {
  max-height: 400px;
  padding: 1rem 0;
}

.nav-drawer a {
  display: block;
  padding: .75rem 5vw;
  text-decoration: none;
  color: var(--text-l);
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(184, 135, 42, .1);
  transition: background .2s, color .2s;
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { background: rgba(184, 135, 42, .08); color: var(--terra); }

.nav-drawer a.nav-cta-mobile {
  margin: .8rem 5vw 0;
  text-align: center;
  border-radius: 6px;
  border-bottom: none;
  background: linear-gradient(135deg, var(--terra), #7a2e15);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .08em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 80px) 5vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(107,122,82,.10) 0%, transparent 60%),
    var(--cream);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46,31,20,.22);
  animation: fadeUp .8s .4s ease both;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid rgba(184,135,42,.25);
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.03);
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 10px 16px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: .9rem;
  font-style: italic;
  text-align: center;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.8rem;
  animation: fadeUp .7s .2s ease both;
  border-bottom: 1px solid rgba(184,135,42,.5);
  padding-bottom: .3rem;
}

.hero-badge::before { content: none; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
  animation: fadeUp .7s .35s ease both;
}

.hero-title em { color: var(--terra); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-l);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 2.4rem;
  animation: fadeUp .7s .5s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .65s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terra), #7a2e15);
  color: #fff;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(155,74,47,.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), #8a6010);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,135,42,.4);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  padding: .9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  border: 2px solid rgba(46,20,12,.28);
  transition: all .25s;
}

.btn-secondary:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  animation: fadeUp .7s .8s ease both;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label {
  font-size: .75rem;
  color: var(--text-l);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .2rem;
}

/* ============================================================
   SECTIONS — Common
   ============================================================ */
section { padding: 100px 5vw; }

.section-label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: .6rem;
  display: inline-block;
  position: relative;
  padding-bottom: .35rem;
}

.section-label::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-l);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   QUIÉNES SOMOS
   ============================================================ */
#quienes-somos { background: var(--warm); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-l);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text strong { color: var(--brown); font-weight: 600; }

.about-stat-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(184,135,42,.18);
  box-shadow: 0 8px 32px var(--shadow);
}

.about-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.about-stat-label {
  font-size: .82rem;
  color: var(--text-l);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .5rem;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
#servicios { background: var(--cream); }

.services-group-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 2.8rem 0 1rem;
  border-left: 3px solid var(--gold);
  padding-left: .8rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.service-card {
  background: var(--warm);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(184,135,42,.16);
  transition: box-shadow .3s, border-color .3s;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.service-card::before { display: none; }

.service-card:hover {
  transform: none;
  box-shadow: 0 4px 16px var(--shadow);
  border-color: rgba(184,135,42,.4);
}

.service-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 2.4rem;
  text-align: center;
  display: block;
  margin-bottom: 0;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0;
  flex-shrink: 0;
  min-width: 160px;
}

.service-desc {
  font-size: .85rem;
  color: var(--text-l);
  line-height: 1.5;
  font-weight: 300;
}

/* ============================================================
   INSTALACIONES
   ============================================================ */
#instalaciones { background: var(--warm); }

.gallery-tabs {
  display: flex;
  gap: .8rem;
  margin: 2.5rem 0 1.8rem;
  flex-wrap: wrap;
}

.gtab {
  background: transparent;
  border: 1.5px solid rgba(184,135,42,.3);
  color: var(--brown-l);
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
}

.gtab.active,
.gtab:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.photo-masonry {
  columns: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}

.masonry-item:hover img { transform: scale(1.04); }

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,10,5,.7));
  padding: 1.5rem .9rem .7rem;
  opacity: 0;
  transition: opacity .3s;
}

.masonry-item:hover .photo-caption { opacity: 1; }

.photo-caption strong {
  color: #fff;
  font-size: .88rem;
  font-family: 'Cormorant Garamond', serif;
}

/* Gallery empty state */
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-l);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  opacity: .6;
}

/* ============================================================
   VALUES RIBBON
   ============================================================ */
.values-ribbon {
  background: linear-gradient(135deg, #1e140c 0%, #3a1e0e 50%, #9b4a2f 100%);
  padding: 70px 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.value-item { color: #fff; }

.value-icon {
  font-size: 2.2rem;
  margin-bottom: .7rem;
  display: block;
}

.value-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: .35rem;
}

.value-sub {
  font-size: .82rem;
  opacity: .7;
  font-weight: 300;
}

/* ============================================================
   CONTACTO
   ============================================================ */
#contacto { background: var(--cream); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(184,135,42,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all .25s;
}

.contact-item:hover .contact-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--terra));
}

.contact-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: var(--brown);
  margin-bottom: .25rem;
  font-weight: 700;
}

.contact-item-val {
  font-size: .9rem;
  color: var(--text-l);
  font-weight: 300;
  line-height: 1.6;
}

.contact-item-val a {
  color: var(--terra);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.contact-item-val a:hover { color: var(--gold); }

.map-placeholder {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(107,122,82,.1), rgba(155,74,47,.08));
  border: 2px dashed rgba(184,135,42,.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 260px;
  text-align: center;
  padding: 2rem;
  margin-top: 1.5rem;
}

.map-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brown);
}

.map-placeholder small {
  color: var(--text-l);
  font-size: .82rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--warm);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(184,135,42,.16);
  box-shadow: 0 8px 32px var(--shadow);
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: .2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-l);
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(46,20,12,.16);
  border-radius: 10px;
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(155,74,47,.1);
}

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

.form-submit {
  background: linear-gradient(135deg, var(--terra), #7a2e15);
  color: #fff;
  border: none;
  padding: .95rem 2.2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  align-self: flex-start;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(155,74,47,.3);
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--gold), #8a6010);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,135,42,.35);
}

.form-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.form-msg {
  font-size: .88rem;
  border-radius: 8px;
  padding: .7rem 1rem;
  display: none;
}

.form-msg.success {
  display: block;
  background: rgba(107,122,82,.15);
  color: #4a6335;
  border: 1px solid rgba(107,122,82,.3);
}

.form-msg.error {
  display: block;
  background: rgba(155,74,47,.1);
  color: var(--terra);
  border: 1px solid rgba(155,74,47,.25);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,6,3,.93);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  opacity: .75;
  transition: opacity .2s;
  line-height: 1;
}

.lightbox-close:hover { opacity: 1; }

.lb-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(160deg, #120d07 0%, #1e140c 60%, #2a1509 100%);
  padding: 60px 5vw 30px;
  color: rgba(255,255,255,.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(184,135,42,.2);
  margin-bottom: 1.8rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: .6rem;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 300px;
  opacity: .75;
}

.footer-links h4 {
  color: var(--gold-l);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--terra-l); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .78rem;
  opacity: .5;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .nav-logo-script { font-size: 1.2rem; }
  .nav-logo-sub    { font-size: .44rem; }

  .nav-links  { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image {
    height: 320px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-stat-card { max-width: 260px; margin: 0 auto; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  section { padding: 70px 5vw; }

  .hero {
    padding: calc(var(--nav-h) + 48px) 5vw 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    height: 240px;
  }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-sub   { font-size: .95rem; }

  .hero-stats { gap: 1.8rem; }
  .hero-stat-number { font-size: 1.8rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

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

  .photo-masonry { columns: 2; }

  .values-ribbon { padding: 50px 5vw; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .service-title { min-width: unset; }

  .contact-form { padding: 1.4rem; }

  .form-submit { width: 100%; text-align: center; }
}

/* ============================================================
   RESPONSIVE — Very small (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .photo-masonry { columns: 1; }
  .hero-title { font-size: 2rem; }
}
