/*
Theme Name: Nexora Furniture (Alfred)
Theme URI:
Author: Alfred Akpan
Author URI:
Description: Custom classic WordPress theme for Nexora Furniture, a Nexora Group company. Ported from the "Nexora Furniture Redesign" Lovable design. WooCommerce-ready with Naira pricing, delivery-and-install shipping and a configurable purchase mode (cart / deposit / quote).
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nexora-furniture
Tags: custom-theme, woocommerce, e-commerce
*/

/* ==========================================================================
   1. Tokens
   Lovable used oklch(). Converted to hex/rgb here: oklch needs Chrome 111+,
   and a chunk of the Nigerian mobile traffic is on older Android WebViews.
   ========================================================================== */

:root {
  --obsidian: #1f2745;      /* brand navy, page surface */
  --obsidian-2: #2a3358;    /* raised surface */
  --gold: #ffd200;          /* brand gold */
  --bone: #f4f1ea;          /* text */
  --ink: #39406b;           /* accent */

  --muted-fg: #a9aec6;
  --border: rgba(255, 255, 255, 0.12);
  --input-border: rgba(255, 255, 255, 0.14);

  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --shadow-gold: 0 18px 45px -20px rgba(255, 210, 0, 0.45);
  --success: #25d366;
}

/* ==========================================================================
   2. Base
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: var(--obsidian); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  background: var(--gold); color: var(--obsidian);
  padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 700;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.section { padding-top: 80px; padding-bottom: 80px; }
.section--bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--raised { background: rgba(42, 51, 88, 0.4); }

.muted { color: var(--muted-fg); }
.lead { font-size: 1.05rem; color: var(--muted-fg); max-width: 62ch; }

.eyebrow {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
  margin: 0 0 12px;
}

.section-head { margin-bottom: 40px; }
.section-head--split {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

/* ==========================================================================
   3. Buttons & forms
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 700; font-size: .95rem;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn--gold { background: var(--gold); color: var(--obsidian); }
.btn--gold:hover { background: var(--bone); color: var(--obsidian); }

.btn--ghost { border-color: var(--border); color: var(--bone); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--whatsapp { background: var(--success); color: #05230f; }
.btn--whatsapp:hover { background: #1fb457; color: #05230f; }

.btn--block { width: 100%; }

.field { margin-bottom: 18px; }

.field label {
  display: block; margin-bottom: 8px;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted-fg);
}

.field-input,
.nexora-form input[type="text"],
.nexora-form input[type="email"],
.nexora-form input[type="tel"],
.nexora-form select,
.nexora-form textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--input-border);
  background: var(--obsidian);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--bone);
}

.nexora-form textarea { resize: vertical; min-height: 120px; }

.nexora-form input::placeholder,
.nexora-form textarea::placeholder { color: rgba(244, 241, 234, 0.45); }

.nexora-form input:focus,
.nexora-form select:focus,
.nexora-form textarea:focus { outline: none; border-color: var(--gold); }

.form-note { font-size: .78rem; color: var(--muted-fg); margin-top: 12px; }

.notice {
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: .9rem;
  border: 1px solid var(--border);
}
.notice--ok { border-color: rgba(37, 211, 102, .5); background: rgba(37, 211, 102, .08); }
.notice--error { border-color: rgba(220, 70, 70, .5); background: rgba(220, 70, 70, .08); }

/* Honeypot */
.nexora-hp { position: absolute; left: -9999px; }

/* ==========================================================================
   4. Header
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(31, 39, 69, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 16px; padding-bottom: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; line-height: 1.1; }
.brand-tag { font-size: .62rem; text-transform: uppercase; letter-spacing: .22em; color: var(--muted-fg); }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; font-size: .92rem; }
.nav-desktop a { color: var(--muted-fg); }
.nav-desktop a:hover,
.nav-desktop .current-menu-item > a { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.cart-link { position: relative; display: none; padding: 8px; color: var(--bone); }
.cart-count {
  position: absolute; top: 0; right: 0;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--gold); color: var(--obsidian);
  font-size: .65rem; font-weight: 800; line-height: 18px; text-align: center;
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--border); border-radius: 12px;
  color: var(--bone); cursor: pointer;
}

.drawer {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--obsidian);
}
.drawer.is-open { display: block; }
.drawer ul { list-style: none; margin: 0; padding: 12px 0; }
.drawer a { display: block; padding: 14px 24px; font-size: 1rem; }
.drawer .drawer-cta { padding: 16px 24px 24px; }

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .cart-link { display: inline-flex; }
}

@media (min-width: 640px) {
  .cart-link { display: inline-flex; }
}

/* ==========================================================================
   5. Hero
   ========================================================================== */

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }

.hero::before {
  content: ""; position: absolute; top: -160px; left: 50%;
  width: 560px; height: 560px; transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 210, 0, 0.10);
  filter: blur(120px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid; gap: 48px; align-items: center;
  padding-top: 72px; padding-bottom: 72px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255, 210, 0, 0.3);
  background: rgba(255, 210, 0, 0.05);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: .68rem; text-transform: uppercase; letter-spacing: .25em;
  color: var(--gold);
}
.hero-badge span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero h1 { margin-top: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lead { margin-top: 24px; font-size: 1.1rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 48px; }
.hero-stats .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); margin: 0; }
.hero-stats .label { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-fg); margin: 4px 0 0; }

.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-xl); }

.hero-price {
  position: absolute; left: -12px; bottom: -20px;
  background: var(--gold); color: var(--obsidian);
  border-radius: var(--radius); padding: 14px 20px;
  box-shadow: var(--shadow-gold);
}
.hero-price .amount { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 0; }
.hero-price .name { font-size: .65rem; text-transform: uppercase; letter-spacing: .16em; margin: 4px 0 0; opacity: .75; }

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 7fr 5fr; padding-top: 110px; padding-bottom: 110px; }
  .hero-price { left: -24px; }
}

/* Inner page hero */
.page-hero { border-bottom: 1px solid var(--border); }
.page-hero-inner { padding-top: 72px; padding-bottom: 56px; }
.page-hero .lead { margin-top: 18px; }
.page-hero .btn { margin-top: 28px; }

/* ==========================================================================
   6. Marquee
   ========================================================================== */

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: rgba(42, 51, 88, 0.4);
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  white-space: nowrap;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .3em;
  color: var(--muted-fg);
  animation: marquee 26s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   7. Cards & grids
   ========================================================================== */

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
.grid--6 { grid-template-columns: repeat(2, 1fr); gap: 16px; }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--6 { grid-template-columns: repeat(6, 1fr); }
}

.surface-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(42, 51, 88, 0.6);
  transition: border-color .35s ease, transform .35s ease;
  overflow: hidden;
}
.surface-card:hover { border-color: rgba(255, 210, 0, 0.4); transform: translateY(-3px); }
.surface-card .pad { padding: 24px; }

/* Product card */
.product-card { position: relative; }
.product-card .thumb { position: relative; }
.product-card .thumb img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-card .badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--obsidian);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: .63rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
}
.product-card .body { padding: 20px; }
.product-card .cat { font-size: .65rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-fg); margin: 0 0 6px; }
.product-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.product-card .blurb { font-size: .85rem; color: var(--muted-fg); margin: 0 0 14px; }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card .price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); }
.product-card .price-note { font-size: .7rem; color: var(--muted-fg); }

/* Service card */
.service-card .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); margin: 0; }
.service-card h3 { margin: 10px 0 8px; }
.service-card p { font-size: .88rem; color: var(--muted-fg); }
.service-card .more { display: inline-flex; gap: 8px; margin-top: 16px; font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); }

/* Category tile */
.cat-tile { padding: 12px; }
.cat-tile img { border-radius: 12px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.cat-tile p { margin: 12px 4px 4px; font-size: .88rem; font-weight: 700; }

/* Promises */
.promises { display: grid; gap: 20px; margin-top: 32px; }
@media (min-width: 640px) { .promises { grid-template-columns: repeat(2, 1fr); } }
.promise .icon { width: 22px; height: 22px; color: var(--gold); }
.promise h4 { font-family: var(--font-sans); font-size: .95rem; margin: 12px 0 4px; }
.promise p { font-size: .85rem; color: var(--muted-fg); margin: 0; }

/* Split section */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { width: 100%; border-radius: var(--radius-xl); object-fit: cover; }

/* Article card */
.article-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.article-card .meta { font-size: .65rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted-fg); margin: 0 0 8px; }
.article-card h3 { margin: 0 0 8px; }
.article-card p { font-size: .87rem; color: var(--muted-fg); margin: 0; }

/* ==========================================================================
   8. WooCommerce overrides
   ========================================================================== */

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  list-style: none;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(42, 51, 88, 0.6);
  padding: 14px 18px;
  margin: 0 0 20px;
  font-size: .9rem;
}
.woocommerce-notices-wrapper .woocommerce-error { border-left-color: #dc4646; }

.shop-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 40px;
}
.shop-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-filters a {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: .85rem;
  color: var(--muted-fg);
}
.shop-filters a:hover { border-color: var(--gold); color: var(--gold); }
.shop-filters a.is-active { background: var(--gold); border-color: var(--gold); color: var(--obsidian); font-weight: 700; }

.woocommerce-ordering select { width: auto; padding: 10px 14px; }

/* Single product */
.product-single { display: grid; gap: 48px; align-items: start; padding-top: 56px; padding-bottom: 80px; }
@media (min-width: 1024px) { .product-single { grid-template-columns: 6fr 5fr; } }
.product-gallery img { width: 100%; border-radius: var(--radius-xl); object-fit: cover; }
.product-summary .price { font-family: var(--font-display); font-size: 2rem; color: var(--gold); display: block; margin: 8px 0 4px; }
.product-summary .price-note { font-size: .8rem; color: var(--muted-fg); }
.product-summary .desc { margin-top: 20px; color: var(--muted-fg); }

.product-spec { border-top: 1px solid var(--border); margin-top: 28px; padding-top: 20px; }
.product-spec dt { font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-fg); }
.product-spec dd { margin: 6px 0 16px; font-size: .92rem; }

.purchase-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(42, 51, 88, 0.6);
  padding: 24px;
  margin-top: 28px;
}
.purchase-box .quantity input {
  width: 80px; padding: 12px; text-align: center;
  border: 1px solid var(--input-border); border-radius: var(--radius);
  background: var(--obsidian); color: var(--bone);
}
.purchase-box .cart { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.purchase-box button[type="submit"],
.purchase-box .single_add_to_cart_button {
  flex: 1 1 200px;
  background: var(--gold); color: var(--obsidian);
  border: none; border-radius: var(--radius-pill);
  padding: 14px 28px; font-family: var(--font-sans); font-weight: 700; font-size: .95rem;
  cursor: pointer;
}
.purchase-box button[type="submit"]:hover { background: var(--bone); }
.purchase-box .deposit-line { font-size: .85rem; color: var(--muted-fg); margin-top: 14px; }
.purchase-box .assurance { font-size: .78rem; color: var(--muted-fg); margin-top: 16px; }

.trust-band { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
@media (min-width: 900px) { .trust-band { grid-template-columns: repeat(4, 1fr); } }
.trust-band div {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; font-size: .78rem; color: var(--muted-fg);
}
.trust-band strong { display: block; color: var(--bone); font-size: .85rem; margin-bottom: 2px; }

/* Cart & checkout */
.woocommerce table.shop_table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-bottom: 1px solid var(--border); padding: 14px; text-align: left; font-size: .9rem;
}
.woocommerce table.shop_table th { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-fg); }

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--gold); color: var(--obsidian);
  border: none; border-radius: var(--radius-pill);
  padding: 13px 26px; font-weight: 700; font-size: .92rem; cursor: pointer;
}
.woocommerce .button:hover { background: var(--bone); color: var(--obsidian); }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"] {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--input-border); background: var(--obsidian);
  padding: 12px 16px; color: var(--bone); font-family: var(--font-sans); font-size: .9rem;
}
.woocommerce form .form-row label { font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-fg); }

#payment, .woocommerce-checkout-review-order {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: rgba(42, 51, 88, 0.6); padding: 20px;
}
#payment ul.payment_methods { list-style: none; margin: 0 0 16px; padding: 0; }
#payment ul.payment_methods li { padding: 10px 0; border-bottom: 1px solid var(--border); }
#payment .payment_box { font-size: .85rem; color: var(--muted-fg); }

/* ==========================================================================
   9. Footer
   ========================================================================== */

.site-footer { border-top: 1px solid var(--border); background: rgba(42, 51, 88, 0.3); }
.footer-grid { display: grid; gap: 40px; padding-top: 64px; padding-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-grid h4 { font-family: var(--font-sans); font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-fg); margin: 0 0 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: .9rem; }
.footer-grid li a { color: var(--muted-fg); }
.footer-grid li a:hover { color: var(--gold); }
.footer-about p { font-size: .9rem; color: var(--muted-fg); max-width: 40ch; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px; padding-bottom: 32px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .8rem; color: var(--muted-fg);
}

/* Floating support button */
.support-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--success); color: #05230f;
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .8);
}
.support-fab:hover { color: #05230f; background: #1fb457; }

/* ==========================================================================
   10. Editor content (posts, pages)
   ========================================================================== */

.entry-content { max-width: 70ch; }
.entry-content h2 { margin: 40px 0 14px; }
.entry-content h3 { margin: 30px 0 10px; }
.entry-content p, .entry-content li { color: var(--muted-fg); }
.entry-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img, .entry-content .wp-caption { border-radius: var(--radius-lg); margin: 28px 0; }
.entry-content blockquote {
  border-left: 3px solid var(--gold); margin: 28px 0; padding: 4px 0 4px 20px;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--bone);
}
.entry-content ul, .entry-content ol { padding-left: 20px; }
.entry-content li { margin-bottom: 8px; }

.post-hero img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius-xl); }

.pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; }
.pagination .page-numbers {
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 8px 16px; font-size: .88rem; color: var(--muted-fg);
}
.pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: var(--obsidian); font-weight: 700; }

/* ==========================================================================
   11. Mobile tap targets & motion
   ========================================================================== */

@media (max-width: 767px) {
  .section { padding-top: 56px; padding-bottom: 56px; }
  .inline-link { display: inline-block; padding-top: 12px; padding-bottom: 12px; }
  .footer-grid li a { display: inline-block; padding-top: 6px; padding-bottom: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Header CTA visibility — separate from .nav-desktop so the button keeps its flex layout. */
.hide-mobile { display: none; }
@media (min-width: 1024px) {
  .hide-mobile { display: inline-flex; }
}

/* Wordmark lockup — the supplied logo is a horizontal wordmark, not a square mark,
   so it replaces the text brand name rather than sitting beside it. */
.brand-wordmark { width: auto; height: 30px; }
.brand-tag--beside { display: none; }

@media (min-width: 640px) {
  .brand-wordmark { height: 34px; }
  .brand-tag--beside {
    display: inline-block;
    padding-left: 14px;
    margin-left: 14px;
    border-left: 1px solid var(--border);
  }
}
