/* ============================================
   Whatever Leather LLC — Styles
   A leather workshop at golden hour.
   ============================================ */

/* --- Variables --- */
:root {
  --bg: #1a1410;
  --bg-light: #231c15;
  --bg-card: #2a2218;
  --bg-card-hover: #332a1f;
  --border: #3d3228;
  --border-light: #4a3d30;
  --tan: #c8a46e;
  --tan-light: #d4b882;
  --gold: #d4a843;
  --gold-dim: #b8923a;
  --cream: #f0e6d3;
  --text: #e8ddd0;
  --text-mid: #b5a898;
  --text-light: #8a7e72;
  --text-faint: #5c5248;
  --white: #faf6f0;
  --red-accent: #a0522d;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;
  --radius: 2px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 8px 32px rgba(200,164,110,0.15);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--tan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Noise Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--cream); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.section-label {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.italic-gold { font-style: italic; color: var(--gold); }

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

/* --- Stitch Border --- */
.stitch-top { border-top: 2px dashed var(--border); }
.stitch-bottom { border-bottom: 2px dashed var(--border); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--tan);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--tan);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px dashed var(--tan);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(200,164,110,0.1);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* --- Badges --- */
.card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(200,164,110,0.12);
  color: var(--tan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(200,164,110,0.2);
}

/* --- Cards --- */
.craft-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.craft-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}
.craft-card-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.craft-card-body { padding: 1.25rem; }
.craft-card-footer {
  padding: 1rem 1.25rem;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(26,20,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}
.nav-brand svg { flex-shrink: 0; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}
.nav-links a.nav-cta {
  color: var(--bg);
}
.nav-links a.nav-cta:hover {
  color: var(--bg);
}
.nav-links a.nav-cta::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,20,16,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--cream); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,164,110,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-content { position: relative; z-index: 2; }
.hero-tagline {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.2s;
}
.hero h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.4s;
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.6s;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.8s;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.6s;
}
.hero-visual svg .hide-outline {
  fill: none;
  stroke: var(--tan);
  stroke-width: 1.5;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawStroke 2.5s ease forwards;
  animation-delay: 0.8s;
}
.hero-visual svg .hide-fill {
  fill: rgba(200,164,110,0.04);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: gentleBounce 2s ease infinite;
}
.hero-scroll-hint svg { opacity: 0.5; }

/* ============================================
   THE STORY
   ============================================ */
.story {
  padding: 6rem 0;
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.story-text { color: var(--text-mid); font-size: 1.05rem; }
.story-text p + p { margin-top: 1.25rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px dashed var(--border);
}
.stat-block { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ============================================
   THE CRAFT (Products)
   ============================================ */
.craft {
  padding: 6rem 0;
  position: relative;
}
.craft-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.craft-header p {
  color: var(--text-mid);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* Masonry-style height variation */
.craft-grid .craft-card:nth-child(2) .craft-card-image { aspect-ratio: 3/3.5; }
.craft-grid .craft-card:nth-child(5) .craft-card-image { aspect-ratio: 3/3.5; }

/* Gradient placeholder images */
.card-img-wallets {
  background: linear-gradient(135deg, #3d2b1a 0%, #5c3d24 40%, #7a5234 70%, #4a3322 100%);
}
.card-img-holsters {
  background: linear-gradient(150deg, #2a1f14 0%, #4a3828 40%, #6b4f35 70%, #3a2a1c 100%);
}
.card-img-belts {
  background: linear-gradient(120deg, #4a3322 0%, #6b4f35 40%, #8b6b4a 70%, #5c3d24 100%);
}
.card-img-journals {
  background: linear-gradient(160deg, #3a2a1c 0%, #5c4432 50%, #7a5e44 80%, #4a3828 100%);
}
.card-img-bags {
  background: linear-gradient(140deg, #2e2118 0%, #4e3a28 45%, #6e5440 75%, #3e2e20 100%);
}
.card-img-collars {
  background: linear-gradient(130deg, #44321e 0%, #6a5030 50%, #8a6a42 80%, #54422a 100%);
}
.card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200,164,110,0.15);
  font-size: 3.5rem;
}
.craft-card-body h3 {
  font-size: 1.15rem;
  margin: 0.75rem 0 0.5rem;
}
.craft-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.card-action {
  font-size: 0.8rem;
  color: var(--tan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.card-action:hover { color: var(--gold); }

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 6rem 0;
}
.process-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.process-header p {
  color: var(--text-mid);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* Timeline */
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin-bottom: 5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  border-top: 2px dashed var(--border);
}
.timeline-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px dashed var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}
.timeline-step.revealed .step-dot {
  border-color: var(--tan);
  background: var(--bg-light);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* FAQ */
.faq-section { max-width: 720px; margin: 0 auto; }
.faq-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.faq-item {
  border-bottom: 1px dashed var(--border);
}
.faq-item:first-child {
  border-top: 1px dashed var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--tan);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--gold); }
.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 6rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-headline { margin-bottom: 1.5rem; }
.contact-sub {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 440px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-row svg {
  flex-shrink: 0;
  color: var(--tan);
  margin-top: 2px;
}
.contact-row strong {
  display: block;
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.contact-row span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.contact-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 2px dashed var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.6;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-faint);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-faint);
}
.footer-legal a:hover { color: var(--text-mid); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}
@keyframes gentleBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-tagline, .hero h1, .hero-desc, .hero-buttons { opacity: 1; }
  .hero-visual svg { opacity: 1; }
  .hero-visual svg .hide-outline { stroke-dashoffset: 0; }
}

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

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { flex-direction: column; gap: 0; }
  .timeline::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
    border-top: none;
    border-left: 2px dashed var(--border);
  }
  .timeline-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    text-align: left;
    padding: 0;
    margin-bottom: 2rem;
    min-width: 0;
  }
  .timeline-step .step-dot { margin: 0; }
  .step-content { padding-top: 0.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  h1 { font-size: 2.25rem; }
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero-scroll-hint { display: none; }
  .craft-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .stats-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-block { display: flex; align-items: center; gap: 1rem; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small (<=480px) */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 6rem 0 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { width: 100%; justify-content: center; }
  .contact-card { padding: 1.5rem; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn-primary,
  .contact-buttons .btn-ghost { width: 100%; justify-content: center; }
}
