*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #1a0a00; --ink-2: #3d2010; --ink-3: #7a4828;
  --paper: #faf6f0; --paper-2: #f2ebe0; --paper-3: #e8ddd0;
  --red: #c0392b; --red-dark: #8b1a0e; --red-light: #fdf0ee;
  --gold: #b8860b; --gold-light: #fdf3d0;
  --white: #ffffff; --border: #d4b896;
  --font-head: 'Cinzel', serif;
  --font-body: 'Crimson Pro', Georgia, serif;
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.skip-link { position: absolute; top: -40px; left: 0; background: var(--red); color: #fff; padding: 8px 16px; font-size: 14px; z-index: 999; transition: top .15s; }
.skip-link:focus { top: 0; }
.page-accent { position: fixed; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); z-index: 200; }

/* ── NAV ─────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,246,240,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); height: 64px; display: flex; align-items: center; padding: 0 clamp(1.5rem,5vw,3rem); gap: 2.5rem; }
.nav-logo { font-family: var(--font-head); font-size: 19px; font-weight: 700; letter-spacing: 2px; flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 28px; height: 28px; background: var(--red); display: flex; align-items: center; justify-content: center; border-radius: 2px; }
.nav-logo .logo-text { 
  background: linear-gradient(to right, #c0392b 45%, #1a0a00 55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 2rem; flex: 1; list-style: none; }
.nav-links a { font-family: var(--font-head); font-size: 11px; letter-spacing: 1px; color: var(--ink-3); transition: color .15s; }
.nav-links a:hover { color: var(--red); }
.nav-cta { background: var(--red); color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; padding: 10px 22px; border-radius: var(--r-sm); transition: background .15s; cursor: pointer; border: none; }
.nav-cta:hover { background: var(--red-dark); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero { display: grid; grid-template-columns: 1fr 300px; gap: 5rem; align-items: center; padding: clamp(4rem,8vw,6rem) clamp(1.5rem,5vw,3rem); max-width: 1100px; margin: 0 auto; position: relative; }
.hero::after { content: '刃'; position: absolute; right: 320px; top: 2rem; font-size: 200px; color: var(--paper-3); line-height: 1; pointer-events: none; z-index: 0; font-family: serif; }
.hero-text { position: relative; z-index: 1; }
.hero-kamon { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); background: var(--gold-light); border: 1px solid var(--gold); padding: 5px 16px; border-radius: 99px; margin-bottom: 1.5rem; }
.hero-kamon::before { content: '◈'; font-size: 9px; }
.hero-h1 { font-family: var(--font-head); font-size: clamp(32px,4vw,48px); line-height: 1.1; color: var(--ink); margin-bottom: 1.25rem; letter-spacing: 1px; font-weight: 700; }
.hero-h1 em { font-style: italic; color: var(--red); font-family: 'Crimson Pro', serif; font-size: 1.1em; }
.hero-h1 .jp { display: block; font-size: .45em; letter-spacing: 4px; color: var(--ink-3); margin-bottom: 4px; font-style: normal; font-family: 'Crimson Pro', serif; }
.hero-sub { font-size: 17px; line-height: 1.8; color: var(--ink-2); margin-bottom: 2rem; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: #fff; font-family: var(--font-head); font-size: 11px; letter-spacing: 1.5px; font-weight: 600; padding: 13px 28px; border-radius: var(--r-sm); transition: background .15s, transform .1s; cursor: pointer; border: none; }
.btn-primary:hover { background: var(--red-dark); }
.btn-primary:active { transform: scale(0.97); }
.btn-ghost { font-size: 15px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: border-color .15s, color .15s; }
.btn-ghost:hover { border-color: var(--ink-3); color: var(--ink); }

/* ── STAT CARDS ──────────────────────────────────────────────────── */
.hero-stats { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.stat-card { background: var(--paper-2); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: var(--r-md); padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.stat-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--paper-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 20px; height: 20px; }
.stat-val { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.stat-label { font-size: 12px; color: var(--ink-3); margin-top: 1px; font-style: italic; }

/* ── TRUST BAR ───────────────────────────────────────────────────── */
.trust { background: var(--ink); padding: 1rem clamp(1.5rem,5vw,3rem); border-top: 2px solid var(--red); }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-label { font-family: var(--font-head); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--paper-3); }
.trust-sep { width: 1px; height: 16px; background: #3d2010; }
.trust-logos { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.trust-logo { font-size: 13px; color: #7a4828; font-style: italic; }
.trust-more { font-size: 13px; color: var(--red); font-weight: 600; }

/* ── SAMURAI ICONS (SVG logos) ───────────────────────────────────── */
.samurai-icons { padding: clamp(2rem,4vw,3rem) clamp(1.5rem,5vw,3rem); max-width: 1100px; margin: 0 auto; }
.samurai-icons-grid { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; align-items: center; }
.samurai-icon-item { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: .7; transition: opacity .2s, transform .2s; }
.samurai-icon-item:hover { opacity: 1; transform: translateY(-3px); }
.samurai-icon-item svg { width: 56px; height: 56px; }
.samurai-icon-label { font-family: var(--font-head); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-3); }

/* ── SERVICES ────────────────────────────────────────────────────── */
.services { padding: clamp(3.5rem,6vw,5rem) clamp(1.5rem,5vw,3rem); max-width: 1100px; margin: 0 auto; }
.section-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.section-kicker::before { content: ''; display: block; width: 30px; height: 2px; background: var(--red); }
.section-kicker-text { font-family: var(--font-head); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); }
.section-title { font-family: var(--font-head); font-size: clamp(22px,3vw,30px); color: var(--ink); margin-bottom: 2.5rem; letter-spacing: .5px; }
.section-title span { display: block; font-size: .5em; letter-spacing: 4px; color: var(--ink-3); font-style: italic; margin-bottom: 4px; font-family: 'Crimson Pro', serif; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc-card { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.6rem; background: var(--paper-2); position: relative; overflow: hidden; transition: border-color .2s, transform .2s; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { border-color: var(--red); transform: translateY(-3px); }
.svc-kanji { font-size: 36px; line-height: 1; color: var(--paper-3); position: absolute; top: 12px; right: 14px; font-family: serif; pointer-events: none; }
.svc-icon { width: 42px; height: 42px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; background: var(--paper-3); border: 1px solid var(--border); }
.svc-icon svg { width: 20px; height: 20px; }
.svc-title { font-family: var(--font-head); font-size: 13px; letter-spacing: .5px; color: var(--ink); margin-bottom: 6px; }
.svc-desc { font-size: 14px; color: var(--ink-3); line-height: 1.6; font-style: italic; }
.svc-hint { font-size: 11px; color: var(--red); margin-top: 10px; font-family: var(--font-head); letter-spacing: 1px; }

/* ── PORTFOLIO ───────────────────────────────────────────────────── */
.portfolio { padding: clamp(3.5rem,6vw,5rem) clamp(1.5rem,5vw,3rem); max-width: 1100px; margin: 0 auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.portfolio-item { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; cursor: pointer; background: var(--paper-2); transition: transform .2s, border-color .2s; position: relative; }
.portfolio-item:hover { transform: translateY(-4px); border-color: var(--red); }
.portfolio-thumb { height: 160px; background: var(--paper-3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-thumb svg { width: 64px; height: 64px; opacity: .3; }
.portfolio-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(26,10,0,.6); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity .2s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-text { font-family: var(--font-head); font-size: 10px; letter-spacing: 2px; color: #fff; text-transform: uppercase; }
.portfolio-info { padding: 14px 16px; }
.portfolio-client { font-size: 11px; color: var(--red); font-family: var(--font-head); letter-spacing: 1px; margin-bottom: 3px; }
.portfolio-title { font-family: var(--font-head); font-size: 13px; color: var(--ink); }

/* ── DIVIDER ─────────────────────────────────────────────────────── */
.divider { text-align: center; padding: 1.5rem 0; color: var(--border); font-size: 20px; letter-spacing: 8px; }

/* ── LOGOS CLIENTES ──────────────────────────────────────────────── */
.logos-section { padding: clamp(3rem,5vw,4rem) 0; background: var(--paper-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.logos-header { text-align: center; margin-bottom: 2rem; padding: 0 clamp(1.5rem,5vw,3rem); }
.logos-header .section-kicker { justify-content: center; }
.logos-header .section-kicker::before { display: none; }
.logos-header .section-title { margin-bottom: 0; }
.logos-track-wrap { position: relative; overflow: hidden; padding: 1rem 0; }
.logos-track-wrap::before,
.logos-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.logos-track-wrap::before { left: 0; background: linear-gradient(to right, var(--paper-2), transparent); }
.logos-track-wrap::after { right: 0; background: linear-gradient(to left, var(--paper-2), transparent); }
.logos-track { display: flex; animation: logosScroll 30s linear infinite; }
.logos-slide { display: flex; gap: 3rem; flex-shrink: 0; }
.logo-item { flex-shrink: 0; width: 140px; height: 60px; display: flex; align-items: center; justify-content: center; }
.logo-item img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--r-md); transition: transform .2s, opacity .2s; opacity: 0.8; }
.logo-item:hover img { opacity: 1; transform: scale(1.05); }
@keyframes logosScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logos-track:hover { animation-play-state: paused; }

/* ── TESTIMONIOS ─────────────────────────────────────────────────── */
.testimonials { background: var(--ink); padding: clamp(3.5rem,6vw,5rem) clamp(1.5rem,5vw,3rem); border-top: 2px solid var(--red); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials .section-kicker::before { background: #7a4828; }
.testimonials .section-kicker-text { color: var(--red); }
.testimonials .section-title { color: var(--paper); }
.testimonials .section-title span { color: var(--paper-3); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card { background: #2a1208; border: 1px solid #3d2010; border-radius: var(--r-lg); padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color .2s; }
.testi-card--featured { border-color: var(--red); border-width: 1.5px; }
.testi-mon { font-size: 24px; color: var(--red); line-height: 1; margin-bottom: 4px; font-family: serif; }
.testi-text { font-size: 15px; line-height: 1.75; color: var(--paper-3); flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #3d2010; padding-top: 1rem; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-family: var(--font-head); font-size: 12px; letter-spacing: .5px; color: var(--paper); }
.testi-company { font-size: 12px; color: #7a4828; font-style: italic; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: #0f0600; color: #7a4828; padding: clamp(2.5rem,5vw,4rem) clamp(1.5rem,5vw,3rem) 0; border-top: 2px solid var(--red); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 4rem; padding-bottom: 2.5rem; border-bottom: 1px solid #1a0a00; }
.footer-logo { font-family: var(--font-head); font-size: 20px; font-weight: 700; display: block; margin-bottom: 7px; letter-spacing: 2px; }
.footer-logo .logo-text { 
  background: linear-gradient(to right, #c0392b 45%, #1a0a00 55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline { font-size: 13.5px; color: #5a3018; margin-bottom: 1.25rem; line-height: 1.7; font-style: italic; }
.footer-social { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; border-radius: var(--r-sm); border: 1px solid #2a1208; display: flex; align-items: center; justify-content: center; color: #5a3018; transition: border-color .15s, color .15s; }
.social-link:hover { border-color: #7a4828; color: #f2ebe0; }
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col-title { font-family: var(--font-head); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #f2ebe0; margin-bottom: 4px; }
.footer-col a { font-size: 13.5px; color: #5a3018; transition: color .15s; font-style: italic; }
.footer-col a:hover { color: #f2ebe0; }
.footer-address { font-size: 13.5px; color: #5a3018; line-height: 1.7; font-style: italic; }
.footer-tel, .footer-email { font-size: 13.5px; color: #5a3018; font-style: italic; transition: color .15s; }
.footer-tel:hover, .footer-email:hover { color: #f2ebe0; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #3d2010; flex-wrap: wrap; gap: 8px; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #3d2010; font-size: 12px; transition: color .15s; }
.footer-legal a:hover { color: #f2ebe0; }
.footer-haiku { font-family: 'Crimson Pro', serif; font-style: italic; font-size: 13px; color: #3d2010; text-align: center; padding: .75rem 0; border-top: 1px solid #1a0a00; max-width: 1100px; margin: 0 auto; }

/* ── MODALS BASE ─────────────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: rgba(15,6,0,.75); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal.is-open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px); transition: transform .25s; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.modal.is-open .modal-box { transform: translateY(0); }
.modal-box--wide { max-width: 720px; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: var(--paper-2); color: var(--ink-3); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; z-index: 2; }
.modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
.modal-header { padding: 2rem 2rem 1rem; border-bottom: 1px solid var(--border); }
.modal-body { padding: 1.5rem 2rem 2rem; }
.modal-footer { padding: 1.25rem 2rem; border-top: 1px solid var(--border); display: flex; gap: 12px; justify-content: flex-end; }
.modal-tag { display: inline-block; background: var(--paper-3); border: 1px solid var(--border); border-radius: 99px; padding: 3px 12px; font-size: 11px; font-family: var(--font-head); letter-spacing: .5px; color: var(--ink-2); margin: 3px 3px 0 0; }

/* Modal Servicio */
.ms-kanji { font-size: 48px; color: var(--paper-3); line-height: 1; font-family: serif; float: right; margin-left: 1rem; }
.ms-title { font-family: var(--font-head); font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.ms-subtitle { font-size: 14px; color: var(--red); font-style: italic; margin-bottom: 1rem; }
.ms-body { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 1.25rem; }
.ms-tags { margin-top: .75rem; }

/* Modal Portfolio */
.mp-img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--r-md); background: var(--paper-3); margin-bottom: 1.25rem; display: block; }
.mp-title { font-family: var(--font-head); font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.mp-client { font-size: 13px; color: var(--red); font-style: italic; margin-bottom: .75rem; }
.mp-desc { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 1rem; }
.mp-tags { margin-top: .5rem; }

/* Modal Cookies */
.cookies-icon { font-size: 36px; margin-bottom: .5rem; }
.cookies-title { font-family: var(--font-head); font-size: 16px; color: var(--ink); margin-bottom: .5rem; }
.cookies-text { font-size: 14px; color: var(--ink-2); line-height: 1.7; }
.btn-cookies-accept { background: var(--red); color: #fff; font-family: var(--font-head); font-size: 11px; letter-spacing: 1px; padding: 10px 22px; border-radius: var(--r-sm); border: none; cursor: pointer; transition: background .15s; }
.btn-cookies-accept:hover { background: var(--red-dark); }
.btn-cookies-reject { background: transparent; color: var(--ink-3); font-family: var(--font-head); font-size: 11px; letter-spacing: 1px; padding: 10px 18px; border-radius: var(--r-sm); border: 1px solid var(--border); cursor: pointer; transition: border-color .15s, color .15s; }
.btn-cookies-reject:hover { border-color: var(--ink-3); color: var(--ink); }

/* Modal Confirmación */
.confirm-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 1rem; }
.confirm-title { font-family: var(--font-head); font-size: 20px; color: var(--ink); text-align: center; margin-bottom: .5rem; }
.confirm-text { font-size: 15px; color: var(--ink-2); line-height: 1.8; text-align: center; font-style: italic; }
.confirm-kanji { font-size: 48px; text-align: center; color: var(--paper-3); font-family: serif; margin-top: 1rem; }

/* ── FORMULARIO ──────────────────────────────────────────────────── */
.form-title { font-family: var(--font-head); font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.form-subtitle { font-size: 14px; color: var(--ink-3); font-style: italic; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { font-family: var(--font-head); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-3); }
.form-label .req { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 10px 13px; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.form-input.is-error, .form-select.is-error, .form-textarea.is-error { border-color: var(--red); background: var(--red-light); }
.form-input.is-ok, .form-select.is-ok, .form-textarea.is-ok { border-color: #4caf50; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a4828' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-submit { width: 100%; background: var(--red); color: #fff; font-family: var(--font-head); font-size: 11px; letter-spacing: 2px; font-weight: 600; padding: 14px; border-radius: var(--r-sm); border: none; cursor: pointer; transition: background .15s; margin-top: 4px; }
.form-submit:hover { background: var(--red-dark); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-privacy { font-size: 12px; color: var(--ink-3); text-align: center; margin-top: 8px; font-style: italic; }
.form-privacy a { color: var(--red); }

/* ── ANIMACIONES ─────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-text  { animation: fadeUp .6s ease both; }
.hero-stats { animation: fadeUp .6s .15s ease both; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero::after { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .modal-box { max-width: 100%; }
  .modal-header, .modal-body { padding: 1.25rem; }
}
