/* =====================================================
   TJR Enterprises — Main Stylesheet
   Dark theme, amber accent, Inter font
   ===================================================== */

:root {
  --bg:          #0a0a0a;
  --bg-2:        #111111;
  --bg-card:     #161616;
  --border:      rgba(255,255,255,0.07);
  --accent:      #ffb700;
  --accent-dim:  rgba(255,183,0,0.15);
  --accent-glow: rgba(255,183,0,0.35);
  --text:        #f0f0f0;
  --text-muted:  #888;
  --text-faint:  #444;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --max-w:       1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4.5rem;
}

.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; }

h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   HEADER / NAV
   ===================================================== */

#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-left: auto;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links li a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile ul li a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile ul li a:hover { color: var(--text); }

.mobile-cta {
  display: inline-block !important;
  margin-top: 1rem;
  background: var(--accent);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  border: none !important;
  text-align: center;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.88) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.35) 0%, transparent 35%, transparent 55%, rgba(10,10,10,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
}

.hero-headline {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 8px 40px rgba(0,0,0,0.6);
}

.hero-headline .accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,240,240,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

/* Staggered reveal for hero children */
.hero-eyebrow.reveal  { transition-delay: 0.1s; }
.hero-headline.reveal { transition-delay: 0.2s; }
.hero-sub.reveal      { transition-delay: 0.35s; }
.hero-actions.reveal  { transition-delay: 0.5s; }

/* =====================================================
   MARQUEE STRIP
   ===================================================== */

.marquee-strip {
  background: var(--accent);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  padding: 0 1.2rem;
}

.marquee-track .sep {
  color: rgba(0,0,0,0.35);
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   SERVICES
   ===================================================== */

.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 32px var(--accent-dim);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Staggered reveals */
.service-card:nth-child(1).reveal { transition-delay: 0s; }
.service-card:nth-child(2).reveal { transition-delay: 0.08s; }
.service-card:nth-child(3).reveal { transition-delay: 0.16s; }
.service-card:nth-child(4).reveal { transition-delay: 0.24s; }
.service-card:nth-child(5).reveal { transition-delay: 0.32s; }
.service-card:nth-child(6).reveal { transition-delay: 0.40s; }

/* =====================================================
   STATS BAR
   ===================================================== */

.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1rem 3.5rem;
  flex: 1;
  min-width: 140px;
}

.stat-num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
}

.stat p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* =====================================================
   PORTFOLIO / WORK
   ===================================================== */

.work-section { background: var(--bg); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.work-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 100%;
  min-height: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-item:hover .work-img-wrap img { transform: scale(1.05); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.work-item:hover .work-overlay { opacity: 1; }

.work-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.work-overlay h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.work-overlay p {
  font-size: 0.85rem;
  color: rgba(240,240,240,0.75);
}

/* Placeholder work items */
.placeholder-wrap {
  min-height: 220px;
}

.placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
}

.placeholder-content svg {
  width: 40px;
  height: 40px;
  color: var(--text-faint);
}

.placeholder-content span {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-align: center;
  font-weight: 500;
}

.work-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =====================================================
   ABOUT
   ===================================================== */

.about-section { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #000;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  line-height: 1.1;
}

.about-img-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-img-badge strong {
  font-size: 2rem;
  font-weight: 900;
}

.about-text-col h2 { margin-bottom: 1.25rem; }

.about-text-col > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.75rem 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.value-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================================================
   PROCESS
   ===================================================== */

.process-section { background: var(--bg); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-dim);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.process-step:hover .step-num { color: var(--accent); }

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-connector {
  flex-shrink: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin-top: 1.6rem;
  opacity: 0.4;
}

/* =====================================================
   CONTACT
   ===================================================== */

.contact-section { background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { padding-top: 1rem; }

.contact-info h2 { margin-bottom: 1rem; }

.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-link:hover { color: var(--accent); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--bg-card); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-align: center;
}

/* Formspree success / error states */
[data-fs-success] {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #86efac;
}

[data-fs-success][style*="block"] { display: flex; }

[data-fs-error]:not(:empty) {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #fca5a5;
}

.field-error:not(:empty) {
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 0.25rem;
}

[data-fs-submit-btn]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-brand > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { aspect-ratio: 16/9; max-height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-connector { display: none; }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-item--large { grid-column: span 2; grid-row: span 1; }
  .work-img-wrap { min-height: 220px; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }

  .services-grid { grid-template-columns: 1fr; }

  .stats-grid { gap: 0; }
  .stat { padding: 1rem 1.5rem; }
  .stat-divider { width: 100%; height: 1px; }

  .work-grid { grid-template-columns: 1fr; }
  .work-item--large { grid-column: span 1; }

  .about-img-wrap { aspect-ratio: 16/9; }

  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; max-width: 280px; }
}
