/* ============================================
   STYLES.CSS
   Components · Nav · Buttons · Home · Work
   About · Contact · Footer · Responsive
   ============================================ */

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--mid) var(--ease), border-color var(--mid) var(--ease);
}
nav.site-nav .container {
  height: 100%; display: flex;
  align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo  { font-size: 0.9375rem; font-weight: 400; letter-spacing: -0.01em; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.8125rem; color: var(--muted); transition: color var(--fast); }
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.theme-toggle {
  width: 36px; height: 20px; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: transparent;
  position: relative; cursor: pointer;
  transition: border-color var(--mid); flex-shrink: 0;
}
.theme-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--fg);
  transition: transform var(--mid) var(--ease-spring);
}
[data-theme="dark"] .theme-toggle::after { transform: translateX(16px); }

.nav-burger { display: none; flex-direction: column; gap: 4px; padding: 6px; cursor: pointer; }
.nav-burger span {
  display: block; width: 19px; height: 1px; background: var(--fg);
  transition: transform var(--mid) var(--ease-spring), opacity var(--fast);
}

.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 99;
  flex-direction: column; align-items: flex-start;
  justify-content: flex-end; padding: 48px var(--px); gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 400;
  letter-spacing: -0.03em; color: var(--muted);
  transition: color var(--fast); line-height: 1.2;
}
.nav-mobile a:hover { color: var(--fg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 16px; border-radius: var(--r-pill);
  font-size: 0.8125rem; font-weight: 400; letter-spacing: -0.005em;
  white-space: nowrap; cursor: pointer;
  transition: background var(--fast), color var(--fast),
              border-color var(--fast), opacity var(--fast);
}
.btn-dark    { background: var(--fg); color: var(--bg); border: 1px solid var(--fg); }
.btn-dark:hover { opacity: .75; }
.btn-outline { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--fg); }
.btn-nav {
  background: var(--fg); color: var(--bg); border: 1px solid var(--fg);
  height: 32px; padding: 0 14px; font-size: 0.8125rem;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 5px;
  transition: opacity var(--fast);
}
.btn-nav:hover { opacity: .72; }
.btn svg { flex-shrink: 0; }

/* ══════════════════════════════════════
   HOME PAGE
══════════════════════════════════════ */

.hero {
  padding: clamp(52px, 8vw, 96px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow { font-size: 0.75rem; color: var(--muted); margin-bottom: 28px; }
.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 22px; max-width: 800px;
}
.hero-title .light { color: var(--muted); font-weight: 400; }
.hero-body {
  font-size: 0.9375rem; color: var(--muted); line-height: 1.7;
  max-width: 380px; margin-bottom: 32px; font-weight: 400;
}
.hero-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 10px 0; margin-top: clamp(52px, 7vw, 88px);
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 26s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-size: 0.75rem; color: var(--muted); padding: 0 24px; flex-shrink: 0; border-right: 1px solid var(--border); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section-head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(32px, 5vw, 48px); gap: 20px;
}
.section-head h2 {
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-weight: 400; letter-spacing: -0.01em; color: var(--muted);
}

.work-section { padding: clamp(64px, 9vw, 112px) 0; }

.wc {
  display: block; position: relative; overflow: hidden;
  background: var(--card); cursor: none;
  transition: background var(--fast);
}
.wc:hover { background: var(--border); }
.wc-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.wc.wc-featured .wc-img { aspect-ratio: 21/9; }
.wc-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .85s var(--ease-out);
}
.wc:hover .wc-img-inner { transform: scale(1.03); }
.wc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease-out); }
.wc:hover .wc-img img { transform: scale(1.03); }
.wc-footer {
  padding: 13px 16px 15px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--border);
}
.wc-title { font-size: 0.875rem; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 2px; }
.wc-meta  { font-size: 0.75rem; color: var(--muted); }
.wc-arrow {
  width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--fast), border-color var(--fast),
              transform var(--mid) var(--ease-spring);
}
.wc:hover .wc-arrow { background: var(--fg); border-color: var(--fg); transform: rotate(45deg); }
.wc:hover .wc-arrow svg { color: var(--bg); }
.wc-arrow svg { color: var(--muted); transition: color var(--fast); }

.home-work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.home-work-grid .wc-featured { grid-column: 1 / -1; }

.about-strip {
  padding: clamp(64px, 9vw, 112px) 0;
  border-top: 1px solid var(--border);
}
.about-strip-inner {
  display: grid; grid-template-columns: 200px 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.about-strip-right h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem); font-weight: 400;
  letter-spacing: -0.03em; line-height: 1.1;
}
.about-strip-right h2 .muted { color: var(--muted); }
.about-strip-right .btn { margin-top: 28px; }

.services-section {
  padding: clamp(64px, 9vw, 112px) 0;
  border-top: 1px solid var(--border);
}
.svc-list  { margin-top: 28px; }
.svc-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  cursor: default;
  transition: padding var(--mid) var(--ease-spring);
}
.svc-row:first-child  { border-top: 1px solid var(--border); }
.svc-row:hover { padding-top: 26px; padding-bottom: 26px; }
.svc-name {
  font-size: clamp(1.0625rem, 2vw, 1.5rem); font-weight: 400;
  letter-spacing: -0.025em; transition: color var(--fast);
}
.svc-row:hover .svc-name { color: var(--muted); }
.svc-arrow {
  color: var(--muted); flex-shrink: 0;
  transition: transform var(--mid) var(--ease-spring), color var(--fast);
}
.svc-row:hover .svc-arrow { transform: translateY(3px); color: var(--fg); }

.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.marquee-track { display: flex; white-space: nowrap; animation: ticker 18s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: clamp(1.25rem, 3.5vw, 2.25rem); font-weight: 400;
  letter-spacing: -0.03em; padding: 0 36px;
  flex-shrink: 0; border-right: 1px solid var(--border); line-height: 1.2;
}
.marquee-item.dim { color: var(--muted); }

.stats-section { padding: clamp(64px, 9vw, 112px) 0; border-top: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.stat-cell {
  padding: clamp(24px, 3.5vw, 44px) clamp(18px, 2.5vw, 32px);
  border-right: 1px solid var(--border);
  transition: background var(--fast);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--card); }
.stat-num   { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 400; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.75rem; color: var(--muted); }

.testimonials { padding: clamp(64px, 9vw, 112px) 0; border-top: 1px solid var(--border); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 32px;
}
.testi-cell { background: var(--bg); padding: clamp(24px, 3vw, 36px); transition: background var(--fast); }
.testi-cell:hover { background: var(--card); }
.testi-q    { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.testi-author { font-size: 0.8125rem; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 2px; }
.testi-role { font-size: 0.75rem; color: var(--muted); }

/* ── FOOTER ── */
.site-footer {
  background: var(--fg); color: var(--bg);
  padding: clamp(52px, 8vw, 88px) 0 40px;
  transition: background var(--mid) var(--ease);
}
.footer-inner { padding-bottom: clamp(52px, 7vw, 80px); border-bottom: 1px solid var(--bg); }
.footer-eyebrow { font-size: 0.75rem; color: var(--bg); margin-bottom: 20px; display: block; }
.footer-cta {
  font-size: clamp(2rem, 6vw, 4.5rem); font-weight: 400;
  letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 36px; max-width: 660px;
}
.footer-btn {
  display: inline-flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 18px; border-radius: var(--r-pill);
  border: 1px solid var(--bg);
  color: var(--bg); font-size: 0.8125rem; cursor: pointer; background: transparent;
  transition: border-color var(--fast), background var(--fast);
}
.footer-btn:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.footer-bottom {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: end; gap: 40px; padding-top: 36px;
}
.footer-copy { font-size: 0.75rem; color: var(--bg); align-self: end; }
.footer-nav  { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-head { font-size: 0.75rem; color: var(--bg); margin-bottom: 4px; }
.footer-nav a {
  font-size: 0.8125rem; color: var(--bg);
  display: flex; align-items: center; gap: 3px;
  transition: color var(--fast);
}
.footer-nav a:hover { color: var(--bg); }

/* ══════════════════════════════════════
   WORK PAGE
══════════════════════════════════════ */
.page-hero { padding: clamp(52px, 8vw, 96px) 0 clamp(44px, 6vw, 72px); border-bottom: 1px solid var(--border); }
.page-hero .label { margin-bottom: 18px; display: block; }
.page-title { font-size: clamp(2.25rem, 6vw, 4.75rem); font-weight: 400; letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 18px; }
.page-title .light { color: var(--muted); }
.page-sub { font-size: 0.9375rem; color: var(--muted); line-height: 1.7; max-width: 440px; margin-bottom: 32px; }

.filter-bar { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; margin-top: 32px; }
.filter-btn {
  height: 30px; padding: 0 13px; border-radius: var(--r-pill);
  border: 1px solid var(--border); font-size: 0.75rem;
  color: var(--muted); background: transparent; cursor: pointer;
  transition: all var(--fast);
}
.filter-btn:hover, .filter-btn.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.all-work { padding: clamp(52px, 7vw, 88px) 0; }
.all-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.all-work-grid .wc .wc-img { aspect-ratio: 4/3; }
.all-work-grid .wc.span2   { grid-column: span 2; }
.all-work-grid .wc.span2 .wc-img { aspect-ratio: 16/9; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-hero { padding: clamp(52px, 8vw, 96px) 0 clamp(52px, 7vw, 88px); border-bottom: 1px solid var(--border); }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: end; }
.about-intro { font-size: 0.9375rem; color: var(--muted); line-height: 1.8; }

.portrait-section { padding: clamp(64px, 9vw, 112px) 0; border-bottom: 1px solid var(--border); }
.portrait-inner { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.portrait-img-wrap { aspect-ratio: 3/4; background: var(--card); border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.portrait-text .label { margin-bottom: 18px; display: block; }
.portrait-text h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 18px; }
.portrait-text p  { font-size: 0.9375rem; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.portrait-social  { display: flex; gap: 7px; margin-top: 24px; flex-wrap: wrap; }

.capabilities { padding: clamp(64px, 9vw, 112px) 0; border-bottom: 1px solid var(--border); }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; background: var(--border); border: 1px solid var(--border); gap: 1px; margin-top: clamp(36px, 5vw, 52px); }
.cap-cell { background: var(--bg); padding: clamp(24px, 3.5vw, 40px); transition: background var(--fast); }
.cap-cell:hover { background: var(--card); }
.cap-num { font-size: 0.75rem; color: var(--muted); margin-bottom: 14px; display: block; }
.cap-cell h3 { font-size: 0.9375rem; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 8px; }
.cap-cell p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

.process-section { padding: clamp(64px, 9vw, 112px) 0; border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); margin-top: clamp(36px, 5vw, 52px); }
.process-cell { padding: clamp(22px, 3vw, 36px); border-right: 1px solid var(--border); transition: background var(--fast); }
.process-cell:last-child { border-right: none; }
.process-cell:hover  { background: var(--card); }
.process-num { font-size: 0.75rem; color: var(--muted); margin-bottom: 12px; display: block; }
.process-cell h3 { font-size: 0.9375rem; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 8px; }
.process-cell p  { font-size: 0.8125rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-body-section { padding: clamp(52px, 7vw, 88px) 0 clamp(64px, 9vw, 112px); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(44px, 7vw, 88px); align-items: start; }
.contact-info .label { margin-bottom: 22px; display: block; }
.contact-info h3 { font-size: clamp(1.0625rem, 2vw, 1.375rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
.contact-info > p { font-size: 0.875rem; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.c-detail { margin-bottom: 18px; }
.c-detail-label { font-size: 0.6875rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; display: block; }
.c-detail-val { font-size: 0.9375rem; display: flex; align-items: center; gap: 7px; }
.c-avail-dot { width: 6px; height: 6px; border-radius: 50%; background: #3CB06D; display: inline-block; animation: avail 2.5s ease-in-out infinite; }
@keyframes avail { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.5); } }
.contact-socials { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 28px; }

.c-faq { margin-top: 44px; }
.c-faq > .label { margin-bottom: 14px; display: block; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; font-size: 0.875rem; font-weight: 400; letter-spacing: -0.01em;
  cursor: pointer; text-align: left; gap: 16px; background: transparent; color: var(--fg);
}
.faq-icon { flex-shrink: 0; color: var(--muted); transition: transform var(--mid) var(--ease-spring); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { font-size: 0.8125rem; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height var(--mid) var(--ease), padding var(--mid) var(--ease); }
.faq-item.open .faq-a { max-height: 180px; padding-bottom: 14px; }

.contact-form-wrap { background: var(--card); border: 1px solid var(--border); padding: clamp(24px, 4vw, 44px); }
.form-head { font-size: 0.75rem; color: var(--muted); margin-bottom: 24px; display: block; }
.form-grid { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 0.6875rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border); background: var(--bg); color: var(--fg);
  font-family: var(--font); font-size: 0.875rem; outline: none;
  transition: border-color var(--fast); border-radius: var(--r-sm);
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--fg); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select   { cursor: pointer; }
.form-submit {
  width: 100%; padding: 13px;
  background: var(--fg); color: var(--bg);
  font-family: var(--font); font-size: 0.875rem; font-weight: 400;
  letter-spacing: -0.01em; border: none; cursor: pointer;
  transition: opacity var(--fast); border-radius: var(--r-sm); margin-top: 2px;
}
.form-submit:hover { opacity: .78; }

/* ══════════════════════════════════════
   ABOUT PAGE — HERITAGE + TEAM
══════════════════════════════════════ */

/* ══════════════════════════════════════
   ABOUT PAGE — HERITAGE + TEAM
══════════════════════════════════════ */

/* ── Heritage ── */
.about-heritage {
  padding: clamp(64px, 9vw, 112px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-heritage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Grandfather image block */
.about-heritage-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}
.about-heritage-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.about-heritage-img img.loaded { opacity: 1; }
.about-heritage-ph { width: 100%; height: 100%; background: var(--card); }

.about-heritage-right h2 {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-heritage-right h2 .light { color: var(--muted); }
.about-heritage-right p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0;
}
.about-heritage-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.about-heritage-rule-line {
  width: 20px; height: 1px;
  background: var(--muted); flex-shrink: 0;
}

/* ── Team — 4 cards in a row ── */
.about-team {
  padding: clamp(64px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--border);
}
.about-team-head {
  margin-bottom: clamp(40px, 5vw, 60px);
}
.about-team-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.about-team-title .light { color: var(--muted); }

.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.about-card {
  padding: 28px 24px 32px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: background var(--fast);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-card:hover { background: var(--card); }

/* Portrait inside card */
.about-card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.about-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out), transform 0.7s var(--ease-out);
}
.about-card-img img.loaded { opacity: 1; }
.about-card:hover .about-card-img img { transform: scale(1.04); }
.about-card-ph { width: 100%; height: 100%; background: var(--card); }

.about-card-num {
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about-card-name {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.about-card-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.about-card-bio {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.about-card-tag {
  height: 24px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.about-card-exp {
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-heritage-inner { grid-template-columns: 1fr; }
  .about-heritage-img   { aspect-ratio: 4/3; }
  .about-cards          { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-cards { grid-template-columns: 1fr; }
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--fg);
  background: transparent;
  transition: background var(--fast), border-color var(--fast), color var(--fast);
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.btn-whatsapp svg { flex-shrink: 0; }

/* Form success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: clamp(48px, 6vw, 80px) 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.form-success.visible { display: flex; }
.form-success svg { color: #3CB06D; }
.form-success p { font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }

/* Form error */
.form-error {
  font-size: 0.8125rem;
  color: #D94F4F;
  min-height: 1.2em;
  margin-top: 4px;
}

/* Contact info links */
.c-detail-val a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--fast);
}
.c-detail-val a:hover { opacity: 0.65; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .home-work-grid { grid-template-columns: 1fr; }
  .home-work-grid .wc-featured { grid-column: 1; }
  .all-work-grid { grid-template-columns: 1fr 1fr; }
  .all-work-grid .wc.span2 { grid-column: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .about-strip-inner { grid-template-columns: 1fr; }
  .portrait-inner { grid-template-columns: 1fr; }
  .portrait-img-wrap { aspect-ratio: 4/3; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-cell:nth-child(2) { border-right: none; }
  .process-cell:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .process-cell:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
  .all-work-grid { grid-template-columns: 1fr; }
  .all-work-grid .wc.span2 { grid-column: 1; }
  .cap-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .process-cell { border-right: none !important; border-top: 1px solid var(--border) !important; }
  .process-cell:first-child { border-top: none !important; }
  .cursor, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-top: 1px solid var(--border); }
  .stat-cell:first-child { border-top: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-strip-inner { grid-template-columns: 1fr; }
}
