/* ============================================================
   MATEUS TOLOCZKO ADVOGADO — style.css
   Paleta: #000000 (fundo) · #FF6600 (laranja) · #FFFFFF (textos)
   Tipografia: Playfair Display (títulos) · Montserrat (corpo)
   Mobile-First · Sem frameworks externos
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg:           #000000;
  --bg-section:   #0A0A0A;
  --bg-card:      #111111;
  --bg-card-alt:  #0D0D0D;

  --text:         #FFFFFF;
  --text-70:      rgba(255, 255, 255, 0.70);
  --text-40:      rgba(255, 255, 255, 0.40);
  --text-15:      rgba(255, 255, 255, 0.15);
  --text-08:      rgba(255, 255, 255, 0.08);

  --accent:       #FF6600;
  --accent-dark:  #CC5200;
  --accent-light: rgba(255, 102, 0, 0.12);
  --accent-10:    rgba(255, 102, 0, 0.10);

  --glow-sm:  0 0 16px rgba(255, 102, 0, 0.35), 0 0 32px rgba(255, 102, 0, 0.15);
  --glow-md:  0 0 28px rgba(255, 102, 0, 0.50), 0 0 60px rgba(255, 102, 0, 0.25);
  --glow-btn: 0 0 20px rgba(255, 102, 0, 0.60), 0 4px 24px rgba(255, 102, 0, 0.40);

  --shadow-card:  0 2px 24px rgba(0, 0, 0, 0.60), 0 1px 4px rgba(0, 0, 0, 0.40);
  --shadow-hover: 0 8px 48px rgba(0, 0, 0, 0.80), 0 2px 12px rgba(0, 0, 0, 0.50);

  --ff-title: 'Playfair Display', Georgia, serif;
  --ff-body:  'Montserrat', system-ui, sans-serif;

  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  0.30s;

  --container: 1200px;
  --pad-x:     clamp(1.25rem, 5vw, 2.5rem);
  --pad-sec:   clamp(5rem, 10vw, 8rem);

  scroll-padding-top: 5.5rem;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

address { font-style: normal; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.text-center { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.divider {
  width: 100%;
  height: 0.5px;
  background: var(--text-15);
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ============================================================
   4. TYPOGRAPHY SCALE
   ============================================================ */
h1 {
  font-family: var(--ff-title);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--ff-title);
  font-size: clamp(1.65rem, 3.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--ff-title);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.65rem;
}

h4 {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-40);
  margin-bottom: 1.25rem;
}

p { color: var(--text-70); }

.body-lg {
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
  line-height: 1.9;
  color: var(--text-70);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background    var(--dur) var(--ease),
    color         var(--dur) var(--ease),
    border-color  var(--dur) var(--ease),
    box-shadow    var(--dur) var(--ease),
    transform     var(--dur) var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

/* Solid — laranja */
.btn-primary {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: var(--glow-btn);
}

/* Ghost */
.btn-outline {
  background: transparent;
  color: var(--text-70);
  border-color: var(--text-40);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  box-shadow: var(--glow-sm);
}

/* ============================================================
   6. HEADER
   ============================================================ */
#header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  padding-block: 1.25rem;
  transition:
    background      var(--dur) var(--ease),
    backdrop-filter var(--dur) var(--ease),
    padding         var(--dur) var(--ease),
    border-color    var(--dur) var(--ease),
    box-shadow      var(--dur) var(--ease);
  border-bottom: 0.5px solid transparent;
}

#header.scrolled {
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-color: var(--text-15);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.60);
  padding-block: 0.875rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  background: var(--accent);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.logo:hover .logo-mark {
  box-shadow: var(--glow-btn);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--ff-title);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--ff-body);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-40);
}

/* Desktop nav */
.nav-list {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  font-family: var(--ff-body);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-70);
}
.nav-list a:hover { color: var(--text); }

.nav-cta {
  border: 1px solid var(--text-40) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  color: var(--text) !important;
  transition:
    border-color  var(--dur) var(--ease),
    box-shadow    var(--dur) var(--ease),
    color         var(--dur) var(--ease),
    background    var(--dur) var(--ease) !important;
}
.nav-cta:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  box-shadow: var(--glow-sm);
  background: var(--accent-light);
}

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

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform var(--dur) var(--ease),
    opacity   var(--dur) var(--ease);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   7. MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset-block: 0;
  inset-inline-end: -100%;
  width: min(320px, 85vw);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 0.5px solid var(--text-15);
  z-index: 199;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: inset-inline-end 0.42s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open { inset-inline-end: 0; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  text-align: center;
}

.mobile-nav a {
  font-family: var(--ff-title);
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--accent); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: 198;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   8. HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--pad-sec);
  padding-top: calc(var(--pad-sec) + 4rem);
  background: #000000;
}

/* Subtle grain overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Orange ambient glow bottom-right */
#hero::after {
  content: '';
  position: absolute;
  inset-inline-end: -10%;
  inset-block-end: -10%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(255, 102, 0, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-title {
  margin-block: 0.5rem 1.375rem;
  color: var(--text);
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
  line-height: 1.85;
  color: var(--text-70);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-family: var(--ff-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero image */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: min(360px, 90vw);
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover), 0 0 60px rgba(255, 102, 0, 0.08);
  border: 0.5px solid var(--text-15);
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.05) brightness(0.88);
  transition: transform 0.8s var(--ease);
}

.hero-img-frame:hover img { transform: scale(1.04); }

.hero-img-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to right, rgba(0,0,0,0.40) 0%, transparent 40%);
}

/* Floating badge */
.hero-badge {
  position: absolute;
  inset-block-end: 1.75rem;
  inset-inline-end: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent);
  color: #000000;
  text-align: center;
  box-shadow: var(--glow-btn);
  line-height: 1.1;
  padding: 0.5rem;
}

.hero-badge-number {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
  color: #000000;
}

.hero-badge-label {
  font-family: var(--ff-body);
  font-size: 0.50rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.75);
}

/* ============================================================
   9. SOBRE
   ============================================================ */
#sobre { padding-block: var(--pad-sec); background: var(--bg); }

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-text .body-lg { margin-bottom: 2rem; }

.sobre-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  border: 0.5px solid var(--text-15);
}

.sobre-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.05) brightness(0.85);
  transition: transform 0.7s var(--ease);
}

.sobre-media:hover img { transform: scale(1.04); }

/* ============================================================
   10. SERVIÇOS — BENTO GRID
   ============================================================ */
#servicos {
  padding-block: var(--pad-sec);
  background: var(--bg-section);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--text-08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--text-15);
}

.bento-card {
  background: var(--bg-card);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  transition:
    background    var(--dur) var(--ease),
    box-shadow    var(--dur) var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(255,102,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.bento-card:hover {
  background: #141414;
  box-shadow: inset 0 0 0 1px rgba(255,102,0,0.30), var(--glow-sm);
}

.bento-card:hover::before { opacity: 1; }

.bento-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 0.5px solid var(--text-15);
  background: var(--accent-10);
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition:
    box-shadow    var(--dur) var(--ease),
    border-color  var(--dur) var(--ease),
    background    var(--dur) var(--ease);
}

.bento-card:hover .bento-icon {
  border-color: rgba(255,102,0,0.50);
  background: rgba(255, 102, 0, 0.16);
  box-shadow: var(--glow-sm);
}

.bento-card p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--text-70);
}

/* ============================================================
   11. MISSÃO, VISÃO E VALORES
   ============================================================ */
#mvv { padding-block: var(--pad-sec); background: var(--bg); }

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.mvv-item {
  padding: 2.25rem 0;
  border-top: 0.5px solid var(--text-15);
}

.mvv-item:last-child { border-bottom: 0.5px solid var(--text-15); }

.mvv-sep { display: none; }

.mvv-bar {
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 12px rgba(255,102,0,0.50);
}

.mvv-item h3 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.mvv-item p  { font-size: 0.9rem; line-height: 1.85; }

/* ============================================================
   12. CTA / CONTATO
   ============================================================ */
#contato {
  padding-block: var(--pad-sec);
  background: var(--bg-section);
}

.cta-block {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.cta-desc {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.85;
  color: var(--text-70);
  margin-bottom: 2rem;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-70);
}

.cta-contact-item svg { color: var(--accent); flex-shrink: 0; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
#footer {
  padding-top: 4rem;
  background: #050505;
}

#footer .divider { background: var(--text-15); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-mark {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  background: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.footer-brand .logo-name {
  display: block;
  font-family: var(--ff-title);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  margin-bottom: 0.1rem;
}

.footer-brand .logo-sub {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.footer-oab {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.footer-tagline {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 1.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.50);
  transition: color var(--dur) var(--ease);
}
.footer-social a:hover { color: var(--accent); }

.footer-nav h4,
.footer-contact h4 {
  color: rgba(255,255,255,0.35);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.footer-nav ul,
.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  font-family: var(--ff-body);
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur) var(--ease);
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 0.5px solid var(--text-08);
  padding-block: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   14. FADE-IN ANIMATION (IntersectionObserver)
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   0.65s var(--ease),
    transform 0.65s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   15. RESPONSIVE — TABLET >= 640px
   ============================================================ */
@media (min-width: 640px) {

  .hero-img-frame { width: min(420px, 80vw); }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .bento-1 { grid-column: 1 / 3; }
  .bento-2 { grid-column: 1;     grid-row: 2; }
  .bento-3 { grid-column: 2;     grid-row: 2; }
  .bento-4 { grid-column: 1 / 3; grid-row: 3; }

  .mvv-grid {
    grid-template-columns: 1fr 0.5px 1fr 0.5px 1fr;
    gap: 0;
  }

  .mvv-item {
    padding: 2rem 2.5rem;
    border-top: none;
    border-bottom: none;
  }

  .mvv-item:last-child { border: none; }

  .mvv-sep {
    display: block;
    background: var(--text-15);
    align-self: stretch;
    margin-block: 1.5rem;
  }

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

  .cta-contacts { flex-direction: row; justify-content: center; gap: 2rem; }
}

/* ============================================================
   16. RESPONSIVE — DESKTOP >= 900px
   ============================================================ */
@media (min-width: 900px) {

  .nav-list  { display: flex; }
  .hamburger { display: none; }

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

  .hero-img-frame { width: 100%; max-width: 520px; }

  .hero-badge {
    inset-inline-end: -1.25rem;
    width: 92px;
    height: 92px;
  }

  .sobre-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    border-radius: var(--radius-lg);
  }

  .bento-1 { grid-column: 1 / 3; grid-row: 1; }
  .bento-2 { grid-column: 3;     grid-row: 1; }
  .bento-3 { grid-column: 1;     grid-row: 2; }
  .bento-4 { grid-column: 2 / 4; grid-row: 2; }

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

/* ============================================================
   17. RESPONSIVE — WIDE >= 1280px
   ============================================================ */
@media (min-width: 1280px) {
  .hero-img-frame { max-width: 560px; }
}

/* ============================================================
   18. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; }
}
