/* =========================================
   Hireframe — Brand Stylesheet
   ========================================= */

/* --- Custom Properties --- */
:root {
  --ink: #14161D;
  --marigold: #F4A526;
  --ember: #B5660E;
  --paper: #F7F5F0;
  --slate: #565E6B;
  --slate-light: #8A8E9B;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --section-gap: 120px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marigold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--paper);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--slate-light);
  max-width: 600px;
  line-height: 1.7;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(20, 22, 29, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo-bracket {
  color: var(--marigold);
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--slate);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 165, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--marigold);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 3rem;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 0.9375rem;
  color: var(--slate);
}

.hero-proof {}

.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.proof-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.proof-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--marigold);
  font-family: 'Playfair Display', serif;
  min-width: 4ch;
}

.proof-label {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.4;
}

/* --- HERO VISUAL / VIEWFINDER --- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.viewfinder {
  position: relative;
}

.vf-frame {
  width: 380px;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Corner brackets */
.vf-corner {
  position: absolute;
  width: 32px;
  height: 32px;
}

.vf-tl { top: 0; left: 0; border-top: 2px solid var(--marigold); border-left: 2px solid var(--marigold); }
.vf-tr { top: 0; right: 0; border-top: 2px solid var(--marigold); border-right: 2px solid var(--marigold); }
.vf-bl { bottom: 0; left: 0; border-bottom: 2px solid var(--marigold); border-left: 2px solid var(--marigold); }
.vf-br { bottom: 0; right: 0; border-bottom: 2px solid var(--marigold); border-right: 2px solid var(--marigold); }

/* Face silhouette */
.vf-face {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(244, 165, 38, 0.15) 0%, rgba(20, 22, 29, 0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.face-silhouette {
  width: 140px;
  height: 160px;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(160deg, rgba(244, 165, 38, 0.2) 0%, rgba(181, 102, 14, 0.1) 100%);
  border: 1px solid rgba(244, 165, 38, 0.3);
  position: relative;
}

.face-silhouette::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(244, 165, 38, 0.25) 0%, rgba(181, 102, 14, 0.08) 100%);
  border: 1px solid rgba(244, 165, 38, 0.3);
}

.face-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 165, 38, 0.08) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.vf-label {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.vf-tag {
  font-size: 0.75rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- SHOWCASE --- */
.showcase {
  padding: var(--section-gap) 2rem;
  border-top: 1px solid var(--border);
}

.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.frame-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.frame-card:hover {
  border-color: var(--border-strong);
}

.frame-card--primary {
  grid-row: span 1;
}

.frame-swatch {
  padding: 2.5rem 1.75rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}

.frame-swatch--ink {
  background: linear-gradient(135deg, #1e2028 0%, #14161D 100%);
  min-height: 280px;
}

.frame-swatch--marigold {
  background: linear-gradient(135deg, #3a2a0c 0%, #1a1406 100%);
  border: 1px solid rgba(244, 165, 38, 0.2);
}

.frame-swatch--slate {
  background: linear-gradient(135deg, #2a2e36 0%, #1a1d24 100%);
  border: 1px solid rgba(86, 94, 107, 0.2);
}

.frame-swatch--ember {
  background: linear-gradient(135deg, #3d2010 0%, #1e1008 100%);
  border: 1px solid rgba(181, 102, 14, 0.2);
}

.frame-tag {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--paper);
}

.frame-sub {
  font-size: 0.8125rem;
  color: var(--slate-light);
  line-height: 1.4;
}

.showcase-note {
  max-width: 640px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(247, 245, 240, 0.03);
}

.showcase-note p {
  font-size: 1rem;
  color: var(--slate-light);
  line-height: 1.7;
}

.showcase-note strong {
  color: var(--paper);
}

/* --- PROCESS --- */
.process {
  padding: var(--section-gap) 2rem;
  border-top: 1px solid var(--border);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.step-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(244, 165, 38, 0.25);
  line-height: 1;
  padding-top: 0.25rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 1rem;
  color: var(--slate-light);
  line-height: 1.6;
  max-width: 540px;
}

/* --- PRIVACY --- */
.privacy {
  padding: var(--section-gap) 2rem;
  border-top: 1px solid var(--border);
}

.privacy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.privacy-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.privacy-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--paper);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.privacy-body {
  font-size: 1rem;
  color: var(--slate-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.privacy-pillars {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pillar {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.pillar-label {
  font-size: 0.8125rem;
  color: var(--slate-light);
  font-weight: 500;
}

/* --- CLOSING --- */
.closing {
  padding: var(--section-gap) 2rem 100px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--paper);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1.0625rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--marigold);
}

.offer-detail {
  text-align: left;
}

.offer-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 0.25rem;
}

.offer-includes {
  font-size: 0.875rem;
  color: var(--slate);
}

.checkout-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 1rem;
}

.checkout-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.checkout-form input::placeholder { color: var(--slate); }
.checkout-form input:focus { border-color: var(--marigold); }

.checkout-form button {
  padding: 14px 28px;
  background: var(--marigold);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.checkout-form button:hover:not(:disabled) { background: #e09620; }
.checkout-form button:disabled { background: var(--slate); cursor: not-allowed; }

.closing-note {
  font-size: 0.875rem;
  color: var(--slate);
  font-style: italic;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: var(--section-gap) 2rem;
  border-top: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-social {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.social-counter {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(244, 165, 38, 0.1);
  border: 1px solid rgba(244, 165, 38, 0.25);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--marigold);
  letter-spacing: 0.04em;
  border-radius: 100px;
}

.testimonial-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(247, 245, 240, 0.02);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
}

.testimonial-card:hover {
  border-color: rgba(244, 165, 38, 0.25);
  background: rgba(247, 245, 240, 0.04);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 165, 38, 0.2) 0%, rgba(181, 102, 14, 0.12) 100%);
  border: 1px solid rgba(244, 165, 38, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--marigold);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--paper);
  line-height: 1;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--slate);
  line-height: 1.3;
}

.testimonial-stars {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--marigold);
  margin-bottom: 0.875rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.7;
}

.testimonial-quote::before { content: '"'; }
.testimonial-quote::after  { content: '"'; }

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-weight: 600;
  font-size: 1rem;
  color: var(--paper);
}

.bracket { color: var(--marigold); }

.footer-motto {
  font-size: 0.875rem;
  color: var(--slate);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-link {
  font-size: 0.8125rem;
  color: var(--slate-light);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--paper); }

.footer-sep {
  color: var(--slate);
  font-size: 0.75rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--slate);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
  }

  .vf-frame {
    width: 280px;
    height: 360px;
  }

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

  .frame-card--primary {
    grid-column: span 2;
  }

  .proof-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

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

@media (max-width: 600px) {
  .hero {
    padding: 100px 1.5rem 60px;
  }

  .hero-headline {
    font-size: 3.5rem;
  }

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

  .frame-card--primary {
    grid-column: span 1;
  }

  .privacy-pillars {
    flex-direction: column;
    align-items: center;
  }

  .closing-offer {
    flex-direction: column;
  }

  .offer-detail {
    text-align: center;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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