/* ================================================================
   2 Trident of Neptune / Neptune Mobile Car Wash & Detail
   Shared design system + chrome (header / nav / footer).
   Owned by the orchestrator. Page agents append page-scoped rules
   below, each under a banner comment reading: page: <slug>
   Do NOT edit the shared sections above the page banners.
   ================================================================ */

:root {
  --red: #e21f26;
  --red-dark: #b8151b;
  --red-deep: #9c1116;
  --ink: #171717;
  --ink-2: #262626;
  --near-black: #0f0f0f;
  --body: #3f3f3f;
  --muted: #6b6b6b;
  --cream: #fdeeec;
  --cream-2: #faf1ef;
  --line: #e7ddda;
  --white: #ffffff;
  --card: #ffffff;
  --shadow-sm: 0 4px 14px rgba(0,0,0,.08);
  --shadow-md: 0 12px 34px rgba(0,0,0,.14);
  --radius: 6px;
  --radius-lg: 12px;
  --wrap: 1200px;
  --head: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --script: 'Dancing Script', 'Segoe Script', cursive;
  --sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--head);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 .5em;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.eyebrow {
  font-family: var(--script);
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.text-red { color: var(--red); }
.center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 30px;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-pill { border-radius: 999px; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand img { width: 54px; height: 54px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--head); font-weight: 700; color: var(--ink); font-size: 1.15rem; letter-spacing: .5px; }
.brand-sub { font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a {
  font-family: var(--head);
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .6px;
  color: var(--ink);
  padding: 10px 12px;
  display: inline-block;
  border-radius: 4px;
}
.nav a:hover { color: var(--red); text-decoration: none; }
.nav li { position: relative; }
.has-sub > a::after { content: '\25be'; font-size: .7em; margin-left: 5px; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-top: 3px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 9px 20px; font-size: .8rem; white-space: nowrap; }
.submenu a:hover { background: var(--cream); color: var(--red); }
.header-cta {
  background: var(--red);
  color: #fff;
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: .5px;
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.header-cta:hover { background: var(--red-dark); color: #fff; text-decoration: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---- Sub-page banner (interior title band) ---- */
.page-banner { position: relative; height: 400px; overflow: hidden; background: #000; }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.8); }
.page-banner .wrap { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-banner h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.75rem); margin: 0; }

/* ---- Two overlapping intro images ---- */
.dual-images { position: relative; min-height: 380px; }
.dual-images .img-a, .dual-images .img-b { border-radius: 6px; box-shadow: var(--shadow-md); object-fit: cover; }
.dual-images .img-a { width: 74%; height: 300px; }
.dual-images .img-b {
  position: absolute; right: 0; bottom: -18px; width: 58%; height: 260px;
  border: 8px solid #fff;
}
.frame-accent { position: absolute; border: 3px solid var(--red); border-radius: 6px; z-index: 0; }

/* ---- Split (text + media) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* ---- Service list (checkmark grid) ---- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 32px; list-style: none; padding: 0; margin: 24px 0 0; }
.svc-grid li {
  font-family: var(--head); text-transform: uppercase; font-weight: 500; letter-spacing: .5px;
  color: var(--ink); font-size: 1rem; padding: 12px 0 12px 34px; position: relative; border-bottom: 1px solid var(--line);
}
.svc-grid li::before {
  content: '\2713'; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  color: #fff; background: var(--red); width: 22px; height: 22px; border-radius: 50%;
  font-size: .8rem; display: flex; align-items: center; justify-content: center;
}
.svc-grid li a { color: inherit; }
.svc-grid li a:hover { color: var(--red); }

.num-list { padding-left: 20px; margin: 20px 0; }
.num-list li { margin-bottom: 10px; }
.bullet-list { padding-left: 20px; margin: 16px 0; }
.bullet-list li { margin-bottom: 8px; }

/* ---- Package / feature cards ---- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 36px; }
.card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.card > img { width: 100%; height: 210px; object-fit: cover; }
.card .card-body { padding: 24px 26px 28px; }
.card h3 { color: var(--red); font-size: 1.3rem; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: auto auto; grid-auto-flow: column; gap: 34px 30px; margin-top: 34px; }
.feature-head { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.feature-icon { width: 55px; height: 55px; flex: 0 0 55px; background: #e31c23; display: flex; align-items: center; justify-content: center; }
.feature-icon img { width: 38px; height: 38px; }
.feature h3 { font-family: var(--sans); text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 1.3rem; color: #000; margin: 0; }
.feature p { margin: 0; font-size: 1rem; }

/* ---- Full-bleed band photo ---- */
.band-photo { position: relative; height: 460px; overflow: hidden; }
.band-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- Full-bleed split: text left, photo filling the right half ---- */
.split-bleed { display: grid; grid-template-columns: 1fr 1fr; min-height: var(--sb-h, 519px); background: var(--sb-bg, #fff); }
.split-bleed .sb-text { display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.split-bleed .sb-inner { width: 100%; max-width: 586px; }
.split-bleed .sb-inner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.split-bleed .sb-media { position: relative; min-height: 320px; }
@media (max-width: 960px) { .split-bleed { min-height: 0; } }
.split-bleed .sb-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- Service-areas red band ---- */
.areas-band { position: relative; overflow: hidden; background: var(--red); color: #fff; }
.areas-band { background: #e31c23; }
.areas-band .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.areas-band .wrap { position: relative; z-index: 2; padding: 70px 24px; }
.areas-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 620px; }
.areas-band p { color: rgba(255,255,255,.95); max-width: 620px; }
.areas-cols { display: grid; grid-template-columns: repeat(2, minmax(0,220px)); gap: 4px 48px; list-style: none; padding: 0; margin: 22px 0 0; }
.areas-cols li { padding: 6px 0 6px 22px; position: relative; font-weight: 600; }
.areas-cols li::before { content: '\25cf'; position: absolute; left: 0; color: #fff; font-size: .7rem; top: 11px; }
.areas-flex { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }

/* ---- FAQ accordion ---- */
.faq { max-width: 900px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--head); text-transform: uppercase; letter-spacing: .5px;
  font-size: 1.05rem; color: var(--ink); font-weight: 500;
  padding: 20px 40px 20px 0; cursor: pointer; position: relative; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 6px; top: 16px; font-size: 1.6rem; color: var(--red); transition: transform .2s ease; }
.faq details[open] summary::after { content: '\2013'; }
.faq .faq-body { padding: 0 0 22px; color: var(--body); }

/* ---- Service info (booking) cards ---- */
.booking-note { font-size: .82rem; color: var(--muted); font-style: italic; margin-top: 8px; }
.svc-info { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 34px; }
.svc-info-card { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.svc-info-card img { width: 84px; height: 84px; border-radius: 8px; object-fit: cover; flex: 0 0 84px; }
.svc-info-card h4 { margin: 0 0 4px; font-size: 1.05rem; }
.svc-info-card .meta { font-size: .85rem; color: var(--muted); }
.svc-info-card .price { font-family: var(--head); color: var(--red); font-weight: 600; margin: 4px 0 8px; }
.svc-info-card .book { font-family: var(--head); text-transform: uppercase; font-size: .78rem; letter-spacing: .5px; color: var(--ink); border: 1px solid var(--ink); padding: 6px 14px; border-radius: 3px; display: inline-block; }
.svc-info-card .book:hover { background: var(--ink); color: #fff; text-decoration: none; }

/* ---- CTA (black) band ---- */
.cta-dark { background: var(--near-black); color: #fff; text-align: center; }
.cta-dark h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 860px; margin: 0 auto .4em; }
.cta-dark p { color: rgba(255,255,255,.85); max-width: 720px; margin: 0 auto 26px; }

/* ---- Contact section + form ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-phone { font-family: var(--head); color: var(--red); font-size: 1.7rem; font-weight: 600; display: inline-block; margin: 6px 0 22px; }
.map-embed { width: 100%; height: 300px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form .full { grid-column: 1 / -1; }
.lead-form label { font-size: .8rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 5px; }
.lead-form input, .lead-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 5px;
  font-family: var(--sans); font-size: .95rem; background: #fff; color: var(--ink);
}
.lead-form input:focus, .lead-form textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
.lead-form textarea { min-height: 120px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; overflow: hidden; height: 0; width: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--red); color: #fff; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.6fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: 1px; margin-bottom: 16px; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: rgba(255,255,255,.8); }
.footer-brand img { width: 74px; height: 74px; border-radius: 50%; margin-bottom: 12px; }
.footer-brand .fb-name { font-family: var(--head); font-weight: 700; font-size: 1.2rem; letter-spacing: .5px; }
.footer-brand .fb-sub { font-size: .8rem; color: rgba(255,255,255,.85); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.92); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { background: rgba(255,255,255,.15); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: rgba(255,255,255,.3); }
.footer-social img { width: 18px; height: 18px; }
.footer-bar { background: var(--near-black); color: rgba(255,255,255,.8); text-align: center; padding: 16px; font-size: .82rem; margin-top: 48px; }
.footer-bar a { color: rgba(255,255,255,.8); }

/* ================================================================
   Motion — plain CSS. Entrance reveals always end visible
   (animation-fill-mode: both) so nothing depends on JS to appear.
   ================================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(226,31,38,.5); } 70% { box-shadow: 0 0 0 12px rgba(226,31,38,0); } }

.reveal { animation: fadeUp .7s ease both; }
.reveal-2 { animation: fadeUp .7s ease .12s both; }
.reveal-3 { animation: fadeUp .7s ease .24s both; }
.fade-in { animation: fadeIn .9s ease both; }

/* Entrance reveal for content blocks. This is a pure-CSS on-load
   animation: it ALWAYS runs and ALWAYS ends visible (fill-mode both),
   so nothing depends on JavaScript to appear. No hidden state is
   parked in the stylesheet. The optional IntersectionObserver in each
   page only adds a harmless .is-in class; if it never fires the content
   is already visible. */
.js-reveal { animation: fadeUp .7s ease both; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 62px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; padding: 10px 0 20px; box-shadow: var(--shadow-md); max-height: calc(100vh - 62px); overflow-y: auto; transform: translateY(-120%); transition: transform .3s ease; }
  .nav.open { transform: translateY(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { padding: 12px 24px; border-bottom: 1px solid var(--line); }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; padding: 0 0 0 16px; min-width: 0; }
  .has-sub > a::after { content: ''; }
  .header-cta { margin: 10px 24px; text-align: center; }
  .split, .split-bleed, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards, .feature-grid { grid-template-columns: 1fr; grid-auto-flow: row; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-flex { flex-direction: column; align-items: flex-start; }
  .section { padding: 52px 0; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .areas-cols { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .dual-images .img-a { width: 100%; }
  .dual-images .img-b { position: static; width: 100%; margin-top: 14px; border-width: 0; }
}

/* ============================== page: index ============================== */
.hero { position: relative; overflow: hidden; background: var(--near-black); color: #fff; }
.hero .hero-media {
  position: absolute; inset: 0;
  background-image: url('orig/03.png'), url('orig/02.avif');
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,15,15,.86) 0%, rgba(15,15,15,.55) 38%, rgba(226,31,38,.35) 55%, rgba(15,15,15,.15) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 130px 24px 120px; max-width: var(--wrap); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem); max-width: 720px; }
.hero .eyebrow { color: #fff; font-size: 1.9rem; }
.hero p { color: rgba(255,255,255,.92); max-width: 520px; font-size: 1.05rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* page: paint-correction */
.pc-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:30px}
.pc-card{background:#fff;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm)}
.pc-card img{width:100%;height:200px;object-fit:cover}
.pc-card .pc-body{padding:20px 22px}
.pc-card h3{font-size:1.05rem;color:var(--red);margin-bottom:8px}
@media(max-width:960px){.pc-cards{grid-template-columns:1fr}}

/* ======================= pages: mold / biofluid / specialty / commercial / blog ======================= */
:root { --soft: #f8f7f7; }
.intro-center { text-align: center; }
.sec-title { font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 900px; margin-left: auto; margin-right: auto; }
.intro-center .wrap { max-width: 1100px; }
.intro-center h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 1000px; margin-left: auto; margin-right: auto; }
.intro-center p { margin: 0 auto 1em; }
.center-list { display: inline-block; text-align: left; max-width: 900px; margin: 6px auto 18px; }
.text-block .wrap { max-width: 1100px; }
.text-block h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 1000px; }
.text-block h3, .text-block h4, .text-block h5 { text-transform: none; letter-spacing: 0; margin: 1.4em 0 .45em; }
.text-block h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.text-block h4 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.text-block h5 { font-size: 1.35rem; }
.text-block p { margin: 0 0 .9em; }
.lead { font-size: 1rem; }
.sb-inner h3.sub { font-size: 1.25rem; text-transform: none; letter-spacing: 0; margin: 1.2em 0 .4em; }
.sb-inner p { margin: 0 0 .9em; }
.areas-cols.areas-colflow { grid-auto-flow: column; grid-template-rows: repeat(6, auto); }

/* Specialty services: horizontal image + text cards */
.h-cards { display: grid; gap: 8px; max-width: 1104px; margin-top: 22px; }
.h-card { display: grid; grid-template-columns: 254px 1fr; gap: 11px 34px; align-items: center; padding: 18px 17px; background: #fff; border: 1px solid rgba(227,28,35,.05); }
.h-card img { width: 254px; height: 260px; object-fit: cover; }
.h-card h3 { font-family: var(--sans); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 1.25rem; margin: 0 0 10px; }
.h-card p { margin: 0; }

/* Blog list + post */
.blog-wrap { max-width: 988px; margin: 0 auto; padding: 0 24px; }
.blog-cats { font-size: .85rem; padding-bottom: 14px; border-bottom: 1px solid rgba(232,230,230,.75); }
.blog-cats a { color: var(--red); }
.blog-heading { font-family: var(--head); font-size: 1.75rem; margin: 40px 0 34px 16px; text-transform: none; }
.post-card { display: grid; grid-template-columns: 454px 1fr; border: 1px solid rgba(232,230,230,.75); background: #fff; margin-bottom: 32px; min-height: 341px; }
.post-card-img img { width: 100%; height: 100%; min-height: 341px; object-fit: cover; }
.post-card-body { padding: 24px 36px 28px; display: flex; flex-direction: column; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: #595959; line-height: 1.4; }
.post-avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; flex: 0 0 32px; }
.post-card-title { font-size: 1.55rem; line-height: 1.3; text-transform: none; letter-spacing: 0; margin: 18px 0 12px; }
.post-card-title a { color: var(--ink); }
.post-card-title a:hover { color: var(--red); text-decoration: none; }
.post-card-excerpt { font-size: .95rem; color: #3f3f3f; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }
.post-article { border: 1px solid rgba(232,230,230,.75); padding: 48px 100px 56px; margin-top: 32px; background: #fff; }
.post-title { font-size: 2.5rem; line-height: 1.25; text-transform: none; letter-spacing: 0; margin: 26px 0 30px; }
.post-body { font-size: 1.125rem; line-height: 1.5; color: #000; }
.post-body::after { content: ''; display: block; clear: both; }
.post-body p { margin: 0; }
.post-body .post-gap { line-height: 1.5; }
.post-body h2, .post-body h3, .post-body h4, .post-body h5 { font-family: var(--head); text-transform: none; letter-spacing: 0; color: #000; margin: 0; line-height: 1.3; }
.post-body h3 { font-size: 1.75rem; }
.post-body h4 { font-size: 1.4rem; }
.post-body ol, .post-body ul { margin: 0; padding-left: 1.6em; }
.post-body figure { margin: 0 0 18px; }
.post-body .post-img-left { float: left; width: 350px; max-width: 100%; margin-right: 40px; }
.post-body .post-img-right { float: right; width: 350px; max-width: 100%; margin-left: 40px; }
.post-body .post-img-full img { width: 100%; }
.post-body figure img { width: 100%; height: auto; }
.recent-posts { margin-top: 44px; }
.recent-head { display: flex; justify-content: space-between; align-items: baseline; }
.recent-head h2 { font-size: 1.3rem; text-transform: none; letter-spacing: 0; }
.recent-head a { font-size: .85rem; }
.recent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 12px; }
.recent-card { border: 1px solid rgba(232,230,230,.75); color: var(--ink); display: block; background: #fff; }
.recent-card:hover { text-decoration: none; color: var(--red); }
.recent-card img { width: 100%; aspect-ratio: 292/164; object-fit: cover; }
.recent-card span { display: block; padding: 16px 18px 22px; font-family: var(--head); font-size: 1.05rem; line-height: 1.35; }

@media (max-width: 960px) {
  .h-card { grid-template-columns: 1fr; }
  .h-card img { width: 100%; height: 240px; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-img img { min-height: 220px; max-height: 300px; }
  .post-article { padding: 32px 22px; }
  .post-title { font-size: 1.9rem; }
  .post-body .post-img-left, .post-body .post-img-right { float: none; width: 100%; margin: 0 0 18px; }
  .recent-grid { grid-template-columns: 1fr; }
}
