/* ===== Tokens ===== */
:root {
  --paper: #f7f6f2;
  --paper-alt: #efece4;
  --ink: #1c1912;
  --ink-soft: #55503f;
  --charcoal: #14120e;
  --charcoal-soft: #211d16;
  --gold: #c8983c;
  --gold-deep: #9c7420;
  --gold-soft: #e8cf9a;
  --cream: #f5f2ea;
  --line: rgba(28, 25, 18, 0.12);
  --line-dark: rgba(245, 242, 234, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 50px -22px rgba(20, 18, 14, 0.45);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.15; font-weight: 600; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; display: block;
}
.eyebrow-light { color: var(--gold-soft); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  font-family: var(--font-body); border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--gold); color: #17140d; }
.btn-primary:hover { background: var(--gold-deep); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-light { border-color: rgba(245,242,234,0.6); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; padding: 15px; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 18, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.brand-logo { height: 46px; width: auto; filter: brightness(0) invert(1); }
.nav { display: flex; gap: 28px; }
.nav a { font-weight: 600; font-size: 0.9rem; color: rgba(245,242,234,0.78); transition: color 0.2s ease; }
.nav a:hover { color: var(--gold-soft); }
.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); display: block; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ===== Hero (full-bleed dark) ===== */
.hero {
  position: relative; min-height: 88vh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 64px; overflow: hidden; isolation: isolate;
  background-color: var(--charcoal);
  background-image: var(--hero-img); background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg, rgba(15,13,9,0.94) 0%, rgba(15,13,9,0.8) 32%, rgba(15,13,9,0.42) 58%, rgba(15,13,9,0.3) 100%),
    linear-gradient(180deg, rgba(15,13,9,0.5) 0%, rgba(15,13,9,0.35) 45%, rgba(15,13,9,0.9) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { font-size: clamp(2.3rem, 4vw, 3.4rem); color: #fff; font-weight: 600; max-width: 14ch; text-shadow: 0 4px 24px rgba(0,0,0,0.45); }
.hero-sub { margin-top: 20px; font-size: 1.05rem; color: rgba(245,242,234,0.9); max-width: 46ch; font-family: var(--font-body); text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-strip {
  position: relative; z-index: 1; margin-top: 64px; text-align: center;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,242,234,0.55);
}

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--paper-alt); }
.section-title {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 600; margin-bottom: 44px; text-align: center;
}
.section-title-light { color: #fff; }

/* ===== About / Story ===== */
.about-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: 64px; align-items: center; }
.about-copy h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); max-width: 13ch; margin-bottom: 20px; }
.about-body { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 16px; max-width: 46ch; }
.about-signature { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold-deep); margin-top: 24px; }

.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.about-quote {
  position: absolute; right: -28px; bottom: -28px; width: 220px; background: var(--cream);
  border-radius: var(--radius-sm); padding: 24px; box-shadow: var(--shadow);
}
.about-quote p:last-child { font-size: 0.88rem; color: var(--ink-soft); font-weight: 500; line-height: 1.5; margin-top: 6px; }

/* ===== Stats ===== */
.stats { padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.8rem, 2.6vw, 2.4rem); color: var(--gold-deep); font-weight: 600; }
.stat-label { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

/* ===== Values (dark, full-bleed image) ===== */
.values {
  position: relative; padding: 96px 0; isolation: isolate;
  background-color: var(--charcoal);
  background-image: var(--values-img); background-size: cover; background-position: center;
}
.values-overlay { position: absolute; inset: 0; z-index: 0; background: rgba(20,18,14,0.88); }
.values-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.values-copy h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.5rem); max-width: 12ch; }
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 32px; }
.value-item { transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.value-item:hover { transform: translateY(-4px); }
.value-item i { font-size: 1.7rem; color: var(--gold-soft); margin-bottom: 12px; display: block; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), color 0.3s ease; }
.value-item:hover i { transform: scale(1.12) rotate(-4deg); color: var(--gold); }
.value-item h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.value-item p { color: rgba(245,242,234,0.68); font-size: 0.88rem; }

/* ===== Bento (services) ===== */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px;
}
.bento-card {
  position: relative; border-radius: var(--radius); overflow: hidden; grid-column: span 2;
  background-color: var(--charcoal);
  border: 1px solid transparent;
  box-shadow: 0 14px 30px -20px rgba(20,18,14,0.5);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.bento-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--bg-img); background-size: cover; background-position: center;
  transform: scale(1.02); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.bento-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,14,0.1) 0%, rgba(20,18,14,0.9) 88%);
  transition: background 0.45s ease;
}
.bento-card:hover, .bento-card:focus-within { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,152,60,0.5); }
.bento-card:hover::before { transform: scale(1.12); }
.bento-card:hover::after { background: linear-gradient(180deg, rgba(20,18,14,0.05) 0%, rgba(20,18,14,0.82) 88%); }
.bento-card-lg { grid-column: span 2; grid-row: span 2; }
.bento-card-wide { grid-column: span 2; }
.bento-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: #fff; }
.bento-content i { font-size: 1.6rem; color: var(--gold-soft); margin-bottom: 10px; display: inline-block; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), color 0.3s ease; }
.bento-card:hover .bento-content i { transform: translateY(-4px) scale(1.08); color: var(--gold); }
.bento-content h3 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.bento-content p { font-size: 0.88rem; color: rgba(255,255,255,0.82); max-width: 32ch; font-family: var(--font-body); }

/* Description fades in on hover without changing layout height, so the icon/title never shift.
   Reserved via min-height so touch devices (where it's always visible) don't shift either. */
.bento-content p { min-height: 3.6em; }
@media (hover: hover) and (pointer: fine) {
  .bento-content p { opacity: 0; transform: translateY(6px); transition: opacity 0.35s ease, transform 0.35s ease; }
  .bento-card:hover .bento-content p, .bento-card:focus-within .bento-content p { opacity: 1; transform: translateY(0); }
}

/* Staggered pop-in when the services grid scrolls into view */
.bento.reveal { opacity: 1; transform: none; }
.bento-card { opacity: 0; transform: translateY(18px); }
.bento.is-visible .bento-card { animation: bentoIn 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.bento.is-visible .bento-card:nth-child(1) { animation-delay: 0ms; }
.bento.is-visible .bento-card:nth-child(2) { animation-delay: 70ms; }
.bento.is-visible .bento-card:nth-child(3) { animation-delay: 140ms; }
.bento.is-visible .bento-card:nth-child(4) { animation-delay: 210ms; }
.bento.is-visible .bento-card:nth-child(5) { animation-delay: 280ms; }
.bento.is-visible .bento-card:nth-child(6) { animation-delay: 350ms; }
@keyframes bentoIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Portfolio ===== */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.gallery { columns: 4 260px; column-gap: 18px; }
.gallery-item {
  margin: 0 0 18px; break-inside: avoid; border-radius: var(--radius-sm); overflow: hidden;
  background: #fff; border: 1px solid var(--line); position: relative;
}
.gallery-item img { width: 100%; height: auto; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  padding: 12px 14px; font-size: 0.82rem; color: var(--ink-soft); font-weight: 600;
}
.gallery-item.is-hidden { display: none; }

/* ===== Process ===== */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.process-step {
  position: relative; padding: 28px 22px 0; border-top: 3px solid var(--gold-soft);
}
.process-step i { font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 14px; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--ink-soft); font-family: var(--font-body); }

/* ===== Testimonials (dark section, auto-scrolling marquee) ===== */
.testimonials-section { background: var(--charcoal); padding: 96px 0; }
.testimonials-viewport {
  overflow: hidden; margin-top: 44px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testimonials-track {
  display: flex; gap: 22px; width: max-content;
  animation: testimonialsScroll 32s linear infinite;
}
.testimonials-viewport:hover .testimonials-track { animation-play-state: paused; }
@keyframes testimonialsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  background: var(--charcoal-soft); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 28px; margin: 0; display: flex; flex-direction: column; gap: 18px;
  width: min(380px, 84vw); flex: 0 0 auto;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(200,152,60,0.45); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) {
  .testimonials-track { animation: none; }
}
.testimonial-card blockquote {
  margin: 0; font-size: 1rem; color: #fff; font-family: var(--font-display); font-weight: 500;
  line-height: 1.5;
}
.testimonial-card figcaption { font-size: 0.85rem; font-weight: 700; color: var(--gold-soft); }
.testimonial-card figcaption span { display: block; font-weight: 500; color: rgba(245,242,234,0.6); margin-top: 2px; font-family: var(--font-body); }

/* ===== CTA banner ===== */
.cta-banner {
  position: relative; padding: 120px 0; isolation: isolate; text-align: center;
  background-color: var(--charcoal);
  background-image: var(--cta-img); background-size: cover; background-position: center;
}
.cta-overlay { position: absolute; inset: 0; z-index: 0; background: rgba(20,18,14,0.82); }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 16px; }
.cta-inner .hero-sub { text-align: center; margin-bottom: 32px; }

/* ===== Contact / Lead form ===== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-title { text-align: left; margin-bottom: 16px; }
.contact-lead { color: var(--ink-soft); font-size: 1.02rem; max-width: 44ch; font-family: var(--font-body); }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--ink-soft); }
.contact-list i { font-size: 1.2rem; color: var(--gold); }
.contact-list a:hover { color: var(--gold-deep); }

.lead-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row-full { grid-column: 1 / -1; }
.form-row label { font-size: 0.85rem; font-weight: 700; color: var(--ink); font-family: var(--font-body); }
.form-row input, .form-row select, .form-row textarea {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: var(--paper);
  transition: border-color 0.2s ease;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #8b8574; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.form-row textarea { resize: vertical; min-height: 90px; }
.field-error { font-size: 0.78rem; color: #b3402a; min-height: 1em; }
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea { border-color: #b3402a; }
.lead-form .btn-block { grid-column: 1 / -1; margin-top: 4px; }
.form-note { grid-column: 1 / -1; font-size: 0.88rem; color: var(--gold-deep); font-weight: 600; min-height: 1.2em; margin: 0; font-family: var(--font-body); }

/* ===== Footer ===== */
.site-footer { background: var(--charcoal); color: rgba(245,242,234,0.85); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.footer-logo { height: 92px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(245,242,234,0.6); max-width: 34ch; margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-display); color: #fff; font-size: 0.95rem; margin-bottom: 4px; font-weight: 600; }
.footer-links a, .footer-contact a, .footer-contact span { font-size: 0.9rem; color: rgba(245,242,234,0.72); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-soft); }
.footer-bottom { padding: 22px 0; }
.footer-bottom p { font-size: 0.8rem; color: rgba(245,242,234,0.5); text-align: center; }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.4); transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float-icon { width: 28px; height: 28px; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin: 40px auto 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card-lg { grid-column: span 2; grid-row: span 1; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
  .testimonials { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { columns: 3 220px; }
}

@media (max-width: 768px) {
  .nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--charcoal);
    flex-direction: column; padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--line-dark);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all 0.25s ease; }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .lead-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery { columns: 2 160px; }
  .about-quote { right: 12px; bottom: 12px; width: 62%; padding: 16px; z-index: 2; }
  .about-quote .eyebrow { font-size: 0.68rem; margin-bottom: 6px; }
  .about-quote p:last-child { font-size: 0.78rem; }
  .about-media img { box-shadow: none; }
  .about-media::before {
    content: ""; position: absolute; inset: 0; z-index: 1; border-radius: var(--radius);
    background: linear-gradient(180deg, var(--paper) 0%, transparent 22%);
    pointer-events: none;
  }
  .values-list { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }

  /* Compact mobile rhythm: tighter section spacing throughout */
  .section, .testimonials-section, .values, .stats { padding: 56px 0; }
  .cta-banner { padding: 72px 0; }
  .hero { padding: 88px 0 40px; min-height: 100vh; min-height: 100dvh; }
  .hero-strip { margin-top: 40px; }
  .section-title { margin-bottom: 32px; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .stat-num { font-size: 1.6rem; }

  .values-list { gap: 20px 16px; }
  .value-item i { font-size: 1.4rem; margin-bottom: 8px; }
  .value-item h3 { font-size: 0.98rem; margin-bottom: 4px; }
  .value-item p { font-size: 0.82rem; }

  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 12px; }
  .bento-card, .bento-card-lg, .bento-card-wide { grid-column: span 1; grid-row: span 1; }
  .bento-content { padding: 14px; }
  .bento-content i { font-size: 1.25rem; margin-bottom: 4px; }
  .bento-content h3 { font-size: 0.92rem; margin-bottom: 0; line-height: 1.25; }
  .bento-content p { display: none; }

  .process { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .process-step { padding-top: 18px; }

  .about-media img { aspect-ratio: 4 / 3; }

  .testimonials-track { gap: 14px; animation-duration: 22s; }
  .testimonial-card { padding: 20px; gap: 12px; width: 82vw; }

  .section, .testimonials-section, .values, .stats { padding: 44px 0; }
  .hero { padding: 84px 0 32px; }
  .hero-actions { margin-top: 22px; }
  .hero-strip { margin-top: 28px; }
  .gallery { columns: 2 140px; }
  .cta-banner { padding: 60px 0; }

  /* Compact two-column footer on mobile */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-logo { height: 60px; margin: 0 auto 14px; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-links, .footer-contact { gap: 10px; }
}
