:root {
  --forest: #293222;
  --forest-2: #39412f;
  --forest-3: #4a523c;
  --cream: #f7f3eb;
  --cream-2: #efe8dc;
  --paper: #fffdf9;
  --ink: #171a16;
  --muted: #62665d;
  --gold: #bf7d3c;
  --gold-soft: #d9bc7c;
  --line: rgba(41, 50, 34, 0.14);
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 22px 60px rgba(35, 39, 29, 0.10);
  --shadow-soft: 0 12px 35px rgba(35, 39, 29, 0.07);
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: radial-gradient(#000 0.55px, transparent 0.55px);
  background-size: 4px 4px;
}
::selection { background: var(--gold-soft); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(840px, 100%); margin-inline: auto; }
.small { font-size: 13px; }
.center { text-align: center; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, .serif {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 { margin-bottom: 22px; font-size: clamp(54px, 6.8vw, 95px); line-height: 0.94; }
h2 { margin-bottom: 18px; font-size: clamp(38px, 4.8vw, 62px); line-height: 1.00; }
h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.22; letter-spacing: -0.02em; }
p { color: var(--muted); }
.lead { max-width: 700px; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 14%, transparent);
}
.kicker.pill-kicker {
  padding: 7px 11px;
  border: 1px solid rgba(191, 125, 60, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.5);
}
.kicker.pill-kicker::before { width: 5px; height: 5px; box-shadow: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--gold); color: #fff; box-shadow: 0 10px 24px rgba(191, 125, 60, .20); }
.btn.primary:hover { background: #aa692c; }
.btn.light { background: var(--paper); color: var(--forest); border-color: rgba(255,255,255,.32); }
.btn.outline { background: transparent; color: var(--forest); border-color: rgba(41,50,34,.24); }
.btn.outline:hover { background: var(--paper); box-shadow: var(--shadow-soft); }
.btn.gold-soft { background: #e5ca8e; color: #1b1f18; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 235, .94);
  backdrop-filter: blur(18px);
}
.topbar.dark { background: rgba(35, 43, 29, .95); border-color: rgba(255,255,255,.09); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 152px; height: 48px; object-fit: contain; object-position: left center; }
.topbar.dark .brand img { filter: brightness(0) invert(1); }
.navlinks { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; }
.navlinks > a:not(.btn) { padding: 10px 12px; border-radius: 999px; color: #34382f; }
.navlinks > a:not(.btn):hover, .navlinks > a:not(.btn).active { background: rgba(41,50,34,.07); }
.topbar.dark .navlinks > a:not(.btn) { color: rgba(255,255,255,.78); }
.topbar.dark .navlinks > a:not(.btn):hover, .topbar.dark .navlinks > a:not(.btn).active { background: rgba(255,255,255,.08); color: #fff; }
.navlinks .btn { margin-left: 8px; min-height: 40px; padding: 10px 16px; }
.menu-btn { display: none; border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 9px 13px; font-weight: 800; }
.topbar.dark .menu-btn { color: #fff; border-color: rgba(255,255,255,.2); }

.hero-dark {
  position: relative;
  overflow: hidden;
  padding: 70px 0 66px;
  background: var(--forest);
  color: #fff;
}
.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24,29,20,.28), transparent 58%),
    url("../images/topographic-bg.jpg") center/cover no-repeat;
  opacity: .085;
  mix-blend-mode: screen;
}
.hero-dark::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -210px;
  width: 530px;
  height: 530px;
  border: 45px solid rgba(217,188,124,.09);
  border-radius: 50%;
}
.hero-dark .container { position: relative; z-index: 2; }
.hero-dark h1, .hero-dark h2, .hero-dark h3 { color: #fff; }
.hero-dark p { color: rgba(255,255,255,.72); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero-copy .lead { max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.micro-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 23px; }
.micro-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-dark .kicker { color: #e0c384; }

.brand-window {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
}
.brand-window-top, .brand-window-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 14px; font-size: 11px; font-weight: 800; }
.brand-window-top { background: var(--forest); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand-window-top a { padding: 7px 11px; border-radius: 999px; background: #e5ca8e; color: #181b16; }
.brand-window-stage { min-height: 320px; display: grid; place-items: center; position: relative; overflow: hidden; background: #f8f1e4; }
.brand-window-stage::before { content: ""; position: absolute; width: 340px; height: 340px; border: 28px solid rgba(191,125,60,.08); border-radius: 50%; }
.brand-window-stage img { position: relative; width: 63%; max-height: 210px; object-fit: contain; }
.brand-window-bottom { display: grid; grid-template-columns: repeat(3,1fr); padding: 0; border-top: 1px solid var(--line); }
.brand-window-bottom div { padding: 14px 12px; border-right: 1px solid var(--line); }
.brand-window-bottom div:last-child { border-right: 0; }
.brand-window-bottom strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 13px; }
.brand-window-bottom span { display: block; color: var(--muted); font-size: 10px; margin-top: 3px; }

.hero-benefits { margin-top: 34px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.hero-benefit { min-height: 116px; padding: 17px; border: 1px solid rgba(255,255,255,.10); border-radius: 13px; background: rgba(255,255,255,.045); }
.hero-benefit .icon { display: block; margin-bottom: 14px; color: #e0c384; font-size: 23px; }
.hero-benefit strong { display: block; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 15px; }
.hero-benefit small { display: block; margin-top: 5px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.45; }

.page-hero-light { position: relative; overflow: hidden; padding: 70px 0 36px; border-bottom: 1px solid var(--line); background: var(--cream); }
.page-hero-light::after { content: ""; position: absolute; right: 7%; top: 42px; width: 330px; height: 330px; border: 34px solid rgba(191,125,60,.07); border-radius: 50%; }
.page-hero-light .hero-narrow { max-width: 760px; position: relative; z-index: 2; }
.page-hero-light h1 { max-width: 880px; font-size: clamp(54px, 7vw, 88px); }
.page-hero-light .lead { max-width: 670px; }

.section { position: relative; padding: 80px 0; }
.section.compact { padding: 58px 0; }
.section.soft { background: var(--cream-2); }
.section.paper { background: var(--paper); }
.section.dark { background: var(--forest); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: rgba(255,255,255,.70); }
.topo-section { overflow: hidden; }
.topo-section::before { content: ""; position: absolute; inset: 0; background: url("../images/topographic-bg.jpg") center/cover no-repeat; opacity: .14; pointer-events: none; }
.topo-section > .container { position: relative; z-index: 1; }
.section-head { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 56px; margin-bottom: 34px; }
.section-head h2 { max-width: 700px; margin-bottom: 0; }
.section-head p { max-width: 580px; margin: 0; }
.section-head.single { display: block; }

.strategy-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.strategy-card { position: relative; min-height: 220px; padding: 28px 24px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,253,249,.86); box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; }
.strategy-card.dark { background: var(--forest-3); border-color: transparent; }
.strategy-card.dark h3 { color: #fff; }
.strategy-card h3 { max-width: 190px; margin-top: 44px; font-family: "Playfair Display", Georgia, serif; font-size: 25px; }
.strategy-card .symbol { position: absolute; top: 24px; left: 24px; color: var(--gold); font-size: 24px; }
.strategy-card .num { position: absolute; right: 18px; bottom: 11px; color: rgba(41,50,34,.20); font-size: 28px; font-weight: 300; }
.strategy-card.dark .num { color: rgba(255,255,255,.45); }

.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.process-card { position: relative; min-height: 170px; padding: 28px 28px 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.process-card .step { position: absolute; top: 18px; right: 20px; color: rgba(41,50,34,.14); font-size: 16px; font-weight: 800; }
.process-card .icon { color: var(--gold); font-size: 27px; }
.process-card h3 { margin-top: 14px; font-family: "Playfair Display", Georgia, serif; font-size: 22px; }

.conversation-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: center; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,249,.82); }
.conversation-panel h2 { font-size: clamp(38px, 4.2vw, 54px); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; }
.check-item { padding: 12px 14px; border: 1px solid rgba(41,50,34,.08); border-radius: 8px; background: rgba(255,255,255,.76); color: #353a30; font-size: 13px; font-weight: 650; }
.check-item::before { content: "●"; margin-right: 10px; color: var(--gold); font-size: 9px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.service-card { min-height: 185px; padding: 24px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,253,249,.92); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.service-card .service-icon { margin-bottom: 14px; color: var(--gold); font-size: 27px; }
.service-card small { display: block; margin-bottom: 6px; color: #a16d38; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.service-card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 20px; }
.service-card p { margin-bottom: 0; font-size: 13px; line-height: 1.55; }
.service-card[hidden] { display: none !important; }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-chip { border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); padding: 10px 17px; color: #34382f; font-size: 12px; font-weight: 750; cursor: pointer; }
.filter-chip.active { background: var(--forest); color: #fff; border-color: var(--forest); }

.case-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.case-card { display: flex; flex-direction: column; min-height: 315px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); }
.case-logo { min-height: 170px; display: grid; place-items: center; padding: 28px; border-bottom: 1px solid var(--line); background: #fff; }
.case-logo img { width: 100%; height: 125px; object-fit: contain; }
.case-body { display: flex; flex: 1; flex-direction: column; padding: 19px; }
.case-body h3 { font-family: "Playfair Display", Georgia, serif; font-size: 18px; }
.case-body p { margin-bottom: 15px; font-size: 12px; }
.case-body a { margin-top: auto; color: var(--gold); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.steps-four { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.step-box { min-height: 225px; padding: 24px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.step-box .number { color: #c1a462; font-family: "Playfair Display", Georgia, serif; font-size: 31px; font-weight: 700; }
.step-box h3 { margin-top: 11px; font-size: 17px; }
.step-box p { margin-bottom: 0; font-size: 12px; }
.dark-cta { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .9fr auto; gap: 30px; align-items: center; margin-top: 28px; padding: 27px 32px; border-radius: 18px; background: var(--forest); color: #fff; }
.dark-cta::after { content: ""; position: absolute; right: -40px; bottom: -80px; width: 190px; height: 190px; border: 20px solid rgba(255,255,255,.07); border-radius: 50%; }
.dark-cta h2 { margin: 0; color: #fff; font-size: clamp(34px, 3.8vw, 50px); }
.dark-cta p { margin: 0; color: rgba(255,255,255,.76); }
.dark-cta .btn { position: relative; z-index: 2; }

.about-hero { padding-top: 78px; padding-bottom: 62px; }
.about-hero .hero-copy-only { max-width: 750px; }
.about-hero h1 { font-size: clamp(58px, 7vw, 86px); }
.founder-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: start; }
.founder-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: var(--shadow-soft); }
.founder-photo { aspect-ratio: 1.16 / 1; width: 100%; object-fit: cover; object-position: center; background: #e7e2d8; }
.founder-quote { padding: 30px 28px 34px; }
.founder-quote .quote-mark { color: #c5a55d; font-family: Georgia, serif; font-size: 42px; line-height: .7; }
.founder-quote p { margin: 11px 0 0; color: var(--forest); font-family: "Playfair Display", Georgia, serif; font-size: 28px; font-weight: 700; line-height: 1.2; }
.founder-copy h2 { font-size: clamp(42px, 4.6vw, 60px); }
.founder-copy p { font-size: 14px; }
.value-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.value-pills span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); font-size: 11px; font-weight: 700; }
.heart-copy { max-width: 770px; margin-inline: auto; }
.heart-copy h2 { text-align: center; }
.heart-copy .lead { max-width: none; text-align: center; }

.contact-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.contact-hero-grid p { max-width: 510px; }
.contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; align-items: stretch; }
.contact-form-card, .contact-panel { border-radius: 18px; box-shadow: var(--shadow-soft); }
.contact-form-card { padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.contact-form-card h2 { font-size: 34px; }
.contact-form-card > p { margin-top: -7px; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: #4d514a; font-size: 11px; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; }
.form-field textarea { min-height: 116px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(191,125,60,.7); box-shadow: 0 0 0 3px rgba(191,125,60,.09); }
.form-submit { width: 100%; margin-top: 14px; background: #e2c57e; color: #1c2019; }
.form-privacy { margin: 10px 0 0; text-align: center; font-size: 10px; }
.contact-panel { position: relative; overflow: hidden; padding: 30px; background: var(--forest); color: #fff; }
.contact-panel::after { content: ""; position: absolute; right: -90px; bottom: -115px; width: 260px; height: 260px; border: 26px solid rgba(255,255,255,.05); border-radius: 50%; }
.contact-panel h2 { color: #fff; font-size: 44px; }
.contact-panel .kicker { color: #ddc47f; }
.contact-row { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; margin: 9px 0; padding: 12px 14px; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; background: rgba(255,255,255,.045); font-size: 13px; }
.contact-row span { display: grid; place-items: center; flex: 0 0 31px; height: 31px; border-radius: 50%; background: #dfc57f; color: #283020; font-size: 14px; }
.location-box { position: relative; z-index: 2; margin-top: 20px; padding: 20px; border: 1px solid rgba(255,255,255,.10); border-radius: 12px; text-align: center; background: rgba(255,255,255,.035); }
.location-box small { display: block; color: #d8bd77; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 800; }
.location-box strong { display: block; margin: 4px 0; font-family: "Playfair Display", Georgia, serif; font-size: 24px; }
.location-box p { margin: 0; color: rgba(255,255,255,.62); font-size: 11px; }
.social-strip { margin-top: 22px; padding: 26px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); }
.social-grid { display: grid; grid-template-columns: .74fr 1.26fr 1.26fr; gap: 18px; }
.social-intro h2 { font-size: 34px; }
.social-intro p { font-size: 12px; }
.social-feed h3 { display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: 14px; }
.social-feed h3 a { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.feed-mock { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; overflow: hidden; border-radius: 10px; }
.feed-tile { aspect-ratio: 1 / 1.12; display: flex; align-items: end; padding: 13px; background: #35402d; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 13px; line-height: 1.15; }
.feed-tile.light { background: #e9e1d3; color: #31372d; }
.feed-tile.photo { background: linear-gradient(145deg, #d9d2c4, #b8b3a7); color: #34402d; }

.portfolio-intro { max-width: 760px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.portfolio-card { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 290px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.portfolio-logo { display: grid; place-items: center; padding: 24px; border-right: 1px solid var(--line); background: #fff; }
.portfolio-logo img { width: 100%; max-height: 180px; object-fit: contain; }
.portfolio-copy { padding: 27px; }
.portfolio-copy h3 { font-family: "Playfair Display", Georgia, serif; font-size: 26px; }
.portfolio-copy .meta { margin-bottom: 8px; color: #a06d36; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.portfolio-copy p { font-size: 13px; }

.footer { padding: 58px 0 20px; background: #20271b; color: rgba(255,255,255,.73); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr .8fr; gap: 36px; }
.footer-logo { width: 175px; max-height: 70px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); margin-bottom: 13px; }
.footer h4 { margin: 0 0 11px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .10em; }
.footer p, .footer a { color: rgba(255,255,255,.66); font-size: 12px; }
.footer a:hover { color: #fff; }
.copyright { margin-top: 38px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.45); font-size: 11px; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; padding: 12px 16px; border-radius: 999px; background: #25d366; color: #fff; box-shadow: 0 15px 35px rgba(16,70,36,.24); font-size: 12px; font-weight: 800; }

.legal { padding: 72px 0; }
.legal h1 { font-size: clamp(48px,6vw,72px); }
.legal h2 { margin-top: 34px; font-size: 30px; }
.thank-you { min-height: 68vh; display: grid; place-items: center; text-align: center; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .btn { transition: none; } }

@media (max-width: 980px) {
  .navlinks { display: none; position: absolute; top: 68px; right: 24px; left: 24px; flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); }
  .topbar.dark .navlinks { background: #2d3526; border-color: rgba(255,255,255,.1); }
  .navlinks.open { display: flex; }
  .navlinks .btn { margin-left: 0; }
  .menu-btn { display: inline-flex; }
  .hero-grid, .section-head, .contact-hero-grid, .contact-grid, .founder-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: 760px; }
  .brand-window { max-width: 720px; }
  .strategy-grid, .case-grid, .steps-four { grid-template-columns: repeat(2,1fr); }
  .conversation-panel { grid-template-columns: 1fr; }
  .service-grid, .process-grid { grid-template-columns: repeat(2,1fr); }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .social-intro { grid-column: 1 / -1; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 30px, 1180px); }
  .nav { min-height: 68px; }
  .brand img { width: 130px; height: 42px; }
  .hero-dark { padding: 52px 0 48px; }
  h1 { font-size: clamp(48px, 15vw, 67px); }
  h2 { font-size: clamp(36px, 10.5vw, 49px); }
  .hero-benefits, .strategy-grid, .service-grid, .process-grid, .case-grid, .steps-four, .check-grid, .form-grid, .social-grid { grid-template-columns: 1fr; }
  .brand-window-stage { min-height: 235px; }
  .brand-window-bottom { grid-template-columns: 1fr; }
  .brand-window-bottom div { border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-window-bottom div:last-child { border-bottom: 0; }
  .section { padding: 58px 0; }
  .page-hero-light { padding-top: 52px; }
  .conversation-panel { padding: 24px; }
  .dark-cta { grid-template-columns: 1fr; }
  .contact-form-card, .contact-panel { padding: 23px; }
  .portfolio-card { grid-template-columns: 1fr; }
  .portfolio-logo { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}

/* ========================================================================== 
   PROFESSIONAL MOTION + SPACING POLISH
   ========================================================================== */
:root {
  --ease-lux: cubic-bezier(.22, 1, .36, 1);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
  --shadow-hover: 0 26px 70px rgba(29, 35, 24, .14);
}

body {
  line-height: 1.67;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { color: var(--ink); }
h1, h2, .serif { letter-spacing: -.035em; }
h1 { line-height: .99; margin-bottom: 24px; }
h2 { line-height: 1.045; margin-bottom: 20px; }
h3 { line-height: 1.28; }
p { margin-bottom: 1.05em; text-wrap: pretty; }
.lead { line-height: 1.62; letter-spacing: -.012em; }
.section { padding: 94px 0; }
.section-head { align-items: start; gap: 68px; margin-bottom: 42px; }
.section-head p { line-height: 1.72; }
.kicker { margin-bottom: 19px; line-height: 1.3; }

/* top progress line */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, #d8bd77, #b87739 54%, #e5ca8e);
  box-shadow: 0 0 16px rgba(216, 189, 119, .28);
}

/* sticky navigation gets tighter as you move */
.topbar,
.nav,
.brand img {
  transition: min-height .35s var(--ease-lux), height .35s var(--ease-lux), width .35s var(--ease-lux),
              background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s var(--ease-lux);
}
.topbar.is-scrolled { box-shadow: 0 12px 35px rgba(22, 27, 18, .08); }
.topbar.dark.is-scrolled { box-shadow: 0 14px 42px rgba(0, 0, 0, .18); }
.topbar.is-scrolled .nav { min-height: 68px; }
.topbar.is-scrolled .brand img { width: 138px; height: 43px; }
.navlinks > a:not(.btn) { position: relative; overflow: hidden; }
.navlinks > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: currentColor;
  opacity: .42;
  transition: transform .35s var(--ease-lux);
}
.navlinks > a:not(.btn):hover::after { transform: scaleX(1); }

/* page choreography */
.js .hero-enter {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(5px);
}
.js body.page-ready .hero-enter {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity .9s var(--ease-lux) var(--hero-delay, 0ms),
              transform .9s var(--ease-lux) var(--hero-delay, 0ms),
              filter .75s ease var(--hero-delay, 0ms);
}
body { opacity: 1; transition: opacity .22s ease, transform .22s var(--ease-smooth); }
body.page-leaving { opacity: 0; transform: translateY(4px); }

.hero-dark { padding: 82px 0 76px; }
.hero-dark::before {
  background-position: center calc(50% + var(--parallax-y, 0px));
  animation: heroTextureDrift 20s ease-in-out infinite alternate;
}
.hero-dark::after {
  transform: translateY(var(--ring-y, 0px)) rotate(0deg);
  animation: ringBreathe 12s ease-in-out infinite alternate;
}
.hero-dark h1 { max-width: 760px; }
.hero-dark .lead { margin-bottom: 0; }
.hero-actions { margin-top: 32px; }
.micro-tags span {
  transition: border-color .35s ease, color .35s ease, background .35s ease, transform .35s var(--ease-lux);
  animation: tagFloat 5.5s ease-in-out infinite;
}
.micro-tags span:nth-child(2) { animation-delay: -.7s; }
.micro-tags span:nth-child(3) { animation-delay: -1.4s; }
.micro-tags span:nth-child(4) { animation-delay: -2.1s; }
.micro-tags span:nth-child(5) { animation-delay: -2.8s; }
.micro-tags span:hover { transform: translateY(-3px); border-color: rgba(224,195,132,.46); color: #fff; background: rgba(255,255,255,.055); }

.brand-window {
  position: relative;
  transform-style: preserve-3d;
  animation: windowFloat 7s ease-in-out infinite;
  box-shadow: 0 32px 90px rgba(0,0,0,.22);
}
.brand-window-stage::before { animation: ringBreathe 9s ease-in-out infinite alternate; }
.brand-window-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(229,202,142,.19), transparent 46%);
  animation: ambientGlow 5s ease-in-out infinite alternate;
}
.brand-window-stage img {
  z-index: 1;
  filter: drop-shadow(0 14px 24px rgba(44,51,35,.07));
  animation: logoFloat 6s ease-in-out infinite;
}
.brand-window-top a { transition: transform .3s var(--ease-lux), box-shadow .3s ease; }
.brand-window-top a:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(29, 33, 23, .16); }
.hero-benefit {
  transition: transform .4s var(--ease-lux), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.hero-benefit:hover { transform: translateY(-6px); background: rgba(255,255,255,.075); border-color: rgba(224,195,132,.24); box-shadow: 0 18px 35px rgba(0,0,0,.12); }
.hero-benefit .icon { animation: iconBob 4.5s ease-in-out infinite; }
.hero-benefit:nth-child(2) .icon { animation-delay: -1.2s; }
.hero-benefit:nth-child(3) .icon { animation-delay: -2.4s; }

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-cue i { position: relative; width: 34px; height: 1px; overflow: hidden; background: rgba(255,255,255,.18); }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; transform: translateX(-105%); background: #e5ca8e; animation: cueSweep 2.1s var(--ease-lux) infinite; }

.page-hero-light { padding: 84px 0 50px; }
.page-hero-light::after { animation: ringBreathe 11s ease-in-out infinite alternate; }
.topo-section::before {
  transform: translate3d(0, var(--topo-y, 0px), 0) scale(1.04);
  transition: transform .18s linear;
  animation: topoOpacity 8s ease-in-out infinite alternate;
}

/* richer reveal vocabulary */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(4px);
  transition: opacity .82s var(--ease-lux), transform .9s var(--ease-lux), filter .72s ease;
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.reveal-left { transform: translate3d(-30px, 18px, 0); }
.reveal.reveal-right { transform: translate3d(30px, 18px, 0); }
.reveal.reveal-scale { transform: translate3d(0, 18px, 0) scale(.965); }
.reveal.is-visible { opacity: 1; transform: translate3d(0,0,0) scale(1); filter: blur(0); }

/* tactile cards + pointer spotlight */
.motion-card {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  transform-style: preserve-3d;
  isolation: isolate;
  transition: transform .45s var(--ease-lux), box-shadow .45s ease, border-color .35s ease, background-color .35s ease;
}
.motion-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(218,190,126,.15), transparent 60%);
  transition: opacity .35s ease;
}
.motion-card > * { position: relative; z-index: 1; }
.motion-card.is-hovered { transform: perspective(950px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-5px); box-shadow: var(--shadow-hover); }
.motion-card.is-hovered::after { opacity: 1; }
.strategy-card.dark.motion-card::after,
.contact-panel.motion-card::after { background: radial-gradient(300px circle at var(--mx) var(--my), rgba(229,202,142,.13), transparent 62%); }

.strategy-card,
.process-card,
.service-card,
.case-card,
.step-box,
.portfolio-card,
.founder-card,
.conversation-panel,
.contact-form-card,
.contact-panel,
.social-strip { border-radius: 16px; }
.strategy-card { min-height: 228px; padding: 30px 26px; }
.strategy-card h3 { margin-top: 47px; line-height: 1.16; }
.strategy-card .symbol { transition: transform .45s var(--ease-lux), color .35s ease; }
.strategy-card:hover .symbol { transform: rotate(-7deg) scale(1.13); color: #d89a5b; }
.strategy-card .num { transition: transform .5s var(--ease-lux), opacity .4s ease; }
.strategy-card:hover .num { transform: translate(-5px,-4px) scale(1.08); }

.process-card { min-height: 182px; padding: 30px 30px 26px; }
.process-card p { margin-bottom: 0; }
.process-card .icon { display: inline-block; transition: transform .45s var(--ease-lux); }
.process-card:hover .icon { transform: translateY(-3px) rotate(-5deg) scale(1.12); }

.service-card { min-height: 205px; padding: 27px; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-card .service-icon { display: inline-block; transition: transform .45s var(--ease-lux), filter .35s ease; }
.service-card:hover .service-icon { transform: translateY(-4px) rotate(-6deg) scale(1.11); filter: drop-shadow(0 8px 12px rgba(191,125,60,.18)); }
.service-card h3 { font-size: 21px; line-height: 1.22; }
.service-card p { line-height: 1.68; }

.case-logo, .portfolio-logo { overflow: hidden; }
.case-logo img, .portfolio-logo img {
  transition: transform .75s var(--ease-lux), filter .55s ease;
  filter: saturate(.92) contrast(.98);
}
.case-card:hover .case-logo img,
.portfolio-card:hover .portfolio-logo img { transform: scale(1.055); filter: saturate(1.03) contrast(1.02); }
.case-body { padding: 22px; }
.case-body p, .portfolio-copy p { line-height: 1.65; }
.case-body a { position: relative; width: max-content; }
.case-body a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: currentColor; transform: scaleX(.2); transform-origin: left; transition: transform .4s var(--ease-lux); }
.case-body a:hover::after { transform: scaleX(1); }

.conversation-panel { padding: 46px; gap: 58px; box-shadow: 0 16px 48px rgba(35,39,29,.06); }
.conversation-panel p { max-width: 520px; line-height: 1.7; }
.check-item { position: relative; overflow: hidden; transition: transform .35s var(--ease-lux), background .35s ease, box-shadow .35s ease; }
.check-item:hover { transform: translateX(5px); background: #fff; box-shadow: 0 10px 25px rgba(34,39,28,.07); }
.check-item::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--gold); transform: scaleY(0); transition: transform .35s var(--ease-lux); }
.check-item:hover::after { transform: scaleY(1); }

/* buttons: shimmer, magnetism and stronger focus */
.btn {
  position: relative;
  overflow: hidden;
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
  transition: transform .32s var(--ease-lux), background .25s ease, border-color .25s ease, box-shadow .32s ease, color .25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 28%;
  height: 250%;
  transform: rotate(24deg) translateX(-280%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: transform .72s var(--ease-lux);
  pointer-events: none;
}
.btn:hover { transform: translate(var(--mag-x, 0), calc(var(--mag-y, 0) - 2px)); box-shadow: 0 13px 30px rgba(34,39,28,.12); }
.btn:hover::before { transform: rotate(24deg) translateX(650%); }
.btn:focus-visible, .filter-chip:focus-visible, .menu-btn:focus-visible, a:focus-visible { outline: 3px solid rgba(191,125,60,.38); outline-offset: 3px; }

.filter-row { gap: 10px; margin-bottom: 34px; }
.filter-chip { transition: transform .3s var(--ease-lux), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease; }
.filter-chip:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(35,39,29,.07); }
.service-card.filtering-out { animation: filterOut .22s ease forwards; }
.service-card.filtering-in { animation: filterIn .48s var(--ease-lux) var(--filter-delay, 0ms) both; }

/* founder section: give the portrait more room and polish */
.founder-grid { grid-template-columns: .78fr 1.22fr; gap: 66px; align-items: center; }
.founder-card { border-radius: 22px; }
.founder-photo {
  aspect-ratio: 4 / 5;
  object-position: center 32%;
  transition: transform 1.2s var(--ease-lux), filter .7s ease;
}
.founder-card:hover .founder-photo { transform: scale(1.025); filter: saturate(1.02) contrast(1.01); }
.founder-quote { padding: 32px 30px 36px; }
.founder-quote p { font-size: clamp(24px, 2.4vw, 30px); line-height: 1.23; }
.founder-copy h2 { line-height: 1.02; margin-bottom: 24px; }
.founder-copy p { font-size: 15px; line-height: 1.76; margin-bottom: 16px; max-width: 760px; }
.value-pills span { transition: transform .32s var(--ease-lux), background .3s ease, border-color .3s ease; }
.value-pills span:hover { transform: translateY(-3px); background: #fff; border-color: rgba(191,125,60,.28); }

/* contact polish */
.contact-hero-grid { gap: 86px; }
.contact-form-card, .contact-panel { border-radius: 22px; }
.contact-form-card { padding: 36px; }
.contact-form-card h2 { margin-bottom: 12px; }
.contact-form-card > p { margin-top: 0; margin-bottom: 25px; line-height: 1.62; }
.form-grid { gap: 16px 14px; }
.form-field { gap: 8px; }
.form-field label { font-size: 11.5px; letter-spacing: .01em; transition: color .25s ease, transform .25s var(--ease-lux); }
.form-field.has-focus label { color: var(--gold); transform: translateX(2px); }
.form-field input, .form-field select, .form-field textarea {
  border-radius: 12px;
  padding: 14px 15px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease-lux), background .25s ease;
}
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: rgba(41,50,34,.28); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { transform: translateY(-1px); background: #fffefb; }
.contact-panel { padding: 36px; }
.contact-row { transition: transform .35s var(--ease-lux), background .3s ease, border-color .3s ease; }
.contact-row:hover { transform: translateX(6px); background: rgba(255,255,255,.075); border-color: rgba(229,202,142,.20); }
.contact-row span { transition: transform .4s var(--ease-lux); }
.contact-row:hover span { transform: rotate(-7deg) scale(1.08); }
.location-box { transition: transform .4s var(--ease-lux), border-color .3s ease, background .3s ease; }
.location-box:hover { transform: translateY(-4px); border-color: rgba(229,202,142,.18); background: rgba(255,255,255,.055); }
.feed-tile { position: relative; overflow: hidden; transition: transform .45s var(--ease-lux), filter .35s ease; }
.feed-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.15) 46%, transparent 72%); transform: translateX(-120%); transition: transform .8s var(--ease-lux); }
.feed-tile:hover { transform: translateY(-4px) scale(1.015); filter: brightness(1.03); }
.feed-tile:hover::after { transform: translateX(120%); }

/* CTA and footer */
.dark-cta { padding: 34px 38px; gap: 38px; box-shadow: 0 24px 60px rgba(27,33,22,.15); }
.dark-cta::after { animation: ringBreathe 9s ease-in-out infinite alternate; }
.footer { padding-top: 68px; }
.footer a { position: relative; transition: color .25s ease; }
.footer a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-lux); }
.footer a:hover::after { transform: scaleX(1); }
.footer-logo { transition: transform .55s var(--ease-lux), opacity .35s ease; }
.footer-logo:hover { transform: translateY(-4px) scale(1.02); opacity: .95; }

.floating-whatsapp {
  overflow: hidden;
  animation: whatsappEntrance .7s var(--ease-lux) .8s both, whatsappPulse 3.4s ease-in-out 2s infinite;
  transition: transform .35s var(--ease-lux), box-shadow .35s ease, filter .35s ease;
}
.floating-whatsapp:hover { transform: translateY(-5px) scale(1.025); box-shadow: 0 20px 42px rgba(16,70,36,.28); filter: saturate(1.06); }

/* subtle grain movement */
body::after { animation: grainMove .7s steps(2) infinite; }

@keyframes heroTextureDrift { from { background-position: 50% calc(48% + var(--parallax-y,0px)); } to { background-position: 53% calc(52% + var(--parallax-y,0px)); } }
@keyframes ringBreathe { 0% { opacity: .72; scale: .96; } 100% { opacity: 1; scale: 1.045; } }
@keyframes topoOpacity { from { opacity: .11; } to { opacity: .16; } }
@keyframes tagFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -3px; } }
@keyframes windowFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@keyframes logoFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-6px) scale(1.01); } }
@keyframes ambientGlow { from { opacity: .55; transform: scale(.92); } to { opacity: 1; transform: scale(1.08); } }
@keyframes iconBob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-4px) rotate(-3deg); } }
@keyframes cueSweep { 0% { transform: translateX(-105%); } 55%,100% { transform: translateX(105%); } }
@keyframes filterOut { to { opacity: 0; transform: scale(.96) translateY(8px); } }
@keyframes filterIn { from { opacity: 0; transform: scale(.96) translateY(14px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes whatsappEntrance { from { opacity: 0; transform: translateY(18px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes whatsappPulse { 0%,100% { box-shadow: 0 15px 35px rgba(16,70,36,.24); } 50% { box-shadow: 0 16px 44px rgba(37,211,102,.30), 0 0 0 8px rgba(37,211,102,.05); } }
@keyframes grainMove { 0% { transform: translate(0,0); } 25% { transform: translate(-1px,1px); } 50% { transform: translate(1px,-1px); } 75% { transform: translate(1px,1px); } 100% { transform: translate(-1px,0); } }

@media (max-width: 980px) {
  .section { padding: 78px 0; }
  .section-head { gap: 34px; }
  .founder-grid { gap: 42px; align-items: start; }
  .founder-photo { aspect-ratio: 16 / 10; object-position: center 30%; }
  .contact-hero-grid { gap: 36px; }
  .scroll-cue { display: none; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(44px, 13.5vw, 61px); line-height: 1.01; letter-spacing: -.032em; }
  h2 { font-size: clamp(34px, 9.7vw, 46px); line-height: 1.055; letter-spacing: -.03em; }
  .lead { font-size: 17px; line-height: 1.62; }
  .hero-dark { padding: 58px 0 54px; }
  .page-hero-light { padding: 58px 0 38px; }
  .section { padding: 66px 0; }
  .section-head { margin-bottom: 30px; }
  .conversation-panel { padding: 28px 22px; gap: 32px; }
  .contact-form-card, .contact-panel { padding: 26px 22px; }
  .dark-cta { padding: 28px 24px; }
  .founder-photo { aspect-ratio: 4 / 5; }
  .motion-card.is-hovered { transform: none; }
  .floating-whatsapp { font-size: 11px; padding: 11px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .hero-enter, .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .scroll-progress { transition: none !important; }
}
.motion-card { position: relative; }

/* ========================================================================== 
   CLIENT BRAND LOGO WALL
   ========================================================================== */
.brands-section { overflow: hidden; }
.brands-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.brands-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  text-wrap: balance;
}
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.brand-logo-card {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 36px 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 32px rgba(29, 35, 24, .035);
  isolation: isolate;
  transition: transform .55s var(--ease-lux), box-shadow .55s var(--ease-lux), border-color .4s ease;
}
.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(216, 189, 119, .13), transparent 56%);
  opacity: 0;
  transform: scale(.75);
  transition: opacity .5s ease, transform .65s var(--ease-lux);
}
.brand-logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.brand-logo-card img {
  display: block;
  width: min(100%, 260px);
  height: 150px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(.96) contrast(1.01);
  transition: transform .6s var(--ease-lux), filter .45s ease;
}
.brand-logo-card--wide img {
  width: min(100%, 310px);
}
.brand-logo-card:hover {
  transform: translateY(-7px);
  border-color: rgba(183, 119, 57, .24);
  box-shadow: 0 26px 70px rgba(29, 35, 24, .10);
}
.brand-logo-card:hover::before { opacity: 1; transform: scale(1); }
.brand-logo-card:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.025); }

@media (max-width: 980px) {
  .brand-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-logo-card { min-height: 210px; }
}

@media (max-width: 680px) {
  .brands-heading { margin-bottom: 28px; }
  .brand-logo-grid { grid-template-columns: 1fr; gap: 12px; }
  .brand-logo-card { min-height: 190px; padding: 28px; }
  .brand-logo-card img { height: 125px; width: min(100%, 265px); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo-card, .brand-logo-card img, .brand-logo-card::before { transition: none !important; }
  .brand-logo-card:hover { transform: none; }
  .brand-logo-card:hover img { transform: none; }
}
