:root {
  --ink: #171918;
  --ink-2: #272a28;
  --paper: #f5f3ee;
  --paper-2: #ebe8e0;
  --line: rgba(23, 25, 24, 0.14);
  --copper: #bd744a;
  --copper-2: #d38d61;
  --white: #fffef9;
  --muted: #6f746f;
  --container: min(1180px, calc(100% - 48px));
}

/* cPanel/PHP integration */
.article-content { white-space: pre-wrap; }
.form-error, .form-success { padding: 12px 15px; margin: 0 0 18px; font-size: 12px; line-height: 1.6; }
.form-error { border: 1px solid #c96a58; background: #fff3ef; color: #8d2c1d; }
.form-success { border: 1px solid #5f8e76; background: #eef8f2; color: #28583e; }
.install-page { min-height: 100vh; display: grid; place-items: center; padding: 35px 18px; background: radial-gradient(circle at 85% 12%, #3f4844, #151816 48%); }
.install-card { width: min(680px, 100%); padding: 40px; background: #f5f3ee; box-shadow: 0 26px 80px rgba(0,0,0,.32); }
.install-card h1 { margin: 25px 0 10px; font: 400 42px/1 Georgia, serif; }
.install-card > p { color: var(--muted); line-height: 1.7; }
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.php-field { display: grid; gap: 7px; margin-bottom: 16px; }
.php-field label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.php-field input, .php-field textarea, .php-field select { width: 100%; min-height: 48px; border: 1px solid var(--line); background: white; padding: 11px 13px; color: var(--ink); font: inherit; }
.php-field textarea { min-height: 130px; resize: vertical; }
.php-help { margin-top: -8px; color: var(--muted); font-size: 10px; }
.php-submit { min-height: 49px; border: 0; padding: 0 22px; background: var(--copper); color: white; font-weight: 700; cursor: pointer; }
.admin-actions-inline { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.admin-actions-inline form { margin: 0; }
.admin-link, .admin-delete { border: 0; background: none; padding: 0; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.admin-link { color: var(--copper); }
.admin-delete { color: #a74435; }
.admin-table-wrap { overflow-x: auto; }
.admin-empty { padding: 50px 20px; text-align: center; color: var(--muted); }
.admin-editor { max-width: 900px; }
.admin-editor .php-field textarea[name="content"] { min-height: 360px; line-height: 1.7; }
.admin-check { display: flex; align-items: center; gap: 9px; margin: 4px 0 20px; font-size: 12px; }
.admin-check input { width: 16px; height: 16px; }
.article-cover { width: 100%; max-height: 620px; object-fit: cover; }
@media (max-width: 620px) { .install-card { padding: 28px 20px; } .install-grid { grid-template-columns: 1fr; gap: 0; } .install-card h1 { font-size: 34px; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

.topbar { position: fixed; z-index: 32; top: 0; left: 0; right: 0; background: #0d0f0e; color: rgba(255,255,255,.62); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; transition: transform .35s ease, opacity .35s ease; }
.topbar.is-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.topbar-inner { height: 34px; display: flex; align-items: center; justify-content: space-between; }
.topbar-message, .topbar-actions { display: flex; align-items: center; gap: 18px; }
.topbar-badge { padding: 4px 7px; border: 1px solid rgba(211,141,97,.4); color: #e4b08f; }
.topbar-actions > span { color: rgba(255,255,255,.38); }
.topbar a { color: rgba(255,255,255,.66); }
.topbar a b { color: #e4b08f; font-weight: 500; margin-left: 5px; }

.site-header { position: fixed; z-index: 31; top: 34px; left: 0; right: 0; color: white; border-bottom: 1px solid rgba(255,255,255,.14); transition: top .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease; }
.site-header.is-scrolled { top: 0; color: var(--ink); background: rgba(246,244,238,.96); border-color: rgba(23,25,24,.1); box-shadow: 0 12px 38px rgba(20,23,21,.08); }
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; transition: height .35s ease; }
.is-scrolled .nav-wrap { height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; position: relative; z-index: 4; }
.brand-mark { width: 40px; height: 40px; border: 1px solid currentColor; display: grid; place-items: center; border-radius: 50%; font: italic 700 20px Georgia, serif; transition: transform .25s; }
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.brand-copy strong { font-size: 15px; letter-spacing: .2em; }
.brand-copy small { font-size: 7px; letter-spacing: .28em; color: var(--copper-2); white-space: nowrap; }
.brand-label-mobile { display: none; }
.nav-links { display: flex; align-items: stretch; align-self: stretch; gap: 5px; font-size: 12px; }
.nav-item, .nav-product-trigger { position: relative; min-width: 86px; height: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 0 12px; color: rgba(255,255,255,.72); background: transparent; border: 0; cursor: pointer; transition: color .2s, background .2s; }
.nav-catalog { min-width: 114px; }
.nav-catalog > span { white-space: nowrap; }
.is-scrolled .nav-item, .is-scrolled .nav-product-trigger { color: rgba(23,25,24,.7); }
.nav-item > small { display: none; }
.nav-item:after, .nav-product:after { content: ''; position: absolute; left: 13px; right: 13px; bottom: -1px; height: 2px; background: var(--copper); transform: scaleX(0); transition: transform .25s ease; }
.nav-item:hover, .nav-item.active, .nav-product:hover .nav-product-trigger, .nav-product.active .nav-product-trigger { color: white; background: rgba(255,255,255,.05); }
.is-scrolled .nav-item:hover, .is-scrolled .nav-item.active, .is-scrolled .nav-product:hover .nav-product-trigger, .is-scrolled .nav-product.active .nav-product-trigger { color: var(--ink); background: rgba(23,25,24,.035); }
.nav-item:hover:after, .nav-item.active:after, .nav-product:hover:after, .nav-product.active:after { transform: scaleX(1); }
.nav-product { position: relative; display: flex; align-items: stretch; }
.nav-product-trigger i { font-style: normal; font-size: 13px; transition: transform .2s; }
.nav-product.is-open .nav-product-trigger i { transform: rotate(180deg); }
.product-menu { position: absolute; z-index: 5; top: calc(100% + 1px); right: -270px; width: 710px; padding: 23px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; color: var(--ink); background: rgba(248,246,240,.98); border: 1px solid rgba(23,25,24,.1); box-shadow: 0 30px 70px rgba(16,18,17,.18); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .22s, visibility .22s, transform .22s; backdrop-filter: blur(18px); }
.nav-product.is-open .product-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.product-menu-intro { padding: 10px 21px 10px 8px; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.product-menu-intro > span { color: var(--copper); font-size: 8px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.product-menu-intro > strong { margin-top: 14px; font: 400 23px/1.16 Georgia, serif; }
.product-menu-intro > a { margin-top: auto; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 7px; }
.product-menu-intro > a b { margin-left: 10px; color: var(--copper); }
.product-menu-list { display: flex; flex-direction: column; }
.product-menu-list > a { min-height: 66px; display: grid; grid-template-columns: 29px 1fr 16px; gap: 8px; align-items: center; padding: 5px 11px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s; }
.product-menu-list > a:last-child { border-bottom: 0; }
.product-menu-list > a:hover { background: white; padding-left: 16px; }
.product-menu-list > a > span { color: var(--copper); font-size: 8px; }
.product-menu-list > a div { display: flex; flex-direction: column; gap: 4px; }
.product-menu-list > a strong { font: 400 15px Georgia, serif; }
.product-menu-list > a small { color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.product-menu-list > a i { color: var(--copper); font-style: normal; }
.nav-contact, .mobile-menu-head { display: none; }
.nav-cta { align-self: center; min-width: 158px; min-height: 50px; margin-left: 10px; padding: 8px 16px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: white; background: var(--copper); transition: background .2s, transform .2s; }
.nav-cta:hover { background: #ca8155; transform: translateY(-1px); }
.nav-cta > span { display: flex; flex-direction: column; gap: 3px; font-size: 11px; font-weight: 700; }
.nav-cta small { color: rgba(255,255,255,.7); font-size: 7px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }
.nav-cta b { font-size: 15px; font-weight: 400; }
.menu-button { display: none; position: relative; z-index: 5; background: none; border: 0; color: currentColor; width: 58px; height: 48px; padding: 10px; }
.menu-button .menu-line { display: block; width: 25px; height: 1px; background: currentColor; margin: 5px 0 5px auto; transition: transform .25s, width .25s; }
.menu-button .menu-line:nth-child(2) { width: 17px; }
.menu-button small { display: block; margin-top: 5px; font-size: 7px; text-transform: uppercase; letter-spacing: .15em; }
.menu-active .menu-button .menu-line:first-child { width: 22px; transform: translateY(3px) rotate(45deg); }
.menu-active .menu-button .menu-line:nth-child(2) { width: 22px; transform: translateY(-3px) rotate(-45deg); }
.nav-backdrop { position: fixed; z-index: 29; inset: 0; border: 0; background: rgba(4,6,5,.56); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .25s; }
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

@media (min-width: 981px) {
  .nav-links { gap: 2px; }
  .nav-item, .nav-product-trigger { min-width: 74px; padding-left: 8px; padding-right: 8px; font-size: 11px; }
  .nav-catalog { min-width: 105px; }
  .nav-cta { min-width: 148px; margin-left: 4px; padding-left: 13px; padding-right: 13px; }
  .nav-product:hover .product-menu,
  .nav-product:focus-within .product-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}

.hero { min-height: 760px; height: 94vh; position: relative; overflow: hidden; background: #1e2427; color: white; }
.hero-visual { position: absolute; inset: 0; overflow: hidden; transform: scale(1.01); }
.hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,14,16,.94) 0%, rgba(10,14,16,.78) 34%, rgba(10,14,16,.23) 67%, rgba(10,14,16,.08) 100%), linear-gradient(0deg, rgba(0,0,0,.4), transparent 45%); }
.hero-inner { height: 100%; position: relative; display: flex; align-items: center; padding-top: 74px; }
.hero-copy { width: min(650px, 62%); }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--copper); font-size: 11px; letter-spacing: .18em; font-weight: 700; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #e1a47d; }
.hero h1 { margin: 24px 0 22px; font: 400 clamp(52px, 6.6vw, 91px)/.98 Georgia, 'Times New Roman', serif; letter-spacing: -.048em; }
.hero h1 em { font-weight: 400; color: #d69b76; }
.hero-copy > p { color: rgba(255,255,255,.72); max-width: 600px; margin: 0; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 35px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 24px; font-size: 12px; font-weight: 700; letter-spacing: .06em; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: white; }
.button-primary:hover { background: #cd8053; }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.28); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-points { display: flex; gap: 26px; margin-top: 29px; color: rgba(255,255,255,.66); font-size: 11px; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points b { color: #e0a07a; }
.hero-stat-card { position: absolute; right: 0; bottom: 0; width: min(405px, 31vw); padding: 30px 36px; background: rgba(14,17,16,.8); backdrop-filter: blur(16px); border-left: 1px solid rgba(255,255,255,.15); }
.stat-label { color: rgba(255,255,255,.47); text-transform: uppercase; font-size: 9px; letter-spacing: .17em; }
.stat-row { display: flex; align-items: end; gap: 18px; margin-top: 12px; }
.stat-row strong { font: 400 47px/.8 Georgia, serif; }
.stat-row strong span { font-size: 17px; color: var(--copper-2); margin-left: 3px; }
.stat-row p { font-size: 11px; line-height: 1.45; color: rgba(255,255,255,.68); max-width: 170px; margin: 0; }

.proof-strip { background: #121412; color: white; }
.proof-grid { min-height: 128px; display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { display: flex; align-items: center; gap: 14px; padding: 24px; border-right: 1px solid rgba(255,255,255,.12); }
.proof-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.proof-grid strong { font: 400 32px Georgia, serif; color: #dea17b; }
.proof-grid span { color: rgba(255,255,255,.56); font-size: 10px; line-height: 1.5; text-transform: uppercase; letter-spacing: .06em; }

.section { padding: 120px 0; }
.section-heading h2 { margin: 19px 0 0; font: 400 clamp(42px, 5vw, 68px)/1.05 Georgia, serif; letter-spacing: -.038em; }
.section-heading > p, .split-heading > p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.split-heading > p { margin: 0 0 4px; max-width: 470px; }
.section-intro { background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-card { min-height: 390px; padding: 29px 26px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; display: flex; flex-direction: column; transition: background .25s, transform .25s; }
.benefit-card:hover { background: white; transform: translateY(-4px); }
.benefit-card.featured { background: var(--ink); color: white; border-color: var(--ink); }
.benefit-number { font-size: 10px; color: var(--copper); letter-spacing: .13em; }
.benefit-icon { width: 82px; height: 82px; margin: 54px 0 35px; position: relative; }
.benefit-icon.heat { display: flex; align-items: center; justify-content: center; gap: 8px; }
.benefit-icon.heat i { width: 7px; height: 48px; border: 1px solid currentColor; border-radius: 50%; transform: rotate(12deg); opacity: .65; }
.benefit-icon.sound { display: flex; align-items: center; }
.benefit-icon.sound i { position: absolute; border: 1px solid currentColor; border-left: 0; border-top: 0; transform: rotate(-45deg); border-radius: 50%; }
.benefit-icon.sound i:nth-child(1) { width: 20px; height: 20px; left: 8px; }
.benefit-icon.sound i:nth-child(2) { width: 42px; height: 42px; left: 8px; opacity: .7; }
.benefit-icon.sound i:nth-child(3) { width: 66px; height: 66px; left: 8px; opacity: .4; }
.benefit-icon.shield i { display: block; width: 55px; height: 68px; border: 1px solid currentColor; border-radius: 28px 28px 36px 36px; transform: rotate(5deg); }
.benefit-icon.shield:after { content: '✓'; position: absolute; left: 19px; top: 19px; color: var(--copper); font-size: 22px; }
.benefit-icon.color i { position: absolute; width: 54px; height: 54px; border-radius: 50%; border: 1px solid currentColor; top: 12px; }
.benefit-icon.color i:nth-child(2) { left: 28px; background: var(--copper); opacity: .55; border-color: var(--copper); }
.benefit-card h3 { font: 400 24px/1.15 Georgia, serif; margin: auto 0 13px; }
.benefit-card p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0; }
.benefit-card.featured p { color: rgba(255,255,255,.58); }

.products-section { background: #eae7df; }
.center-heading { text-align: center; max-width: 760px; margin: 0 auto 62px; }
.center-heading .eyebrow { justify-content: center; }
.center-heading p { margin: 17px 0 0; }
.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.product-card { min-height: 590px; position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,.08); }
.product-card { grid-column: span 2; }
.product-card:nth-child(4), .product-card:nth-child(5) { grid-column: span 3; }
.product-card.ivory { background: #f8f6f0; }
.product-card.blue { background: #d8e0e2; }
.product-card.charcoal { background: #1f2221; color: white; }
.product-card.glass { background: linear-gradient(145deg, #ecf5f5, #c5d9da); }
.product-card.amber { background: linear-gradient(145deg, #f3e9d7, #d9b98c); }
.product-topline { padding: 24px 25px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.product-topline span { font-size: 10px; color: var(--copper); }
.product-topline small { font-size: 9px; text-transform: uppercase; letter-spacing: .16em; opacity: .58; }
.product-photo { position: relative; height: 225px; margin: 0; overflow: hidden; background: rgba(255,255,255,.25); border-top: 1px solid rgba(0,0,0,.035); border-bottom: 1px solid rgba(0,0,0,.08); }
.product-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 68%, rgba(15,17,16,.18)); }
.product-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-photo img { transform: scale(1.035); }
.product-photo figcaption { position: absolute; right: 13px; bottom: 12px; z-index: 1; padding: 6px 8px; color: #fff; background: rgba(16,18,17,.72); backdrop-filter: blur(7px); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-body { background: rgba(255,255,255,.57); backdrop-filter: blur(10px); margin-top: auto; padding: 30px 28px 26px; }
.charcoal .product-body { background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.13); }
.product-body h3 { margin: 0 0 13px; font: 400 29px Georgia, serif; }
.product-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; min-height: 66px; }
.charcoal .product-body p { color: rgba(255,255,255,.56); }
.product-body ul { list-style: none; padding: 0; margin: 21px 0 25px; display: flex; flex-wrap: wrap; gap: 6px; }
.product-body li { border: 1px solid rgba(0,0,0,.12); padding: 7px 9px; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.charcoal .product-body li { border-color: rgba(255,255,255,.17); }
.product-body button { width: 100%; background: transparent; border: 0; border-top: 1px solid rgba(0,0,0,.16); padding: 18px 0 0; display: flex; justify-content: space-between; cursor: pointer; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: inherit; }
.charcoal .product-body button { border-color: rgba(255,255,255,.17); }

.showcase-section { background: var(--ink); color: white; padding: 0; }
.showcase-grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1.05fr .95fr; }
.showcase-image { min-height: 760px; position: relative; overflow: hidden; background: #181b19; }
.showcase-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.35), transparent 58%); pointer-events: none; }
.showcase-image > img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: 67% center; }
.showcase-badge { position: absolute; z-index: 1; left: 38px; bottom: 38px; padding: 14px 17px; background: rgba(14,16,15,.83); backdrop-filter: blur(10px); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.showcase-badge span { color: var(--copper-2); margin-right: 20px; }
.showcase-copy { padding: 110px max(48px, calc((100vw - 1180px)/2)); padding-left: clamp(48px, 7vw, 115px); display: flex; flex-direction: column; justify-content: center; }
.showcase-copy h2 { font: 400 clamp(42px, 4.4vw, 65px)/1.05 Georgia, serif; letter-spacing: -.04em; margin: 21px 0 25px; max-width: 610px; }
.showcase-copy > p { color: rgba(255,255,255,.57); font-size: 15px; line-height: 1.75; max-width: 560px; }
.application-list { margin-top: 40px; border-top: 1px solid rgba(255,255,255,.15); }
.application-item { display: grid; grid-template-columns: 55px 1fr; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.application-item > span { color: var(--copper-2); font-size: 10px; }
.application-item h3 { margin: 0 0 6px; font: 400 20px Georgia, serif; }
.application-item p { color: rgba(255,255,255,.49); margin: 0; font-size: 12px; line-height: 1.6; }

.local-seo-section { background: #f3f0e8; }
.local-seo-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.local-seo-intro h2 { max-width: 760px; margin: 19px 0 0; font: 400 clamp(42px, 5vw, 68px)/1.05 Georgia, serif; letter-spacing: -.038em; }
.local-seo-intro > p { max-width: 510px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.78; }
.local-seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.local-seo-grid article { min-height: 270px; padding: 31px 32px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.local-seo-grid article:last-child { border-right: 0; }
.local-seo-grid span { color: var(--copper); font-size: 10px; }
.local-seo-grid h3 { margin: auto 0 13px; font: 400 27px Georgia, serif; }
.local-seo-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.local-seo-actions { min-height: 116px; padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; gap: 35px; color: white; background: var(--ink); }
.local-seo-actions p { max-width: 700px; margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; }
.local-seo-actions strong { color: white; }
.local-seo-actions .button { flex: 0 0 auto; }

.process-section { background: var(--paper); }
.split-heading.compact { margin-bottom: 54px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-grid > div { padding: 31px 38px 8px 0; border-right: 1px solid var(--line); min-height: 220px; }
.process-grid > div + div { padding-left: 38px; }
.process-grid > div:last-child { border-right: 0; }
.process-grid span { color: var(--copper); font-size: 10px; }
.process-grid h3 { font: 400 25px Georgia, serif; margin: 38px 0 12px; }
.process-grid p { color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 280px; }

.consult-section { background: #242725; color: white; padding: 100px 0; position: relative; overflow: hidden; }
.consult-section:before { content: ''; position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; left: -190px; top: -180px; }
.consult-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.consult-copy h2 { font: 400 clamp(44px, 4.7vw, 68px)/1.05 Georgia, serif; letter-spacing: -.04em; margin: 22px 0; }
.consult-copy > p { color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.75; }
.consult-contact { display: flex; flex-direction: column; gap: 7px; border-left: 1px solid var(--copper); padding-left: 18px; margin-top: 30px; }
.consult-contact span { font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.4); }
.consult-contact a { font-size: 13px; color: rgba(255,255,255,.75); }
.consult-card { background: #f3f0e8; color: var(--ink); padding: 38px; box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.field-group + .field-group { margin-top: 29px; }
.field-group label { display: block; margin-bottom: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.choice-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.choice-row.two-col { grid-template-columns: repeat(2, 1fr); }
.choice-row button { background: transparent; border: 1px solid var(--line); min-height: 44px; padding: 8px; cursor: pointer; color: var(--muted); font-size: 10px; transition: .2s; }
.choice-row button:hover, .choice-row button.selected { border-color: var(--copper); background: #fffaf5; color: var(--ink); box-shadow: inset 0 -2px var(--copper); }
.selection-summary { display: flex; justify-content: space-between; gap: 20px; margin: 29px 0 18px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 10px; }
.selection-summary span { color: var(--muted); }
.selection-summary strong { text-align: right; }
.button.full { width: 100%; }
.form-note { display: block; color: var(--muted); line-height: 1.5; font-size: 9px; text-align: center; margin: 13px 0 0; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 105px; }
.faq-heading { position: sticky; top: 110px; align-self: start; }
.faq-heading h2 { font: 400 52px/1.05 Georgia, serif; letter-spacing: -.04em; margin: 22px 0; }
.faq-heading p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-heading > a { display: inline-flex; justify-content: space-between; width: 190px; border-bottom: 1px solid var(--ink); padding: 13px 0; margin-top: 15px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 48px 1fr 24px; gap: 15px; align-items: center; min-height: 91px; font: 400 20px Georgia, serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--copper); font: 400 10px Arial, sans-serif; }
.faq-list summary i { font: normal 300 22px Arial, sans-serif; transition: transform .2s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); font-size: 13px; line-height: 1.75; margin: -8px 38px 30px 63px; }

footer { background: #0f1110; color: white; padding-top: 70px; }
.footer-main { display: grid; grid-template-columns: .7fr 1.1fr 1fr; gap: 70px; padding-bottom: 62px; }
.brand-footer .brand-mark { border-color: rgba(255,255,255,.5); }
.footer-main > p { color: rgba(255,255,255,.46); font-size: 13px; line-height: 1.7; margin: 0; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links > div { display: flex; flex-direction: column; gap: 11px; }
.footer-links span { font-size: 9px; text-transform: uppercase; letter-spacing: .16em; color: var(--copper-2); margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,.58); font-size: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); min-height: 68px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.34); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.floating-cta { position: fixed; z-index: 30; right: 24px; bottom: 24px; background: var(--copper); color: white; min-height: 49px; padding: 0 18px; display: inline-flex; align-items: center; gap: 9px; box-shadow: 0 14px 34px rgba(47,25,15,.32); font-size: 11px; letter-spacing: .05em; }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  html.mobile-menu-open, body.mobile-menu-open { overflow: hidden; overscroll-behavior: none; }
  .site-header { position: fixed; }
  .site-header.menu-active { top: 0; color: white; background: transparent; border-color: transparent; box-shadow: none; }
  .menu-button { display: block; }
  .nav-links { position: fixed; z-index: 3; top: 0; right: 0; width: min(430px, calc(100% - 22px)); height: 100vh; height: 100dvh; padding: calc(92px + env(safe-area-inset-top)) 25px calc(26px + env(safe-area-inset-bottom)); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; display: flex; flex-direction: column; align-items: stretch; gap: 0; color: white; background: #151816; transform: translate3d(102%,0,0); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .3s ease, opacity .3s, visibility .3s; box-shadow: -25px 0 60px rgba(0,0,0,.24); }
  .nav-links.is-open { transform: translate3d(0,0,0); opacity: 1; visibility: visible; pointer-events: auto; }
  .mobile-menu-head { display: flex; align-items: end; justify-content: space-between; padding: 0 4px 22px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .mobile-menu-head span { color: var(--copper-2); font: 400 26px Georgia, serif; }
  .mobile-menu-head small { color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
  .nav-item { min-width: 0; height: auto; min-height: 65px; padding: 13px 4px; display: grid; grid-template-columns: 1fr auto; justify-content: stretch; text-align: left; border-bottom: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.84); }
  .is-scrolled .nav-item { color: rgba(255,255,255,.84); }
  .nav-item > span { font: 400 19px Georgia, serif; }
  .nav-item > small { display: block; color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
  .nav-catalog > small { color: var(--copper-2); }
  .nav-item:after, .nav-product:after { display: none; }
  .nav-item:hover, .nav-item.active, .is-scrolled .nav-item:hover, .is-scrolled .nav-item.active { color: white; background: transparent; }
  .nav-item.active > span { color: var(--copper-2); }
  .nav-product { display: block; border-bottom: 1px solid rgba(255,255,255,.11); }
  .nav-product-trigger { width: 100%; min-width: 0; min-height: 65px; height: auto; padding: 13px 4px; justify-content: space-between; color: rgba(255,255,255,.84); }
  .is-scrolled .nav-product-trigger, .is-scrolled .nav-product.active .nav-product-trigger { color: rgba(255,255,255,.84); background: transparent; }
  .nav-product:hover .nav-product-trigger,
  .nav-product:focus-within .nav-product-trigger,
  .nav-product.is-open .nav-product-trigger,
  .is-scrolled .nav-product:hover .nav-product-trigger,
  .is-scrolled .nav-product:focus-within .nav-product-trigger,
  .is-scrolled .nav-product.is-open .nav-product-trigger { color: #fff; background: rgba(255,255,255,.035); }
  .nav-product-trigger > span { font: 400 19px Georgia, serif; }
  .product-menu { position: static; width: 100%; max-height: 0; padding: 0; display: block; color: white; background: transparent; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; overflow: hidden; transition: max-height .35s ease, padding .35s ease; backdrop-filter: none; }
  .nav-product.is-open .product-menu { max-height: 310px; padding: 0 0 13px; }
  .product-menu-intro { display: none; }
  .product-menu-list > a { min-height: 53px; grid-template-columns: 27px 1fr 15px; padding: 3px 8px; border-color: rgba(255,255,255,.09); }
  .product-menu-list > a:hover { padding-left: 12px; background: rgba(255,255,255,.04); }
  .product-menu-list > a strong { color: white; font-size: 14px; }
  .product-menu-list > a small { color: rgba(255,255,255,.35); }
  .nav-contact { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 11px; margin: 25px 0 15px; }
  .nav-contact-icon { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: var(--copper-2); }
  .nav-contact div { display: flex; flex-direction: column; gap: 4px; }
  .nav-contact small { color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
  .nav-contact a { font-size: 12px; }
  .nav-cta { width: 100%; min-height: 58px; margin: auto 0 0; padding: 10px 18px; }
  .hero { height: auto; min-height: 760px; }
  .hero-copy { width: min(640px, 88%); }
  .hero-stat-card { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.12); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; max-width: 620px; margin: auto; }
  .product-card, .product-card:nth-child(4), .product-card:nth-child(5) { grid-column: auto; }
  .product-card { min-height: 520px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-image { min-height: 590px; }
  .showcase-copy { padding: 80px max(32px, calc((100vw - 760px)/2)); }
  .local-seo-intro { grid-template-columns: 1fr; gap: 25px; }
  .local-seo-grid { grid-template-columns: 1fr; }
  .local-seo-grid article { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .local-seo-grid article:last-child { border-bottom: 0; }
  .local-seo-actions { align-items: flex-start; flex-direction: column; }
  .consult-grid { grid-template-columns: 1fr; gap: 55px; }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-heading { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > p { display: none; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 30px); }
  .topbar-inner { justify-content: center; height: 32px; }
  .topbar-message > span:not(.topbar-badge), .topbar-actions > span { display: none; }
  .topbar-message { gap: 0; }
  .topbar-actions { margin-left: auto; }
  .site-header { top: 32px; }
  .site-header.is-scrolled { top: 0; }
  .site-header.menu-active { top: 0; }
  .nav-wrap { height: 72px; }
  .site-header .brand { min-width: 0; max-width: calc(100vw - 94px); gap: 9px; overflow: hidden; }
  .site-header .brand-copy { min-width: 0; flex: 1; gap: 4px; overflow: hidden; }
  .site-header .brand-copy strong { font-size: 14px; letter-spacing: .17em; line-height: 1; }
  .site-header .brand-copy small { display: block; max-width: 100%; overflow: hidden; font-size: 6px; line-height: 1.2; letter-spacing: .3em; }
  .site-header .brand-copy .brand-label-desktop { display: none; }
  .site-header .brand-copy .brand-label-mobile { display: block; white-space: nowrap; }
  .site-header .premium-mark { width: 42px; min-width: 42px; height: 42px; }
  .site-header .premium-mark .premium-roof { left: 10px; top: 10px; width: 21px; }
  .site-header .premium-mark b { left: 12px; bottom: 7px; font-size: 20px; }
  .site-header .premium-mark em { right: 9px; bottom: 8px; }
  .site-header .menu-button { width: 48px; min-width: 48px; padding-right: 3px; }
  .nav-links { width: 100%; padding: calc(86px + env(safe-area-inset-top)) 20px calc(20px + env(safe-area-inset-bottom)); }
  .mobile-menu-head small { display: none; }
  .hero { min-height: 760px; }
  .hero-visual img { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,12,14,.91), rgba(8,12,14,.51)), linear-gradient(0deg, rgba(0,0,0,.45), transparent); }
  .hero-inner { height: auto; min-height: 760px; padding-top: 104px; padding-bottom: 48px; align-items: center; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(45px, 14.3vw, 66px); line-height: 1; }
  .hero-copy > p { font-size: 14px; line-height: 1.7; max-width: 95%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 12px; flex-wrap: wrap; font-size: 9px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 105px; padding: 18px 14px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .proof-grid strong { font-size: 26px; }
  .proof-grid span { font-size: 8px; }
  .section { padding: 82px 0; }
  .section-heading h2 { font-size: 42px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 40px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 290px; }
  .benefit-icon { margin: 30px 0 20px; }
  .product-card { min-height: 540px; }
  .product-photo { height: 245px; }
  .showcase-image { min-height: 430px; }
  .showcase-image > img { object-position: 68% center; }
  .showcase-copy { padding: 70px 22px; }
  .showcase-copy h2 { font-size: 42px; }
  .local-seo-intro { margin-bottom: 38px; }
  .local-seo-intro h2 { font-size: 42px; }
  .local-seo-grid article { min-height: 195px; padding: 27px 23px; }
  .local-seo-actions { padding: 26px 22px; }
  .local-seo-actions .button { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid > div, .process-grid > div + div { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .process-grid h3 { margin: 18px 0 8px; }
  .consult-section { padding: 75px 0; }
  .consult-copy h2 { font-size: 43px; }
  .consult-card { padding: 26px 18px; }
  .choice-row { grid-template-columns: repeat(2, 1fr); }
  .selection-summary { flex-direction: column; gap: 7px; }
  .selection-summary strong { text-align: left; }
  .faq-heading h2 { font-size: 43px; }
  .faq-list summary { grid-template-columns: 30px 1fr 18px; font-size: 17px; gap: 9px; min-height: 82px; }
  .faq-list details p { margin: -2px 20px 26px 39px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-links { gap: 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; padding: 20px 0 84px; }
  .floating-cta { bottom: 15px; right: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition-duration: .01ms !important; }
}

/* Premium AM brand lockup */
.premium-mark { position: relative; width: 46px; height: 46px; display: block; border: 0; border-radius: 0; background: rgba(13,15,14,.76); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); overflow: hidden; font-family: Georgia, serif; }
.premium-mark:before { content: ''; position: absolute; inset: 4px; border: 1px solid rgba(211,141,97,.48); }
.premium-mark .premium-roof { position: absolute; z-index: 2; left: 11px; top: 11px; width: 23px; height: 10px; border-left: 1.5px solid #e1a47d; border-top: 1.5px solid #e1a47d; transform: skewX(-34deg); }
.premium-mark b { position: absolute; z-index: 2; left: 13px; bottom: 7px; font: 400 22px/.9 Georgia, serif; color: white; }
.premium-mark em { position: absolute; z-index: 2; right: 10px; bottom: 8px; font: normal 700 7px/1 Arial, sans-serif; color: #e1a47d; letter-spacing: .05em; }
.site-header.is-scrolled .premium-mark { background: #171918; color: white; box-shadow: none; }
.brand:hover .premium-mark { transform: none; }
.brand:hover .premium-mark:before { border-color: rgba(211,141,97,.9); }
.brand-footer .premium-mark, .admin-brand .premium-mark { background: #171918; }

/* Public article journal */
.journal-page, .article-detail-page { min-height: 100vh; background: #f3f0e8; color: var(--ink); }
.journal-nav { height: 94px; padding: 0 max(30px, calc((100vw - 1240px)/2)); display: flex; align-items: center; justify-content: space-between; background: #151816; color: white; border-bottom: 1px solid rgba(255,255,255,.12); }
.journal-nav .brand-copy small { color: var(--copper-2); }
.journal-nav nav { display: flex; align-items: center; gap: 32px; font-size: 11px; }
.journal-nav nav > a:not(.journal-nav-cta) { color: rgba(255,255,255,.6); }
.journal-nav nav > a.active, .journal-nav nav > a:hover { color: white; }
.journal-nav-cta { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; background: var(--copper); color: white; font-weight: 700; letter-spacing: .05em; }
.journal-hero { min-height: 535px; display: grid; grid-template-columns: 1.02fr .98fr; background: #151816; color: white; overflow: hidden; }
.journal-hero-copy { padding: 105px max(34px, calc((100vw - 1240px)/2)); padding-right: 60px; }
.journal-hero-copy > span { color: var(--copper-2); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.journal-hero-copy h1 { margin: 24px 0; font: 400 clamp(54px, 6vw, 84px)/.98 Georgia, serif; letter-spacing: -.045em; }
.journal-hero-copy h1 em { color: #d69b76; font-weight: 400; }
.journal-hero-copy p { max-width: 580px; color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.75; }
.journal-hero-art { min-height: 535px; position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #29302e, #161918 68%); overflow: hidden; }
.journal-hero-art:before { content: ''; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.journal-hero-art > span { position: absolute; right: 33px; bottom: 27px; color: rgba(255,255,255,.28); font-size: 8px; letter-spacing: .2em; }
.journal-roof-lines { width: 470px; height: 280px; display: flex; gap: 8px; transform: perspective(600px) rotateX(60deg) rotateZ(-14deg); filter: drop-shadow(0 35px 28px rgba(0,0,0,.35)); }
.journal-roof-lines i { flex: 1; background: linear-gradient(90deg, #f7f6f1, #bfc3bd 52%, #fff); border-radius: 27px 27px 2px 2px; }
.journal-content { width: min(1240px, calc(100% - 60px)); margin: 0 auto; padding: 105px 0 125px; }
.journal-section-head { display: flex; align-items: end; justify-content: space-between; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.journal-section-head span { color: var(--copper); font-size: 8px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.journal-section-head h2 { margin: 10px 0 0; font: 400 43px Georgia, serif; }
.journal-section-head > p { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 22px; padding-top: 42px; }
.journal-card-media { height: 278px; position: relative; display: block; overflow: hidden; background: #242825; }
.journal-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.journal-card:hover .journal-card-media img { transform: scale(1.04); }
.journal-card-index { position: absolute; left: 15px; top: 15px; width: 35px; height: 35px; display: grid; place-items: center; color: white; background: rgba(17,19,18,.72); backdrop-filter: blur(8px); font-size: 8px; }
.journal-card-placeholder { height: 100%; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(140deg, #333936, #171918); }
.journal-card-placeholder.tone-1 { background: linear-gradient(140deg, #d9d5ca, #8e9693); }
.journal-card-placeholder.tone-2 { background: linear-gradient(140deg, #635047, #1e2321); }
.journal-card-placeholder > span { color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .25em; }
.journal-card-placeholder > div { height: 150px; display: flex; gap: 5px; transform: perspective(450px) rotateX(58deg) rotateZ(-12deg); }
.journal-card-placeholder i { flex: 1; background: linear-gradient(90deg, #fcfcf8, #b9bdb7, #fff); border-radius: 17px 17px 2px 2px; }
.journal-card-body { padding: 24px 4px 0; }
.journal-card-body > span { color: var(--copper); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.journal-card-body h3 { margin: 13px 0 12px; font: 400 27px/1.12 Georgia, serif; }
.journal-card-body p { min-height: 64px; margin: 0 0 19px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.journal-read { min-width: 150px; padding: 12px 0; display: inline-flex; justify-content: space-between; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.journal-read b { color: var(--copper); }
.journal-empty { padding: 110px 20px; text-align: center; }
.journal-empty > span { color: var(--copper); font-size: 34px; }
.journal-empty h2 { font: 400 39px Georgia, serif; }
.journal-empty p { color: var(--muted); }
.journal-empty a { margin-top: 18px; display: inline-block; border-bottom: 1px solid var(--ink); padding-bottom: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.journal-footer { min-height: 130px; padding: 30px max(30px, calc((100vw - 1240px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: #101210; color: white; }
.journal-footer p, .journal-footer > a:last-child { color: rgba(255,255,255,.4); font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }

.journal-nav.detail { background: #f3f0e8; color: var(--ink); border-bottom-color: var(--line); }
.journal-nav.detail .premium-mark { background: #171918; color: white; }
.journal-nav.detail nav > a:not(.journal-nav-cta) { color: var(--muted); }
.article-detail-head { width: min(930px, calc(100% - 40px)); margin: 0 auto; padding: 105px 0 70px; text-align: center; }
.article-detail-head > span { color: var(--copper); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-detail-head h1 { margin: 25px 0; font: 400 clamp(48px, 6.5vw, 82px)/1.02 Georgia, serif; letter-spacing: -.045em; }
.article-detail-head p { max-width: 700px; margin: auto; color: var(--muted); font-size: 16px; line-height: 1.75; }
.article-detail-cover { width: min(1240px, calc(100% - 60px)); height: min(62vw, 680px); margin: 0 auto; background: #1d211f; overflow: hidden; }
.article-detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-detail-cover.has-image { height: auto; min-height: 0; padding: 24px; display: flex; align-items: center; justify-content: center; background: #e8e5de; overflow: visible; }
.article-detail-cover.has-image img { width: auto; max-width: 100%; height: auto; max-height: 1100px; object-fit: contain; }
.article-cover-placeholder { height: 100%; position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #2c322f, #111312); color: white; overflow: hidden; }
.article-cover-placeholder > span { position: absolute; left: 45px; top: 38px; font: 400 32px Georgia, serif; color: var(--copper-2); }
.article-cover-placeholder > small { position: absolute; right: 45px; bottom: 38px; color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .22em; }
.article-cover-placeholder > div { width: 65%; height: 56%; display: flex; gap: 9px; transform: perspective(800px) rotateX(58deg) rotateZ(-10deg); }
.article-cover-placeholder i { flex: 1; background: linear-gradient(90deg, #fff, #bec2bc 52%, #fff); border-radius: 32px 32px 3px 3px; }
.article-detail-grid { width: min(1000px, calc(100% - 60px)); margin: 0 auto; padding: 85px 0 110px; display: grid; grid-template-columns: 150px 1fr; gap: 85px; }
.article-detail-grid aside { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; gap: 12px; }
.article-detail-grid aside span { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 5px; }
.article-detail-grid aside a { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 10px; }
.article-prose { font: 400 18px/1.9 Georgia, serif; color: #343835; }
.article-prose p { margin: 0 0 30px; white-space: pre-line; }
.article-prose p:first-child:first-letter { float: left; margin: 7px 10px 0 0; color: var(--copper); font-size: 64px; line-height: .75; }
.article-detail-cta { padding: 100px 20px; text-align: center; background: #202422; color: white; }
.article-detail-cta > span { color: var(--copper-2); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.article-detail-cta h2 { max-width: 780px; margin: 22px auto 30px; font: 400 clamp(40px, 5vw, 64px)/1.05 Georgia, serif; }
.article-detail-cta a { min-width: 210px; min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: space-between; background: var(--copper); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 850px) {
  .journal-nav { padding: 0 20px; }
  .journal-nav nav > a:not(.journal-nav-cta) { display: none; }
  .journal-hero { grid-template-columns: 1fr; }
  .journal-hero-copy { padding: 80px 28px; }
  .journal-hero-art { min-height: 310px; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .article-detail-grid { grid-template-columns: 1fr; gap: 35px; }
  .article-detail-grid aside { position: static; flex-direction: row; }
}

@media (max-width: 560px) {
  .journal-nav { height: 78px; }
  .journal-nav .brand-copy small { max-width: 115px; }
  .journal-nav-cta { min-height: 40px; padding: 0 12px; font-size: 9px; }
  .journal-hero-copy h1 { font-size: 49px; }
  .journal-roof-lines { width: 330px; height: 200px; }
  .journal-content { width: calc(100% - 30px); padding: 75px 0 90px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-section-head h2 { font-size: 35px; }
  .journal-card-media { height: 250px; }
  .journal-footer { align-items: flex-start; flex-direction: column; }
  .article-detail-head { padding: 75px 0 45px; }
  .article-detail-head h1 { font-size: 45px; }
  .article-detail-cover { width: calc(100% - 30px); height: 330px; }
  .article-detail-cover.has-image { height: auto; padding: 10px; }
  .article-detail-cover.has-image img { width: auto; max-width: 100%; height: auto; max-height: none; }
  .article-detail-grid { width: calc(100% - 36px); padding: 60px 0 80px; }
  .article-prose { font-size: 17px; }
}

/* Premium admin authentication */
.admin-auth-shell { min-height: 100vh; position: relative; display: grid; grid-template-columns: 1fr minmax(430px, 520px); gap: 6vw; align-items: center; padding: 120px max(38px, 6vw) 70px; color: white; background: #111412; overflow: hidden; }
.admin-auth-shell:before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,12,11,.96) 0%, rgba(9,12,11,.78) 43%, rgba(9,12,11,.38) 72%, rgba(9,12,11,.55)), url('/images/hero-alderon.webp') 67% center / cover; opacity: .82; }
.admin-auth-shell:after { content: ''; position: absolute; width: 620px; height: 620px; left: -260px; bottom: -350px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.admin-auth-brand { position: absolute; z-index: 2; left: max(38px, 6vw); right: max(38px, 6vw); top: 36px; display: flex; align-items: center; justify-content: space-between; }
.admin-auth-brand > div { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.admin-auth-brand > div span { color: var(--copper-2); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.admin-auth-brand > div small { color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .08em; }
.admin-auth-story { position: relative; z-index: 1; max-width: 730px; }
.admin-auth-kicker { display: flex; align-items: center; gap: 12px; color: var(--copper-2); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.admin-auth-kicker span { width: 34px; height: 1px; background: currentColor; }
.admin-auth-story h2 { margin: 25px 0; font: 400 clamp(54px, 6vw, 88px)/.98 Georgia, serif; letter-spacing: -.05em; }
.admin-auth-story h2 em { color: #d79a74; font-weight: 400; }
.admin-auth-story > p { max-width: 610px; color: rgba(255,255,255,.54); font-size: 14px; line-height: 1.75; }
.admin-auth-features { margin-top: 45px; display: flex; flex-wrap: wrap; gap: 26px; }
.admin-auth-features span { color: rgba(255,255,255,.52); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.admin-auth-features b { color: var(--copper-2); margin-right: 7px; }
.admin-auth-card { position: relative; z-index: 2; width: 100%; color: var(--ink); background: rgba(247,245,239,.97); box-shadow: 0 35px 90px rgba(0,0,0,.34); backdrop-filter: blur(22px); }
.admin-auth-card-head { height: 54px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.admin-auth-card-head i { color: var(--copper); font-style: normal; }
.admin-auth-content { padding: 42px 48px 45px; display: flex; flex-direction: column; }
.admin-auth-seal { width: 58px; height: 58px; margin-bottom: 28px; display: grid; place-items: center; position: relative; background: #1a1d1b; color: white; }
.admin-auth-seal:before { content: ''; position: absolute; inset: 5px; border: 1px solid rgba(211,141,97,.5); }
.admin-auth-seal b { font: 400 24px Georgia, serif; }
.admin-auth-seal span { position: absolute; bottom: 7px; color: var(--copper-2); font-size: 5px; letter-spacing: .18em; }
.admin-auth-content h1 { margin: 0 0 14px; font: 400 37px/1.05 Georgia, serif; letter-spacing: -.03em; }
.admin-auth-content > p { margin: 0 0 27px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.admin-identity-chip { margin-bottom: 23px; padding: 12px 14px; display: flex; justify-content: space-between; gap: 12px; background: #eae7df; font-size: 8px; }
.admin-identity-chip span { color: var(--muted); text-transform: uppercase; letter-spacing: .09em; }
.admin-identity-chip b { overflow: hidden; text-overflow: ellipsis; }
.admin-field { display: block; margin-bottom: 18px; }
.admin-field > span, .admin-security-grid form > label > span { display: block; margin-bottom: 8px; color: #555b57; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.admin-field input, .admin-security-grid input { width: 100%; height: 49px; padding: 0 14px; border: 1px solid rgba(23,25,24,.18); outline: 0; color: var(--ink); background: rgba(255,255,255,.55); transition: border .2s, box-shadow .2s; }
.admin-field input:focus, .admin-security-grid input:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(189,116,74,.08); }
.admin-password-input { position: relative; }
.admin-password-input input { padding-right: 85px; }
.admin-password-input button { position: absolute; right: 5px; top: 5px; bottom: 5px; padding: 0 11px; border: 0; color: var(--copper); background: transparent; cursor: pointer; font-size: 8px; text-transform: uppercase; }
.admin-password-hint { color: var(--muted); font-size: 8px; margin: -5px 0 17px; }
.admin-form-error { margin: 0 0 15px; padding: 11px 13px; color: #8a352d; background: #f6ded8; border-left: 2px solid #b84c41; font-size: 10px; line-height: 1.5; }
.admin-auth-primary { width: 100%; min-height: 54px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border: 0; color: white; background: var(--copper); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.admin-auth-primary:disabled { opacity: .6; cursor: wait; }
.admin-auth-content > small { margin-top: 14px; color: var(--muted); text-align: center; font-size: 8px; line-height: 1.5; }
.admin-back-link { margin: 19px auto 0; color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.admin-auth-foot { position: absolute; z-index: 1; left: max(38px, 6vw); right: max(38px, 6vw); bottom: 25px; display: flex; justify-content: space-between; color: rgba(255,255,255,.27); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }

/* Admin dashboard */
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 248px 1fr; background: #edebe5; color: var(--ink); }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 28px 18px 22px; display: flex; flex-direction: column; color: white; background: #171a18; }
.admin-brand { padding: 0 9px 28px; border-bottom: 1px solid rgba(255,255,255,.11); }
.admin-sidebar-label { margin: 27px 10px 10px; color: rgba(255,255,255,.3); font-size: 7px; letter-spacing: .17em; text-transform: uppercase; }
.admin-sidebar-label.settings { margin-top: 30px; }
.admin-sidebar nav { display: flex; flex-direction: column; gap: 3px; }
.admin-sidebar nav button, .admin-sidebar nav a { width: 100%; min-height: 47px; padding: 0 11px; display: grid; grid-template-columns: 25px 1fr auto; gap: 8px; align-items: center; border: 0; color: rgba(255,255,255,.57); background: transparent; cursor: pointer; text-align: left; font-size: 10px; transition: .2s; }
.admin-sidebar nav button i, .admin-sidebar nav a i { color: rgba(255,255,255,.25); font-style: normal; font-size: 7px; }
.admin-sidebar nav button b, .admin-sidebar nav a b { min-width: 20px; color: var(--copper-2); font-size: 9px; font-weight: 400; text-align: right; }
.admin-sidebar nav button:hover, .admin-sidebar nav a:hover, .admin-sidebar nav button.active { color: white; background: rgba(255,255,255,.06); }
.admin-sidebar nav button.active { box-shadow: inset 2px 0 var(--copper); }
.admin-sidebar-user { margin-top: auto; padding: 18px 7px 0; display: grid; grid-template-columns: 34px 1fr 24px; gap: 9px; align-items: center; border-top: 1px solid rgba(255,255,255,.11); }
.admin-sidebar-user > span { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--copper); font: 400 16px Georgia, serif; }
.admin-sidebar-user > div { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.admin-sidebar-user strong { font-size: 9px; text-transform: capitalize; }
.admin-sidebar-user small { overflow: hidden; color: rgba(255,255,255,.34); font-size: 7px; text-overflow: ellipsis; }
.admin-sidebar-user button { border: 0; color: rgba(255,255,255,.5); background: none; cursor: pointer; }
.admin-workspace { min-width: 0; }
.admin-topbar { height: 70px; padding: 0 38px; display: flex; align-items: center; justify-content: space-between; background: rgba(247,245,239,.8); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.admin-topbar > div:first-child { color: var(--muted); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.admin-topbar > div:first-child b { color: var(--ink); margin-left: 8px; }
.admin-topbar-actions { display: flex; align-items: center; gap: 25px; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.admin-topbar-actions span { color: var(--muted); }
.admin-topbar-actions span i { width: 6px; height: 6px; margin-right: 6px; display: inline-block; border-radius: 50%; background: #5e9a6b; box-shadow: 0 0 0 4px rgba(94,154,107,.1); }
.admin-topbar-actions a { padding-bottom: 5px; border-bottom: 1px solid var(--ink); }
.admin-main { max-width: 1360px; margin: 0 auto; padding: 48px 45px 80px; }
.admin-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.admin-page-head.compact { margin-bottom: 34px; }
.admin-kicker { color: var(--copper); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.admin-page-head h1 { margin: 12px 0 10px; font: 400 clamp(42px, 4vw, 60px)/1 Georgia, serif; letter-spacing: -.04em; }
.admin-page-head h1 em { color: var(--copper); font-weight: 400; }
.admin-page-head p { margin: 0; color: var(--muted); font-size: 11px; }
.admin-primary-action { min-width: 176px; min-height: 49px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; color: white; background: var(--copper); cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.admin-primary-action.full { width: 100%; }
.admin-primary-action:disabled { opacity: .6; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(255,255,255,.22); }
.admin-stat-grid article { min-height: 180px; padding: 23px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.admin-stat-grid article > span { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.admin-stat-grid article strong { margin: auto 0 13px; font: 400 47px Georgia, serif; }
.admin-stat-grid article small { color: var(--muted); font-size: 8px; }
.admin-stat-grid article.accent { color: white; background: #202321; }
.admin-stat-grid article.accent > span, .admin-stat-grid article.accent small { color: rgba(255,255,255,.4); }
.admin-stat-grid article.accent strong { color: var(--copper-2); }
.admin-section-head { margin: 48px 0 20px; display: flex; align-items: end; justify-content: space-between; }
.admin-section-head h2 { margin: 0 0 6px; font: 400 27px Georgia, serif; }
.admin-section-head p { margin: 0; color: var(--muted); font-size: 9px; }
.admin-section-head button { padding: 8px 0; border: 0; border-bottom: 1px solid var(--ink); background: none; cursor: pointer; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.admin-table-wrap { border-top: 1px solid var(--line); }
.admin-table-head, .admin-table-row { display: grid; grid-template-columns: minmax(280px, 1.4fr) 110px 120px 120px; gap: 18px; align-items: center; }
.admin-table-head { min-height: 43px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.admin-table-row { min-height: 86px; border-bottom: 1px solid var(--line); transition: background .2s; }
.admin-table-row:hover { background: rgba(255,255,255,.38); }
.admin-table-row > div:first-child { min-width: 0; display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: center; }
.admin-article-index { width: 34px; height: 34px; display: grid; place-items: center; color: var(--copper); border: 1px solid var(--line); font-size: 8px; }
.admin-table-row > div:first-child div { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.admin-table-row strong { overflow: hidden; font: 400 15px Georgia, serif; text-overflow: ellipsis; white-space: nowrap; }
.admin-table-row small { overflow: hidden; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.admin-status { width: fit-content; padding: 6px 9px; font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.admin-status.published { color: #467453; background: #dce9df; }
.admin-status.draft { color: #816545; background: #eee2d2; }
.admin-table-row time { color: var(--muted); font-size: 8px; }
.admin-row-actions { display: flex; gap: 6px; }
.admin-row-actions button { padding: 7px 9px; border: 1px solid var(--line); color: var(--muted); background: transparent; cursor: pointer; font-size: 8px; }
.admin-row-actions button:hover { color: var(--ink); border-color: var(--ink); }
.admin-notice { margin-bottom: 25px; padding: 13px 16px; display: flex; justify-content: space-between; font-size: 10px; }
.admin-notice.success { color: #356043; background: #dbe9df; }
.admin-notice.error { color: #8a352d; background: #f5ddd8; }
.admin-notice button { border: 0; color: inherit; background: none; cursor: pointer; }
.admin-empty { padding: 95px 20px; text-align: center; border: 1px solid var(--line); }
.admin-empty > span { color: var(--copper); font-size: 29px; }
.admin-empty h2 { font: 400 35px Georgia, serif; }
.admin-empty p { color: var(--muted); font-size: 11px; }
.admin-empty button { margin-top: 17px; padding: 9px 0; border: 0; border-bottom: 1px solid var(--ink); background: none; cursor: pointer; font-size: 9px; text-transform: uppercase; }

.admin-editor-actions { display: flex; align-items: center; gap: 12px; }
.admin-editor-actions > button:first-child { padding: 14px 18px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 9px; text-transform: uppercase; }
.admin-editor-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 25px; }
.admin-editor-main { padding: 31px; background: rgba(255,255,255,.45); border: 1px solid var(--line); }
.admin-editor-main label { display: block; margin-bottom: 25px; }
.admin-editor-main label > span, .admin-side-card > span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.admin-editor-main input, .admin-editor-main textarea, .admin-side-card input { width: 100%; padding: 13px; border: 1px solid var(--line); outline: 0; color: var(--ink); background: rgba(255,255,255,.64); font: inherit; }
.admin-editor-main input { height: 53px; font: 400 20px Georgia, serif; }
.admin-editor-main textarea { resize: vertical; line-height: 1.65; }
.admin-editor-main textarea.excerpt { min-height: 100px; }
.admin-editor-main textarea.content { min-height: 390px; font-size: 13px; }
.admin-editor-main input:focus, .admin-editor-main textarea:focus, .admin-side-card input:focus { border-color: var(--copper); }
.admin-editor-side { display: flex; flex-direction: column; gap: 17px; }
.admin-side-card { padding: 21px; display: block; background: rgba(255,255,255,.45); border: 1px solid var(--line); }
.admin-side-card > small { display: block; margin-top: 12px; color: var(--muted); font-size: 8px; line-height: 1.5; }
.admin-side-card input { height: 43px; font-size: 9px; }
.admin-status-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.admin-status-choice button { min-height: 41px; border: 1px solid var(--line); color: var(--muted); background: transparent; cursor: pointer; font-size: 8px; text-transform: uppercase; }
.admin-status-choice button.active { color: white; border-color: var(--copper); background: var(--copper); }
.admin-side-card.preview { min-height: 190px; display: flex; flex-direction: column; }
.admin-side-card.preview strong { font: 400 22px/1.15 Georgia, serif; }
.admin-side-card.preview p { color: var(--muted); font-size: 9px; line-height: 1.6; }
.admin-side-card.preview i { width: fit-content; margin-top: auto; padding: 5px 8px; color: var(--copper); border: 1px solid rgba(189,116,74,.35); font-style: normal; font-size: 7px; text-transform: uppercase; }

.admin-security-grid { display: grid; grid-template-columns: minmax(380px, 570px) 330px; gap: 28px; }
.admin-security-grid form, .admin-security-grid aside { padding: 34px; background: rgba(255,255,255,.46); border: 1px solid var(--line); }
.admin-security-intro { padding-bottom: 23px; margin-bottom: 25px; border-bottom: 1px solid var(--line); }
.admin-security-intro > span { color: var(--copper); font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.admin-security-intro h2 { margin: 12px 0 9px; font: 400 27px Georgia, serif; }
.admin-security-intro p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.admin-security-grid form > label { display: block; margin-bottom: 19px; }
.admin-security-grid aside { color: white; background: #202321; }
.admin-security-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--copper-2); border: 1px solid rgba(255,255,255,.18); font: 400 24px Georgia, serif; }
.admin-security-grid aside h3 { margin: 24px 0 17px; font: 400 25px Georgia, serif; }
.admin-security-grid aside ul { margin: 0; padding: 0; list-style: none; }
.admin-security-grid aside li { padding: 11px 0; color: rgba(255,255,255,.56); border-bottom: 1px solid rgba(255,255,255,.1); font-size: 9px; }
.admin-security-grid aside li:before { content: '✓'; color: var(--copper-2); margin-right: 8px; }
.admin-security-grid aside p { margin-top: 22px; color: rgba(255,255,255,.36); font-size: 8px; line-height: 1.6; }

@media (max-width: 1050px) {
  .admin-auth-shell { grid-template-columns: 1fr minmax(390px, 460px); gap: 35px; }
  .admin-auth-story h2 { font-size: 58px; }
  .admin-shell { grid-template-columns: 205px 1fr; }
  .admin-stat-grid { grid-template-columns: 1fr 1fr; }
  .admin-table-head, .admin-table-row { grid-template-columns: minmax(240px, 1fr) 90px 100px; }
  .admin-table-head > span:last-child, .admin-table-row > div:last-child { display: none; }
  .admin-editor-grid { grid-template-columns: 1fr; }
  .admin-editor-side { display: grid; grid-template-columns: 1fr 1fr; }
  .admin-side-card.preview { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .admin-auth-shell { grid-template-columns: 1fr; padding: 115px 18px 80px; }
  .admin-auth-story { display: none; }
  .admin-auth-card { max-width: 520px; margin: auto; }
  .admin-auth-brand { left: 22px; right: 22px; top: 24px; }
  .admin-auth-brand > div { display: none; }
  .admin-auth-foot { left: 22px; right: 22px; }
  .admin-shell { display: block; padding-bottom: 76px; }
  .admin-sidebar { position: fixed; z-index: 20; top: auto; left: 0; right: 0; bottom: 0; width: auto; height: 70px; padding: 8px 12px; flex-direction: row; align-items: center; }
  .admin-brand, .admin-sidebar-label, .admin-sidebar nav:nth-of-type(2), .admin-sidebar-user { display: none; }
  .admin-sidebar nav { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
  .admin-sidebar nav button { min-height: 54px; display: flex; flex-direction: column; justify-content: center; gap: 5px; text-align: center; }
  .admin-sidebar nav button i { display: none; }
  .admin-sidebar nav button b { display: none; }
  .admin-sidebar nav button.active { box-shadow: inset 0 -2px var(--copper); }
  .admin-topbar { height: 58px; padding: 0 18px; }
  .admin-topbar-actions span { display: none; }
  .admin-main { padding: 35px 18px 60px; }
  .admin-page-head { align-items: stretch; flex-direction: column; }
  .admin-primary-action { width: 100%; }
  .admin-table-head { display: none; }
  .admin-table-row { padding: 14px 0; grid-template-columns: 1fr auto; gap: 12px; }
  .admin-table-row > .admin-status { grid-column: 2; grid-row: 1; }
  .admin-table-row > time, .admin-table-row > .admin-row-actions { display: none; }
  .admin-table-row > div:first-child { grid-column: 1; grid-row: 1; }
  .admin-editor-side { display: flex; }
  .admin-security-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .admin-auth-content { padding: 33px 24px 35px; }
  .admin-auth-content h1 { font-size: 32px; }
  .admin-auth-foot > span:last-child { display: none; }
  .admin-stat-grid { grid-template-columns: 1fr 1fr; }
  .admin-stat-grid article { min-height: 145px; padding: 17px; }
  .admin-stat-grid article strong { font-size: 38px; }
  .admin-page-head h1 { font-size: 42px; }
  .admin-editor-main, .admin-security-grid form, .admin-security-grid aside { padding: 23px 18px; }
  .admin-editor-main textarea.content { min-height: 330px; }
}

/* PHP admin overrides */
.admin-auth-shell:before { background-image: linear-gradient(90deg, rgba(9,12,11,.96) 0%, rgba(9,12,11,.78) 43%, rgba(9,12,11,.38) 72%, rgba(9,12,11,.55)), url('../images/hero-alderon.webp'); }
.admin-sidebar nav a.active { color: white; background: rgba(255,255,255,.06); box-shadow: inset 2px 0 var(--copper); }
.admin-editor-actions > a { padding: 14px 18px; border: 1px solid var(--line); font-size: 9px; text-transform: uppercase; }
.admin-row-actions form { margin: 0; }
.admin-row-actions .admin-link, .admin-row-actions .admin-delete { padding: 7px 9px; border: 1px solid var(--line); }
.admin-side-card select { width: 100%; height: 43px; padding: 0 10px; border: 1px solid var(--line); background: rgba(255,255,255,.64); }
.choice-row button.active { border-color: var(--copper); background: #fffaf5; color: var(--ink); box-shadow: inset 0 -2px var(--copper); }
@media (max-width: 720px) { .admin-sidebar nav a.active { box-shadow: inset 0 -2px var(--copper); } }

/* Mobile navigation and consultation polish */
@media (max-width: 640px) {
  .mobile-menu-head { padding: 0 4px 15px; }
  .mobile-menu-head span { font-size: 24px; }
  .nav-item, .nav-product-trigger { min-height: 56px; padding-top: 10px; padding-bottom: 10px; }
  .nav-item > span, .nav-product-trigger > span { font-size: 18px; }
  .nav-item > small { font-size: 7px; letter-spacing: .1em; }
  .nav-contact { margin: 16px 0 11px; }
  .nav-cta { position: sticky; z-index: 4; bottom: calc(0px + env(safe-area-inset-bottom)); min-height: 56px; margin: 0; box-shadow: 0 -12px 30px rgba(21,24,22,.72); }
  .consult-grid { gap: 38px; }
  .consult-card { padding: 24px 18px; }
  .field-group + .field-group { margin-top: 24px; }
  .choice-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .choice-row button { min-height: 48px; padding: 9px 7px; line-height: 1.35; }
  [data-choice-group="product"] button:last-child,
  [data-choice-group="project"] button:last-child { grid-column: 1 / -1; }
  .consult-card > .button { width: 100%; min-height: 54px; margin-top: 0; }
}

/* Premium photographic benefit cards */
.benefit-card { min-height: 450px; padding: 0; overflow: hidden; }
.benefit-media { position: relative; width: 100%; height: 220px; overflow: hidden; background: #272b29; }
.benefit-media:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,13,12,.06), rgba(10,13,12,.42)); pointer-events: none; }
.benefit-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.benefit-card:hover .benefit-media img { transform: scale(1.045); }
.benefit-media .benefit-number { position: absolute; z-index: 2; left: 18px; top: 17px; width: 34px; height: 34px; display: grid; place-items: center; color: white; background: rgba(17,20,18,.72); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); }
.benefit-content { flex: 1; padding: 27px 25px 30px; display: flex; flex-direction: column; justify-content: flex-end; }
.benefit-content h3 { margin: 0 0 13px; }
.benefit-card.featured .benefit-media img { filter: saturate(.9) contrast(1.03); }
@media (max-width: 640px) {
  .benefit-card { min-height: 0; }
  .benefit-media { height: 235px; }
  .benefit-content { min-height: 165px; padding: 25px 22px 28px; }
}

/* Catalog library */
.catalog-page { min-height: 100vh; color: var(--ink); background: #f3f0e8; }
.catalog-hero { padding: 105px 0 100px; color: white; background: radial-gradient(circle at 82% 18%, #3b433f 0, #1b1f1d 42%, #121412 75%); overflow: hidden; }
.catalog-hero-inner { position: relative; }
.catalog-hero-inner::after { content: 'PDF'; position: absolute; right: 0; top: -85px; color: rgba(255,255,255,.025); font: 700 clamp(170px, 25vw, 330px)/1 Arial, sans-serif; letter-spacing: -.09em; pointer-events: none; }
.catalog-hero h1 { position: relative; z-index: 1; margin: 24px 0 23px; max-width: 850px; font: 400 clamp(52px, 7vw, 92px)/.98 Georgia, serif; letter-spacing: -.05em; }
.catalog-hero h1 em { color: var(--copper-2); font-weight: 400; }
.catalog-hero p { position: relative; z-index: 1; max-width: 680px; margin: 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.75; }
.catalog-library { padding: 105px 0 120px; }
.catalog-library-head { display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: end; margin-bottom: 55px; }
.catalog-library-head span { color: var(--copper); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.catalog-library-head h2 { margin: 15px 0 0; font: 400 clamp(38px, 4.6vw, 61px)/1.05 Georgia, serif; letter-spacing: -.04em; }
.catalog-library-head > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.catalog-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.catalog-card.featured { grid-column: 1 / -1; min-height: 440px; display: grid; grid-template-columns: 1.12fr .88fr; }
.catalog-card-media { position: relative; height: 260px; display: block; overflow: hidden; background: #dfe3df; }
.catalog-card.featured .catalog-card-media { height: 100%; min-height: 440px; }
.catalog-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(11,14,12,.38)); pointer-events: none; }
.catalog-card-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease; }
.catalog-card-media:hover img { transform: scale(1.035); }
.catalog-card-media > span { position: absolute; z-index: 1; left: 19px; top: 18px; width: 36px; height: 36px; display: grid; place-items: center; color: white; background: rgba(17,20,18,.75); border: 1px solid rgba(255,255,255,.2); font-size: 9px; backdrop-filter: blur(8px); }
.catalog-card-body { flex: 1; padding: 29px 30px 31px; display: flex; flex-direction: column; }
.catalog-card.featured .catalog-card-body { padding: 49px 42px 40px; }
.catalog-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.catalog-card-meta > span { color: var(--copper); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.catalog-card-meta small { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.catalog-card h2 { margin: 25px 0 14px; font: 400 31px/1.05 Georgia, serif; }
.catalog-card.featured h2 { margin-top: auto; font-size: 43px; }
.catalog-card p { margin: 0 0 28px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.catalog-open { width: 100%; margin-top: auto; padding: 17px 0 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.catalog-open b { color: var(--copper); font-size: 14px; }

@media (max-width: 760px) {
  .catalog-hero { padding: 82px 0 75px; }
  .catalog-hero-inner::after { right: -12px; top: -35px; font-size: 145px; }
  .catalog-hero h1 { font-size: 52px; }
  .catalog-hero p { font-size: 13px; }
  .catalog-library { padding: 75px 0 85px; }
  .catalog-library-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .catalog-library-head h2 { font-size: 42px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card.featured { grid-column: auto; min-height: 0; display: flex; }
  .catalog-card-media, .catalog-card.featured .catalog-card-media { height: 245px; min-height: 0; }
  .catalog-card-body, .catalog-card.featured .catalog-card-body { padding: 27px 23px 29px; }
  .catalog-card.featured h2 { margin-top: 24px; font-size: 34px; }
  .catalog-card h2 { font-size: 29px; }
  .catalog-card-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
}

/* Katalog brosur: layout putih sederhana mengikuti tampilan katalog resmi. */
.brochure-page {
  min-height: 100vh;
  margin: 0;
  color: #004b70;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
.brochure-main {
  width: min(100% - 36px, 900px);
  margin: 0 auto;
  padding: 27px 0 42px;
}
.brochure-heading {
  text-align: center;
}
.brochure-heading h1 {
  margin: 0 0 4px;
  color: #004b70;
  font: 700 28px/1.2 Arial, Helvetica, sans-serif;
}
.brochure-heading p {
  margin: 0;
  color: #004b70;
  font-size: 15px;
  line-height: 1.5;
}
.brochure-heading h2 {
  margin: 36px 0 35px;
  color: #004b70;
  font: 700 22px/1.2 Arial, Helvetica, sans-serif;
}
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 59px;
  align-items: start;
}
.brochure-item {
  grid-column: span 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brochure-item-4 { grid-column: 2 / span 2; }
.brochure-item-5 { grid-column: 4 / span 2; }
.brochure-cover {
  width: 142px;
  aspect-ratio: 400 / 566;
  display: block;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 4px 7px rgba(0, 43, 66, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brochure-cover:hover,
.brochure-cover:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 43, 66, .2);
}
.brochure-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.brochure-button {
  width: 190px;
  min-height: 35px;
  margin-top: 28px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #008bce;
  background: #fff;
  border: 1px solid #0099e5;
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
  transition: color .2s ease, background .2s ease;
}
.brochure-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brochure-button:hover,
.brochure-button:focus-visible {
  color: #fff;
  background: #008bce;
}

@media (max-width: 760px) {
  .brochure-main { width: min(100% - 30px, 620px); padding-top: 30px; }
  .brochure-heading h1 { font-size: 25px; }
  .brochure-heading p { max-width: 480px; margin-inline: auto; font-size: 14px; }
  .brochure-heading h2 { margin: 31px 0 31px; font-size: 20px; }
  .brochure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 20px; }
  .brochure-item,
  .brochure-item-4,
  .brochure-item-5 { grid-column: auto; }
  .brochure-item-5 { grid-column: 1 / -1; }
  .brochure-cover { width: 160px; }
  .brochure-button { width: min(100%, 205px); }
}

@media (max-width: 520px) {
  .brochure-main { width: min(100% - 28px, 390px); padding: 26px 0 38px; }
  .brochure-heading h1 { font-size: 23px; }
  .brochure-heading p { font-size: 13px; line-height: 1.45; }
  .brochure-heading h2 { margin: 29px 0 30px; font-size: 19px; }
  .brochure-grid { grid-template-columns: 1fr; row-gap: 45px; }
  .brochure-item,
  .brochure-item-4,
  .brochure-item-5 { grid-column: 1; }
  .brochure-cover { width: min(58vw, 205px); }
  .brochure-button { width: min(100%, 230px); margin-top: 22px; font-size: 13px; }
}

/* Admin readability scale — comfortable on desktop, laptop, and mobile. */
.admin-shell { font-size: 14px; }
.admin-sidebar-label { font-size: 9px; }
.admin-sidebar nav button, .admin-sidebar nav a { min-height: 50px; font-size: 13px; }
.admin-sidebar nav button i, .admin-sidebar nav a i { font-size: 9px; }
.admin-sidebar nav button b, .admin-sidebar nav a b { font-size: 12px; }
.admin-sidebar-user strong { font-size: 12px; }
.admin-sidebar-user small { font-size: 10px; }
.admin-topbar > div:first-child, .admin-topbar-actions { font-size: 10px; }
.admin-kicker { font-size: 10px; }
.admin-page-head p { font-size: 14px; line-height: 1.6; }
.admin-primary-action { min-height: 52px; padding-inline: 19px; font-size: 11px; }
.admin-stat-grid article > span { font-size: 10px; }
.admin-stat-grid article small { font-size: 11px; line-height: 1.45; }
.admin-section-head p { font-size: 12px; }
.admin-section-head button, .admin-section-head .admin-link { font-size: 10px; }
.admin-table-head { font-size: 9px; }
.admin-article-index { font-size: 10px; }
.admin-table-row strong { font-size: 18px; }
.admin-table-row small { font-size: 10px; }
.admin-status { font-size: 9px; }
.admin-table-row time { font-size: 10px; }
.admin-row-actions button, .admin-row-actions .admin-link, .admin-row-actions .admin-delete { font-size: 10px; }
.admin-notice { font-size: 12px; line-height: 1.5; }
.admin-empty p { font-size: 13px; }
.admin-empty button, .admin-empty .admin-link { font-size: 11px; }
.admin-editor-actions > a, .admin-editor-actions > button:first-child { font-size: 11px; }
.admin-editor-main label > span, .admin-side-card > span { font-size: 10px; }
.admin-editor-main textarea.content { font-size: 15px; }
.admin-editor-main textarea.excerpt { font-size: 14px; }
.admin-side-card > small { font-size: 11px; }
.admin-side-card input, .admin-side-card select { font-size: 13px; }
.admin-status-choice button { font-size: 10px; }
.admin-side-card.preview p { font-size: 12px; }
.admin-side-card.preview i { font-size: 9px; }
.admin-security-intro > span { font-size: 10px; }
.admin-security-intro p { font-size: 12px; }
.admin-security-grid aside li { font-size: 12px; }
.admin-security-grid aside p { font-size: 11px; }
.admin-auth-brand > div span, .admin-auth-brand > div small { font-size: 10px; }
.admin-auth-kicker { font-size: 11px; }
.admin-auth-features span { font-size: 11px; }
.admin-auth-card-head { font-size: 10px; }
.admin-auth-content > p { font-size: 14px; }
.admin-identity-chip { font-size: 10px; }
.admin-field > span, .admin-security-grid form > label > span { font-size: 10px; }
.admin-field input, .admin-security-grid input { font-size: 14px; }
.admin-password-input button, .admin-password-hint { font-size: 10px; }
.admin-form-error { font-size: 12px; }
.admin-auth-primary { font-size: 12px; }
.admin-auth-content > small, .admin-back-link { font-size: 10px; }
.admin-auth-foot { font-size: 9px; }

@media (max-width: 780px) {
  .admin-sidebar nav a { font-size: 12px; }
  .admin-topbar > div:first-child, .admin-topbar-actions { font-size: 9px; }
  .admin-page-head p { font-size: 13px; }
}
