/* ============================================================
   AHN Web Designers — Stylesheet
   Brand: matte black + metallic gold
   ============================================================ */

/* -------- Design tokens -------- */
:root {
  --bg:           #0A0A0A;
  --surface:      #141414;
  --surface-2:    #1A1A1A;
  --gold:         #D4AF37;
  --gold-soft:    #E8C547;
  --gold-dim:     #B8941F;
  --text:         #F5F5F5;
  --text-muted:   #A0A0A0;
  --text-dim:     #6B6B6B;
  --border:       #2A2A2A;
  --border-gold:  rgba(212, 175, 55, 0.25);

  --font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;

  --shadow-gold:  0 0 40px rgba(212, 175, 55, 0.15);
  --shadow-card:  0 10px 30px rgba(0, 0, 0, 0.4);

  --container:    1200px;
  --transition:   220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------- Reset -------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 600; }

.italic-gold {
  font-style: italic;
  color: var(--gold);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-left: 12px;
  vertical-align: middle;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 56ch;
}

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* -------- Navbar -------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 0.875rem 0;
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 4px;
}

.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta { margin-left: 1rem; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  position: relative;
  transition: all var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }

.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { transform: rotate(45deg); top: 0; }
.menu-toggle.open span::after  { transform: rotate(-45deg); top: 0; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 80vw);
    background: var(--surface);
    border-left: 1px solid var(--border-gold);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-cta { margin-left: 0; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.08), transparent 50%);
  pointer-events: none;
}

.device-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Laptop */
.laptop {
  position: relative;
  width: 80%;
  aspect-ratio: 16 / 10;
  background: #1f1f1f;
  border: 1px solid #2e2e2e;
  border-radius: 10px 10px 4px 4px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.laptop::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8%;
  right: -8%;
  height: 8px;
  background: #1f1f1f;
  border-radius: 0 0 8px 8px;
}

.laptop-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.laptop-screen::before {
  content: 'LUXORA';
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.screen-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.screen-line.gold  { background: rgba(212, 175, 55, 0.4); width: 40%; }
.screen-line.med   { width: 60%; }
.screen-line.short { width: 30%; }

.screen-image {
  flex: 1;
  background: linear-gradient(135deg, #2a1f0e, #0d0d0d);
  border-radius: 4px;
  margin-top: 1.25rem;
  position: relative;
  overflow: hidden;
}

.screen-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.3), transparent 60%);
}

/* Phone overlay */
.phone {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: 22%;
  aspect-ratio: 9 / 19;
  background: #1f1f1f;
  border: 1px solid #2e2e2e;
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 4px;
  background: #0d0d0d;
  border-radius: 2px;
}

.phone-line {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  margin-top: 0.25rem;
}
.phone-line.gold { background: rgba(212, 175, 55, 0.5); width: 50%; }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero { padding-top: 7rem; }
  .hero-visual { aspect-ratio: 5 / 4; }
}

/* -------- Section header -------- */
.section-head {
  margin-bottom: 3.5rem;
  max-width: 720px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* -------- Services grid -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* -------- Work grid -------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Single-card state: center the lone card at a comfortable max width */
.work-grid:has(> .work-card:only-child),
.work-grid:has(> a.work-card:only-child) {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.work-cover {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.work-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7));
}

.work-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work-card:hover .work-cover img { transform: scale(1.05); }

/* Logo-style cover (centred badge on a dark background, not cropped) */
.work-cover.is-logo {
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08), transparent 70%),
    linear-gradient(135deg, #0d0d0d, #050505);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.work-cover.is-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 500ms ease;
}

.work-card:hover .work-cover.is-logo img { transform: scale(1.04); }

/* "Live site" indicator on linked cards */
.work-card.is-link { color: inherit; }

.work-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.work-card.is-link:hover .work-live {
  opacity: 1;
  transform: translateX(3px);
}

.work-body { padding: 1.5rem; }

.work-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.work-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.work-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* -------- Process steps -------- */
.process {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-top: 3rem;
  counter-increment: step;
}

.process-step::before {
  content: '0' counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-style: italic;
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* -------- Testimonials -------- */
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: var(--surface);
  position: relative;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 2rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* -------- CTA section -------- */
.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08), transparent 60%),
    var(--bg);
  padding: 7rem 0;
}

.cta-section h2 {
  margin-bottom: 1.25rem;
}

.cta-section .lead {
  margin: 0 auto 2.5rem;
}

/* -------- Footer -------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 32ch;
  margin-top: 1rem;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a:hover { color: var(--gold); }

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* -------- Forms (contact page) -------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.field input,
.field textarea,
.field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--text);
  transition: border-color var(--transition);
  font-family: inherit;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea { min-height: 140px; resize: vertical; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}

.form-status {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* -------- Pricing cards (services page) -------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), var(--surface));
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.pricing-card h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.pricing-card .price small {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* -------- Page hero (inner pages) -------- */
.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06), transparent 70%);
  pointer-events: none;
}

.page-hero .lead { margin: 0 auto; }

/* -------- About page -------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2a1f0e, #0a0a0a);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.about-portrait::after {
  content: 'HN';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.4;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* -------- Scroll reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safety: if JS is disabled or fails, never hide content. */
.no-js .reveal { opacity: 1; transform: none; transition: none; }

/* Respect reduced motion — show without animation. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------- Utilities -------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* -------- Floating WhatsApp button (every page) -------- */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem 0.75rem 0.85rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wa-fab svg { width: 22px; height: 22px; }

.wa-fab .wa-label { display: inline; }

@media (max-width: 540px) {
  .wa-fab { padding: 0.75rem; }
  .wa-fab .wa-label { display: none; }
}

/* -------- WhatsApp contact card (contact page) -------- */
.wa-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02));
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.wa-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.wa-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
}

.wa-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.wa-card .btn-wa {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  align-self: flex-start;
}

.wa-card .btn-wa:hover {
  background: #1ebd5a;
  border-color: #1ebd5a;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Selection color */
::selection {
  background: var(--gold);
  color: #000;
}

/* Scrollbar (Webkit) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }
