:root {
  --red: #7a0000;
  --red-dark: #4d0000;
  --red-light: #a30000;
  --gold: #c8a135;
  --gold-light: #e8ce8c;
  --gold-dark: #8c6a2e;
  --ink: #0c0c0c;
  --ink-soft: #1f1f1f;
  --paper: #faf6ee;
  --paper-dim: #f0e9db;
  --muted: #7d6f68;
  --muted-on-dark: rgba(250, 246, 238, 0.62);
  --line: rgba(18, 12, 10, 0.12);
  --line-on-dark: rgba(250, 246, 238, 0.16);
  --cut: 22px;
  --cut-sm: 12px;
  --ease: cubic-bezier(.16,.84,.32,1);
  --font-display: "Archivo", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; line-height: 1.05; }
.hero h1 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; }
.footer-cta h2 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; }
.section-head h2, .contact-info h2 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 28px; }

/* Chamfer motif: echoes the cut corners in the VX / VELAX wordmark */
.chamfer {
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.chamfer-sm {
  clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
}

/* Reveal */
.reveal-line { overflow: hidden; }
.reveal-line > * {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
.reveal-line.is-visible > * { transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.solid {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-on-dark);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; max-width: 1220px; margin: 0 auto; padding: 0 28px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 64px; width: auto; }

nav.links { display: none; gap: 34px; }
nav.links a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s;
}
nav.links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
nav.links a:hover::after, nav.links a.active::after { width: 100%; }
nav.links a.active { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 26px;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-line {
  border: 1px solid var(--line-on-dark);
  color: var(--paper);
  padding: 14px 25px;
}
.btn-line:hover { border-color: var(--gold); color: var(--gold-light); }

.menu-toggle { display: flex; width: 30px; height: 30px; align-items: center; justify-content: center; color: var(--paper); }
.menu-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease), transform 0.3s var(--ease), padding 0.35s var(--ease);
}
.mobile-menu.open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  padding: 6px 28px 24px;
}
.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-on-dark);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--paper);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 60px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(200,161,53,0.14) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(122,0,0,0.55), transparent 65%);
  pointer-events: none;
}
.hero-ghost {
  position: absolute;
  right: -4vw; bottom: -12vh;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,161,53,0.14);
  pointer-events: none;
  user-select: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero .label { color: var(--gold-light); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.hero .label::before { content: ""; width: 30px; height: 1px; background: var(--gold); }

.hero h1 {
  font-size: clamp(2.6rem, 7.4vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 15ch;
}
.hero h1 .accent { color: var(--gold); }

.hero-sub {
  display: grid;
  gap: 30px;
  margin-top: 42px;
  max-width: 640px;
}
.hero-sub p { color: var(--muted-on-dark); font-size: 1.02rem; max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--gold-light);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.marquee-track { display: inline-flex; animation: marquee 34s linear infinite; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  opacity: 0.85;
}
.marquee-track span::after { content: "•"; color: var(--gold-dark); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
section { padding: 110px 0; position: relative; }
.section-dark { background: var(--ink); color: var(--paper); overflow: hidden; }
.section-dark::before,
.footer-billboard::before {
  content: "";
  position: absolute;
  top: -25%; right: -12%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(122,0,0,0.5), transparent 65%);
  pointer-events: none;
}
.section-dark .muted { color: var(--muted-on-dark); }

.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head .label { color: var(--red); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.section-head .label::before { content: ""; width: 30px; height: 1px; background: var(--red); }
.section-dark .section-head .label { color: var(--gold-light); }
.section-dark .section-head .label::before { background: var(--gold); }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-head p.muted { color: var(--muted); margin-top: 16px; font-size: 1rem; max-width: 50ch; }

/* Sobre */
.about-grid { display: grid; gap: 50px; }
.about-plaque {
  background: var(--ink);
  color: var(--paper);
  padding: 42px 34px;
  position: relative;
}
.about-plaque::before {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--line-on-dark);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  pointer-events: none;
}
.about-plaque { clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut)); }
.plaque-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.plaque-photo {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.plaque-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plaque-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); margin-bottom: 4px; }
.plaque-role { font-family: var(--font-display); font-weight: 300; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-on-dark); }
.about-plaque p { font-size: 0.92rem; color: var(--muted-on-dark); margin-bottom: 14px; }
.plaque-meta { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-on-dark); font-size: 0.78rem; color: var(--muted-on-dark); }
.plaque-meta div { margin-bottom: 5px; }

.about-copy p { color: var(--muted); font-size: 1.06rem; margin-bottom: 20px; max-width: 56ch; }
.about-copy p:last-of-type { margin-bottom: 0; }
.about-list { margin-top: 30px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.about-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.about-list-item strong { font-family: var(--font-display); font-size: 0.92rem; font-weight: 500; }
.about-list-item span { color: var(--muted); font-size: 0.86rem; text-align: right; max-width: 32ch; }

/* Services: bento */
.services-bento {
  display: grid;
  gap: 1px;
  background: var(--line-on-dark);
  border: 1px solid var(--line-on-dark);
}
.svc {
  background: var(--ink);
  padding: 40px 32px;
  position: relative;
  transition: background 0.4s;
}
.svc:hover { background: #1c110c; }
.svc .idx { font-family: var(--font-display); font-size: 0.72rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 40px; display: block; }
.svc h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--paper); }
.svc p { color: var(--muted-on-dark); font-size: 0.9rem; max-width: 40ch; }
.svc .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.svc .tags span { font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-light); border: 1px solid var(--line-on-dark); padding: 6px 12px; }
.svc-big { grid-column: span 1; }

/* Portfolio */
.pf-group { margin-bottom: 64px; }
.pf-group:last-child { margin-bottom: 0; }
.pf-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 18px; flex-wrap: wrap; }
.pf-group-head h3 { font-size: 1.4rem; }
.pf-group-head p { color: var(--muted); font-size: 0.88rem; max-width: 40ch; }

.pf-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }

.pf-card { display: block; }
.pf-frame {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  transition: clip-path 0.4s var(--ease);
}
.pf-frame.tone-red { background: linear-gradient(150deg, var(--red-light), var(--red-dark) 75%); }
.pf-frame.tone-gold { background: linear-gradient(150deg, var(--gold-dark), #40300f 75%); }
.pf-frame::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 16px 16px;
}
.pf-frame svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; color: var(--gold-light); opacity: 0.9; }
.pf-frame img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 62%; height: auto; object-fit: contain; }
.pf-frame-photo img { position: absolute; inset: 0; width: 100%; height: 100%; transform: none; object-fit: cover; }
.pf-frame-fit img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 82%; height: 82%; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.pf-card:hover .pf-frame { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

.pf-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}
.pf-tag::before { content: "[ "; }
.pf-tag::after { content: " ]"; }
.pf-card h4 { font-size: 1.05rem; margin: 10px 0 6px; }
.pf-card p { color: var(--muted); font-size: 0.86rem; margin-bottom: 10px; }
.pf-cta { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.pf-card:hover .pf-cta { color: var(--red); border-color: var(--red); }
.pf-soon { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.5px; color: var(--muted); font-style: normal; }

/* Diferenciais: editorial list */
.diff-list { border-top: 1px solid var(--line); }
.diff-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.diff-row:hover { padding-left: 14px; }
.diff-row .idx { font-family: var(--font-display); font-size: 0.78rem; color: var(--gold-dark); }
.diff-row-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.diff-row h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; }
.diff-row p { color: var(--muted); font-size: 0.9rem; max-width: 40ch; }

/* Contact */
.contact-panel {
  background: linear-gradient(155deg, var(--red), var(--red-dark) 80%);
  color: var(--paper);
  padding: 60px 40px;
  display: grid;
  gap: 46px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.contact-info .label { color: var(--gold-light); }
.contact-info .label::before { background: var(--gold); }
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin: 16px 0 18px; color: var(--paper); }
.contact-info p { color: rgba(250,246,238,0.8); font-size: 0.98rem; margin-bottom: 28px; max-width: 40ch; }
.contact-detail { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; margin-bottom: 14px; color: rgba(250,246,238,0.92); font-family: var(--font-display); font-weight: 300; letter-spacing: 0.5px; }
.contact-detail svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }
.contact-detail-link { transition: color 0.3s; }
.contact-detail-link:hover { color: var(--gold-light); }

.lead-form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,246,238,0.6); }
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250,246,238,0.3);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 8px 2px;
  transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(250,246,238,0.4); }
.field select option { color: #000; }
.field textarea { resize: vertical; min-height: 70px; }
.lead-form .btn-gold { margin-top: 8px; align-self: flex-start; }

/* Footer billboard */
.footer-billboard {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-cta { text-align: left; margin-bottom: 70px; }
.footer-cta .label { color: var(--gold-light); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px; }
.footer-cta .label::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.footer-cta h2 { font-size: clamp(2rem, 6vw, 4.2rem); max-width: 16ch; }
.footer-cta h2 .accent { color: var(--gold); }
.footer-cta .btn { margin-top: 34px; }

.footer-grid {
  display: grid;
  gap: 34px;
  padding: 40px 0;
  border-top: 1px solid var(--line-on-dark);
}
.footer-col h5 { font-family: var(--font-display); font-weight: 400; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 0.86rem; color: var(--muted-on-dark); margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-icons { display: flex; align-items: center; gap: 16px; margin: 4px 0 14px; }
.footer-icons a { margin-bottom: 0; color: var(--muted-on-dark); transition: color 0.3s; }
.footer-icons a:hover { color: var(--gold-light); }
.footer-icons svg { width: 18px; height: 18px; display: block; }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding: 22px 0;
  font-size: 0.74rem;
  color: var(--muted-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

/* Chat widget */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 250; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.chat-toggle {
  background: var(--gold);
  color: var(--ink);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0,0,0,0.3);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.chat-toggle:hover { background: var(--gold-light); transform: translateY(-2px); }

.chat-panel {
  width: min(320px, calc(100vw - 48px));
  background: var(--ink);
  border: 1px solid var(--line-on-dark);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-header { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--red); }
.chat-avatar { width: 36px; height: 36px; flex-shrink: 0; object-fit: contain; }
.chat-header-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.chat-header-text strong { font-family: var(--font-display); color: var(--paper); font-size: 0.95rem; }
.chat-status { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(250,246,238,0.75); }
.chat-status .dot { width: 7px; height: 7px; border-radius: 50%; background: #3ddc71; box-shadow: 0 0 0 2px rgba(61,220,113,0.25); }
.chat-close { color: var(--paper); opacity: 0.8; }
.chat-close:hover { opacity: 1; }

.chat-body { padding: 16px; max-height: 220px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-msg {
  background: var(--ink-soft);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 12px;
  border-top-left-radius: 2px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 90%;
}
.chat-msg-them { margin-right: auto; }
.chat-msg-me {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  border-top-right-radius: 2px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 90%;
  margin-left: auto;
}

.chat-form { display: flex; flex-direction: column; gap: 8px; padding: 0 16px 16px; }
.chat-form input, .chat-form textarea {
  background: rgba(250,246,238,0.06);
  border: 1px solid var(--line-on-dark);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.85rem;
  resize: none;
}
.chat-form textarea { min-height: 60px; }
#chat-contact-fields { display: flex; flex-direction: column; gap: 8px; }
.chat-form input:focus, .chat-form textarea:focus { outline: none; border-color: var(--gold); }
.chat-form button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s;
}
.chat-form button:hover { background: var(--gold-light); }
.chat-form button:disabled { opacity: 0.6; cursor: default; }

@media (min-width: 720px) {
  nav.links { display: flex; }
  .menu-toggle { display: none; }  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .services-bento { grid-template-columns: repeat(3, 1fr); }
  .svc-big { grid-column: span 2; }
  .pf-grid { grid-template-columns: repeat(3, 1fr); }
  .pf-grid-2col { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-panel { grid-template-columns: 1fr 1fr; padding: 70px 60px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 1000px) {
  .diff-row-inner { flex-wrap: nowrap; }
}

/* Testimonial */
.testimonial-grid {
  display: grid;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 0;
}
.testimonial {
  text-align: center;
}
.testimonial p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.testimonial p::before,
.testimonial p::after { color: var(--gold-light); }
.testimonial p::before { content: "\201C"; }
.testimonial p::after { content: "\201D"; }
.testimonial cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}
.testimonial cite span {
  font-weight: 400;
  color: var(--muted-on-dark);
  text-transform: none;
  letter-spacing: normal;
}
