/* Opulux Floors — single stylesheet, mobile-first, no frameworks.
   Values taken from the live site's CSS (otf-master inline block +
   Elementor post-1247/130/274/96.css): ink #221D16 · body #6E6456 ·
   beige #F1ECE2 · stat gold #7C6039 · icon gold #9A7A4C · pill border
   #E4DCCF · header #111111 · footer #000 · footer gray #7A7A7A. */

:root {
  --ink: #221D16;
  --body: #6E6456;
  --beige: #F1ECE2;
  --gold: #7C6039;
  --icon-gold: #9A7A4C; --text-gold: #7A5E36; /* 5.4:1 on cream — passes AA for small text */
  --pill-border: #E4DCCF;
  --cream: #FCFAF6;
  --header-bg: #111111;
  --footer-gray: #7A7A7A;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --nav-font: 'Poppins', sans-serif;
  --foot-font: 'Roboto', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: #FFFFFF;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); }
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; }
h1 { font: 500 clamp(32px, 4.4vw, 54px)/1.05 var(--serif); letter-spacing: -.5px; }
h2 { font: 500 clamp(26px, 3vw, 38px)/1.08 var(--serif); letter-spacing: -.4px; text-wrap: balance; }
h3 { font: 500 20px/1.25 var(--serif); }
p { margin: 0 0 1em; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 767px) { .wrap { padding: 0 20px; } }
.section { padding-top: 96px; }
@media (max-width: 767px) { .section { padding-top: 60px; } }
.center { text-align: center; }

/* Eyebrow: bordered pill badge (live pattern) */
.eyebrow {
  display: inline-flex; align-items: center; padding: 6px 14px;
  border: 1px solid var(--pill-border); border-radius: 100px;
  font: 600 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--body); margin-bottom: 14px;
}
.lede { font: 400 17px/1.6 var(--sans); color: var(--body); max-width: 640px; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons (live styles) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 2px; border: none; cursor: pointer;
  font: 600 14.5px/1 var(--sans); text-decoration: none;
  transition: opacity .15s ease;
}
.btn:hover { opacity: .85; }
.btn-dark { background: var(--ink); color: #FAF7F2; }
.btn-outline { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-hero { background: var(--cream); color: var(--ink); border-radius: 100px; padding: 14px 26px; }
.link-arrow {
  display: inline-flex; align-items: center;
  font: 600 14.5px/1 var(--sans); color: var(--ink); text-decoration: none;
}
.link-arrow svg { vertical-align: -3px; margin-left: 6px; }
.link-arrow:hover { color: var(--gold); }

/* ---------- Header: dark rounded pill (live post-130.css) ---------- */
.site-header { position: sticky; top: 0; z-index: 95; padding: 8px 8%; }
.nav-pill {
  max-width: 940px; margin: 0 auto; min-height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--header-bg); border-radius: 35px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  padding: 0 8px 0 14px; position: relative;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 35px; width: auto; }
.nav-links { display: none; }
.nav-links a {
  font: 400 13px/1 var(--nav-font); color: #FFFFFF; text-decoration: none;
  text-transform: capitalize; padding: 15px; display: inline-block;
}
.nav-links a:hover, .nav-links a.is-active { color: #E6F8FF; text-decoration: underline; text-underline-offset: 5px; }
.nav-cta {
  display: none; background: #FFFFFF; color: #54595F; border-radius: 50px;
  font: 500 15px/1 var(--foot-font); padding: 12px 24px; text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .9; }
.nav-toggle {
  background: none; border: none; cursor: pointer; padding: 12px;
  display: flex; flex-direction: column; gap: 5px; min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.nav-toggle span:not(.visually-hidden) {
  display: block; width: 22px; height: 2px; background: #fff;
}
.mobile-nav {
  display: none; position: absolute; top: calc(100% + 15px); left: 0; right: 0;
  background: #F3F5F8; box-shadow: 0 10px 30px rgba(0,0,0,.2); z-index: 96;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; font: 400 14px/1.2 var(--nav-font); color: #1C244B;
  text-decoration: none; padding: 14px 20px; border-bottom: 1px solid #e3e6ec;
}
.mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 767px) {
  .site-header { padding: 0; }
  .nav-pill { border-radius: 0; min-height: 70px; padding: 0 4px; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-logo img { height: 38px; }
  .nav-toggle { margin-left: auto; }
  .mobile-nav { top: 100%; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .site-header { padding: 8px 5%; }
  .nav-pill { min-height: 66px; }
  .nav-logo img { height: 27px; }
  /* Live tablet order: logo — hamburger (center) — Find a Dealer (right) */
  .nav-cta { display: inline-flex; order: 10; }
}
@media (min-width: 1025px) {
  .nav-toggle, .mobile-nav { display: none !important; }
  .nav-links { display: flex; align-items: center; }
  .nav-cta { display: inline-flex; }
}

/* ---------- Homepage hero (live otf-master) ---------- */
.home-hero-section { padding-top: 24px; }
.home-hero {
  position: relative; min-height: 648px; border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
@media (max-width: 1024px) { .home-hero { min-height: 70vh; } }
@media (max-width: 767px) { .home-hero { min-height: 66vh; } }
.home-hero-img { position: absolute; inset: 0; z-index: 0; }
.home-hero-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 46%;
  animation: otfKen 20s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes otfKen { from { transform: scale(1.09); } to { transform: scale(1); } }
.home-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,16,11,.24) 0%, rgba(20,16,11,0) 24%, rgba(20,16,11,0) 42%, rgba(16,12,9,.68) 100%);
}
.home-hero-content {
  position: relative; z-index: 2; max-width: 660px; padding: 44px 46px;
  text-shadow: 0 1px 24px rgba(10,7,4,.35);
}
@media (max-width: 767px) { .home-hero-content { padding: 24px 20px; max-width: 100%; } }
.home-hero-content .hero-eyebrow {
  display: block; font: 700 12px/1.4 var(--sans); letter-spacing: 2.4px;
  text-transform: uppercase; color: #F5ECDD; margin: 0 0 16px;
}
.home-hero-content h1 {
  font: 500 54px/1.05 var(--serif); letter-spacing: -.5px; color: #FCFAF6;
  margin: 0 0 18px;
}
@media (max-width: 1024px) { .home-hero-content h1 { font-size: 40px; } }
@media (max-width: 767px) { .home-hero-content h1 { font-size: 32px; } }
.home-hero-content p {
  font: 400 16.5px/1.55 var(--sans); color: #F1E9DC; margin: 0 0 24px;
}
.fade-up { opacity: 0; transform: translateY(18px); animation: otfFadeUp .8s ease forwards; }
.fade-up.d1 { animation-delay: .15s; } .fade-up.d2 { animation-delay: .3s; }
.fade-up.d3 { animation-delay: .45s; } .fade-up.d4 { animation-delay: .6s; }
@keyframes otfFadeUp { to { opacity: 1; transform: none; } }

/* ---------- Homepage styles row ---------- */
.styles-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-top: 20px;
}
.styles-head h2 { font-size: 40px; margin: 0; }
@media (max-width: 767px) { .styles-head h2 { font-size: 28px; } }
.home-cards {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 38px;
}
@media (max-width: 1024px) { .home-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .home-cards { grid-template-columns: repeat(2, 1fr); } }

/* Cards (shared: homepage row + shop grid) */
.product-card { text-decoration: none; display: block; }
.card-media {
  position: relative; display: block; overflow: hidden; border-radius: 3px;
  background: #ece5d9;
}
.card-media img {
  aspect-ratio: 4 / 5; width: 100%; height: auto; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .card-media img { transform: scale(1.06); }
.card-media--square img { aspect-ratio: 1 / 1; }
.card-placeholder {
  display: block; width: 100%; aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #ece5d9 0%, #ddd2c0 100%);
}
.card-media--square .card-placeholder { aspect-ratio: 1 / 1; }
.card-name {
  display: block; margin-top: 12px;
  font: 500 19px/1.2 var(--serif); color: var(--ink);
}
.card-sub {
  display: block; margin-top: 20px;
  font: 400 12.5px/1.4 var(--sans); color: var(--body); letter-spacing: .02em;
}
.badge-new {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--ink); color: #FCFAF6; border-radius: 100px;
  font: 700 10.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 12px;
}

/* ---------- Split sections (about / plank / pet) ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 768px) {
  .split-52 { grid-template-columns: 52fr 48fr; gap: 56px; }
  .split-46 { grid-template-columns: 46fr 54fr; gap: 56px; }
  .split-pet { grid-template-columns: 52fr 48fr; gap: 56px; }
}
.split h2 { margin: 18px 0; }
.split p { font: 400 17px/1.6 var(--sans); color: var(--body); margin: 0; }
.split-img img { width: 100%; height: auto; object-fit: cover; border-radius: 3px; aspect-ratio: 4/5; }
.pet-img img { width: 100%; height: auto; object-fit: cover; border-radius: 3px; aspect-ratio: 3/2; }
@media (max-width: 767px) {
  .split-img img { aspect-ratio: 5/4; }
  .pet-img img { aspect-ratio: 4/3; }
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.stats b { display: block; font: 500 30px/1 var(--serif); font-weight: 500; color: var(--gold); }
.stats span { font-size: 13px; color: var(--body); }
.swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.swatches img {
  aspect-ratio: 9/16; width: 100%; height: auto; object-fit: cover;
  border-radius: 3px; box-shadow: 0 12px 30px -18px rgba(40,30,18,.5); display: block;
}

/* Beige full-bleed band */
.band { background: var(--beige); margin-top: 104px; padding: 88px 0; }
@media (max-width: 767px) { .band { margin-top: 64px; padding: 56px 0; } }

/* ---------- Feature grid (Why Opulux) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; }
@media (max-width: 767px) { .feature-grid { grid-template-columns: 1fr; gap: 32px; } }
.feature .otf-feat-ico { margin-bottom: 13px; }
.feature .otf-feat-ico svg { display: block; margin-bottom: 2px; }
.feature h3 { margin: 0 0 10px; font: 500 20px/1.25 var(--serif); color: var(--ink); }
.feature p { margin: 0; font: 400 14.5px/1.6 var(--sans); color: var(--body); }

/* ---------- CTA (live: light, centered) ---------- */
.cta-panel {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 24px; padding: 108px 0;
}
@media (max-width: 767px) { .cta-panel { padding: 70px 0; } }
.cta-panel h2 { margin: 0; font-size: 46px; max-width: 640px; }
@media (max-width: 1024px) { .cta-panel h2 { font-size: 34px; } }
@media (max-width: 767px) { .cta-panel h2 { font-size: 28px; } }
.cta-panel p { margin: 0; font: 400 17px/1.6 var(--sans); color: var(--body); max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

/* ---------- Interior page hero ---------- */
.page-hero { padding: 56px 0 8px; }
@media (max-width: 767px) { .page-hero { padding: 36px 0 4px; } }
.breadcrumbs { font-size: 13.5px; margin-bottom: 18px; color: var(--body); }
.breadcrumbs a { color: var(--gold); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- Shop grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 20px; }
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; } }

.featured-band {
  background: var(--beige); border-radius: 6px; padding: 44px 40px; margin-bottom: 56px;
}
@media (max-width: 767px) { .featured-band { padding: 28px 20px; margin-bottom: 40px; } }
.featured-band h2 { margin: 14px 0 10px; }
.featured-band > p { max-width: 560px; margin: 0 0 8px; }

/* ---------- Product detail ---------- */
.pdp { display: grid; gap: 36px; padding: 40px 0 0; }
@media (min-width: 900px) { .pdp { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }
.pdp-media { border-radius: 3px; }
.pdp-main picture, .pdp-main img { width: 100%; border-radius: 3px; }
.pdp-main picture[hidden] { display: none; }
.pdp-media-placeholder { aspect-ratio: 1/1; border-radius: 3px; background: linear-gradient(135deg, #ece5d9, #ddd2c0); }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumbs button {
  padding: 0; border: 2px solid transparent; border-radius: 3px; cursor: pointer;
  background: none; width: 88px; height: 88px; overflow: hidden; flex: 0 0 auto;
}
.pdp-thumbs button img, .pdp-thumbs button picture { width: 100%; height: 100%; }
.pdp-thumbs button img { object-fit: cover; height: 100%; }
.pdp-thumbs button.is-active { border-color: var(--ink); }
.pdp-collection {
  display: inline-block; font: 600 12px/1 var(--sans); letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-gold); margin-bottom: 6px;
}
.pdp h1 { margin: 6px 0 14px; font-size: clamp(32px, 3.4vw, 45px); }
.pdp-desc { margin-bottom: 20px; font-size: 16px; }
.pdp-actions { display: grid; gap: 12px; margin: 22px 0; }
.pdp-actions .sheet-link {
  display: block; text-align: center; font: 700 13.5px/1.3 var(--sans);
  letter-spacing: .06em; color: var(--gold); text-decoration: underline; padding: 8px 0;
}
.roomvo-slot { margin-top: 4px; }

/* Accordions */
.accordions { margin-top: 26px; border-top: 1px solid var(--pill-border); }
.accordions details { border-bottom: 1px solid var(--pill-border); }
.accordions summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; padding: 15px 4px; min-height: 44px;
  font: 700 12.5px/1.3 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
}
.accordions summary::-webkit-details-marker { display: none; }
.accordions summary::after { content: "+"; font-size: 20px; font-weight: 400; color: var(--icon-gold); }
.accordions details[open] summary::after { content: "\2013"; }
.accordion-body { padding: 0 4px 20px; font-size: 15px; }
.accordion-body a { color: var(--gold); font-weight: 700; }
.accordion-body ul { padding-left: 20px; }

/* Badge row + certifications (live product page, post-96.css) */
.pdp-badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 14px;
  margin-top: 30px;
}
@media (max-width: 480px) { .pdp-badges { grid-template-columns: repeat(2, 1fr); } }
.pdp-badges div { text-align: center; }
.pdp-badges img { width: 40px; height: 40px; margin: 0 auto 8px; object-fit: contain; }
.pdp-badges span {
  display: block; font: 600 12px/1.35 var(--foot-font); text-transform: uppercase;
  color: #000;
}
.pdp-certs {
  display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center;
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--pill-border);
}
.pdp-certs img { height: 48px; width: auto; }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 22px; }
@media (min-width: 720px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
.post-card {
  background: #fff; border: 1px solid var(--pill-border); border-radius: 6px;
  padding: 28px; text-decoration: none; display: block;
}
.post-card h2 { font-size: 26px; }
.post-card p { margin: 0; font-size: 15.5px; }
.post-card .read-more { display: inline-block; margin-top: 14px; font: 600 14.5px/1 var(--sans); color: var(--gold); }
.post-meta { font-size: 13px; color: var(--text-gold); margin-bottom: 8px; }

.article { max-width: 760px; margin: 0 auto; padding: 24px 0 0; }
.article h1 { font-size: clamp(30px, 3.6vw, 44px); }
.article h2 { font-size: 28px; margin-top: 1.6em; }
.article h3 { font: 600 19px/1.35 var(--sans); margin-top: 1.4em; }
.article img { border-radius: 6px; }
.article ul, .article ol { margin: 0 0 1em; padding-left: 24px; }
.article table { border-collapse: collapse; width: 100%; margin: 0 0 1.2em; font-size: 15px; display: block; overflow-x: auto; }
.article th, .article td { border: 1px solid var(--pill-border); padding: 9px 12px; text-align: left; }
.article th { color: var(--ink); }

.related { border-top: 1px solid var(--pill-border); margin-top: 64px; padding: 44px 0 0; }

/* ---------- Static pages ---------- */
.content-page { max-width: 860px; margin: 0 auto; padding: 24px 0 0; }
.doc-list { display: grid; gap: 14px; padding: 0; margin: 20px 0; list-style: none; }
.doc-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--pill-border); border-radius: 3px;
  padding: 16px 20px; min-height: 44px; text-decoration: none; color: var(--ink);
  font: 600 15px/1.3 var(--sans);
}
.doc-list a:hover { border-color: var(--icon-gold); }
.doc-list a::after { content: "\2193"; color: var(--icon-gold); font-size: 17px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 18px 0 30px; font-size: 15px; }
.spec-table th, .spec-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--pill-border); }
.spec-table th { color: var(--ink); font-weight: 600; width: 45%; }

.embed-frame { border: none; border-radius: 20px; width: 100%; background: #fff; }
.pdf-frame { width: 100%; height: 75vh; min-height: 480px; border: 1px solid var(--pill-border); border-radius: 6px; background: #fff; }
.notice {
  background: #fff; border: 1px dashed var(--icon-gold); border-radius: 6px;
  padding: 22px; font-size: 15.5px;
}

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 96px 16px 40px; }
.error-page .code { font: 500 80px/1 var(--serif); color: var(--icon-gold); margin-bottom: 10px; }
.error-page .btn { margin: 6px; }

/* ---------- Footer (live post-274.css: black, Roboto) ---------- */
.site-footer { background: #000; color: var(--footer-gray); margin-top: 104px; padding: 30px; }
@media (max-width: 767px) { .site-footer { margin-top: 64px; padding: 30px 20px; } }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 10px; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 10px; } }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand img { width: 156px; height: auto; }
.footer-brand p {
  margin: 18px 0 0; font: 300 16px/22px var(--foot-font); letter-spacing: .1px;
  color: var(--footer-gray); max-width: 280px;
}
.footer-col h2 {
  font: 600 18px/1.3 var(--foot-font); color: var(--footer-gray); margin: 0 0 10px;
}
.footer-col a {
  display: block; font: 500 15px/1.3 var(--foot-font); color: #FFFFFF;
  text-decoration: none; padding: 6px 0; min-height: 28px;
}
.footer-col a:hover { text-decoration: underline; }
.footer-band {
  margin-top: 26px; border-top: 1px solid var(--footer-gray);
  border-bottom: 1px solid var(--footer-gray); min-height: 230px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 13px 0 16px; text-align: center;
}
.footer-band img { width: 208px; height: auto; }
.footer-band p { margin: 0; font: 300 15px/1.4 var(--foot-font); color: var(--footer-gray); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap; padding-top: 20px;
}
.footer-bottom p, .footer-bottom span { margin: 0; font: 300 16px/1.4 var(--foot-font); color: var(--footer-gray); }
.footer-legal { display: flex; gap: 24px; }

/* Last rule on purpose: the live site loads Newsreader via the v1 fonts API
   (no optical-size axis), so glyphs render at the default optical size.
   `font:` shorthands above reset font-optical-sizing to auto, so this must
   come after them or headlines wrap differently than the live site. */
* { font-optical-sizing: none !important; }

/* ---- Digital brochure flipbook ---- */
.flipbook-section { padding-top: 10px; }
.flipbook-shell { max-width: 1180px; margin: 0 auto; padding: 0 16px; }
#flipbook { margin: 0 auto; }
.fb-page { background: #fff; box-shadow: 0 2px 14px rgba(0,0,0,.14); }
.fb-page img { display: block; width: 100%; height: 100%; object-fit: cover; }
.fb-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; }
.fb-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid #221D16; background: #FAF7F2; font-size: 19px; cursor: pointer; line-height: 1; }
.fb-btn:hover { background: #221D16; color: #FAF7F2; }
.fb-count { font-size: .92rem; color: #6E6456; min-width: 74px; text-align: center; }

/* GHL inline form embeds */
.ghl-embed { min-height: 640px; }
.ghl-embed iframe { min-height: 620px; display: block; }

/* Blog cards with featured images + article hero */
.post-card { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; aspect-ratio: 1; display: block; }
.post-card:not(:has(.post-card-media)) { grid-template-columns: 1fr; }
.article-hero { margin: 22px 0 6px; }
.article-hero img { width: 100%; height: auto; border-radius: 6px; display: block; }
@media (max-width: 640px) { .post-card { grid-template-columns: 1fr; } }
