/* Golden Property Advisor — premium plot advisory theme
   Palette: warm gold + charcoal ink + ivory. Human, editorial, no stock filler. */

:root {
  --gold: #c1912f;
  --gold-2: #e4c363;
  --gold-3: #a5761f;
  --gold-soft: #f3e6c4;
  --ink: #17130c;
  --ink-2: #2a2318;
  --paper: #fbf8f1;
  --cream: #f4ecdb;
  --line: #e7ddc6;
  --text: #241f16;
  --muted: #6d6350;
  --white: #ffffff;
  --green: #1f7a4d;
  --shadow-sm: 0 2px 10px rgba(23, 19, 12, .06);
  --shadow: 0 18px 50px rgba(23, 19, 12, .12);
  --shadow-gold: 0 16px 40px rgba(165, 118, 31, .28);
  --radius: 16px;
  --wrap: 1180px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 20px; }
section { position: relative; }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .74rem;
  letter-spacing: .19em; text-transform: uppercase; color: var(--gold-3);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 2px; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.gold-text { color: var(--gold-3); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s; white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3)); color: #241a05; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(165, 118, 31, .38); }
.btn-ink { background: var(--ink); color: var(--gold-soft); }
.btn-ink:hover { transform: translateY(-2px); background: #221c11; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-3); }
.btn-wa { background: #1faf52; color: #fff; box-shadow: 0 12px 30px rgba(31, 175, 82, .28); }
.btn-wa:hover { transform: translateY(-2px); background: #17a049; }
.btn-block { width: 100%; }

/* ---------- top call bar ---------- */
.topbar { background: var(--ink); color: #d8cba9; font-size: .84rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding-block: 8px; }
.topbar a { color: #e9d9b0; font-weight: 600; }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }
.topbar .tb-loc { opacity: .82; }
@media (max-width: 720px) { .topbar .tb-loc { display: none; } .topbar .wrap { justify-content: center; } }

/* ---------- header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(251, 248, 241, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark { flex: none; }
.brand .bt { display: flex; flex-direction: column; line-height: 1; }
.brand .bt strong { font-family: var(--serif); font-size: 1.24rem; color: var(--ink); letter-spacing: .01em; }
.brand .bt span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-3); font-weight: 700; margin-top: 4px; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--ink-2); position: relative; }
.nav a:hover { color: var(--gold-3); }
.nav a.active { color: var(--gold-3); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .2s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; border: 1px solid var(--line); background: var(--white); width: 44px; height: 44px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: .2s; }
.menu-btn span::before { position: absolute; top: -6px; } .menu-btn span::after { position: absolute; top: 6px; }

@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 560px) {
  .brand .bt span { display: none; }
  .brand .bt strong { font-size: 1.12rem; }
  .brand .mark { width: 40px; height: 40px; }
}
.mobile-nav { position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); background: var(--paper); z-index: 100; transform: translateX(100%); transition: transform .28s ease; box-shadow: var(--shadow); padding: 24px; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 1.05rem; }
.mobile-nav .btn { margin-top: 14px; }
.mobile-nav .mclose { align-self: flex-end; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--ink); line-height: 1; }
.backdrop { position: fixed; inset: 0; background: rgba(23, 19, 12, .5); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .28s; }
.backdrop.open { opacity: 1; pointer-events: auto; }

/* ---------- hero ---------- */
.hero { background: radial-gradient(120% 120% at 78% 0%, #241d10 0%, #17130c 55%, #100d07 100%); color: #f4ecdb; padding: 62px 0 74px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(196, 156, 60, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(196, 156, 60, .09) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(90% 80% at 70% 20%, #000 20%, transparent 75%); }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(228, 195, 99, .13); border: 1px solid rgba(228, 195, 99, .3); color: var(--gold-2); padding: 7px 15px; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .05em; margin-bottom: 22px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #37d67a; box-shadow: 0 0 0 4px rgba(55, 214, 122, .2); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.7vw, 3.6rem); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero .lead { color: #d9ccac; font-size: 1.14rem; max-width: 48ch; }
.hero-usps { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.hero-usps li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .96rem; color: #ecdfbf; }
.hero-usps svg { flex: none; color: var(--gold-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { margin-top: 30px; display: flex; align-items: center; gap: 16px; color: #cdbf9d; font-size: .9rem; }
.hero-proof strong { color: #fff; font-family: var(--serif); font-size: 1.5rem; }
.hero-proof .divider { width: 1px; height: 34px; background: rgba(228, 195, 99, .25); }

/* hero lead card */
.lead-card { background: var(--white); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.lead-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.lead-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; letter-spacing: .01em; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--sans); font-size: .98rem; color: var(--text); background: #fdfbf6; transition: border .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196, 156, 60, .16); }
.field textarea { resize: vertical; min-height: 74px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-note svg { vertical-align: -2px; margin-right: 4px; color: var(--green); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.or-wa { text-align: center; margin: 12px 0 2px; font-size: .85rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero { padding: 40px 0 52px; }
  .hero .wrap { display: block; }
  .hero-copy { min-width: 0; }
  .lead-card { margin-top: 30px; }
  .hero-usps { grid-template-columns: 1fr; }
  .hero .lead { max-width: 100%; }
  .hero-proof { flex-wrap: wrap; }
}

/* ---------- trust strip ---------- */
.trust-strip { background: var(--ink); color: #e9dcb8; }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-block: 22px; text-align: center; }
.trust-strip .ts { display: flex; flex-direction: column; gap: 3px; }
.trust-strip .ts b { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-2); }
.trust-strip .ts span { font-size: .82rem; letter-spacing: .03em; opacity: .85; }
.trust-strip .ts + .ts { border-left: 1px solid rgba(228, 195, 99, .18); }
@media (max-width: 640px) { .trust-strip .wrap { grid-template-columns: 1fr 1fr; gap: 18px 10px; } .trust-strip .ts:nth-child(3) { border-left: none; } }

/* ---------- generic section spacing ---------- */
.sec { padding: 74px 0; }
.sec-cream { background: var(--cream); }
.sec-ink { background: radial-gradient(120% 120% at 20% 0%, #241d10, #14100a); color: #eaddba; }
.sec-ink h2, .sec-ink h3 { color: #fff; }
.sec-head { max-width: 720px; margin-bottom: 40px; }
.sec-head.center { margin-inline: auto; }

/* ---------- feature cards ---------- */
.cards { display: grid; gap: 22px; }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.cards.c4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s, border-color .18s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-soft), #fff); color: var(--gold-3); margin-bottom: 16px; border: 1px solid var(--gold-soft); }
.card h3 { font-size: 1.18rem; }
.card p { font-size: .95rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .cards.c3, .cards.c4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards.c3, .cards.c4 { grid-template-columns: 1fr; } }

/* ---------- featured project ---------- */
.project { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.project .media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; }
.project .media img { width: 100%; height: 100%; object-fit: cover; }
.project .media .tag { position: absolute; top: 14px; left: 14px; background: var(--ink); color: var(--gold-2); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; }
.project .plogo { height: 46px; width: auto; margin-bottom: 14px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 26px; }
.spec { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.spec .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-3); font-weight: 700; }
.spec .v { font-family: var(--serif); font-size: 1.12rem; color: var(--ink); font-weight: 700; margin-top: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.chips li { background: var(--gold-soft); color: var(--gold-3); font-size: .82rem; font-weight: 600; padding: 6px 13px; border-radius: 999px; }
@media (max-width: 900px) { .project { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 26px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 2.4rem; color: var(--gold-soft); font-weight: 700; line-height: 1; }
.step h3 { font-size: 1.1rem; margin: 8px 0 6px; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- availability proof band ---------- */
.proof-band { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: center; }
.proof-band .shot { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.proof-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; font-size: .85rem; color: var(--muted); }
.proof-legend span { display: inline-flex; align-items: center; gap: 7px; }
.proof-legend i { width: 13px; height: 13px; border-radius: 3px; display: inline-block; border: 1px solid rgba(0,0,0,.12); }
@media (max-width: 900px) { .proof-band { grid-template-columns: 1fr; } }

/* ---------- areas / categories ---------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area { display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.area:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.area .pin { color: var(--gold-3); margin-bottom: 12px; }
.area h3 { font-size: 1.15rem; margin-bottom: 6px; }
.area p { font-size: .92rem; color: var(--muted); margin: 0 0 12px; }
.area .go { font-weight: 700; color: var(--gold-3); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tst { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.tst .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.tst p { font-size: .96rem; color: var(--ink-2); font-style: italic; }
.tst .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.tst .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); color: #241a05; display: grid; place-items: center; font-weight: 800; font-family: var(--serif); }
.tst .who b { display: block; font-size: .92rem; color: var(--ink); }
.tst .who span { font-size: .8rem; color: var(--muted); }
@media (max-width: 900px) { .tst-grid { grid-template-columns: 1fr; } }

/* ---------- about split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split .media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.tick-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.tick-list svg { flex: none; color: var(--gold-3); margin-top: 3px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; font-family: var(--serif); font-size: 1.08rem; color: var(--ink); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-3); font-family: var(--sans); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: .96rem; padding-bottom: 16px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--gold-3), var(--gold) 60%, var(--gold-2)); color: #241a05; text-align: center; padding: 64px 0; }
.cta-band h2 { color: #241a05; }
.cta-band p { color: #3d2f10; max-width: 60ch; margin-inline: auto; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.cta-band .btn-ink { background: var(--ink); color: var(--gold-2); }
.cta-band .btn-ghost { border-color: rgba(36,26,5,.35); color: #241a05; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.25); color:#241a05; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-3); display: grid; place-items: center; }
.info-list b { display: block; color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.info-list a, .info-list span { color: var(--text); }
.map-embed { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 26px; }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #b8ac91; padding: 56px 0 26px; font-size: .93rem; }
.footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer a { color: #cabd9f; display: block; padding: 5px 0; }
.footer a:hover { color: var(--gold-2); }
.footer .fbrand strong { font-family: var(--serif); color: #fff; font-size: 1.3rem; display: block; }
.footer .fbrand span { font-size: .66rem; letter-spacing: .24em; color: var(--gold-2); text-transform: uppercase; }
.footer .fbrand p { margin-top: 14px; color: #a89c82; max-width: 34ch; }
.foot-contact { display: grid; gap: 8px; }
.foot-contact a { display: flex; gap: 9px; align-items: center; padding: 3px 0; }
.footer .legal { border-top: 1px solid rgba(228, 195, 99, .16); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: #8f846d; font-size: .82rem; }
.footer .legal a { display: inline; }
@media (max-width: 820px) { .footer .cols { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer .cols { grid-template-columns: 1fr; } }

/* ---------- floating actions ---------- */
.floaters { position: fixed; right: 16px; bottom: 16px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); transition: transform .15s; }
.fab:hover { transform: scale(1.06); }
.fab-wa { background: #25d366; }
.fab-call { background: var(--gold-3); }
@media (min-width: 961px) { .fab-call { display: none; } }

/* ---------- page hero (inner) ---------- */
.page-hero { background: radial-gradient(120% 120% at 80% 0%, #241d10, #14100a); color: #eaddba; padding: 54px 0 46px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #d3c5a4; max-width: 60ch; margin: 8px auto 0; }
.crumbs { font-size: .82rem; color: var(--gold-2); margin-bottom: 14px; }
.crumbs a { color: #cdbf9d; } .crumbs a:hover { color: var(--gold-2); }

/* prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; font-size: 1.2rem; }
.prose p, .prose li { color: var(--text); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
/* If JavaScript is off, never hide content */
@media (scripting: none) { .reveal { opacity: 1 !important; transform: none !important; } }
