/* MegaBuilders Solutions — main stylesheet
   Brand: navy + amber, Fraunces + Inter
   Author: in-house design (J. Gerber, 2024)
*/

:root {
  --navy: #0F2A44;
  --navy-700: #143553;
  --navy-300: #4a6a8a;
  --amber: #E8A93B;
  --amber-600: #c98e1d;
  --cream: #FAF8F5;
  --paper: #ffffff;
  --ink: #1C1C1C;
  --ink-soft: #3a4047;
  --concrete: #E5E2DC;
  --line: #d8d3ca;
  --muted: #6b7480;
  --shadow-sm: 0 2px 8px rgba(15, 42, 68, .06);
  --shadow: 0 10px 30px rgba(15, 42, 68, .10);
  --shadow-lg: 0 24px 60px rgba(15, 42, 68, .18);
  --radius: 6px;
  --container: 1180px;
  --transition: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber-600); }
h1,h2,h3,h4 { font-family: "Fraunces", Georgia, "Times New Roman", serif; color: var(--navy); font-weight: 600; line-height: 1.18; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-weight: 600; font-size: 0.97rem; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all .25s var(--transition); text-decoration: none; line-height: 1; letter-spacing: .01em; }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-600); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-arrow::after { content: "→"; transition: transform .3s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,248,245,.92); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); transition: background .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(250,248,245,.98); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 0.95rem; font-weight: 500; color: var(--navy); position: relative; }
.main-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--transition); }
.main-nav a:not(.btn):hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.header-phone svg { color: var(--amber-600); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--navy); }

@media (max-width: 960px) {
  .main-nav, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .header-phone { display: none; }
  .brand img { height: 36px; width: auto; }
  .header-inner { gap: 12px; }
}

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; background: var(--navy); color: var(--cream); z-index: 200; display: flex; flex-direction: column; padding: 24px; transform: translateX(100%); transition: transform .35s var(--transition); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .close { align-self: flex-end; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 8px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.mobile-menu nav a { color: var(--cream); font-size: 1.4rem; font-family: "Fraunces", serif; }
.mobile-menu .mm-foot { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); font-size: 0.9rem; color: rgba(255,255,255,.75); }

/* Hero */
.hero { position: relative; padding: 90px 0 110px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); color: var(--cream); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: url("/images/hero-construction.jpg"); background-size: cover; background-position: center; opacity: .22; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, var(--navy) 100%); z-index: 0; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 18px; }
.hero-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--amber); }
.hero h1 { color: var(--cream); margin-bottom: 22px; }
.hero h1 .accent { color: var(--amber); font-style: italic; }
.hero p.lead { font-size: 1.13rem; color: rgba(250,248,245,.85); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-stat .num { font-family: "Fraunces", serif; font-size: 2rem; color: var(--amber); font-weight: 600; }
.hero-stat .lbl { font-size: 0.82rem; color: rgba(250,248,245,.7); text-transform: uppercase; letter-spacing: .1em; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 8px; box-shadow: var(--shadow-lg); }
.hero-card { position: absolute; bottom: -28px; left: -28px; background: var(--cream); color: var(--ink); padding: 18px 22px; border-radius: 8px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 280px; }
.hero-card .badge { background: var(--amber); color: var(--navy); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: "Fraunces", serif; flex-shrink: 0; }
.hero-card strong { display: block; font-family: "Fraunces", serif; color: var(--navy); font-size: 1rem; }
.hero-card span { font-size: 0.83rem; color: var(--muted); }

@media (max-width: 880px) {
  .hero { padding: 60px 0 80px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { left: 16px; bottom: -20px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-stat .num { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .hero { padding: 50px 0 70px; }
  .hero h1 { font-size: 1.55rem; line-height: 1.2; }
  .hero p.lead { font-size: 0.98rem; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: .12em; flex-wrap: wrap; }
  .hero-eyebrow::before { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; row-gap: 22px; gap: 16px; padding-top: 20px; margin-top: 36px; }
  .hero-stat:last-child { grid-column: 1 / -1; }
  .hero-stat .num { font-size: 1.6rem; }
  .hero-card { position: static; margin-top: 24px; max-width: 100%; }
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
  h2 { font-size: 1.55rem !important; }
  .section-head { margin-bottom: 36px; }
}
/* Prevent any grid item from overflowing its track on small screens */
.svc-grid > *, .proj-grid > *, .foot-grid > *, .two-col > * { min-width: 0; }

/* Sections */
section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.section-eyebrow { display: inline-block; font-size: 0.78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--amber-600); font-weight: 700; margin-bottom: 14px; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--cream); }
.bg-navy p { color: rgba(250,248,245,.8); }

/* Service grid */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; transition: transform .35s var(--transition), box-shadow .35s, border-color .35s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--amber); }
.svc-card .img { aspect-ratio: 4/3; overflow: hidden; }
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--transition); }
.svc-card:hover .img img { transform: scale(1.06); }
.svc-card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { margin: 0 0 8px; font-size: 1.25rem; }
.svc-card p { font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.svc-card .more { font-weight: 600; color: var(--amber-600); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-card .more::after { content: "→"; transition: transform .3s; }
.svc-card:hover .more::after { transform: translateX(4px); }

/* Project gallery */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .proj-grid { grid-template-columns: 1fr; } }
.proj-card { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; cursor: pointer; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--transition); }
.proj-card:hover img { transform: scale(1.08); }
.proj-card .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,42,68,.92)); display: flex; align-items: flex-end; padding: 22px; color: var(--cream); }
.proj-card .overlay h4 { color: var(--cream); margin: 0 0 4px; font-size: 1.15rem; }
.proj-card .overlay span { font-size: 0.85rem; color: rgba(250,248,245,.75); }
.proj-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.proj-filter { padding: 8px 18px; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.proj-filter.active, .proj-filter:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* Stats band */
.stats-band { background: var(--navy); color: var(--cream); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
.stat .big { font-family: "Fraunces", serif; font-size: 3rem; color: var(--amber); font-weight: 600; line-height: 1; }
.stat .lbl { font-size: 0.88rem; color: rgba(250,248,245,.75); text-transform: uppercase; letter-spacing: .12em; margin-top: 8px; }

/* Testimonials */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
.test-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 30px; position: relative; }
.test-card::before { content: "\""; position: absolute; top: 6px; right: 22px; font-family: "Fraunces", serif; font-size: 5rem; color: var(--amber); opacity: .35; line-height: 1; }
.test-stars { color: var(--amber); margin-bottom: 14px; letter-spacing: 2px; }
.test-card p { font-style: italic; color: var(--ink-soft); margin-bottom: 18px; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.test-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.test-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.test-author span { font-size: 0.82rem; color: var(--muted); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--paper); padding: 32px 28px; border-radius: 8px; border: 1px solid var(--line); position: relative; counter-increment: step; transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step::before { content: counter(step, decimal-leading-zero); font-family: "Fraunces", serif; font-size: 2.4rem; color: var(--amber); font-weight: 600; line-height: 1; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; margin: 0; }

/* CTA band */
.cta-band { position: relative; padding: 90px 0; color: var(--cream); text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,42,68,.92), rgba(20,53,83,.92)), url("/images/cta-bg.jpg") center/cover; }
.cta-band > .container { position: relative; }
.cta-band h2 { color: var(--cream); margin-bottom: 14px; }
.cta-band p { color: rgba(250,248,245,.85); font-size: 1.1rem; margin-bottom: 28px; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(250,248,245,.78); padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--cream); font-size: 0.95rem; letter-spacing: .14em; text-transform: uppercase; font-family: "Inter", sans-serif; font-weight: 700; margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; font-size: 0.93rem; }
.site-footer ul a { color: rgba(250,248,245,.78); }
.site-footer ul a:hover { color: var(--amber); }
.foot-brand img { height: 50px; margin-bottom: 16px; }
.foot-brand p { color: rgba(250,248,245,.7); font-size: 0.93rem; max-width: 320px; }
.foot-contact div { font-size: 0.93rem; margin-bottom: 8px; }
.foot-contact strong { color: var(--cream); display: block; margin-bottom: 2px; font-weight: 600; }
.foot-bar { padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 0.85rem; color: rgba(250,248,245,.6); }
.foot-bar a { color: rgba(250,248,245,.7); margin-left: 18px; }
.foot-bar a:first-child { margin-left: 0; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 720px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 22px 26px; z-index: 300; display: none; gap: 22px; align-items: center; flex-wrap: wrap; transform: translateY(20px); opacity: 0; transition: opacity .35s, transform .35s; }
.cookie-banner.visible { display: flex; opacity: 1; transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.92rem; flex: 1; min-width: 280px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.88rem; }
.btn-link { background: transparent; border: 0; color: var(--muted); font-size: 0.88rem; cursor: pointer; text-decoration: underline; padding: 6px 10px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--transition), transform .7s var(--transition); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

/* Page intro (subpages) */
.page-hero { background: var(--navy); color: var(--cream); padding: 80px 0 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: url("/images/process-bg.jpg"); background-size: cover; background-position: center; opacity: .18; }
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero p { color: rgba(250,248,245,.82); font-size: 1.1rem; max-width: 680px; margin: 0; }
.breadcrumbs { font-size: 0.85rem; color: rgba(250,248,245,.65); margin-bottom: 18px; }
.breadcrumbs a { color: rgba(250,248,245,.85); }
.breadcrumbs a:hover { color: var(--amber); }

/* Two-column content */
.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col img { border-radius: 8px; box-shadow: var(--shadow); }
.two-col ul { padding-left: 0; list-style: none; }
.two-col ul li { padding: 8px 0 8px 28px; position: relative; color: var(--ink-soft); }
.two-col ul li::before { content: "✓"; position: absolute; left: 0; color: var(--amber-600); font-weight: 700; }

/* Long content (legal pages, blog) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2em; font-size: 1.7rem; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 6px; color: var(--ink-soft); }
.prose blockquote { border-left: 4px solid var(--amber); margin: 1.6em 0; padding: 8px 22px; background: var(--paper); font-style: italic; color: var(--ink-soft); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1/-1; }
.form-row label { font-size: 0.86rem; font-weight: 600; color: var(--navy); letter-spacing: .04em; }
.form-row input, .form-row select, .form-row textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 0; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,169,59,.18); }

/* Contact split */
.contact-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; }
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; } }
.contact-info { background: var(--navy); color: var(--cream); padding: 36px; border-radius: 8px; }
.contact-info h3 { color: var(--cream); margin-top: 0; }
.contact-info .ci-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-info .ci-row:last-child { border-bottom: 0; }
.contact-info .ci-icon { width: 40px; height: 40px; background: rgba(232,169,59,.18); color: var(--amber); border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }
.contact-info strong { display: block; color: var(--cream); margin-bottom: 2px; font-size: 0.88rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-info a { color: rgba(250,248,245,.9); }
.map-embed { margin-top: 40px; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: var(--amber); }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--amber); font-weight: 400; transition: transform .3s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--ink-soft); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .img img { transform: scale(1.05); }
.blog-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.blog-card p { font-size: 0.93rem; flex: 1; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-card img { aspect-ratio: 1; width: 100%; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
.team-card h4 { font-family: "Fraunces", serif; color: var(--navy); margin: 0 0 4px; font-size: 1.2rem; }
.team-card .role { font-size: 0.86rem; color: var(--amber-600); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }
.team-card p { font-size: 0.93rem; }

/* Areas grid */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 800px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
.area-pill { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 16px 18px; display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--navy); transition: all .25s; }
.area-pill:hover { border-color: var(--amber); transform: translateY(-2px); }
.area-pill::before { content: "📍"; font-size: 1.05rem; }

/* Trust badges */
.trust-row { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 10px; padding: 10px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.trust-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* Owner letter */
.owner-letter { background: var(--paper); border-left: 4px solid var(--amber); padding: 36px 40px; border-radius: 6px; box-shadow: var(--shadow-sm); max-width: 760px; margin: 0 auto; }
.owner-letter .sig { font-family: "Fraunces", serif; font-size: 1.6rem; font-style: italic; color: var(--navy); margin-top: 18px; }
.owner-letter .sig-name { font-size: 0.9rem; color: var(--muted); font-style: normal; margin-top: 4px; display: block; }

/* Misc */
.divider-amber { width: 60px; height: 4px; background: var(--amber); border-radius: 2px; margin: 0 auto 22px; }
.section-head.left .divider-amber { margin-left: 0; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
hr.thin { border: 0; border-top: 1px solid var(--line); margin: 60px 0; }
