/* ==========================================================================
   Components: buttons, cards, project detail, gallery, lightbox, modal, forms
   ========================================================================== */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px;
  font: 600 .97rem/1 var(--font-body); letter-spacing: .01em; text-align: center; text-decoration: none;
  border: 2px solid transparent; border-radius: 12px; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s, color .22s, border-color .22s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(10, 29, 58, .18); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: .9rem; border-radius: 10px; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold); color: var(--navy-950); }
.btn-gold:hover { background: #d6b25c; color: var(--navy-950); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-outline-light { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .7); }
.btn-outline-light:hover { background: #fff; color: var(--navy-900); }
.btn-wa { background: var(--green-700); color: #fff; }
.btn-wa:hover { background: var(--green-800); color: #fff; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

.link-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 2px; min-height: 40px;
  background: none; border: 0; cursor: pointer;
  font: 600 .92rem/1.2 var(--font-body); color: var(--navy-800); text-decoration: none;
  border-bottom: 2px solid transparent;
}
.link-btn:hover { color: var(--gold-700); border-bottom-color: var(--gold); }
.link-btn .icon { color: var(--gold-700); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: var(--navy-900); color: #fff;
}
.badge--gold { background: var(--gold); color: var(--navy-950); }
.badge--soft { background: var(--gold-100); color: var(--gold-700); }

/* ---------- Project cards ---------- */
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); }
.card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-media .badge { position: absolute; left: 16px; top: 16px; box-shadow: var(--shadow-sm); }
.card-body { display: flex; flex-direction: column; flex: 1; padding: clamp(20px, 3vw, 28px); }
.card-title { margin-bottom: 4px; }
.card-sub { color: var(--gold-700); font-weight: 600; font-size: .95rem; margin: 0 0 6px; }
.card-loc { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.card-loc .icon { color: var(--gold-700); }
.card-desc { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }

.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 0 0 18px; }
.facts > div { background: #fff; padding: 12px 14px; min-width: 0; }
.facts dt { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 2px; font-weight: 600; }
.facts dd { margin: 0; font-weight: 600; color: var(--navy-900); font-size: .96rem; overflow-wrap: anywhere; }
.facts .is-wide { grid-column: 1 / -1; }
.facts .is-price dd { color: var(--gold-700); }

.card-note { color: var(--muted); font-size: .78rem; line-height: 1.5; margin: -4px 0 16px; }
.specs-note { color: var(--muted); font-size: .82rem; margin: -10px 0 18px; }
.card-actions { margin-top: auto; display: grid; gap: 10px; }
.card-actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.card-links { display: flex; flex-wrap: wrap; gap: 4px 22px; padding-top: 6px; }

/* Promotional quote — used for supplied marketing copy */
.promo {
  position: relative; margin: 0 0 18px; padding: 16px 18px 14px 20px;
  background: var(--gold-100); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
}
.promo p { margin: 0 0 6px; font-weight: 600; color: var(--navy-900); line-height: 1.55; }
.promo p:last-of-type { margin-bottom: 8px; }
.promo small { display: block; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.promo .hi { font-size: 1.02rem; }

/* Feature (spotlight) cards on the home page: same vertical card, with the promo box */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); margin-bottom: clamp(20px, 3vw, 32px); }

/* ---------- Project detail sections (projects page) ---------- */
.jump-nav { position: sticky; top: var(--header-h); z-index: 40; background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.jump-nav ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 12px 0; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.jump-nav ul::-webkit-scrollbar { display: none; }
.jump-nav a {
  display: inline-flex; align-items: center; white-space: nowrap; min-height: 40px; padding: 0 18px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  color: var(--navy-900); font-weight: 500; font-size: .92rem; text-decoration: none;
}
.jump-nav a:hover, .jump-nav a.is-active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.detail { padding-block: clamp(48px, 7vw, 88px); border-top: 1px solid var(--line); }
.detail:nth-of-type(even) { background: var(--ivory); }
.detail-top { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.detail-creative { position: relative; }
.detail-creative button, .detail-creative > img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.detail-creative .zoom-btn { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden; }
.detail-creative img { width: 100%; height: auto; border-radius: var(--radius-lg); }
.detail-creative .zoom-hint {
  position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6, 20, 40, .8); color: #fff; font-size: .8rem; font-weight: 500; padding: 8px 12px; border-radius: 999px; pointer-events: none;
}
.detail-creative figcaption { color: var(--muted); font-size: .82rem; margin-top: 10px; }
.detail-info h2 { margin-bottom: .2em; }
.detail-sub { color: var(--gold-700); font-family: var(--font-head); font-size: 1.25rem; font-style: italic; margin: 0 0 14px; }
.detail-info p { color: var(--muted); }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 8px; }

.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.spec {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm); min-width: 0;
}
.detail:nth-of-type(even) .spec { background: #fff; }
.spec .k { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.spec .v { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--navy-900); line-height: 1.25; overflow-wrap: anywhere; }
.spec .v small { font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: var(--muted); }
.spec--wide { grid-column: 1 / -1; }
.spec--wide .v { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

.mini-head { font-size: 1.08rem; margin: 22px 0 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 8px; }
.chips li { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-size: .86rem; font-weight: 500; }
.chips .icon { width: 1em; height: 1em; }

.subhead { display: flex; align-items: center; gap: 14px; margin: clamp(36px, 5vw, 56px) 0 18px; }
.subhead h3 { margin: 0; font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
.subhead::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* Gallery grid */
.gallery { display: grid; grid-template-columns: repeat(var(--g-lg, 4), 1fr); gap: 12px; }
.gallery-item {
  position: relative; display: block; padding: 0; border: 0; background: var(--sand);
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6, 20, 40, .35), transparent 45%); opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }

/* Layout / site plan */
.plan { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 48px); align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(16px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.plan-media { display: block; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; cursor: zoom-in; overflow: hidden; position: relative; }
.plan-media img { width: 100%; max-height: 520px; object-fit: contain; background: #fff; }
.plan-media .zoom-hint { position: absolute; right: 12px; bottom: 12px; display: inline-flex; gap: 8px; align-items: center; background: rgba(6, 20, 40, .82); color: #fff; font-size: .8rem; padding: 7px 12px; border-radius: 999px; }
.plan-text h4 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 8px; }
.plan-text p { color: var(--muted); }

/* Notices / disclaimers */
.notice {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius);
  background: var(--gold-100); border: 1px solid #e6d5a6; color: #5c4610; font-size: .88rem; line-height: 1.55;
}
.notice .icon { flex: none; margin-top: .15em; color: var(--gold-700); }
.notice p { margin: 0; }
.notice--info { background: #eaf1fb; border-color: #c8d9f2; color: var(--navy-800); }
.notice--info .icon { color: var(--royal); }
.notice--success { background: var(--green-100); border-color: #bfd8c7; color: var(--green-800); }
.notice--success .icon { color: var(--green-700); }
.notice--error { background: var(--danger-bg); border-color: #f2c1bb; color: var(--danger); }
.notice--error .icon { color: var(--danger); }
.notice + .notice { margin-top: 10px; }
.disclaimer { margin-top: 28px; }

/* Hint shown if JS is off */
.noscript-box { padding: 28px; border: 2px dashed var(--line); border-radius: var(--radius-lg); text-align: center; background: #fff; }

/* ---------- Lightbox + modal (native <dialog>) ---------- */
dialog { padding: 0; border: 0; color: inherit; max-width: none; max-height: none; }
dialog::backdrop { background: rgba(4, 12, 26, .86); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }

.lightbox { width: 100vw; height: 100vh; height: 100dvh; background: transparent; overflow: hidden; }
.lightbox[open] { display: flex; flex-direction: column; animation: lb-in .28s var(--ease); }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px clamp(12px, 3vw, 24px); color: #fff; flex: none; }
.lb-count { font-size: .9rem; letter-spacing: .06em; color: #cfd9ec; }
.lb-tools { display: flex; gap: 8px; align-items: center; }
.lb-btn {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25); color: #fff; cursor: pointer;
  transition: background .2s, color .2s; text-decoration: none;
}
.lb-btn:hover { background: var(--gold); color: var(--navy-950); border-color: var(--gold); }
.lb-btn .icon { width: 22px; height: 22px; }
.lb-stage { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; padding: 0 clamp(8px, 7vw, 96px); touch-action: pan-y; }
.lb-stage figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lb-img { max-width: 100%; max-height: calc(100vh - 170px); max-height: calc(100dvh - 170px); width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); transition: opacity .25s var(--ease); }
.lb-img.is-loading { opacity: .25; }
.lb-caption { color: #d7e0f0; font-size: .92rem; text-align: center; padding: 12px 8px 4px; max-width: 70ch; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); }
.lb-prev { left: clamp(6px, 1.5vw, 20px); }
.lb-next { right: clamp(6px, 1.5vw, 20px); }
.lightbox[data-single] .lb-nav, .lightbox[data-single] .lb-count { display: none; }

.modal { width: min(94vw, 480px); margin: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.modal[open] { animation: modal-in .3s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head { padding: 26px 28px 0; border-top: 4px solid var(--gold); position: relative; }
.modal-head h2 { font-size: 1.6rem; margin-bottom: 6px; padding-right: 40px; }
.modal-head p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.modal-close { position: absolute; right: 14px; top: 16px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--sand); color: var(--navy-900); cursor: pointer; display: grid; place-items: center; }
.modal-close:hover { background: var(--gold); }
.modal-body { padding: 20px 28px 28px; }
.modal-fallback { margin-top: 14px; font-size: .9rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label, .field legend { font-weight: 600; font-size: .92rem; color: var(--navy-900); }
.field .req { color: var(--danger); margin-left: 2px; }
.field .opt { color: var(--muted); font-weight: 400; font-size: .85rem; }
.input, .select, .textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid #cfc8b6; border-radius: 10px; transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.textarea { min-height: 130px; resize: vertical; }
.select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230a1d3a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.input:hover, .select:hover, .textarea:hover { border-color: var(--navy-700); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--navy-800); box-shadow: 0 0 0 4px rgba(201, 162, 74, .35); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--danger); background: #fffafa; }
.field-error { display: none; align-items: flex-start; gap: 6px; color: var(--danger); font-size: .85rem; font-weight: 500; line-height: 1.4; }
.field-error.is-visible { display: flex; }
.field-error::before { content: "!"; flex: none; width: 16px; height: 16px; margin-top: 1px; border-radius: 50%; background: var(--danger); color: #fff; font-size: .7rem; font-weight: 700; display: grid; place-items: center; }
.field-help { color: var(--muted); font-size: .82rem; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 2px; }
.form-status:empty { display: none; }
.form-status .btn { margin-top: 10px; }
.form-note { color: var(--muted); font-size: .82rem; margin: 0; }

.radio-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; border: 0; padding: 0; margin: 0; min-width: 0; }
.radio-row legend { padding: 0; margin-bottom: 8px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.radio-chip span {
  display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 10px; text-align: center;
  border: 1.5px solid #cfc8b6; border-radius: 10px; background: #fff; font-weight: 500; font-size: .93rem; color: var(--navy-900); transition: all .2s;
}
.radio-chip input:checked + span { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.radio-chip input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.radio-chip:hover span { border-color: var(--navy-700); }

/* Consultation / CTA panel */
.cta-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center;
  background: var(--navy-900); color: #cfd9ec; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  padding: clamp(28px, 5vw, 64px);
  box-shadow: var(--shadow-lg);
}
.cta-panel::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold); }
.cta-panel h2 { color: #fff; }
.cta-panel .cta-copy p { font-size: 1.05rem; color: #c3cee4; }
.cta-panel .form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); color: var(--ink); }
.cta-contact { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* Value cards ("Why invest with us") */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden; }
.value-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--navy-900); color: var(--gold); margin-bottom: 18px; }
.value-card .ico .icon { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step { position: relative; padding: 28px 24px 24px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); counter-increment: step; }
.step::before { content: "0" counter(step); font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Contact cards */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; min-width: 0; }
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); color: inherit; }
.contact-card .ico { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-700); margin-bottom: 16px; }
.contact-card .ico .icon { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-card p { margin: 0 0 4px; color: var(--muted); font-size: .95rem; overflow-wrap: anywhere; }
.contact-card .strong { color: var(--navy-900); font-weight: 600; }
.contact-card .more { margin-top: auto; padding-top: 12px; color: var(--gold-700); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }

.contact-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.form-card h2 { font-size: 1.7rem; }
.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--sand); }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }
.hours { list-style: none; padding: 0; margin: 0; }

/* Prose (privacy policy) */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); margin-top: 2.2em; padding-top: .2em; }
.prose h2:first-of-type { margin-top: 1.2em; }
.prose p, .prose li { color: #37425a; }
.prose li { margin-bottom: .4em; }
.review-flag { display: flex; gap: 10px; align-items: flex-start; margin: 14px 0; padding: 12px 14px; background: #fff7e0; border: 1px dashed var(--gold-500); border-radius: var(--radius); font-size: .88rem; color: #5c4610; }
.review-flag .icon { flex: none; margin-top: .15em; }
.review-flag p { margin: 0; color: inherit; }

/* 404 */
.error-page { text-align: center; padding-block: clamp(72px, 12vw, 140px); }
.error-code { font-family: var(--font-head); font-size: clamp(5rem, 18vw, 9rem); color: var(--gold); line-height: 1; margin: 0; }
.error-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
