:root {
  --navy: #071b2a;
  --navy-soft: #0d2a3d;
  --orange: #ff6505;
  --orange-dark: #e95300;
  --cream: #fff9f3;
  --cream-deep: #fcede0;
  --peach: #ffd3ad;
  --white: #ffffff;
  --ink: #102332;
  --muted: #64717c;
  --line: rgba(7, 27, 42, .12);
  --shadow: 0 24px 70px rgba(48, 27, 11, .12);
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  overflow: hidden;
  background: rgba(255, 249, 243, .96);
  border-bottom: 1px solid rgba(255, 101, 5, .12);
  box-shadow: 0 8px 30px rgba(7, 27, 42, .06);
  backdrop-filter: blur(16px);
}
.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.site-header::before {
  width: 56vw;
  height: 260px;
  right: -10vw;
  bottom: -210px;
  background: rgba(255, 166, 92, .24);
  transform: rotate(-8deg);
}
.site-header::after {
  width: 38vw;
  height: 180px;
  left: -8vw;
  top: -150px;
  background: rgba(255, 190, 134, .22);
}
.header-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  min-height: 108px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
}
.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.5vw, 50px);
}
.nav a {
  position: relative;
  padding: 12px 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transition: left .25s ease, right .25s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.active::after { left: 0; right: 0; }
.nav a.active { color: var(--orange-dark); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 19px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--orange); }
.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(7, 27, 42, .08);
  border-radius: 17px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 12px 30px rgba(7, 27, 42, .08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(690px, calc(100vh - 108px));
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: var(--navy);
}
.hero-photo {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 38%;
  background-image: url('/assets/fernando-produccion.jpg');
  background-size: cover;
  background-position: 63% 42%;
  filter: saturate(.82) contrast(1.05);
  transform: scale(1.015);
}
.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #061827 0%, rgba(6,24,39,.98) 37%, rgba(6,24,39,.62) 67%, rgba(6,24,39,.18) 100%),
    linear-gradient(0deg, rgba(2,10,16,.78) 0%, transparent 42%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -240px;
  width: 660px;
  height: 340px;
  border: 2px solid rgba(255, 101, 5, .24);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 92px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero-kicker i,
.footer-message small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5.45vw, 82px);
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 strong {
  color: var(--orange);
  font-weight: 850;
}
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--orange), #ff7f24);
  color: var(--white);
  box-shadow: 0 15px 38px rgba(255, 101, 5, .25);
}
.button-primary:hover { box-shadow: 0 18px 42px rgba(255, 101, 5, .35); }
.button-outline {
  border-color: rgba(255,255,255,.72);
  background: rgba(7,27,42,.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.button-outline:hover { border-color: var(--orange); background: rgba(255,101,5,.12); }
.hero-signature {
  position: absolute;
  right: 3%;
  bottom: 58px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 25px;
  font-style: italic;
  transform: rotate(-7deg);
}
.hero-signature::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 8px 0 0 auto;
  background: var(--orange);
  transform: rotate(-5deg);
}

.capabilities {
  position: relative;
  z-index: 3;
  width: min(1030px, calc(100% - 40px));
  min-height: 132px;
  margin: -35px auto 0;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,101,5,.12);
  border-radius: 30px;
  background: rgba(255, 252, 248, .96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.capability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  border-right: 1px solid rgba(255,101,5,.16);
}
.capability:last-child { border-right: 0; }
.capability-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--orange);
  font-size: 24px;
  font-weight: 800;
}
.capability div { display: grid; line-height: 1.2; }
.capability strong { font-size: 14px; }
.capability small { margin-top: 4px; color: var(--muted); font-size: 13px; }

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}
.section-contained { width: min(var(--max), calc(100% - 40px)); }
.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.section-label::before { content: ""; width: 36px; height: 2px; background: var(--orange); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}
.section-heading h2,
.section-top h2,
.process-intro h2,
.contact-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.intro-copy > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
}
.quality-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.quality-note:first-of-type { margin-top: 28px; }
.quality-note span { color: var(--orange); font-size: 12px; font-weight: 850; }
.quality-note strong { color: var(--navy); font-size: 15px; }

.services-section {
  position: relative;
  overflow: hidden;
  background: #fffdfb;
  border-block: 1px solid rgba(255,101,5,.1);
}
.services-section::before,
.contact-section::before,
.footer::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 70vw;
  height: 330px;
  border-radius: 50%;
  background: rgba(255, 196, 145, .2);
}
.services-section::before { right: -30vw; top: -250px; transform: rotate(-8deg); }
.section-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.section-top > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(7,27,42,.1);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 15px 35px rgba(47,28,14,.04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -92px;
  bottom: -92px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .07;
  transition: transform .3s ease, opacity .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,101,5,.3);
  box-shadow: 0 22px 48px rgba(47,28,14,.09);
}
.service-card:hover::after { transform: scale(1.55); opacity: .1; }
.service-number { position: absolute; top: 24px; right: 26px; color: #adb2b5; font-size: 11px; font-weight: 800; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--cream-deep);
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
}
.service-card h3 { margin: 52px 0 12px; color: var(--navy); font-size: 21px; line-height: 1.2; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.portfolio-section { padding-bottom: 125px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 320px 250px;
  gap: 18px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--navy);
  box-shadow: 0 20px 55px rgba(7,27,42,.12);
}
.portfolio-main { grid-row: 1 / 3; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.portfolio-main img { object-position: center 31%; }
.portfolio-promo img { object-position: center 39%; }
.portfolio-card:hover img { transform: scale(1.035); }
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2,12,20,.9), rgba(2,12,20,0) 58%);
}
.portfolio-caption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: var(--white);
}
.portfolio-caption span,
.portfolio-concept span { color: #ffc18f; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.portfolio-caption h3 { margin: 5px 0 0; font-size: clamp(22px, 3vw, 34px); line-height: 1.1; }
.portfolio-promo .portfolio-caption h3 { font-size: 24px; }
.portfolio-concept {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white);
}
.portfolio-concept::after { background: radial-gradient(circle at 100% 0, rgba(255,255,255,.2), transparent 42%); }
.portfolio-concept > * { position: relative; z-index: 2; }
.portfolio-concept span { color: rgba(255,255,255,.72); }
.portfolio-concept h3 { max-width: 340px; margin: 7px 0 0; font-size: clamp(23px, 3vw, 34px); line-height: 1.08; }
.sound-wave { display: flex; align-items: center; gap: 5px; height: 80px; }
.sound-wave i { width: 4px; border-radius: 99px; background: rgba(255,255,255,.88); }
.sound-wave i:nth-child(1), .sound-wave i:nth-child(7) { height: 24px; }
.sound-wave i:nth-child(2), .sound-wave i:nth-child(6) { height: 48px; }
.sound-wave i:nth-child(3), .sound-wave i:nth-child(5) { height: 70px; }
.sound-wave i:nth-child(4) { height: 38px; }

.process-section { background: var(--navy); color: var(--white); }
.process-section .section { padding-block: 100px; }
.process-intro { display: grid; grid-template-columns: .35fr 1fr; gap: 55px; align-items: start; margin-bottom: 55px; }
.process-intro .eyebrow { padding-top: 12px; color: #ffa15e; }
.process-intro h2 { max-width: 760px; color: var(--white); }
.process-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.process-list li { position: relative; padding: 28px 28px 8px 0; }
.process-list li:not(:last-child)::after { content: ""; position: absolute; top: 28px; right: 19px; width: 7px; height: 7px; border-top: 1px solid rgba(255,255,255,.45); border-right: 1px solid rgba(255,255,255,.45); transform: rotate(45deg); }
.process-list li > span { color: var(--orange); font-size: 11px; font-weight: 900; }
.process-list strong { display: block; margin-top: 34px; font-size: 19px; }
.process-list p { margin: 8px 0 0; color: rgba(255,255,255,.6); font-size: 14px; }

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}
.contact-section::before { left: -30vw; bottom: -250px; transform: rotate(8deg); }
.contact-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 60px;
  align-items: center;
}
.contact-intro > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 16px; }
.contact-details { display: grid; gap: 12px; margin-top: 34px; }
.contact-details a { display: flex; align-items: center; gap: 13px; color: var(--navy); font-size: 14px; font-weight: 700; }
.contact-details a > span { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; }
.contact-details a div { display: grid; }
.contact-details small { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(7,27,42,.09);
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.form-heading { display: grid; margin-bottom: 27px; }
.form-heading span { color: var(--orange-dark); font-size: 10px; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.form-heading strong { margin-top: 4px; color: var(--navy); font-size: 25px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; margin-bottom: 17px; color: var(--navy); font-size: 12px; font-weight: 800; }
.contact-form label b { color: var(--orange); }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #dce0e3;
  border-radius: 12px;
  outline: 0;
  background: #fdfdfd;
  color: var(--ink);
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input, select { min-height: 50px; padding: 11px 14px; }
textarea { min-height: 125px; padding: 13px 14px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #9ba3aa; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); background: white; box-shadow: 0 0 0 4px rgba(255,101,5,.1); }
.check { display: flex !important; gap: 10px; align-items: flex-start; color: var(--muted) !important; font-weight: 500 !important; }
.check input { width: 18px; min-height: 18px; height: 18px; flex: 0 0 18px; margin: 2px 0 0; accent-color: var(--orange); }
.submit { width: 100%; border: 0; }
.submit:disabled { cursor: wait; opacity: .7; }
.form-status { min-height: 23px; margin-top: 12px; font-size: 13px; font-weight: 750; }
.form-status.ok { color: #117343; }
.form-status.error { color: #a92727; }

.footer {
  position: relative;
  overflow: hidden;
  padding: 54px 20px 24px;
  border-top: 1px solid rgba(255,101,5,.14);
  background: #fff7ee;
}
.footer::before { right: -20vw; bottom: -250px; background: rgba(255,174,104,.24); transform: rotate(-10deg); }
.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.footer-inner { display: grid; grid-template-columns: 150px 1fr .8fr; gap: 50px; align-items: center; }
.footer-brand { width: 120px; height: 120px; }
.footer-message { display: grid; padding: 13px 34px; border-inline: 1px solid rgba(255,101,5,.22); }
.footer-message strong { color: var(--navy); font-size: 22px; line-height: 1.2; }
.footer-message > span { color: var(--orange-dark); font-size: 19px; font-weight: 800; }
.footer-message small { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 14px; color: var(--navy); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-message small i { width: 4px; height: 4px; }
.footer-contact { display: grid; gap: 5px; color: var(--navy); font-size: 14px; }
.footer-contact a { font-weight: 750; overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--orange-dark); }
.footer-contact span { color: var(--muted); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; margin-top: 35px; padding-top: 22px; border-top: 1px solid rgba(7,27,42,.12); color: #76808a; font-size: 10px; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.footer-bottom strong { color: var(--navy); }
.footer-bottom span:not(:last-child)::before { content: ""; display: inline-block; width: 1px; height: 13px; margin-right: 18px; vertical-align: middle; background: var(--orange); }
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #21b45b;
  color: white;
  box-shadow: 0 12px 30px rgba(11,89,45,.25);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -.02em;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid rgba(255,101,5,.45); outline-offset: 4px; }

@media (max-width: 980px) {
  html { scroll-padding-top: 88px; }
  .header-inner { min-height: 88px; grid-template-columns: 82px 1fr 56px; width: min(100% - 30px, var(--max)); gap: 14px; }
  .brand { width: 76px; height: 76px; }
  .header-cta { display: none; }
  .nav-toggle { display: block; grid-column: 3; justify-self: end; }
  .nav {
    position: fixed;
    z-index: 101;
    top: 88px;
    left: 15px;
    right: 15px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(255,101,5,.16);
    border-radius: 20px;
    background: rgba(255,249,243,.99);
    box-shadow: 0 24px 55px rgba(7,27,42,.18);
    opacity: 0;
    transform: translateY(-14px);
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .nav.open { opacity: 1; transform: translateY(0); visibility: visible; }
  .nav a { padding: 14px 12px; border-bottom: 1px solid rgba(7,27,42,.08); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .hero { min-height: 650px; }
  .hero-photo { inset: 0 0 0 20%; background-position: 61% 40%; }
  .hero-overlay { background: linear-gradient(90deg, #061827 0%, rgba(6,24,39,.97) 44%, rgba(6,24,39,.55) 100%), linear-gradient(0deg, rgba(2,10,16,.72), transparent 55%); }
  .hero-signature { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 480px 240px; }
  .portfolio-main { grid-column: 1; grid-row: 1; }
  .portfolio-promo { grid-column: 2; grid-row: 1; }
  .portfolio-concept { grid-column: 1 / -1; grid-row: 2; }
  .process-intro { grid-template-columns: 1fr; gap: 8px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2)::after { display: none; }
  .contact-shell { grid-template-columns: 1fr; gap: 45px; max-width: 760px; }
  .contact-intro { max-width: 620px; }
  .footer-inner { grid-template-columns: 120px 1fr; }
  .footer-contact { grid-column: 2; }
}

@media (max-width: 720px) {
  .hero { min-height: 670px; align-items: flex-end; }
  .hero-photo { inset: 0; background-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,18,29,.96), rgba(4,18,29,.75)), linear-gradient(0deg, rgba(2,10,16,.96) 0%, rgba(2,10,16,.1) 75%); }
  .hero-content { width: min(100% - 36px, var(--max)); padding: 74px 0 64px; }
  .hero h1 { font-size: clamp(42px, 11.2vw, 58px); }
  .hero h1 br:nth-child(2) { display: none; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .capabilities { width: calc(100% - 28px); grid-template-columns: repeat(2, 1fr); padding: 18px; border-radius: 24px; }
  .capability { justify-content: flex-start; border-right: 0; }
  .capability:nth-child(odd) { border-right: 1px solid rgba(255,101,5,.16); }
  .capability:nth-child(-n+2) { border-bottom: 1px solid rgba(255,101,5,.16); }
  .section { width: calc(100% - 36px); padding: 84px 0; }
  .intro-grid, .section-top { grid-template-columns: 1fr; gap: 30px; }
  .section-top { margin-bottom: 36px; }
  .section-heading h2, .section-top h2, .process-intro h2, .contact-intro h2 { font-size: clamp(36px, 10vw, 50px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .service-card h3 { margin-top: 38px; }
  .portfolio-section { padding-bottom: 86px; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 430px 470px auto; }
  .portfolio-main, .portfolio-promo, .portfolio-concept { grid-column: 1; grid-row: auto; }
  .portfolio-concept { min-height: 230px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { display: grid; grid-template-columns: 42px 1fr; gap: 8px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-list li::after { display: none !important; }
  .process-list strong { margin-top: 0; }
  .process-list p { margin-top: 3px; }
  .contact-section { padding: 84px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { border-radius: 22px; }
  .footer { padding-top: 40px; }
  .footer-inner { grid-template-columns: 90px 1fr; gap: 20px; align-items: start; }
  .footer-brand { width: 86px; height: 86px; }
  .footer-message { padding: 8px 0 8px 22px; border-left: 1px solid rgba(255,101,5,.22); border-right: 0; }
  .footer-message strong { font-size: 17px; }
  .footer-message > span { font-size: 15px; }
  .footer-message small { font-size: 7px; gap: 7px; }
  .footer-contact { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(7,27,42,.1); }
  .footer-bottom { display: grid; gap: 8px; }
  .footer-bottom span:not(:last-child)::before { display: none; }
}

@media (max-width: 430px) {
  .header-inner { width: calc(100% - 24px); }
  .hero { min-height: 650px; }
  .hero-kicker { gap: 8px; letter-spacing: .18em; }
  .hero h1 { font-size: 40px; }
  .capabilities { padding: 12px; }
  .capability { gap: 9px; padding: 10px 6px; }
  .capability-icon { width: 40px; height: 40px; flex-basis: 40px; font-size: 20px; }
  .capability strong { font-size: 12px; }
  .capability small { font-size: 11px; }
  .portfolio-grid { grid-template-rows: 370px 420px auto; }
  .portfolio-concept { align-items: flex-end; }
  .sound-wave { display: none; }
  .contact-details a { font-size: 13px; }
  .contact-form { padding: 24px 18px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
