/* ============================================================
   Loft 26 — Homepage styles
   Page-level layout on top of the design-system tokens (ds/styles.css).
   ============================================================ */

:root{
  --h-scale: 1;
  --sec-pad: var(--space-10);
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
}
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
html,body{ background:var(--l26-white); }
body{ margin:0; color:var(--l26-ink); font-family:var(--font-body); overflow-x:hidden; }
*{ box-sizing:border-box; }
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gut); }

section{ padding-block: var(--sec-pad); }

/* ---------- Headings ---------- */
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--l26-navy); letter-spacing:var(--ls-tight);
  line-height:var(--lh-tight); margin:0; font-weight:700; text-wrap:balance; }
h1{ font-size: calc(clamp(2.6rem, 1.6rem + 3.4vw, 4.4rem) * var(--h-scale)); line-height:1.02; }
h2{ font-size: calc(clamp(2rem, 1.4rem + 2vw, 3rem) * var(--h-scale)); line-height:1.06; }
h3{ font-size: calc(1.35rem * var(--h-scale)); line-height:1.15; }
p{ margin:0; text-wrap:pretty; }

.eyebrow{ font-family:var(--font-display); font-weight:700; font-size:clamp(1.35rem, 1rem + 1.5vw, 2.125rem);
  letter-spacing:var(--ls-overline); text-transform:uppercase; color:var(--l26-terracotta);
  display:inline-flex; align-items:center; gap:14px; white-space:nowrap; }
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--l26-terracotta); display:inline-block; }
.eyebrow.center{ justify-content:center; }
.lede{ font-size:clamp(1.05rem, 0.98rem + 0.5vw, 1.25rem); line-height:1.6; color:#36474c; }
.script{ font-family:var(--font-script); font-style:italic; color:var(--l26-terracotta); font-weight:400; }

/* ---------- Buttons ---------- */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px; cursor:pointer;
  font-family:var(--font-body); font-weight:700; font-size:1rem; letter-spacing:var(--ls-button);
  height:var(--control-h-lg); padding-inline:30px; border-radius:var(--radius-pill); border:1.5px solid transparent;
  transition:var(--transition-base); white-space:nowrap; }
.btn-primary{ background:var(--l26-terracotta); color:#fff; box-shadow:var(--shadow-ember); }
.btn-primary:hover{ background:var(--brand-primary-hover); color:#fff; transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--l26-navy); border-color:var(--l26-mist); }
.btn-ghost:hover{ border-color:var(--l26-navy); background:var(--l26-cloud); }
.btn-light{ background:#fff; color:var(--l26-navy); }
.btn-light:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-sm{ height:var(--control-h-sm); padding-inline:20px; font-size:.9rem; }

/* ---------- Header ---------- */
header.site{ position:sticky; top:0; z-index:50; background:rgba(255,255,255,.86);
  backdrop-filter:var(--backdrop-blur); -webkit-backdrop-filter:var(--backdrop-blur);
  border-bottom:1px solid var(--l26-fog); }
.nav{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; height:84px;
  padding-inline:clamp(20px, 3.5vw, 56px); }
.nav__logo-link{ justify-self:start; display:inline-flex; align-items:center; }
.nav__logo{ height:34px; width:auto; }
.nav__links{ justify-self:center; display:flex; gap:34px; }
.nav__links a{ font-size:.95rem; font-weight:600; color:var(--l26-ink); position:relative; padding-block:6px; }
.nav__links a:hover{ color:var(--l26-terracotta); }
.nav > .btn{ grid-column:3; justify-self:end; }
@media (max-width:880px){ .nav__links{ display:none; } }

/* ---------- HERO ---------- */
.hero{ position:relative; padding-block:0; min-height:clamp(460px,70vh,620px); display:flex; align-items:center;
  background-image:linear-gradient(96deg, rgba(18,42,50,.72) 0%, rgba(18,42,50,.45) 40%, rgba(26,56,66,.16) 68%, rgba(26,56,66,0) 100%), url("../assets/images/hero-tampa-v3.png");
  background-size:cover; background-position:center; }
.hero > .wrap{ width:100%; max-width:none; padding-inline:clamp(28px,6vw,96px); }
.hero__inner{ padding-block:clamp(48px,7vw,100px) clamp(32px,4vw,60px); }
.hero__title{ margin-bottom:16px; white-space:nowrap; line-height:1.04; color:#fff;
  font-size:calc(clamp(2.2rem, 0.4rem + 4.2vw, 4rem) * var(--h-scale)); }
.hero__title .script{ color:var(--l26-terracotta); }
.hero__subhead{ font-family:var(--font-body); font-style:italic; font-weight:500; color:#fff;
  font-size:clamp(1.5rem, 1rem + 1.9vw, 2rem); line-height:1.15; margin-bottom:36px; }
.hero__offer{ display:flex; gap:10px; max-width:520px; }
.hero__offer input{ flex:1; min-width:0; height:var(--control-h-lg); border:1.5px solid var(--l26-mist);
  border-radius:var(--radius-pill); padding-inline:22px; font-family:var(--font-body); font-size:1rem;
  background:#fff; color:var(--l26-ink); transition:var(--transition-base); }
.hero__offer input:focus{ outline:none; border-color:var(--l26-terracotta); box-shadow:0 0 0 3px var(--focus-ring); }
.hero__offer .btn{ flex:none; }
.hero__support{ font-size:1.05rem; color:rgba(255,255,255,.88); margin-top:20px; max-width:none; white-space:nowrap; }
@media (max-width:680px){ .hero__support{ white-space:normal; } }
@media (max-width:680px){ .hero__title{ white-space:normal; } }
@media (max-width:480px){ .hero__offer{ flex-direction:column; } .hero__offer .btn{ width:100%; } }

/* ---------- Section heading block ---------- */
.shead{ max-width:64ch; margin-bottom:clamp(36px,4vw,56px); }
.shead.center{ margin-inline:auto; text-align:center; }
.shead .eyebrow{ margin-bottom:18px; }
.shead h2{ margin-bottom:16px; }

/* ---------- Our Promise ---------- */
.promise{ background:var(--l26-white); padding-top:clamp(28px,4vw,56px); }
.promise__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(20px,2.4vw,34px); }
.promise__item{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; }
.promise__ic{ display:flex; align-items:center; justify-content:center; height:60px; }
.promise__ic img{ width:54px; height:54px; }
.promise__item b{ font-family:var(--font-display); font-weight:700; color:var(--l26-navy); font-size:1.15rem;
  line-height:1.2; }
.promise__item p{ font-size:.96rem; color:#5a6b6f; line-height:1.5; max-width:24ch; }
.promise__statement{ margin-top:clamp(36px,5vw,60px); text-align:center; font-family:var(--font-display);
  font-weight:800; color:var(--l26-navy); font-size:clamp(1.5rem, 1rem + 1.7vw, 2rem); letter-spacing:var(--ls-tight);
  font-style:italic; }
.promise__statement em{ font-style:italic; color:var(--l26-terracotta); }
.promise .shead h2{ font-family:var(--font-body); font-weight:400; font-style:italic;
  font-size:clamp(1.5rem, 1rem + 1.6vw, 2rem); white-space:nowrap; }
@media (max-width:820px){ .promise__grid{ grid-template-columns:repeat(2,1fr); row-gap:38px; } }
@media (max-width:680px){ .promise .shead h2{ white-space:normal; } }
@media (max-width:440px){ .promise__grid{ grid-template-columns:1fr; } }

/* ---------- When to Call ---------- */
.when{ background:var(--l26-cloud); }
.when__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.wcard{ background:#fff; border:1px solid var(--border-subtle); border-radius:var(--radius-lg);
  padding:30px 22px; display:flex; flex-direction:column; align-items:center; gap:16px; text-align:center;
  transition:var(--transition-base); }
.wcard:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--l26-mist); }
.wcard__ic{ display:flex; align-items:center; justify-content:center; height:52px; }
.wcard__ic img{ width:46px; height:46px; }
.wcard b{ font-family:var(--font-display); font-weight:700; color:var(--l26-navy); font-size:1.05rem; line-height:1.15; }
@media (max-width:900px){ .when__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .when__grid{ grid-template-columns:1fr 1fr; gap:12px; } .wcard{ padding:22px 14px; } }

/* ---------- Why Choose — comparison ---------- */
.why{ background:var(--l26-white); padding-block:clamp(44px,6vw,84px) clamp(16px,2.5vw,28px); }
.why .shead .lede{ white-space:nowrap; }
@media (max-width:760px){ .why .shead .lede{ white-space:normal; } }
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(18px,2.5vw,28px); max-width:980px; margin-inline:auto; }
.col{ border-radius:var(--radius-lg); padding:clamp(26px,3vw,40px); }
.col--us{ background:var(--l26-navy); color:#fff; box-shadow:var(--shadow-lg); position:relative; }
.col--them{ background:var(--l26-cloud); color:var(--l26-ink); border:1px solid var(--border-default); }
.col__head{ display:flex; align-items:center; gap:12px; margin-bottom:24px; padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.16); }
.col--them .col__head{ border-bottom-color:var(--border-default); }
.col__head .col__logo{ height:30px; width:auto; }
.col__head h3{ color:inherit; font-size:1.3rem; }
.col--us .col__head h3{ white-space:nowrap; }
.col--them .col__head h3{ color:var(--l26-slate); }
.clist{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:16px; }
.clist li{ display:flex; gap:13px; align-items:flex-start; font-size:1.02rem; line-height:1.4; }
.clist li svg{ width:22px; height:22px; flex:none; margin-top:1px; }
.col--us .clist li svg{ color:var(--l26-orange); }
.col--them .clist li{ color:#6a7b7f; }
.col--them .clist li svg{ color:#b6c2c5; }
.why__note{ max-width:680px; margin:clamp(32px,4vw,48px) auto 0; text-align:center; font-size:1.05rem;
  color:#46585d; line-height:1.6; }
.why__note .script{ font-size:1.3em; }
@media (max-width:720px){ .compare{ grid-template-columns:1fr; } }

/* ---------- How It Works ---------- */
.how{ background:var(--l26-white); position:relative; padding-top:clamp(20px,3vw,36px); }
.how .eyebrow{ color:var(--l26-terracotta); }
.how .eyebrow::before{ background:var(--l26-terracotta); }
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(24px,3vw,40px); margin-top:clamp(36px,4vw,56px); }
.step{ position:relative; padding-top:14px; }
.step__n{ width:56px; height:56px; border-radius:50%; background:var(--l26-terracotta);
  border:none; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:800; font-size:1.4rem; color:#fff; margin-bottom:20px; }
.step h3{ color:var(--l26-navy); font-size:1.3rem; margin-bottom:10px; }
.step p{ color:#4d5e63; line-height:1.6; font-size:1rem; }
.step::after{ content:""; position:absolute; top:42px; left:68px; right:-20px; height:1px;
  background:linear-gradient(90deg, var(--l26-mist), transparent); }
.step:last-child::after{ display:none; }
@media (max-width:760px){ .steps{ grid-template-columns:1fr; gap:28px; } .step::after{ display:none; } }

/* ---------- Closing CTA ---------- */
.closing{ position:relative; overflow:hidden; color:#fff; background:#2e5c64; padding-block:0; }
.closing__grid{ display:grid; grid-template-columns:1fr 1fr; align-items:stretch; min-height:clamp(300px,30vw,420px); }
.closing__panel{ position:relative; display:flex; align-items:center; padding:clamp(36px,5vw,80px); overflow:hidden; }
.closing__peaks{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; z-index:0; }
.closing__copy{ position:relative; z-index:1; max-width:none; }
.closing__head{ color:#fff; line-height:1.05; margin-bottom:14px; }
.closing__subhead{ font-family:var(--font-body); font-style:italic; font-weight:500; color:rgba(255,255,255,.92); margin-bottom:30px; }
@media (max-width:520px){ .closing__subhead{ white-space:normal; } }
.closing__btn{ display:inline-flex; align-items:center; justify-content:center; height:58px; padding-inline:34px;
  border-radius:var(--radius-pill); background:var(--l26-terracotta); color:#fff; font-weight:700; letter-spacing:var(--ls-button);
  font-family:var(--font-body); font-size:1rem; transition:var(--transition-base); }
.closing__btn:hover{ background:var(--brand-primary-hover); color:#fff; transform:translateY(-2px); }
/* Right panel: orange aerial-neighborhood ground + floating owner card */
.closing__media{ position:relative; align-self:stretch; display:flex; align-items:center;
  padding:clamp(28px,3.5vw,56px);
  background-color:var(--l26-terracotta);
  background-image:
    linear-gradient(145deg, #f0883b 0%, #e2562f 48%, #b83c20 100%),
    url("../assets/images/aerial-neighborhood.jpg");
  background-size:cover, cover;
  background-position:center, center;
  background-repeat:no-repeat, no-repeat;
  background-blend-mode:multiply, normal; }

.ownercard{ position:relative; z-index:1; margin:0; width:100%;
  display:flex; align-items:center; gap:clamp(20px,2.4vw,32px);
  background:var(--l26-navy); border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  padding:clamp(24px,2.6vw,38px); }
.ownercard__avatar{ flex:none; width:clamp(120px,12vw,168px); aspect-ratio:1; border-radius:50%;
  overflow:hidden; background:var(--l26-terracotta); display:flex; align-items:flex-end; justify-content:center; }
.ownercard__avatar img{ width:100%; height:100%; object-fit:cover; }
.ownercard__body{ min-width:0; }
.ownercard__quote{ margin:0 0 18px; font-family:var(--font-body); font-weight:400; color:var(--l26-sand);
  font-size:clamp(1rem, 0.92rem + 0.3vw, 1.1rem); line-height:1.55; letter-spacing:0; }
.ownercard__name{ font-family:var(--font-display); font-weight:700; color:#fff; font-size:1.3rem; line-height:1.1; }
.ownercard__role{ margin-top:6px; font-family:var(--font-body); color:var(--l26-mist); font-size:.92rem; }
@media (max-width:980px){ .ownercard{ flex-direction:column; text-align:center; align-items:center; } }
@media (max-width:760px){ .closing__grid{ grid-template-columns:1fr; } .closing__media{ min-height:auto; } }

/* ---------- Footer ---------- */
footer.site{ background:var(--l26-shadow-navy); color:rgba(255,255,255,.7); padding-block:64px 30px; }
.foot__inner{ width:100%; max-width:1600px; margin-inline:auto; padding-inline:clamp(24px, 4vw, 72px); }
.foot__top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; }
.foot__logo{ height:38px; margin-bottom:20px; }
.foot__about{ font-size:.95rem; line-height:1.6; max-width:34ch; }
.foot__col h4{ color:#fff; font-family:var(--font-body); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase;
  margin:0 0 16px; font-weight:700; }
.foot__col a{ display:block; font-size:.95rem; padding-block:6px; color:rgba(255,255,255,.7); }
.foot__col a:hover{ color:var(--l26-orange); }
.foot__social{ display:flex; gap:12px; margin-top:20px; }
.foot__social a{ width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center; color:#fff; transition:var(--transition-base); }
.foot__social a:hover{ background:var(--l26-terracotta); border-color:var(--l26-terracotta); }
.foot__social svg{ width:18px; height:18px; }
.foot__bottom{ display:flex; flex-wrap:wrap; gap:12px 24px; justify-content:space-between; align-items:center;
  margin-top:48px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); font-size:.85rem; }
@media (max-width:860px){ .foot__top{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .foot__top{ grid-template-columns:1fr; } }

/* ---------- Request-an-Offer modal ---------- */
.modal{ position:fixed; inset:0; z-index:100; display:flex; align-items:flex-start; justify-content:center;
  padding:clamp(16px,4vh,56px) 16px; overflow-y:auto; }
.modal[hidden]{ display:none; }
.modal__backdrop{ position:fixed; inset:0; background:rgba(7,24,28,.55); backdrop-filter:var(--backdrop-blur);
  -webkit-backdrop-filter:var(--backdrop-blur); }
.modal__dialog{ position:relative; z-index:1; width:100%; max-width:560px; background:#fff;
  border-radius:var(--radius-xl); box-shadow:var(--shadow-xl); padding:clamp(26px,3.5vw,44px);
  margin:auto; animation:modalIn .22s var(--ease-standard, ease) both; }
@media (prefers-reduced-motion: reduce){ .modal__dialog{ animation:none; } }
@keyframes modalIn{ from{ opacity:0; transform:translateY(14px) scale(.985); } to{ opacity:1; transform:none; } }

.modal__close{ position:absolute; top:14px; right:14px; width:40px; height:40px; border:none; cursor:pointer;
  border-radius:50%; background:var(--l26-cloud); color:var(--l26-slate); display:flex; align-items:center;
  justify-content:center; transition:var(--transition-base); }
.modal__close:hover{ background:var(--l26-fog); color:var(--l26-navy); }
.modal__close svg{ width:20px; height:20px; }

.modal__head{ margin-bottom:24px; }
.modal__head .eyebrow{ font-size:1rem; margin-bottom:12px; }
.modal__head h2{ font-size:clamp(1.5rem, 1.2rem + 1vw, 1.9rem); margin-bottom:8px; }
.modal__sub{ color:var(--l26-slate); font-size:.98rem; line-height:1.5; }

/* form layout */
.oform{ display:flex; flex-direction:column; gap:16px; }
.oform__row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.oform__field{ display:flex; flex-direction:column; gap:7px; min-width:0; }
.oform__field label{ font-size:.82rem; font-weight:700; letter-spacing:.02em; color:var(--l26-navy); }
.oform__opt{ font-weight:500; color:var(--l26-slate); }
.oform__req{ color:var(--l26-terracotta); font-weight:700; margin-left:3px; }
.oform input, .oform select, .oform textarea{ width:100%; font-family:var(--font-body); font-size:1rem;
  color:var(--l26-ink); background:#fff; border:1.5px solid var(--l26-mist); border-radius:var(--radius-md);
  padding:0 16px; height:var(--control-h-md); transition:var(--transition-base); }
.oform textarea{ height:auto; padding:12px 16px; line-height:1.5; resize:vertical; min-height:84px; }
.oform select{ appearance:none; -webkit-appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d7379' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; background-size:18px; padding-right:42px; }
.oform input:focus, .oform select:focus, .oform textarea:focus{ outline:none; border-color:var(--l26-terracotta);
  box-shadow:0 0 0 3px var(--focus-ring); }
.oform input:user-invalid, .oform select:user-invalid{ border-color:var(--l26-terracotta); }

.oform__consent{ display:flex; gap:11px; align-items:flex-start; font-size:.78rem; line-height:1.45;
  color:var(--l26-slate); margin-top:2px; }
.oform__consent input{ flex:none; width:17px; height:17px; margin-top:2px; accent-color:var(--l26-terracotta); cursor:pointer; }

.oform__error{ font-size:.9rem; color:var(--l26-terracotta); font-weight:600; margin:0; }
.oform__submit{ width:100%; margin-top:6px; }
.oform__submit:disabled{ opacity:.6; cursor:default; transform:none; }

/* thank-you view */
.modal__thanks{ text-align:center; padding:clamp(8px,2vw,20px) 0; display:flex; flex-direction:column;
  align-items:center; gap:14px; }
.modal__check{ width:68px; height:68px; border-radius:50%; background:var(--l26-terracotta); color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-ember); margin-bottom:4px; }
.modal__check svg{ width:34px; height:34px; }
.modal__thanks-title{ display:flex; flex-direction:column; align-items:center; gap:2px; margin:0; }
.modal__thanks-lead{ font-family:var(--font-display); font-weight:700; color:var(--l26-navy);
  font-size:clamp(1.6rem, 1.2rem + 1.2vw, 2rem); line-height:1.1; letter-spacing:var(--ls-tight); }
.modal__thanks-script{ font-family:var(--font-script); font-style:italic; font-weight:400;
  color:var(--l26-navy); font-size:clamp(1.05rem, 0.85rem + 0.7vw, 1.35rem); line-height:1.15; }
.modal__thanks p{ color:var(--l26-slate); line-height:1.6; max-width:42ch; }
.modal__thanks .btn{ margin-top:10px; }

@media (max-width:440px){ .oform__row{ grid-template-columns:1fr; } }

/* ---------- Blog list ---------- */
.blogwrap{ padding-block:clamp(48px,6vw,88px); min-height:60vh; }
/* Up to 2 columns, each a comfortable max width, and the whole grid centered —
   so 1 post sits centered (not lonely-left) and 2 fill a balanced centered row. */
.bloglist{ list-style:none; margin:0 auto; padding:0; max-width:1120px;
  display:grid; gap:clamp(22px,2.6vw,34px); justify-content:center;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 440px), 540px)); }
.bloglist__link{ display:flex; flex-direction:column; height:100%;
  background:#fff; border:1px solid var(--border-subtle); border-radius:var(--radius-lg);
  overflow:hidden; transition:var(--transition-base); }
.bloglist__link:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--l26-mist); }
.bloglist__media{ aspect-ratio:16/9; background:var(--l26-navy); overflow:hidden; }
.bloglist__media img{ width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .4s var(--ease-standard, ease); }
.bloglist__link:hover .bloglist__media img{ transform:scale(1.03); }
.bloglist__body{ display:flex; flex-direction:column; gap:8px; flex:1; padding:clamp(22px,2.4vw,28px); }
.bloglist__date{ font-size:.82rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--l26-terracotta); }
.bloglist__title{ color:var(--l26-navy); font-size:1.35rem; line-height:1.2; }
.bloglist__excerpt{ color:var(--l26-slate); line-height:1.55; font-size:.98rem; }
.bloglist__more{ margin-top:auto; padding-top:6px; font-weight:700; color:var(--l26-terracotta); font-size:.95rem; }

/* ---------- Blog article ---------- */
.post{ max-width:760px; padding-block:clamp(40px,5vw,72px); }
.post__back{ display:inline-block; margin-bottom:24px; font-weight:600; color:var(--l26-slate); }
.post__back:hover{ color:var(--l26-terracotta); }
.post__date{ font-size:.85rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--l26-terracotta); margin-bottom:10px; }
.post__title{ font-size:clamp(2rem, 1.4rem + 2vw, 3rem); line-height:1.08; margin-bottom:28px; }
.post__video{ position:relative; aspect-ratio:16/9; margin:0 0 32px; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.post__video iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.post__hero{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; margin:0 0 32px;
  border-radius:var(--radius-lg); box-shadow:var(--shadow-md); background:var(--l26-navy); }
.post__body{ color:var(--l26-ink); font-size:1.08rem; line-height:1.7; }
.post__body h2{ font-size:clamp(1.5rem,1.2rem+1vw,1.9rem); margin:36px 0 14px; }
.post__body h3{ font-size:1.3rem; margin:28px 0 12px; }
.post__body p{ margin:0 0 18px; }
.post__body ul, .post__body ol{ margin:0 0 18px; padding-left:24px; display:flex; flex-direction:column; gap:8px; }
.post__body a{ color:var(--l26-terracotta); text-decoration:underline; text-underline-offset:2px; }
.post__body a:hover{ color:var(--brand-primary-hover); }
.post__body blockquote{ margin:24px 0; padding:4px 0 4px 22px; border-left:3px solid var(--l26-terracotta);
  color:var(--l26-slate); font-style:italic; }
