/* ============================================================
   PROCTOR AUCTIONS — Main Stylesheet
   Colour palette:
     Navy:  #1A1A2E
     Gold:  #B8860B
     Cream: #F8F5EF
     Text:  #2C2C2C
     Mid:   #5A5A7A
   ============================================================ */

html, body { overflow-x: hidden; max-width: 100%; }

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #2C2C2C;
  background: #FFFFFF;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { margin-bottom: 1rem; }
.gold { color: #B8860B; }
.navy { color: #1A1A2E; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-cream { background: #F8F5EF; }
.section-navy { background: #1A1A2E; color: #FFFFFF; }
.section-navy h2, .section-navy h3 { color: #FFFFFF; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: #5A5A7A; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.divider {
  width: 56px; height: 3px;
  background: #B8860B;
  margin: 16px auto 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: #B8860B;
  color: #FFFFFF;
  border-color: #B8860B;
}
.btn-primary:hover { background: #9a7009; border-color: #9a7009; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #FFFFFF; }
.btn-outline {
  background: transparent;
  color: #1A1A2E;
  border-color: #1A1A2E;
}
.btn-outline:hover { background: #1A1A2E; color: #FFFFFF; }
.btn-gold-outline {
  background: transparent;
  color: #B8860B;
  border-color: #B8860B;
}
.btn-gold-outline:hover { background: #B8860B; color: #FFFFFF; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1A1A2E;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 12px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #B8860B; }
.nav-links .nav-cta {
  background: #B8860B;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 2px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: #9a7009; color: #FFFFFF; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #FFFFFF;
  min-width: 200px;
  border-top: 3px solid #B8860B;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 0 0 4px 4px;
  z-index: 200;
}
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 0.82rem;
  color: #2C2C2C !important;
  border-bottom: 1px solid #f0ede8;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: #F8F5EF; color: #B8860B !important; }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: #FFFFFF; border-radius: 2px; transition: all 0.3s;
}
.mobile-nav {
  display: none;
  background: #12122a;
  padding: 16px 24px 24px;
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.mob-cta { color: #B8860B; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  background: #1A1A2E;
  overflow-x: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 16px;
}
.hero-content h1 { color: #FFFFFF; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active { background: #B8860B; }

/* ── Hero Generations Collage ─────────────────────────────── */
.hero-generations {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-gen-collage {
  display: flex;
  flex-direction: row;
}
.hero-gen-avatar {
  width: 144px; height: 144px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1A1A2E;
  background: #2a2a45;
  margin-left: -36px;
  flex-shrink: 0;
}
.hero-gen-collage .hero-gen-avatar:first-child { margin-left: 0; }
.hero-gen-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.hero-gen-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.hero-gen-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ── Auction Banner (below hero) ──────────────────────────── */
.auction-banner {
  background: #B8860B;
  color: #FFFFFF;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.auction-banner a { color: #FFFFFF; text-decoration: underline; }
.auction-banner a:hover { opacity: 0.85; }

/* ── Closing This Week ────────────────────────────────────── */
.closing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.lot-card {
  background: #FFFFFF;
  border: 1px solid #e8e3da;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lot-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-2px); }
.lot-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0ede8;
}
.lot-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.lot-card:hover .lot-card-img img { transform: scale(1.04); }
.lot-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #B8860B;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.lot-card-body { padding: 18px 20px 20px; }
.lot-card-body h3 { font-size: 1rem; margin-bottom: 6px; color: #1A1A2E; }
.lot-estimate { font-size: 0.85rem; color: #5A5A7A; margin-bottom: 12px; }
.lot-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c0392b;
  margin-bottom: 14px;
}
.lot-timer svg { flex-shrink: 0; }
.lot-card-body .btn { width: 100%; text-align: center; padding: 10px; font-size: 0.82rem; }

/* ── Category Grid ────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.category-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #2a2a45;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.4s;
}
.category-card:hover img { opacity: 0.4; transform: scale(1.06); }
.category-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
}
.category-label span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.category-card:hover::after { border-color: #B8860B; }

/* ── Sell Section ─────────────────────────────────────────── */
.sell-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sell-content h2 { margin-bottom: 16px; }
.sell-content p { color: #5A5A7A; margin-bottom: 24px; }
.sell-steps { margin: 24px 0 32px; }
.sell-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #1A1A2E;
  color: #B8860B;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; color: #1A1A2E; }
.step-text span { font-size: 0.85rem; color: #5A5A7A; }
.sell-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #e8e3da;
}
.sell-image img { width: 100%; height: 100%; object-fit: cover; }
.sell-image-badge {
  position: absolute;
  bottom: 24px; left: -12px;
  background: #B8860B;
  color: #FFFFFF;
  padding: 16px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.sell-image-badge span { display: block; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 400; opacity: 0.85; }

/* ── About Strip ──────────────────────────────────────────── */
.about-strip {
  display: flex;
  align-items: center;
  gap: 56px;
}
.about-strip-img {
  flex-shrink: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8e3da;
  border: 4px solid #B8860B;
}
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-text h2 { margin-bottom: 12px; }
.about-strip-text p { color: #5A5A7A; margin-bottom: 20px; }
.stats-row { display: flex; gap: 40px; margin-top: 24px; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #B8860B; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #e8e3da;
  border-top: 4px solid #B8860B;
  padding: 32px 28px;
  border-radius: 2px;
}
.testimonial-stars { color: #B8860B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-style: italic;
  color: #2C2C2C;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author { font-weight: 700; font-size: 0.85rem; color: #1A1A2E; }
.testimonial-author span { font-weight: 400; color: #5A5A7A; display: block; font-size: 0.8rem; margin-top: 2px; }

/* ── App Section ──────────────────────────────────────────── */
.app-section {
  background: linear-gradient(135deg, #1A1A2E 60%, #2d2d50);
  padding: 72px 0;
}
.app-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.app-text { flex: 1; }
.app-text h2 { color: #FFFFFF; margin-bottom: 12px; }
.app-text p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 1.05rem; }
.app-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 20px;
  border-radius: 8px;
  color: #FFFFFF;
  transition: background 0.2s;
}
.app-badge:hover { background: rgba(255,255,255,0.18); }
.app-badge-icon { font-size: 1.6rem; }
.app-badge-text { line-height: 1.2; }
.app-badge-text small { font-size: 0.7rem; opacity: 0.75; display: block; }
.app-badge-text strong { font-size: 0.95rem; }
.app-mockup {
  flex-shrink: 0;
  width: 220px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
}

/* ── Subscribe ────────────────────────────────────────────── */
.subscribe-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.subscribe-form p { color: #5A5A7A; margin-bottom: 24px; }
.subscribe-row {
  display: flex;
  gap: 0;
  border: 2px solid #1A1A2E;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.subscribe-row input {
  flex: 1;
  padding: 14px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  border: none;
  outline: none;
  color: #2C2C2C;
}
.subscribe-row button {
  padding: 14px 28px;
  background: #1A1A2E;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-row button:hover { background: #B8860B; }
.subscribe-categories {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cat-checkbox { display: none; }
.cat-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid #c8c3ba;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5A5A7A;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-label:hover { border-color: #B8860B; color: #B8860B; }
.cat-checkbox:checked + .cat-label { background: #1A1A2E; color: #FFFFFF; border-color: #1A1A2E; }
.subscribe-note { font-size: 0.78rem; color: #9a9a9a; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #12122a;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  margin-bottom: 16px;
  line-height: 0;
}
.footer-brand .footer-logo img { height: 64px; width: auto; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: #B8860B; color: #B8860B; }
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #B8860B; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: #B8860B; }
.accreditation {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 3px;
}
.accreditation svg { opacity: 0.6; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: #5A5A7A;
  border-bottom: 1px solid #e8e3da;
}
.breadcrumb a { color: #5A5A7A; }
.breadcrumb a:hover { color: #B8860B; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: #1A1A2E;
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: #FFFFFF; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

/* ── Auction Cards ────────────────────────────────────────── */
.auction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.auction-card {
  background: #FFFFFF;
  border: 1px solid #e8e3da;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.auction-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.auction-card-img {
  aspect-ratio: 16/9;
  background: #e8e3da;
  overflow: hidden;
}
.auction-card-img img { width: 100%; height: 100%; object-fit: cover; }
.auction-card-body { padding: 20px 22px 22px; }
.auction-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 6px;
}
.auction-card-body h3 { font-size: 1.05rem; color: #1A1A2E; margin-bottom: 8px; }
.auction-meta {
  font-size: 0.83rem;
  color: #5A5A7A;
  margin-bottom: 16px;
}
.auction-meta div { margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.auction-countdown {
  background: #F8F5EF;
  border-radius: 3px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.countdown-label { font-size: 0.75rem; font-weight: 600; color: #5A5A7A; text-transform: uppercase; letter-spacing: 0.05em; }
.countdown-time { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #c0392b; }
.auction-card-btns { display: flex; gap: 10px; }
.auction-card-btns .btn { flex: 1; text-align: center; padding: 10px 12px; font-size: 0.8rem; }

/* ── Iframe Container ─────────────────────────────────────── */
.iframe-container {
  width: 100%;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.iframe-container iframe {
  width: 100%;
  height: 1300px;
  border: none;
  display: block;
}

/* ── Form Styles ──────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #2C2C2C;
  background: #FFFFFF;
  border: 2px solid #d8d3ca;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #1A1A2E; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.form-note { font-size: 0.8rem; color: #5A5A7A; margin-top: 6px; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: #B8860B; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #d8d3ca, #e8e3da);
  display: flex; align-items: center; justify-content: center;
  color: #9a9a9a; font-size: 0.8rem; text-align: center;
  padding: 12px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav.open { display: block; }
  .sell-split { grid-template-columns: 1fr; }
  .sell-image { aspect-ratio: 16/9; max-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { flex-direction: column; text-align: center; }
  .about-strip-img { width: 160px; height: 160px; }
  .stats-row { justify-content: center; }
  .app-inner { flex-direction: column; text-align: center; }
  .app-badges { justify-content: center; }
  .app-mockup { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .hero { min-height: 440px; }
  .hero-content { text-align: center; max-width: 100%; padding: 48px 0; }
  .hero-content p { max-width: 100%; }
  .hero-eyebrow { white-space: normal; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { text-align: center; width: 100%; max-width: 300px; }
  .hero-gen-avatar { width: 90px; height: 90px; }
  .hero-gen-avatar { margin-left: -22px; }
  .hero-gen-collage .hero-gen-avatar:first-child { margin-left: 0; }
  .hero-generations { justify-content: center; }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .subscribe-row { flex-direction: column; border: none; gap: 0; }
  .subscribe-row input { border: 2px solid #1A1A2E; border-radius: 2px; margin-bottom: 8px; }
  .subscribe-row button { border-radius: 2px; padding: 14px; }
}
