*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent: #E8622A;
  --accent-dark: #cf5320;
  --accent-pale: #FBF0EA;
  --bg: #FAF8F5;
  --bg2: #F3ECE4;
  --white: #FFFFFF;
  --dark: #1C1410;
  --dark2: #2C1E14;
  --mid: #7A6A60;
  --light: #C4B5A8;
  --border: #E5DDD6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--dark); overflow-x: hidden; line-height: 1.6; }
::selection { background: rgba(232,98,42,.18); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

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

/* ============ NAV ============ */
nav#mainnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,248,245,0); backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .35s ease;
}
nav#mainnav.scrolled {
  background: rgba(250,248,245,.96); backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-circle span {
  font-family: var(--serif); font-weight: 600; font-size: 15px;
  color: #fff; letter-spacing: -.02em;
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-text strong {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: 17px; color: var(--dark); letter-spacing: .03em;
}
.nav-logo-text small {
  display: block; font-family: var(--sans); font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--mid);
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dark); text-decoration: none;
  opacity: .65; transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  opacity: 1 !important; padding: 10px 22px; border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: transparent; border: none; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--accent); border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

/* ============ HERO ============ */
#hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; padding-top: 72px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 80px 100px; gap: 28px;
}
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); display: block; }
h1.hero-h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.05; letter-spacing: -.01em; color: var(--dark);
}
h1.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: var(--mid); max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-block; font-family: var(--sans); font-size: 12px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; padding: 15px 34px; border-radius: 2px;
  transition: all .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--border); color: var(--dark); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats-bar {
  display: flex; gap: 40px; padding-top: 36px; margin-top: 8px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--accent); line-height: 1;
}
.hero-stat-lbl {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); margin-top: 4px;
}
.hero-right {
  position: relative; background: var(--dark); overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  background-repeat: no-repeat;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,20,16,.15) 0%, rgba(28,20,16,.05) 50%, rgba(28,20,16,.4) 100%);
}
.hero-accent-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--accent); z-index: 3;
}
.hero-floating-card {
  position: absolute; bottom: 60px; left: -28px; z-index: 4;
  background: var(--white); padding: 18px 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18); border-radius: 2px;
  display: flex; align-items: center; gap: 14px;
}
.hero-fc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); display: flex;
  align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.hero-fc-name { font-family: var(--serif); font-weight: 500; font-size: 15px; color: var(--dark); }
.hero-fc-sub { font-size: 11px; color: var(--mid); letter-spacing: .04em; margin-top: 2px; }

/* ============ SECTIONS ============ */
section { scroll-margin-top: 72px; }

.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; display: block; }
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.1; letter-spacing: -.01em; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--accent); }

/* ============ SOBRE ============ */
#sobre { padding: 140px 0; background: var(--white); }
.sobre-wrap { max-width: 1240px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.sobre-photo {
  aspect-ratio: 3/4; position: relative; overflow: visible;
}
.sobre-photo-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  background-repeat: no-repeat;
}
.sobre-photo-corner {
  position: absolute; bottom: -16px; right: -16px;
  width: 80%; height: 80%; border: 2px solid var(--accent); z-index: -1;
}
.sobre-content { display: flex; flex-direction: column; gap: 24px; }
.sobre-bio {
  font-size: 15.5px; font-weight: 300; line-height: 1.75;
  color: var(--mid);
}
.sobre-bio strong { color: var(--dark); font-weight: 500; }
.sobre-bio em { color: var(--accent); font-style: italic; }
.sobre-creds { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.cred-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.cred-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 7px;
}
.cred-text { font-size: 13.5px; color: var(--mid); line-height: 1.5; }
.cred-text strong { color: var(--dark); font-weight: 500; }

/* ============ SERVICIOS ============ */
#servicios { padding: 140px 0; background: var(--bg); }
.srv-wrap { max-width: 1240px; margin: 0 auto; padding: 0 60px; }
.srv-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 40px; flex-wrap: wrap; }
.srv-intro { font-size: 15.5px; font-weight: 300; line-height: 1.7; color: var(--mid); max-width: 380px; }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.srv-card {
  background: var(--white); padding: 44px 32px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: 14px;
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--accent);
  transition: width .4s ease;
}
.srv-card:hover::after { width: 100%; }
.srv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.srv-num {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: var(--accent); opacity: .25; line-height: 1;
}
.srv-title {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--dark); line-height: 1.25;
}
.srv-desc { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.7; flex: 1; }
.srv-link {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  text-decoration: none; display: flex; align-items: center; gap: 6px; margin-top: 8px;
}

.srv-method {
  margin-top: 80px; padding: 48px;
  background: var(--white); border-left: 3px solid var(--accent);
  display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center;
}
.srv-method-label {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase;
}
.srv-method-steps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.srv-method-step {
  font-family: var(--serif); font-size: 17px; color: var(--dark);
  display: flex; flex-direction: column; gap: 6px;
}
.srv-method-step span {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  font-family: var(--sans); opacity: .8;
}

/* ============ LIBRO ============ */
#libro { padding: 140px 0; background: var(--dark); }
.libro-wrap { max-width: 1240px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: center; }
.libro-cover-area { display: flex; justify-content: center; }
.libro-cover {
  width: 320px; aspect-ratio: 2/3;
  background-size: cover; background-position: center;
  border: 1px solid rgba(232,98,42,.3);
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; position: relative; overflow: hidden;
  box-shadow: 24px 32px 80px rgba(0,0,0,.5);
  transform: rotate(-2deg); transition: transform .4s;
}
.libro-cover:hover { transform: rotate(0); }
.libro-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,.3) 0%, rgba(28,20,16,.55) 50%, rgba(28,20,16,.92) 100%);
}
.libro-cover-spine {
  position: absolute; left: 0; top: 0; bottom: 0; width: 8px; z-index: 2;
}
.libro-cover-inner {
  position: relative; z-index: 2; text-align: center;
  padding: 36px 28px; display: flex; flex-direction: column; gap: 14px;
  align-items: center;
}
.libro-cover-eyebrow {
  font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 600;
}
.libro-cover-title {
  font-family: var(--serif); font-size: 38px; font-style: italic;
  font-weight: 400; color: #fff; line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.libro-cover-divider {
  width: 36px; height: 2px;
}
.libro-cover-subtitle {
  font-size: 11px; color: rgba(255,255,255,.75); letter-spacing: .04em; line-height: 1.6;
  font-style: italic;
}
.libro-content { display: flex; flex-direction: column; gap: 24px; }
.libro-content .section-eyebrow { color: rgba(232,98,42,.95); }
.libro-content .section-title { color: #FAF8F5; }
.libro-desc {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: rgba(250,248,245,.78);
}
.libro-desc-alt {
  font-size: 15px; font-weight: 300; line-height: 1.75; font-style: italic;
  color: rgba(250,248,245,.55); border-left: 2px solid var(--accent); padding-left: 16px;
}
.libro-features { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.libro-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(250,248,245,.7);
}
.libro-feature-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(232,98,42,.2); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.libro-feature-dot::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: block;
}
.btn-libro {
  background: var(--accent); color: #fff;
  display: inline-block; padding: 15px 34px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; width: fit-content; transition: all .2s; margin-top: 8px;
}
.btn-libro:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ============ GALERÍA ============ */
#galeria { padding: 140px 0; background: var(--bg); }
.gal-wrap { max-width: 1240px; margin: 0 auto; padding: 0 60px; }
.gal-header { margin-bottom: 64px; display: flex; flex-direction: column; gap: 16px; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
}
.gal-item {
  background: var(--bg2);
  position: relative; overflow: hidden; cursor: pointer;
}
.gal-item-big { grid-column: span 2; grid-row: span 2; }
.gal-item-inner {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  background-repeat: no-repeat;
  transition: transform .6s ease;
}
.gal-item:hover .gal-item-inner { transform: scale(1.06); }
.gal-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28,20,16,.85) 100%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover .gal-item-overlay { opacity: 1; }
.gal-item-label {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #fff;
}

/* ============ CONTACTO ============ */
#contacto { padding: 140px 0; background: var(--accent); }
.cto-wrap { max-width: 1240px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cto-left .section-eyebrow { color: rgba(255,255,255,.85); }
.cto-left .section-title { color: #fff; }
.cto-left .section-title em { color: rgba(255,255,255,.65); font-style: italic; }
.cto-desc { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.85); margin-top: 16px; }
.cto-info { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.cto-info-item {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 14px;
}
.cto-info-text { font-size: 16px; color: #fff; line-height: 1.4; }
.cto-info-text strong { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px; font-weight: 600; }

.cto-social { display: flex; gap: 12px; margin-top: 32px; }
.cto-social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s, transform .2s;
}
.cto-social a:hover { background: #fff; color: var(--accent); transform: translateY(-2px); }
.cto-social svg { width: 18px; height: 18px; }

.cto-form { background: #fff; padding: 44px 36px; border-radius: 2px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); }
.form-input, .form-select, .form-textarea {
  padding: 14px 18px; border: 1.5px solid var(--border);
  border-radius: 2px; font-family: var(--sans); font-size: 15px;
  color: var(--dark); background: var(--bg); outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); background: #fff; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  background: var(--accent); color: #fff;
  border: none; cursor: pointer; font-family: var(--sans);
  font-size: 13px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 16px 32px;
  border-radius: 2px; width: 100%;
  transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ============ FOOTER ============ */
footer { background: var(--dark); }
.footer-banner {
  background-size: cover; background-position: center;
  position: relative;
  min-height: 220px;
  display: flex; align-items: stretch;
}
.footer-banner-overlay {
  width: 100%;
  background: linear-gradient(90deg, rgba(28,20,16,.92) 0%, rgba(232,98,42,.78) 50%, rgba(28,20,16,.45) 100%);
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 60px; gap: 40px; flex-wrap: wrap;
}
.footer-banner-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.footer-banner-title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  font-style: italic; color: #fff; letter-spacing: -.005em;
}
.footer-banner-socials {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.footer-banner-socials a {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #fff;
  padding: 12px 20px; border: 1px solid rgba(255,255,255,.4);
  text-decoration: none; transition: all .2s; border-radius: 2px;
}
.footer-banner-socials a:hover { background: #fff; color: var(--accent); border-color: #fff; }

.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 70px 60px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand-name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: rgba(255,255,255,.9); letter-spacing: .04em; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; }
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 10px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.footer-links-col a {
  font-size: 14px; color: rgba(255,255,255,.7);
  text-decoration: none; transition: color .2s;
}
.footer-links-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 60px;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 1024px) {
  nav#mainnav { padding: 0 32px; }
  .hero-left { padding: 80px 40px 60px 40px; }
  #sobre, #servicios, #libro, #galeria, #contacto { padding: 100px 0; }
  .sobre-wrap, .libro-wrap, .cto-wrap { padding: 0 32px; gap: 60px; }
  .srv-wrap, .gal-wrap { padding: 0 32px; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-method { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .srv-method-steps { grid-template-columns: repeat(3, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .libro-cover { width: 260px; }
  .footer-inner { padding: 60px 32px 32px; gap: 40px; }
  .footer-banner-overlay { padding: 32px; }
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 720px) {
  nav#mainnav { padding: 0 20px; height: 64px; }
  nav#mainnav.scrolled { background: rgba(250,248,245,.98); }
  .nav-burger { display: flex; }
  .nav-logo-text strong { font-size: 15px; }
  .nav-logo-text small { font-size: 8px; }
  .nav-logo-circle { width: 34px; height: 34px; }
  .nav-logo-circle span { font-size: 13px; }

  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg); flex-direction: column;
    align-items: stretch; gap: 0; padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 16px 24px; font-size: 13px;
    opacity: 1; border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { margin: 12px 24px 4px; text-align: center; border-radius: 2px; }

  /* HERO */
  #hero {
    grid-template-columns: 1fr; min-height: auto;
    padding-top: 64px;
  }
  .hero-right {
    order: -1; min-height: 60vh; aspect-ratio: 3/4;
  }
  .hero-photo { background-position: center 20%; }
  .hero-floating-card { left: 16px; bottom: 24px; padding: 14px 18px; }
  .hero-fc-avatar { width: 38px; height: 38px; font-size: 14px; }
  .hero-fc-name { font-size: 14px; }
  .hero-fc-sub { font-size: 10px; }
  .hero-left {
    padding: 50px 24px 70px;
    gap: 22px;
  }
  h1.hero-h1 { font-size: clamp(40px, 11vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-btns { gap: 12px; }
  .btn { padding: 14px 26px; font-size: 11px; }
  .hero-stats-bar { gap: 24px; padding-top: 28px; }
  .hero-stat-num { font-size: 28px; }
  .hero-stat-lbl { font-size: 10px; }

  /* SOBRE */
  #sobre, #servicios, #libro, #galeria, #contacto { padding: 80px 0; }
  .sobre-wrap { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .sobre-photo { max-width: 360px; margin: 0 auto; width: 100%; }
  .sobre-photo-corner { right: -10px; bottom: -10px; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }

  /* SERVICIOS */
  .srv-wrap { padding: 0 24px; }
  .srv-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
  .srv-grid { grid-template-columns: 1fr; gap: 1px; }
  .srv-card { padding: 36px 28px; }
  .srv-num { font-size: 42px; }
  .srv-title { font-size: 22px; }
  .srv-method { margin-top: 48px; padding: 28px 24px; }
  .srv-method-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .srv-method-step { font-size: 15px; }

  /* LIBRO */
  .libro-wrap { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .libro-cover { width: 240px; }
  .libro-cover-title { font-size: 32px; }
  .libro-desc { font-size: 15px; }

  /* GALERÍA */
  .gal-wrap { padding: 0 24px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 4px; }
  .gal-item-big { grid-column: span 2; grid-row: span 2; }
  .gal-item-overlay { opacity: 1; background: linear-gradient(180deg, transparent 60%, rgba(28,20,16,.7) 100%); }
  .gal-item-label { font-size: 10px; }

  /* CONTACTO */
  .cto-wrap { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .cto-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .cto-info { margin-top: 28px; }

  /* FOOTER */
  .footer-banner { min-height: auto; }
  .footer-banner-overlay {
    padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 24px;
  }
  .footer-banner-title { font-size: 28px; }
  .footer-banner-socials { width: 100%; }
  .footer-banner-socials a { padding: 10px 14px; font-size: 10px; }

  .footer-inner {
    grid-template-columns: 1fr; padding: 48px 24px 32px; gap: 36px;
  }
  .footer-bottom { padding: 20px 24px; }
  .footer-bottom p { font-size: 11px; }
}

/* Small phones */
@media (max-width: 380px) {
  h1.hero-h1 { font-size: 38px; }
  .hero-stats-bar { gap: 16px; }
  .hero-stat-num { font-size: 24px; }
  .libro-cover { width: 200px; }
  .libro-cover-title { font-size: 28px; }
}
