/* ============================================================
   HUGHES STAMP CLUB — Stylesheet
   Warm, inviting, stamp-enthusiast energy.
   ============================================================ */

/* --- CUSTOM PROPERTIES ------------------------------------ */
:root {
  --cream:      #FBF5E6;
  --paper:      #EFE2C4;
  --linen:      #E4D4A8;
  --red:        #B5272A;
  --dark-red:   #8B1B1E;
  --ink:        #1A0D00;
  --brown:      #6B3B1C;
  --gold:       #C9962B;
  --muted:      #8C7A5E;
  --light-muted:#C4B49A;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --section-v: 96px;
  --radius:    8px;
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--cream);
  background-image: radial-gradient(circle, rgba(160,130,80,0.13) 1px, transparent 1px);
  background-size: 26px 26px;
  overflow-x: hidden;
}

/* Subtle paper grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- TYPOGRAPHY ------------------------------------------ */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}

h1 { font-size: clamp(3.2rem, 7.5vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p   { color: var(--brown); }
p + p { margin-top: 0.9em; }

address { font-style: normal; }

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--dark-red); }

strong { font-weight: 700; color: var(--ink); }

/* --- LAYOUT ---------------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SHARED LABELS --------------------------------------- */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-intro {
  font-size: 1.08rem;
  color: var(--brown);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* --- BUTTONS --------------------------------------------- */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--dark-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181,39,42,0.28);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(107,59,28,0.4);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--brown);
  color: var(--brown);
  transform: translateY(-2px);
}

/* --- SCROLL ANIMATION ------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 245, 230, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180,150,100,0.18);
  transition: box-shadow var(--transition);
}
#nav.scrolled {
  box-shadow: 0 2px 18px rgba(26,13,0,0.09);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.1;
  color: var(--ink);
}
.nav-logo-sub {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
}
.nav-cta:hover {
  background: var(--dark-red) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 24px;
  overflow: hidden;
}

/* Decorative postmark watermark */
.postmark-bg {
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 42vw, 520px);
  opacity: 0.07;
  color: var(--brown);
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  /* left-align to viewport edge near container */
  margin-left: max(0px, calc((100vw - 1100px) / 2));
  padding-left: 0;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-title {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-hook {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
}
.hero-hook-bar {
  width: 4px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
  margin-right: 18px;
}
.hero-hook p {
  font-size: 1.02rem;
  color: var(--brown);
  line-height: 1.65;
}
.hero-hook strong {
  color: var(--red);
}

/* Meeting date badge */
.hero-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--linen);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-bottom: 32px;
}
.hero-badge-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
.hero-badge-date {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.hero-badge-time {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}


/* ============================================================
   CANCEL MARK DIVIDERS
   The classic postal cancellation: 3 parallel lines + postmark circle
   ============================================================ */
.cancel-divider {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.cancel-divider--paper {
  background: var(--paper);
}

/* 3 parallel cancel lines spanning full width */
.cancel-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 16px;
  background:
    linear-gradient(var(--light-muted), var(--light-muted)) top    / 100% 1.5px,
    linear-gradient(var(--light-muted), var(--light-muted)) center / 100% 1.5px,
    linear-gradient(var(--light-muted), var(--light-muted)) bottom / 100% 1.5px;
  background-repeat: no-repeat;
  opacity: 0.45;
}

/* Circular postmark that sits on top of the lines */
.cancel-pm {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: inherit; /* inherits from .cancel-divider, always matches surroundings */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cancel-pm svg {
  width: 68px;
  height: 68px;
  color: var(--light-muted);
  opacity: 0.7;
}

/* Footer rule — simple double line, no circle needed */
.footer-perf {
  height: 1px;
  background: rgba(255,255,255,0.08);
}


/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: var(--section-v) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text h2 {
  margin-bottom: 1.2rem;
}
.about-text p {
  font-size: 1.05rem;
}

/* About section right column */
.about-stamp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Commemorative stamp — all-4-sides perforated SVG stamp
   used in the About section right column. */
.about-stamp {
  width: 100%;
  max-width: 230px;
  transform: rotate(-2deg);
  filter: drop-shadow(3px 6px 14px rgba(26,13,0,0.14));
  flex-shrink: 0;
}
.about-stamp svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-details {
  list-style: none;
  width: 100%;
  max-width: 280px;
}
.about-details li {
  font-size: 0.95rem;
  color: var(--brown);
  padding: 8px 0;
  border-bottom: 1px dashed var(--linen);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.about-details li::before {
  content: '✓';
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-details li:last-child { border-bottom: none; }


/* ============================================================
   PROCESS STEPS (Benefits section — how a meeting works)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: 48px;
  row-gap: 0;
  margin-bottom: 56px;
}

.process-step {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--linen);
}

.process-num {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
  flex-shrink: 0;
  min-width: 26px;
}

.process-text {
  font-size: 1.1rem;
  color: var(--brown);
  line-height: 1.55;
}

.process-cards-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-top: 4px;
}


/* ============================================================
   BENEFITS
   ============================================================ */
#benefits {
  padding: var(--section-v) 0;
  background-color: var(--paper);
  background-image: radial-gradient(circle, rgba(140,110,60,0.1) 1px, transparent 1px);
  background-size: 26px 26px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 260px;
  background: var(--cream);
  border: 1px solid rgba(180,150,100,0.25);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,13,0,0.1);
}

.benefit-num {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 12px;
  opacity: 0.7;
}
.benefit-card h3 {
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Top accent bar on hover */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.benefit-card:hover::before { transform: scaleX(1); }


/* ============================================================
   AUCTION PREVIEW
   ============================================================ */
#auction {
  padding: var(--section-v) 0;
}

.auction-heading {
  margin-bottom: 0.5rem;
}

/* Broadside / catalogue notice block
   Styled like a vintage auction house listing — warm parchment,
   double-rule border (thick outer + thin inner), two-column layout */
.auction-broadside {
  position: relative;
  background: var(--paper);
  border: 2.5px solid var(--brown);
  border-radius: 4px;
  padding: 48px 44px;
  margin-top: 2rem;
  overflow: hidden;
}

/* Thin inner rule — the classic "double-rule" catalogue border */
.auction-broadside::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid var(--linen);
  border-radius: 2px;
  pointer-events: none;
}

.broadside-inner {
  position: relative; /* sits above ::before inner rule */
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 56px;
}

.broadside-text { flex: 1; }

.broadside-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.broadside-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}

.broadside-desc {
  font-size: 1.02rem;
  color: var(--brown);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 14px;
}

.broadside-date {
  font-size: 0.9rem;
  color: var(--muted);
}
.broadside-date strong { color: var(--ink); }

.broadside-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.broadside-btn {
  white-space: nowrap;
  font-size: 1.05rem;
  padding: 16px 32px;
}

.broadside-note {
  font-size: 0.72rem;
  color: var(--light-muted);
}



/* ============================================================
   MEETING INFO
   ============================================================ */
#meeting {
  padding: var(--section-v) 0;
  background-color: var(--paper);
  background-image: radial-gradient(circle, rgba(140,110,60,0.1) 1px, transparent 1px);
  background-size: 26px 26px;
}

#meeting h2 { margin-bottom: 2rem; }

.meeting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}

.meeting-card {
  background: var(--cream);
  border: 1px solid rgba(180,150,100,0.25);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.meeting-card--map {
  padding: 0;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 20px rgba(26,13,0,0.1);
  display: flex;
  flex-direction: column;
}
.meeting-card--map iframe {
  flex: 1;
  min-height: 260px;
  display: block;
  border: 0;
  border-radius: 6px;
}

.meeting-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.meeting-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.meeting-schedule {
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.meeting-schedule strong { font-size: 1.2rem; }

.meeting-time {
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 12px;
}

.meeting-upcoming {
  font-size: 0.9rem;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px dashed var(--linen);
  margin-top: auto;
}
.meeting-upcoming strong { color: var(--ink); }

.meeting-card address {
  font-size: 1.02rem;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 14px;
}

.parking-note {
  font-size: 0.88rem;
  color: var(--brown);
  margin-bottom: 16px;
}

.map-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--red);
  display: inline-block;
  margin-top: auto;
}
.map-link:hover { color: var(--dark-red); }

/* Dutch auction explainer */
.dutch-explainer {
  margin: 40px 0 32px;
  border: 1px solid rgba(180,150,100,0.3);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}
.dutch-explainer summary {
  padding: 16px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dutch-explainer summary::-webkit-details-marker { display: none; }
.dutch-explainer summary::before {
  content: '▶';
  font-size: 0.65rem;
  color: var(--red);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.dutch-explainer[open] summary::before {
  transform: rotate(90deg);
}
.dutch-explainer summary:hover { color: var(--red); }
.dutch-explainer-body {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(180,150,100,0.2);
}
.dutch-explainer-body p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.65;
  margin: 14px 0 0;
}
.dutch-explainer-body ul,
.dutch-explainer-body ol {
  margin: 10px 0 0 0;
  padding-left: 20px;
}
.dutch-explainer-body li {
  font-size: 0.91rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 6px;
}

.meeting-cta {
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
  border: 1px solid rgba(180,150,100,0.25);
  border-radius: var(--radius);
}
.meeting-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 20px;
}


/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background-color: #2C1507;
  color: var(--light-muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  padding: 60px 0 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-address {
  font-size: 0.9rem;
  color: var(--light-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-schedule {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.footer-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--light-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cream); }

.footer-postmark {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}
.footer-postmark svg {
  width: 90px;
  height: 90px;
  color: rgba(255,255,255,0.12);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
}


/* ============================================================
   RESULTS PAGE
   ============================================================ */

/* Header */
.results-header {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
}
.results-header .postmark-bg {
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
}

.results-header-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.results-back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: currentColor;
  opacity: 0.7;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity var(--transition);
}
.results-back-link:hover { opacity: 1; }

.results-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.05;
}

.results-location {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 20px;
}

.results-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--brown);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 36px;
}

.results-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--linen);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
}

.results-stat {
  text-align: center;
  padding: 0 28px;
}
.results-stat:first-child { padding-left: 0; }
.results-stat:last-child  { padding-right: 0; }

.results-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.results-stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.results-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--linen);
  flex-shrink: 0;
}

/* Notable Deals cards */
.results-deals {
  padding: var(--section-v) 0;
}

.deal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.deal-card {
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
/* Inner double-rule */
.deal-card::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid var(--linen);
  border-radius: 2px;
  pointer-events: none;
}

.deal-lot-badge {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.deal-country {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}

.deal-desc {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.deal-prices {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.deal-price-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.deal-price-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.deal-price-cat {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.45;
  text-decoration: line-through;
  text-decoration-color: rgba(181,39,42,0.4);
  line-height: 1.1;
}

.deal-price-final {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.1;
}

.deal-arrow {
  font-size: 1.1rem;
  color: var(--light-muted);
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 4px;
}

.deal-tagline {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--red);
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--linen);
}

/* Results table section */
.results-table-section {
  padding: var(--section-v) 0;
  background-color: var(--paper);
  background-image: radial-gradient(circle, rgba(140,110,60,0.1) 1px, transparent 1px);
  background-size: 26px 26px;
}

.results-table-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

.legend-swatch {
  display: inline-block;
  width: 16px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.legend-swatch--deal   { background: rgba(52, 120, 60, 0.14); border: 1px solid rgba(52,120,60,0.3); }
.legend-swatch--hot    { background: rgba(181,130,0,0.14);    border: 1px solid rgba(181,130,0,0.3); }
.legend-swatch--unsold { background: rgba(140,122,94,0.1);    border: 1px solid var(--linen); }

.results-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(26,13,0,0.08);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  font-size: 0.9rem;
}

.results-table thead tr {
  background: #2C1507;
}

.results-table thead th {
  color: var(--light-muted);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 14px;
  text-align: left;
  white-space: nowrap;
  border: none;
}
.results-table thead th.col-num,
.results-table thead th.col-pct {
  text-align: right;
}

.results-table tbody tr {
  border-bottom: 1px solid rgba(180,150,100,0.18);
  transition: background var(--transition);
}
.results-table tbody tr:last-child { border-bottom: none; }
.results-table tbody tr:hover { background: rgba(201,150,43,0.07); }

.results-table tbody td {
  padding: 11px 14px;
  color: var(--brown);
  vertical-align: middle;
}

.col-lot {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--muted) !important;
  white-space: nowrap;
  width: 36px;
}

.col-num { text-align: right; white-space: nowrap; }
.col-pct { text-align: right; white-space: nowrap; }
.col-desc { min-width: 200px; }

/* Row states */
.row--deal  { background: rgba(52, 120, 60, 0.055); }
.row--hot   { background: rgba(181,130,0,0.07); }
.row--unsold { opacity: 0.6; }

.bid-sold {
  font-weight: 700;
  color: var(--ink) !important;
  text-align: right;
  white-space: nowrap;
}
.bid-hot {
  color: var(--gold) !important;
}
.bid-unsold {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-muted) !important;
  text-align: right;
  white-space: nowrap;
}

.pct {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  padding: 2px 7px;
  border-radius: 10px;
  background: transparent;
  white-space: nowrap;
}
.pct--great {
  color: #2E6B36;
  background: rgba(52,120,60,0.12);
}
.pct--hot {
  color: #8B6200;
  background: rgba(181,130,0,0.13);
}
.pct--unsold {
  color: var(--light-muted);
}

/* BWYW section */
.bwyw-section {
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--cream);
  border: 1.5px solid rgba(180,150,100,0.3);
  border-radius: var(--radius);
}

.bwyw-heading {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.bwyw-desc {
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 18px;
  max-width: 560px;
}

.bwyw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bwyw-list li {
  font-size: 0.9rem;
  color: var(--brown);
  padding: 8px 0;
  border-bottom: 1px dashed var(--linen);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bwyw-list li:last-child { border-bottom: none; }
.bwyw-list li::before {
  content: '—';
  color: var(--light-muted);
  flex-shrink: 0;
}

.bwyw-sold {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(181,39,42,0.07);
  padding: 2px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

/* CTA section */
.results-cta-section {
  padding: var(--section-v) 0;
}

.results-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--paper);
  border: 2.5px solid var(--brown);
  border-radius: 4px;
  padding: 48px 48px;
  position: relative;
  overflow: hidden;
}
.results-cta-inner::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid var(--linen);
  border-radius: 2px;
  pointer-events: none;
}

.results-cta-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.results-cta-text {
  position: relative;
  z-index: 1;
}
.results-cta-text p:not(.section-eyebrow) {
  font-size: 1.02rem;
  color: var(--brown);
  max-width: 480px;
}

.results-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}


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

/* Tablet */
@media (max-width: 900px) {
  :root { --section-v: 72px; }

  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .about-stamp-wrap  { flex-direction: row; gap: 32px; align-items: flex-start; }
  .about-stamp       { max-width: 180px; }
  .about-details     { max-width: none; }

  .process-grid      { grid-template-columns: 1fr; }
  .meeting-grid      { grid-template-columns: 1fr 1fr; }
  .meeting-card--map { grid-column: span 2; }

  .footer-inner      { grid-template-columns: 1fr 1fr; }
  .footer-postmark   { justify-content: flex-start; grid-column: span 2; }

  /* Results page */
  .deal-cards          { grid-template-columns: 1fr 1fr; }
  .results-cta-inner   { grid-template-columns: 1fr; gap: 28px; }
  .results-cta-actions { flex-direction: row; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --section-v: 56px; }

  /* Nav mobile */
  .nav-toggle  { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(251,245,230,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--linen);
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(26,13,0,0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li { border-bottom: 1px solid rgba(180,150,100,0.12); }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 0;
  }
  .nav-cta {
    margin: 8px 16px !important;
    text-align: center !important;
    border-radius: var(--radius) !important;
  }

  /* Hero */
  #hero { padding: 48px 20px; min-height: auto; }
  .postmark-bg { opacity: 0.04; right: -20%; top: 10%; transform: none; }
  .hero-content { margin-left: 0; }

  /* Sections */
  .about-grid        { grid-template-columns: 1fr; }
  .about-stamp-wrap  { flex-direction: column; align-items: center; }

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

  .auction-broadside { padding: 32px 24px; }
  .broadside-inner   { flex-direction: column; gap: 32px; }
  .broadside-action  { width: 100%; }
  .broadside-btn     { width: 100%; text-align: center; }

  .meeting-grid      { grid-template-columns: 1fr; }
  .meeting-card--map { grid-column: auto; }

  .footer-inner      { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; }
  .footer-postmark   { grid-column: auto; }

  /* Results page */
  .results-stats-row { flex-direction: column; gap: 0; width: 100%; }
  .results-stat      { padding: 14px 0; width: 100%; }
  .results-stat:first-child { padding-top: 0; }
  .results-stat-divider { width: 100%; height: 1px; }
  .deal-cards        { grid-template-columns: 1fr; }
  .bwyw-section      { padding: 24px 20px; }
  .results-cta-inner { padding: 32px 24px; }
  .results-cta-actions { flex-direction: column; width: 100%; }
  .results-cta-actions a { width: 100%; text-align: center; }
}
