/* ============================================================
   Amos McCoy Auctioneer — Main Stylesheet
   Aesthetic: Americana / Auction House
   Navy #1B2A4A | Gold #C9982A | Cream #F7F3EC
   Rust #8B3A2A | Charcoal #3D3D3D
   Fonts: Playfair Display + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --navy:        #1B2A4A;
  --navy-dark:   #111D33;
  --navy-mid:    #243558;
  --gold:        #C9982A;
  --gold-light:  #E8B84B;
  --gold-pale:   #F5E9C8;
  --cream:       #F7F3EC;
  --cream-dark:  #EDE7D9;
  --rust:        #8B3A2A;
  --charcoal:    #3D3D3D;
  --mid-gray:    #6B6B6B;
  --light-gray:  #D4CFC6;
  --white:       #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', 'Helvetica Neue', sans-serif;
  --shadow-sm:   0 2px 12px rgba(27,42,74,0.08);
  --shadow:      0 6px 28px rgba(27,42,74,0.12);
  --shadow-lg:   0 16px 56px rgba(27,42,74,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.26s cubic-bezier(.4,0,.2,1);
  --max-w:       1120px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; color: var(--navy); }
h4 { font-size: 1rem; font-weight: 600; color: var(--navy); }
p  { margin-bottom: 1rem; color: var(--charcoal); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.lead {
  font-size: 1.12rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7.5rem 0; }
.text-center { text-align: center; }

/* ── Color Utilities ───────────────────────────────────── */
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-gold { background: var(--gold); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,152,42,0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,42,74,0.3);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--gold);
  background: rgba(201,152,42,0.1);
}
.nav-menu .nav-cta a {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
}
.nav-menu .nav-cta a:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}
.nav-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-right: 0.5rem;
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: all var(--transition);
}

/* ── License Badge ──────────────────────────────────────── */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,152,42,0.12);
  border: 1px solid rgba(201,152,42,0.35);
  border-radius: 4px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Hero ───────────────────────────────────────────────── */
.home-hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
  /* Subtle texture */
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(201,152,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(201,152,42,0.05) 0%, transparent 50%);
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9982A' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .license-badge { margin-bottom: 1.5rem; }
.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
  display: block;
}

/* Hero photo side */
.hero-photo {
  position: relative;
}
.hero-photo-frame {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201,152,42,0.3);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.35);
  padding: 2rem;
}
.photo-placeholder .ph-icon { font-size: 3.5rem; margin-bottom: 0.75rem; display: block; }
.photo-placeholder p { color: rgba(255,255,255,0.35); font-size: 0.88rem; margin: 0; }

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  box-shadow: var(--shadow);
  z-index: 2;
}

/* ── Differentiator Bar ─────────────────────────────────── */
.diff-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.75rem 0;
}
.diff-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.diff-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  border-right: 1px solid var(--light-gray);
}
.diff-item:last-child { border-right: none; }
.diff-item .di-icon { font-size: 1.2rem; }
.diff-item strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}
.diff-item span {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: var(--navy-dark);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(201,152,42,0.1) 0%, transparent 65%);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--gold);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0.75rem auto 0; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}
.card-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* ── Grid ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Service List ───────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Testimonial ────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--gold);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  font-size: 0.97rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  position: relative;
}
.testimonial-author strong {
  font-size: 0.88rem;
  color: var(--navy);
  display: block;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ── Photo Placeholder ──────────────────────────────────── */
.img-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--mid-gray);
}
.img-placeholder .ph-icon { font-size: 3rem; margin-bottom: 0.75rem; opacity: 0.5; }
.img-placeholder p { font-size: 0.82rem; color: var(--mid-gray); margin: 0; opacity: 0.8; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(201,152,42,0.12) 0%, transparent 65%);
  padding: 5.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9982A' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner .eyebrow { position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 540px; margin: 0.75rem auto 2rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Gold Divider ───────────────────────────────────────── */
.gold-rule {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ── Auction Format Cards ───────────────────────────────── */
.format-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.format-card:hover::before { transform: scaleX(1); }
.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}
.format-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* ── Commission Callout ─────────────────────────────────── */
.commission-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.commission-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,152,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.commission-pct {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.commission-label {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
.commission-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* ── County Tags ────────────────────────────────────────── */
.county-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.25rem;
}
.county-tag .ct-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Calendar Item ──────────────────────────────────────── */
.auction-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid var(--cream-dark);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.auction-item:hover { box-shadow: var(--shadow); border-color: var(--gold-pale); }
.auction-date {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-align: center;
  min-width: 64px;
}
.auction-date .month {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.auction-date .day {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.auction-info h4 { color: var(--navy); margin-bottom: 0.25rem; }
.auction-info p { font-size: 0.88rem; color: var(--mid-gray); margin: 0; }
.auction-type {
  background: var(--gold-pale);
  color: var(--navy);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,152,42,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 0;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}
.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,152,42,0.1);
  border: 1px solid rgba(201,152,42,0.3);
  border-radius: 4px;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.85rem 1rem; display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .diff-bar-inner { gap: 0; }
  .diff-item { padding: 0.5rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .auction-item { grid-template-columns: auto 1fr; }
  .auction-item .btn { display: none; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .diff-item { border-right: none; border-bottom: 1px solid var(--light-gray); width: 100%; }
  .diff-item:last-child { border-bottom: none; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
