:root {
  --rich-black: #000000;
  --maroon: #3B0F1E;
  --maroon-soft: #5B2A38;
  --sand: #E5CFA1;
  --sand-deep: #D8BE8A;
  --sand-tint: #FBF3E1;
  --white: #FFFFFF;
  --ink: #2A2321;
  --max-w: 1180px;

  --space-3xs: .25rem;
  --space-2xs: .5rem;
  --space-xs: .75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
}
* { box-sizing: border-box; }
body { font-family: 'Manrope', sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* WordPress core adds a 24px margin-block-start to every direct child of
   .wp-site-blocks except the first (its own default block-gap fallback,
   since this theme doesn't set one). That lands on <main> (2nd child) and
   on the auto-generated .wp-block-template-part wrapper around the footer
   (3rd child), producing an unwanted white gap under the header and
   another before the footer. The core rule uses :where(), so it carries
   zero specificity and any normal selector overrides it cleanly. */
.wp-site-blocks > main,
.wp-site-blocks > .wp-block-template-part {
  margin-block-start: 0;
}

.container { max-width: var(--max-w); margin: 0 auto; padding-inline: clamp(20px, 4vw, 32px); }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.01em; line-height: 1.12; margin: 0; }
h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }

/* No margin reset here: <section> has no default browser margin to reset,
   and a same-specificity `margin: 0` declared after .container's
   `margin: 0 auto` (see above) wins the cascade tie and silently kills
   centering on any section that carries both classes at once (e.g.
   `class="section container"`, used directly -- without a nested
   .container div -- on the homepage's and Why Us page's "What We Do"
   sections). Confirmed live: those sections rendered flush against the
   left edge (x:0) instead of centered, while sibling sections nesting
   .container in a child div were unaffected. */
.section { padding-block: clamp(3.5rem, 7vw, var(--space-3xl)); position: relative; }
.block-maroon { background: var(--maroon); color: var(--white); }
.block-maroon p { color: rgba(255,255,255,.78); }
.block-sand { background: var(--sand); color: var(--maroon); }
.block-black { background: var(--rich-black); color: var(--white); }

.section-head { max-width: 620px; margin-bottom: var(--space-2xl); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: var(--space-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--maroon); margin-bottom: var(--space-sm); }
.on-dark .eyebrow { color: var(--sand); }
.on-sand .eyebrow { color: var(--maroon); }
.wedge { display: inline-block; width: 0; height: 0; border-left: 8px solid transparent; border-bottom: 13px solid var(--sand); flex: none; }
.on-sand .wedge { border-bottom-color: var(--maroon); }
.section-intro { margin-top: var(--space-sm); max-width: 46ch; }

.js .reveal { opacity: 0; transform: translateX(-16px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-zoom { animation: none !important; }
}

.hero { position: relative; height: 92vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; }
.hero-zoom {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,4,6,.82) 0%, rgba(59,15,30,.82) 55%, rgba(107,42,58,.7) 100%),
    url('../images/hero-bg.jpg') center / cover no-repeat;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay { position: relative; z-index: 1; color: var(--white); padding: var(--space-2xl) var(--space-xl); max-width: 760px; border-left: 6px solid var(--sand); margin-left: var(--space-lg); }
.hero-overlay .eyebrow { color: var(--sand); margin-bottom: var(--space-md); }
.hero-overlay h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: var(--space-lg); text-wrap: balance; }
.cta-row { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.btn { display: inline-block; padding: .9rem 1.75rem; border-radius: 4px; font-weight: 700; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.btn-primary { background: var(--sand); color: var(--maroon); }
.btn-primary:hover { background: var(--sand-deep); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid var(--sand); }
.btn-secondary:hover { background: var(--sand); color: var(--maroon); }
.btn-outline-maroon { background: transparent; color: var(--maroon); border: 1px solid var(--maroon); }
.btn-outline-maroon:hover { background: var(--maroon); color: var(--white); }

.placeholder-photo {
  background: repeating-linear-gradient(135deg, var(--sand), var(--sand) 12px, var(--sand-deep) 12px, var(--sand-deep) 24px);
  display: flex; align-items: center; justify-content: center; color: var(--maroon); font-weight: 600;
  border-radius: 8px; aspect-ratio: 4 / 3;
}
/* height:100% here (rather than relying on aspect-ratio + width:100% alone)
   creates a circular sizing conflict inside CSS Grid's default
   align-items:stretch: the grid item's own box height gets stretched to
   match its row, but this image's height also depends on that same box's
   height via the percentage -- the two cards in a row can disagree, and
   text below the image then overflows past the card's visible border
   (confirmed live: paragraph text rendered past the card's bottom edge,
   overlapping the next section). width + aspect-ratio alone is sufficient
   to size the box; object-fit:cover only needs to crop the bitmap within it. */
img.placeholder-photo { object-fit: cover; width: 100%; }

.logo-wordmark { height: 38px; }
.logo-badge { height: 46px; }
/* position:fixed, not sticky: the header template part is auto-wrapped by
   WordPress in a <div class="wp-block-template-part"> that's exactly as
   tall as the header itself (no taller) -- and a sticky element can only
   stay stuck within the bounds of its own parent's box, so with zero spare
   height there it never actually sticks (confirmed live: it scrolled away
   immediately). Fixed positioning isn't bound by parent height, at the
   cost of needing compensating top padding on <main> below so content
   doesn't render underneath it -- see the `main { padding-top }` rule. */
.site-header-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--white); }
main { padding-top: 87px; }
@media (max-width: 700px) { main { padding-top: 93px; } }
header.site-header { display: flex; align-items: center; justify-content: space-between; padding-block: var(--space-md); flex-wrap: wrap; gap: var(--space-sm); border-bottom: 1px solid #EEE2CC; }
nav.site-nav { display: flex; gap: var(--space-lg); font-weight: 700; font-size: .93rem; flex-wrap: wrap; }
nav.site-nav a { padding-block: var(--space-3xs); border-bottom: 2px solid transparent; }
nav.site-nav a:hover { border-bottom-color: var(--maroon); }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: none; padding: 0; cursor: pointer; }
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Below 700px the 6-link nav wraps into a multi-row block that's always
   visible, pushing real content below the fold (confirmed live: nav alone
   took ~100px of a 700px viewport height on the homepage). Collapse it
   behind a hamburger toggle instead; assets/js/nav-toggle.js flips
   aria-expanded and the .is-open class, no inline styles needed. */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  nav.site-nav { display: none; flex-direction: column; width: 100%; gap: 0; order: 3; }
  nav.site-nav.is-open { display: flex; }
  nav.site-nav a { display: block; padding-block: var(--space-sm); border-bottom: 1px solid #EEE2CC; min-height: 44px; box-sizing: border-box; }
  nav.site-nav a:last-child { border-bottom: none; }
}

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3 { grid-template-columns: 1fr; } }
/* When .grid-3 lands on WordPress's own <ul class="wp-block-post-template
   is-layout-flow">, core's own :where(.is-layout-flow) > * rule still adds
   a 24px margin-block-start to every <li> after the first (confirmed live
   in the rendered page's inline styles) -- the same blockGap-fallback
   mechanism documented above for .wp-site-blocks, just keyed off a
   different marker class. That extra margin knocks the 2nd+ card out of
   top-alignment with its grid row siblings even though the grid's own
   `gap` already spaces them correctly. Zero it out here. */
.wp-block-post-template.grid-3 > li { margin-block-start: 0; }

.service-card { display: block; background: var(--white); border: 1px solid #EEE2CC; border-radius: 10px; padding: var(--space-md); transition: box-shadow .25s ease, transform .25s ease; }
.service-card:hover { box-shadow: 0 12px 28px -16px rgba(59,15,30,.35); transform: translateY(-3px); }
.service-card h3 { margin-top: var(--space-md); font-size: 1.05rem; }
.service-card p { margin-top: var(--space-2xs); font-size: .92rem; color: #55483F; }
.service-card p.read-more { margin-top: var(--space-sm); font-size: .88rem; font-weight: 700; color: var(--maroon); }

/* Blog listing (templates/home.html) renders each card as a <div>, not an
   <a>, because it's built from the core/post-template query loop -- the
   only real link inside is core/post-title's own <a>. Elsewhere .service-card
   is already applied straight to a static <a> (front-page.html, page-about-us.html,
   page-why-us.html), so it's already fully clickable and this rule must not
   touch it. Scoping to .wp-block-post-template keeps this to blog cards only,
   using the same stretched-link technique as .service-tile. */
.wp-block-post-template .service-card { position: relative; }
.wp-block-post-template .service-card h3 a::after { content: ""; position: absolute; inset: 0; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
@media (max-width: 700px) { .pillars-grid { grid-template-columns: 1fr; gap: var(--space-lg); } }
.pillar { padding-top: var(--space-md); border-top: 2px solid var(--maroon); }
.pillar h3 { font-size: 1.1rem; }
.pillar p { margin-top: var(--space-2xs); font-size: .95rem; }

.about-snippet { display: grid; grid-template-columns: 380px 1fr; gap: var(--space-2xl); align-items: center; }
@media (max-width: 820px) { .about-snippet { grid-template-columns: 1fr; } }
.about-snippet img { border-radius: 10px; }
.about-copy p { margin-top: var(--space-sm); }
.about-copy .btn { margin-top: var(--space-lg); }

.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
@media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { position: relative; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: var(--space-xl) var(--space-lg) var(--space-lg); }
.testimonial-card::before { content: "\201C"; position: absolute; top: var(--space-sm); left: var(--space-md); font-size: 3.5rem; font-weight: 700; color: var(--sand); line-height: 1; font-family: Georgia, serif; }
.testimonial-card p.quote { font-size: 1.05rem; margin: 0; }
.testimonial-card .attribution { margin-top: var(--space-md); font-weight: 700; font-size: .9rem; color: var(--sand); }

.gmb-panel { display: grid; grid-template-columns: 280px 1fr; gap: var(--space-2xl); align-items: start; background: var(--sand-tint); border: 1px solid rgba(59,15,30,.12); border-radius: 14px; padding: var(--space-xl); }
@media (max-width: 820px) { .gmb-panel { grid-template-columns: 1fr; } }
.gmb-score-block { text-align: center; padding-right: var(--space-xl); border-right: 1px solid rgba(59,15,30,.15); }
@media (max-width: 820px) { .gmb-score-block { border-right: none; border-bottom: 1px solid rgba(59,15,30,.15); padding: 0 0 var(--space-lg); } }
.gmb-score { font-size: 3.4rem; font-weight: 800; color: var(--maroon); line-height: 1; }
.gmb-stars { color: var(--sand-deep); font-size: 1.2rem; letter-spacing: .1em; margin-top: var(--space-2xs); }
.gmb-count { display: block; margin-top: var(--space-2xs); font-size: .85rem; color: #7A6B5E; }
.gmb-count strong { color: var(--ink); }
.gmb-panel .btn { margin-top: var(--space-lg); }
.gmb-snippets { display: grid; gap: var(--space-md); }
.gmb-snippet { padding-bottom: var(--space-md); border-bottom: 1px solid rgba(59,15,30,.15); }
.gmb-snippet:last-child { border-bottom: none; padding-bottom: 0; }
.gmb-snippet .stars-sm { color: var(--sand-deep); font-size: .85rem; letter-spacing: .1em; }
.gmb-snippet p { margin-top: var(--space-3xs); font-size: .95rem; color: #55483F; }
.gmb-snippet span.name { display: block; margin-top: var(--space-2xs); font-size: .82rem; font-weight: 700; color: var(--maroon); }

.contact-banner { text-align: center; }
.contact-banner .section-head { margin-inline: auto; }
.contact-banner p.address { margin-top: var(--space-sm); font-size: .95rem; color: rgba(255,255,255,.75); }
.contact-banner .btn { margin-top: var(--space-lg); }

footer.site-footer { background: var(--maroon); color: rgba(229,207,161,.85); padding-block: var(--space-2xl) var(--space-lg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-xl); padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(229,207,161,.2); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: rgba(229,207,161,.7); margin-top: var(--space-md); font-size: .92rem; max-width: 32ch; }
.footer-social { display: flex; gap: var(--space-2xs); margin-top: var(--space-md); }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(229,207,161,.12); color: rgba(229,207,161,.85); transition: background-color .2s ease, color .2s ease; }
.footer-social a:hover { background: var(--sand); color: var(--maroon); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 700px) { .footer-social a { width: 44px; height: 44px; } }
.footer-col h4 { color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: var(--space-md); }
.footer-col ul { display: grid; gap: var(--space-2xs); font-size: .92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); padding-top: var(--space-lg); font-size: .82rem; color: rgba(229,207,161,.6); }

.page-content { padding-block: var(--space-3xl); }
.page-content h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: var(--space-lg); }
.page-content p { margin: 0 0 var(--space-md); max-width: 65ch; }
.page-content iframe { display: block; margin-top: var(--space-lg); border-radius: 10px; }
.page-content .wpcf7-form { margin-top: var(--space-lg); max-width: 560px; }
.page-content .wpcf7-form p { margin-bottom: var(--space-sm); }
.page-content .wpcf7-form input[type=text],
.page-content .wpcf7-form input[type=email],
.page-content .wpcf7-form input[type=tel],
.page-content .wpcf7-form select,
.page-content .wpcf7-form textarea {
  width: 100%; padding: .7rem .9rem; border: 1px solid #EEE2CC; border-radius: 6px; font-family: inherit; font-size: 1rem; box-sizing: border-box;
}
.page-content .wpcf7-form input[type=submit] {
  display: inline-block; padding: .9rem 1.75rem; border-radius: 4px; font-weight: 700; background: var(--sand); color: var(--maroon); border: none; cursor: pointer; font-family: inherit; font-size: 1rem; transition: background-color .2s ease;
}
.page-content .wpcf7-form input[type=submit]:hover {
  background: var(--sand-deep);
}
.page-content .grid-4 { margin-top: var(--space-2xl); }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-3xs); font-size: .85rem; color: #7A6B5E; margin-bottom: var(--space-lg); }
.breadcrumb a:hover { color: var(--maroon); }

.service-hero-photo { aspect-ratio: 21 / 9; margin-block: var(--space-lg) var(--space-xl); }
/* margin-left:9.7% keeps the same left inset the previous margin-inline:auto
   centering produced (~140px at desktop widths, since 9.7% of the ~1116px
   content area is ~108px, plus the container's own 32px padding), while the
   wider max-width only extends the right edge further right -- margin-right:
   auto absorbs whatever's left, so it still degrades safely (no overflow) on
   narrower viewports. */
.service-detail-body { max-width: 980px; margin-left: 9.7%; margin-right: auto; }
.service-detail-body p { margin: 0 0 var(--space-md); }
.service-detail-body h2 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
/* .service-faqs is part of the post content, rendered INSIDE
   .service-detail-body (see single-service.html) -- not a sibling at the
   main.page-content level. It must not repeat the margin-left offset above,
   or it gets indented twice (once from its parent's own margin-left, once
   from its own): confirmed live, that put FAQs ~95px right of "Overview"
   instead of flush with it. No width/margin overrides needed here; it
   already fills its parent's content width. */
.service-faqs { margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid #EEE2CC; }
.service-faqs h2 { margin-bottom: var(--space-lg); }
.service-faqs h3 { font-size: 1.05rem; margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid #EEE2CC; }
.service-faqs h3:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.service-faqs p { margin-top: var(--space-2xs); color: #55483F; }
/* .service-enquiry IS a direct sibling of .service-detail-body at the
   main.page-content level (see single-service.html), so it gets the same
   margin-left treatment as .service-detail-body to align its left edge
   with "Overview" -- unlike .service-faqs above. */
.service-enquiry { margin-left: 9.7%; margin-right: auto; margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid #EEE2CC; max-width: 560px; }
.service-enquiry h2 { margin-bottom: var(--space-sm); }

.mt-section { margin-top: var(--space-3xl); }
.pillars-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .pillars-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pillars-grid--4 { grid-template-columns: 1fr; } }

.service-tile-list { margin-top: var(--space-xl); }
.service-tile-list .wp-block-post-template > li { margin-block-start: 0; }
.service-tile-list .wp-block-post-template > li + li { margin-block-start: var(--space-md); }
.service-tile { position: relative; display: flex; gap: var(--space-lg); align-items: center; background: var(--white); border: 1px solid #EEE2CC; border-radius: 10px; padding: var(--space-md); transition: box-shadow .25s ease, transform .25s ease; }
.service-tile:hover { box-shadow: 0 12px 28px -16px rgba(59,15,30,.35); transform: translateY(-3px); }
.service-tile .placeholder-photo { flex: 0 0 200px; aspect-ratio: 4 / 3; margin: 0; }
.service-tile-body { flex: 1; min-width: 0; }
.service-tile-body h3 { font-size: 1.1rem; margin: 0; }
.service-tile-body h3 a::after { content: ""; position: absolute; inset: 0; }
.service-tile-body p { margin-top: var(--space-2xs); font-size: .92rem; color: #55483F; }
@media (max-width: 700px) {
  .service-tile { flex-direction: column; align-items: stretch; }
  .service-tile .placeholder-photo { flex: none; width: 100%; }
}

.blog-hero-photo { aspect-ratio: 21 / 9; margin-block: var(--space-lg) var(--space-xl); }
.blog-post-body { max-width: 900px; margin-inline: auto; }
.blog-post-body p { margin: 0 0 var(--space-md); }
.blog-post-body h2 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
.share-row { max-width: 900px; margin-inline: auto; display: flex; align-items: center; gap: var(--space-2xs); margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid #EEE2CC; }
.share-label { font-weight: 700; font-size: .85rem; color: var(--maroon); margin-right: var(--space-2xs); }
.share-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--sand-tint); color: var(--maroon); transition: background-color .2s ease; }
.share-link:hover { background: var(--sand); }
.share-link svg { width: 18px; height: 18px; fill: currentColor; }

@media (max-width: 700px) { .share-link { width: 44px; height: 44px; } }

.blog-comments { margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid #EEE2CC; max-width: 900px; margin-inline: auto; }
.blog-comments .wp-block-comments-title { font-size: 1.3rem; margin-bottom: var(--space-lg); }
.blog-comments .wp-block-comment-template { list-style: none; margin: 0; padding: 0; }
.blog-comments .wp-block-comment-template > li { padding: var(--space-md) 0; border-bottom: 1px solid #EEE2CC; }
.blog-comments .wp-block-comment-author-name { font-weight: 700; color: var(--maroon); }
.blog-comments .wp-block-comment-date { font-size: .82rem; color: #7A6B5E; margin-top: var(--space-3xs); }
.blog-comments .wp-block-comment-content p { margin-top: var(--space-2xs); }
.blog-comments .wp-block-comment-reply-link { margin-top: var(--space-2xs); font-size: .85rem; }
.blog-comments .wp-block-comment-reply-link a { font-weight: 700; color: var(--maroon); }
.blog-comments #respond { margin-top: var(--space-xl); }
.blog-comments .comment-reply-title { font-size: 1.1rem; margin-bottom: var(--space-md); }
.blog-comments .comment-form label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: var(--space-3xs); }
.blog-comments .comment-form-comment textarea,
.blog-comments .comment-form-author input,
.blog-comments .comment-form-email input,
.blog-comments .comment-form-url input {
  width: 100%; padding: .7rem .9rem; border: 1px solid #EEE2CC; border-radius: 6px; font-family: inherit; font-size: 1rem; box-sizing: border-box;
}
.blog-comments .comment-form p { margin-bottom: var(--space-sm); }
.blog-comments #submit {
  display: inline-block; padding: .9rem 1.75rem; border-radius: 4px; font-weight: 700; background: var(--sand); color: var(--maroon); border: none; cursor: pointer; font-family: inherit; font-size: 1rem; transition: background-color .2s ease;
}
.blog-comments #submit:hover { background: var(--sand-deep); }
