/* ============================================================
   Despacho Jurídico Benítez & Asociados
   Hoja de estilos principal
   ============================================================ */

:root {
  --black:      #0d0e12;
  --ink:        #14161d;
  --ink-2:      #1c1f28;
  --charcoal:   #23262f;
  --gold:       #c9a24b;
  --gold-2:     #e6c877;
  --gold-deep:  #a67c2e;
  --cream:      #f6f2e9;
  --paper:      #fbf9f4;
  --muted:      #7d7f88;
  --line:       rgba(201,162,75,.28);
  --shadow:     0 20px 50px -20px rgba(0,0,0,.45);
  --gold-grad:  linear-gradient(120deg, #a67c2e 0%, #e6c877 45%, #c9a24b 70%, #f2dc9b 100%);
  --serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:       'Jost', 'Segoe UI', system-ui, sans-serif;
  --wrap:       1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-deep);
}

/* ---------- Eyebrow / section titles ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }

.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: .95rem;
  letter-spacing: .04em;
  padding: 15px 30px;
  border-radius: 2px;
  cursor: pointer; border: 1px solid transparent;
  transition: all .3s ease; text-transform: uppercase;
}
.btn-gold { background: var(--gold-grad); color: #241a06; box-shadow: 0 12px 30px -12px rgba(166,124,46,.7); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -12px rgba(166,124,46,.85); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--gold-deep); color: #fff; transform: translateY(-3px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}
.site-header.transparent { background: linear-gradient(180deg, rgba(8,9,12,.55), rgba(8,9,12,0)); }
.site-header.solid { background: rgba(13,14,18,.96); box-shadow: 0 8px 30px -12px rgba(0,0,0,.6); backdrop-filter: blur(8px); padding: 8px 0; }

.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 62px; width: auto; transition: height .35s ease; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.site-header.solid .brand img { height: 50px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name .n1 { font-family: var(--serif); color: #fff; font-size: 1.15rem; letter-spacing: .02em; }
.brand-name .n2 { font-family: var(--sans); color: var(--gold-2); font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.menu > li > a, .menu > li > .drop-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.88); font-size: .92rem; letter-spacing: .06em;
  text-transform: uppercase; padding: 12px 18px; cursor: pointer;
  background: none; border: none; font-family: var(--sans); font-weight: 400;
  transition: color .25s ease; position: relative;
}
.menu > li > a::after, .menu > li > .drop-toggle::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 6px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.menu > li > a:hover, .menu > li > .drop-toggle:hover,
.menu > li.active > a { color: var(--gold-2); }
.menu > li > a:hover::after, .menu > li.active > a::after,
.menu > li:hover > .drop-toggle::after { transform: scaleX(1); }
.drop-toggle .caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .3s; }

/* Dropdown */
.has-drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% - 2px); left: 0; transform: translateY(10px);
  width: 320px; background: #fff; border-top: 3px solid var(--gold);
  box-shadow: var(--shadow); padding: 12px; opacity: 0; visibility: hidden;
  transition: opacity .28s ease, transform .28s ease; display: grid; gap: 2px;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-drop:hover .drop-toggle .caret { transform: rotate(-135deg); margin-top: 2px; }
.dropdown a {
  display: flex; align-items: center; gap: 14px; padding: 11px 12px; color: var(--ink);
  border-radius: 2px; transition: background .2s ease, color .2s ease; text-transform: none; letter-spacing: normal;
}
.dropdown a:hover { background: var(--cream); color: var(--gold-deep); }
.dropdown a .di {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%;
  display: grid; place-items: center; background: linear-gradient(135deg, #f3ead2, #e6c877);
  color: #7a5a1e;
}
.dropdown a .di svg { width: 19px; height: 19px; }
.dropdown a .dtext { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.dropdown a .dt { font-family: var(--sans); font-weight: 500; font-size: .95rem; }
.dropdown a .dd { display: block; font-size: .74rem; color: var(--muted); }

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 11px 22px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 120; }
.hamburger span { width: 26px; height: 2px; background: #fff; transition: .3s; }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; color: #fff; overflow: hidden; }
.hero > .wrap { flex: 1 1 auto; display: flex; align-items: center; width: 100%; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 15%, rgba(201,162,75,.20) 0%, rgba(201,162,75,0) 45%),
    linear-gradient(105deg, rgba(7,8,11,.96) 0%, rgba(9,10,14,.86) 32%, rgba(9,10,14,.55) 68%, rgba(9,10,14,.80) 100%),
    linear-gradient(0deg, rgba(7,8,11,.85) 0%, rgba(7,8,11,0) 30%);
}
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: var(--gold-grad);
}
.hero-inner { padding: 150px 0 70px; max-width: 760px; }
.hero .eyebrow { color: var(--gold-2); }
.hero .eyebrow::before { background: var(--gold-2); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; letter-spacing: .01em; }
.hero h1 em { font-style: italic; }
.hero p.lead { font-size: 1.2rem; color: rgba(255,255,255,.82); margin: 26px 0 38px; max-width: 560px; font-weight: 300; }
.hero h1 + .hero-actions { margin-top: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }

/* Values band */
.values-band { position: relative; z-index: 3; width: 100%; border-top: 1px solid rgba(201,162,75,.35); background: rgba(9,10,14,.55); backdrop-filter: blur(6px); }
.values-band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.values-band .v { padding: 24px 14px; text-align: center; position: relative; min-width: 0; }
.values-band .v + .v::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: rgba(201,162,75,.28); }
.values-band .v span { font-family: var(--serif); font-size: clamp(.95rem, 1.6vw, 1.15rem); letter-spacing: .14em; color: #fff; text-transform: uppercase; }
.values-band .v small { display: block; font-size: .68rem; letter-spacing: .25em; color: var(--gold-2); text-transform: uppercase; margin-top: 4px; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; overflow: hidden; background: #fff; border: 1px solid #ece6d8;
  box-shadow: 0 10px 30px -22px rgba(0,0,0,.4); transition: transform .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -26px rgba(0,0,0,.5); }
.service-card .thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(13,14,18,.55)); }
.service-card .num { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--serif); font-size: .8rem; color: var(--gold-2); letter-spacing: .1em; background: rgba(13,14,18,.55); padding: 5px 10px; border: 1px solid rgba(201,162,75,.4); }
.service-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .96rem; flex: 1; }
.service-card .more { margin-top: 20px; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-deep); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s; }
.service-card:hover .more { gap: 14px; }
.service-card .more .arrow { transition: transform .3s; }

/* ============================================================
   ABOUT / SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; box-shadow: var(--shadow); }
.split-media .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); z-index: -1; }
.split-media .badge {
  position: absolute; right: -18px; bottom: -18px; background: var(--ink); color: #fff;
  padding: 22px 26px; text-align: center; box-shadow: var(--shadow); border-bottom: 3px solid var(--gold);
}
.split-media .badge b { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-2); display: block; line-height: 1; }
.split-media .badge span { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.8); }
.split-content h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 20px; }
.split-content p { color: #4a4d57; margin-bottom: 16px; }

/* Mission / Vision / Values cards */
.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.mvv .card { background: #fff; padding: 38px 30px; border: 1px solid #ece6d8; position: relative; transition: transform .3s; }
.mvv .card:hover { transform: translateY(-6px); }
.mvv .card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold-grad); }
.mvv .card .ico { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, #f3ead2, #e6c877); margin-bottom: 20px; color: #7a5a1e; }
.mvv .card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.mvv .card p { color: var(--muted); font-size: .98rem; }

.value-chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.value-chips .chip { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; background: #fff; border: 1px solid var(--line); font-family: var(--serif); letter-spacing: .06em; }
.value-chips .chip i { width: 8px; height: 8px; background: var(--gold-grad); border-radius: 50%; display: inline-block; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--ink); color: #fff; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats .stat b { font-family: var(--serif); font-weight: 700; font-size: clamp(3.2rem, 6vw, 5rem); line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 10px; }
.stats .stat > span { display: block; font-size: .9rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.72); }
.stats .stat + .stat { position: relative; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(9,10,14,.9), rgba(9,10,14,.82)); }
.cta-band .inner { padding: 96px 24px; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; max-width: 780px; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE BANNER (interior pages)
   ============================================================ */
.page-banner { position: relative; color: #fff; padding: 170px 0 80px; overflow: hidden; }
.page-banner .bg { position: absolute; inset: 0; z-index: -2; }
.page-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(9,10,14,.92), rgba(9,10,14,.6)); }
.page-banner::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--gold-grad); z-index:2; }
.page-banner h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 16px; }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb span.sep { color: var(--gold); }
.breadcrumb .cur { color: var(--gold-2); }

/* ============================================================
   SERVICE DETAIL
   ============================================================ */
.svc-detail { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.svc-detail .lead-img { width: 100%; box-shadow: var(--shadow); margin-bottom: 34px; }
.svc-detail h2 { font-size: 2.2rem; margin-bottom: 18px; }
.svc-detail h3 { font-size: 1.4rem; margin: 34px 0 14px; }
.svc-detail p { color: #4a4d57; margin-bottom: 16px; }
.svc-list { list-style: none; display: grid; gap: 14px; margin: 22px 0; }
.svc-list li { display: flex; gap: 14px; align-items: flex-start; color: #3f424c; }
.svc-list li .tick { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #f3ead2, #e6c877); display: grid; place-items: center; color: #7a5a1e; font-size: .8rem; margin-top: 2px; }

.svc-aside { position: sticky; top: 100px; display: grid; gap: 24px; }
.aside-card { background: var(--ink); color: #fff; padding: 34px 30px; border-bottom: 3px solid var(--gold); }
.aside-card h4 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.aside-card p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 22px; }
.aside-nav { background: var(--cream); border: 1px solid #ece6d8; padding: 12px; }
.aside-nav .t { font-family: var(--serif); font-size: 1.1rem; padding: 12px 14px 8px; }
.aside-nav a { display: flex; justify-content: space-between; align-items: center; padding: 13px 14px; border-radius: 2px; font-size: .95rem; transition: background .2s, color .2s; color: var(--ink); }
.aside-nav a:hover, .aside-nav a.active { background: #fff; color: var(--gold-deep); }
.aside-nav a.active { border-left: 3px solid var(--gold); font-weight: 500; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-list { display: grid; gap: 22px; margin: 32px 0; }
.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-item .ic { flex: 0 0 50px; width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #f3ead2, #e6c877); display: grid; place-items: center; color: #7a5a1e; }
.info-item h4 { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--muted); margin-bottom: 3px; }
.info-item p, .info-item a { font-size: 1.05rem; color: var(--ink); }
.info-item a:hover { color: var(--gold-deep); }

.contact-grid > * { min-width: 0; }
.info-item a { overflow-wrap: anywhere; word-break: break-word; }
.form-card { background: #fff; padding: 40px; border: 1px solid #ece6d8; box-shadow: var(--shadow); min-width: 0; max-width: 100%; }
.form-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 24px; font-size: .95rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; max-width: 100%; padding: 14px 16px; border: 1px solid #dcd7ca; background: var(--paper);
  font-family: var(--sans); font-size: 1rem; color: var(--ink); transition: border .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }

.map-wrap { margin-top: 60px; border: 1px solid #ece6d8; box-shadow: var(--shadow); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,.72); padding-top: 74px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 54px; }
.footer-brand img { height: 78px; margin-bottom: 18px; }
.footer-brand p { font-size: .95rem; max-width: 320px; }
.footer-col h5 { font-family: var(--serif); color: #fff; font-size: 1.15rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--gold-grad); }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { font-size: .95rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--gold-2); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; margin-bottom: 12px; }
.footer-contact .fi { color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a { width: 42px; height: 42px; border: 1px solid rgba(201,162,75,.4); border-radius: 50%; display: grid; place-items: center; color: var(--gold-2); transition: all .3s; }
.social a:hover { background: var(--gold-grad); color: #241a06; border-color: transparent; transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: var(--gold-2); }

.made-by { background: #070709; text-align: center; padding: 16px; font-size: .85rem; letter-spacing: .04em; color: rgba(255,255,255,.6); }
.made-by a { color: var(--gold-2); font-weight: 500; }
.made-by a:hover { text-decoration: underline; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .3s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .menu {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw); height: 100vh;
    background: var(--ink); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 100px 24px 40px; gap: 2px; transform: translateX(105%); transition: transform .4s ease;
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.6); overflow-y: auto;
  }
  .menu.open { transform: translateX(0); }
  .menu > li > a, .menu > li > .drop-toggle { width: 100%; padding: 16px 8px; font-size: 1rem; justify-content: space-between; }
  .menu > li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    background: transparent; border-top: none; min-width: 0; width: auto; padding: 0 0 12px; display: none;
  }
  .has-drop.open .dropdown { display: grid; }
  .dropdown a { color: rgba(255,255,255,.8); padding: 12px 10px; }
  .dropdown a:hover { background: rgba(255,255,255,.05); color: var(--gold-2); }
  .dropdown a .dd { color: rgba(255,255,255,.5); }
  .has-drop.open .drop-toggle .caret { transform: rotate(-135deg); margin-top: 2px; }

  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .split-media .frame { inset: 12px -12px -12px 12px; }
  .mvv { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .values-band .wrap { grid-template-columns: 1fr 1fr; }
  .values-band .v { padding: 20px 12px; }
  .values-band .v:nth-child(3)::before { display: none; }
  .hero { min-height: auto; }
  .hero-inner { padding: 130px 0 56px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-band .wrap { grid-template-columns: 1fr 1fr; }
  .values-band .v:nth-child(3)::before { display: none; }
  .form-card { padding: 26px; }
  .split-media .badge { right: 10px; bottom: -14px; padding: 16px 18px; }
  .brand-name { display: none; }
}
