@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #0E1F3D;
  --navy-dark: #081429;
  --gold: #FFC130;
  --gold-dark: #e6a800;
  --bg: #F7F5F0;
  --card-bg: #FFFFFF;
  --text: #1C1815;
  --muted: #8A8178;
  --border: rgba(14, 31, 61, 0.1);
  --radius: 14px;
  --font-display: 'Fraunces', serif;
  --font-body: 'Instrument Sans', sans-serif;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

h1, h2, h3, .font-display { font-family: var(--font-display); }

/* Grain texture overlay — fixed, non-scrolling, subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Nav */
.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-brand { justify-self: start; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy); display: flex; align-items: center; }

.nav-logo-img { height: 62px; width: auto; display: block; }

.nav-links { justify-self: center; display: flex; align-items: center; gap: 0.4rem; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: white; align-items: center; justify-content: center; flex-direction: column; gap: 4px; cursor: pointer; color: var(--navy); }
.nav-toggle span { display: block; width: 18px; height: 2px; border-radius: 999px; background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease; }

.nav-links a {
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover { background: rgba(14, 31, 61, 0.05); color: var(--navy); }
.nav-links a.active { background: var(--navy); color: white; }
.nav-links a.highlight { background: var(--gold); color: var(--navy); font-weight: 600; }

/* Admin sub-navigation */
.admin-subnav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 2rem;
  background: var(--navy);
  flex-wrap: wrap;
}
.admin-subnav a {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.admin-subnav a:hover { background: rgba(255,255,255,0.1); color: white; }
.admin-subnav a.active { background: var(--gold); color: var(--navy); font-weight: 600; }
@media (max-width: 720px) {
  .admin-subnav { padding: 0.6rem 1rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.2s;
}

.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }

.mobile-register-fab { display: none; }
@media (max-width: 720px) {
  .mobile-register-fab {
    display: inline-flex;
    justify-content: center;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 40;
    width: auto;
    box-shadow: 0 10px 30px rgba(14,31,61,0.25);
  }
}

/* Hero */
.hero {
  margin: 0 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 2.5rem;
  background: linear-gradient(120deg, rgba(8, 20, 41, 0.85), rgba(14, 31, 61, 0.5)), url('/static/img/hero.webp');
  background-size: cover;
  background-position: center;
}

.hero > div { display: flex; flex-direction: column; align-items: center; }

.hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 1.2rem; max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 193, 48, 0.14);
  border: 1px solid rgba(255, 193, 48, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}

/* Listing card */
.listing-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(14, 31, 61, 0.08);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.3s;
}

.listing-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(14, 31, 61, 0.12); }

.listing-card-image { height: 180px; background-size: cover; background-position: center; position: relative; }

.listing-card-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-bottom-left-radius: 8px;
}

.on-hold-banner {
  position: absolute;
  top: 1.4rem; left: 0; right: 0;
  z-index: 2;
  padding: 0.4rem 0.5rem;
  background: #a72a32;
  color: white;
  box-shadow: 0 6px 18px rgba(8,20,41,0.25);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.detail-gallery-main .on-hold-banner {
  top: 2rem;
  padding: 0.8rem 1rem;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
}

.listing-card-date {
  position: absolute; bottom: 0.6rem; left: 0.6rem;
  background: var(--navy); color: white;
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.7rem; border-radius: 6px;
}

.listing-card-body { padding: 1rem 1.1rem; }
.listing-card-cat { font-size: 0.68rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.listing-card-title { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.35; }
.listing-card-footer { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 0.6rem; }

.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.listings-grid-4col { grid-template-columns: repeat(4, 1fr); }
.listings-grid-3col { grid-template-columns: repeat(3, 1fr); }
.listings-grid-2col { grid-template-columns: repeat(2, 1fr); }

/* Footer */
.site-footer { background: white; color: var(--muted); border-top: 1px solid var(--border); padding: 1.4rem 1.5rem; }
.footer-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; }
.footer-copyright, .footer-endorsement { font-size: 0.75rem; }
.footer-endorsement { text-align: center; }
.footer-endorsement a { color: var(--navy); font-weight: 600; }
.footer-links { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 1.1rem; }
.footer-links a { color: var(--muted); font-size: 0.75rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--navy); }
.footer-links .footer-admin-link { color: rgba(138,129,120,0.72); }

/* Homepage */
.home-hero {
  min-height: 520px;
  background-image: linear-gradient(105deg, rgba(8,20,41,0.90), rgba(14,31,61,0.42)), url('/static/img/hero-aldes-castle.webp');
  background-position: center 33%;
  animation: heroDrift 8s ease-in-out infinite alternate;
}
.hero-intro { max-width: 650px; color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.65; margin: -0.35rem 0 1.5rem; }
.hero-outline { color: white; border-color: rgba(255,255,255,0.4); }
.hero-outline:hover { color: var(--navy); background: white; }
.credibility-band { max-width: 1120px; margin: 0 auto; padding: 2rem 1.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.credibility-item { text-align: center; padding: 0.5rem 1rem; border-right: 1px solid var(--border); }
.credibility-item:last-child { border-right: 0; }
.credibility-item strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 1.25rem; }
.credibility-item span { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.home-section,
.home-section.container { padding: 5rem 1.5rem; }
.section-kicker { display: block; color: var(--gold-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 0.7rem; }
.section-heading-row { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2rem; }
.section-heading-row > div { max-width: 700px; }
.section-heading-row h2, .centered-heading h2, .scope-layout h2, .aldes-backup-content h2 { color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.4rem); line-height: 1.15; margin-bottom: 0.8rem; }
.section-heading-row p, .centered-heading p, .scope-layout > div > p { color: var(--muted); line-height: 1.7; max-width: 680px; }
.text-link { color: var(--navy); font-size: 0.83rem; font-weight: 600; white-space: nowrap; }
.text-link:hover { color: var(--gold-dark); }
.home-empty-state { background: white; border: 1px dashed var(--border); border-radius: var(--radius); color: var(--muted); padding: 2.5rem; text-align: center; }
.scope-section { position: relative; overflow: hidden; color: white; background-image: linear-gradient(105deg, rgba(8,20,41,0.96) 0%, rgba(14,31,61,0.92) 48%, rgba(14,31,61,0.78) 100%), url('/static/img/sell-industrial.webp'); background-size: cover; background-position: center 46%; }
.scope-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 78% 45%, rgba(255,193,48,0.08), transparent 30%); }
.scope-section > .container { position: relative; z-index: 1; }
.scope-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 5rem; align-items: center; }
.scope-layout h2 { color: white; }
.scope-layout > div > p { color: rgba(255,255,255,0.68); margin-bottom: 1.5rem; }
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.scope-item { display: flex; align-items: center; gap: 0.7rem; min-height: 58px; padding: 0.85rem 1rem; border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; background: rgba(255,255,255,0.05); font-size: 0.86rem; }
.scope-item span { color: var(--gold); font-size: 1.1rem; }
.centered-heading { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.centered-heading p { margin: 0 auto; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.principle-card { padding: 1.5rem; background: white; border-radius: var(--radius); border-top: 3px solid var(--gold); box-shadow: 0 12px 30px rgba(14,31,61,0.07); }
.principle-card > span { color: var(--gold-dark); font-size: 0.7rem; font-weight: 700; }
.principle-top { display: flex; align-items: center; justify-content: space-between; }
.principle-top i { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; background: rgba(255,193,48,0.14); color: var(--gold-dark); font-style: normal; transition: transform 0.3s ease, background 0.3s ease; }
.principle-top span { color: var(--gold-dark); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.05em; }
.principle-card:hover .principle-top i { transform: translateY(-3px) rotate(-3deg); background: var(--gold); color: var(--navy); }
.principle-card h3 { color: var(--navy); font-size: 1rem; margin: 1.6rem 0 0.65rem; }
.principle-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.65; }
.advantage-section { position: relative; overflow: hidden; color: white; background-image: linear-gradient(120deg, rgba(8,20,41,0.97) 0%, rgba(14,31,61,0.91) 54%, rgba(14,31,61,0.82) 100%), url('/static/img/agent-office.webp'); background-size: cover; background-position: center 48%; }
.advantage-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 45%, rgba(255,193,48,0.07), transparent 34%); }
.advantage-section > .container { position: relative; z-index: 1; }
.light-heading h2 { color: white; }
.light-heading p { color: rgba(255,255,255,0.7); }
.advantage-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); overflow: hidden; }
.advantage-grid article { padding: 1.5rem 1.2rem; border-right: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.035); }
.advantage-grid article:last-child { border-right: 0; }
.advantage-grid b { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--navy); margin-bottom: 1.5rem; }
.advantage-grid b .ui-icon { width: 19px; height: 19px; }
.advantage-grid article:hover b { transform: scale(1.1) rotate(-4deg); }
.advantage-grid h3 { font-family: var(--font-body); font-size: 0.92rem; margin-bottom: 0.6rem; }
.advantage-grid p { color: rgba(255,255,255,0.6); font-size: 0.78rem; line-height: 1.6; }
.advantage-signoff { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.advantage-signoff i { width: 3px; height: 3px; background: white; border-radius: 50%; }
.process-track { display: grid; grid-template-columns: repeat(6, 1fr); position: relative; }
.process-track::before { content: ""; position: absolute; top: 18px; left: 3%; right: 3%; height: 1px; background: var(--border); }
.process-step { position: relative; padding: 0 1rem; }
.process-step > span { position: relative; z-index: 1; display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; background: var(--gold); color: var(--navy); border-radius: 50%; font-size: 0.68rem; font-weight: 700; margin-bottom: 1.2rem; }
.process-step h3 { color: var(--navy); font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--muted); font-size: 0.76rem; line-height: 1.55; }
.audience-section { background: #efede7; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.audience-grid article { background: white; padding: 2rem; border-radius: var(--radius); box-shadow: 0 12px 30px rgba(14,31,61,0.06); }
.audience-icon { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--navy); color: var(--gold); border-radius: 12px; font-family: var(--font-display); font-weight: 700; }
.audience-icon .ui-icon { width: 23px; height: 23px; }
.audience-grid article:hover .audience-icon { transform: translateY(-3px) rotate(-3deg); background: var(--gold); color: var(--navy); }
.ui-icon { display: block; width: 22px; height: 22px; }
.principle-top i, .advantage-grid b, .audience-icon { transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease; }
.audience-grid h3 { color: var(--navy); margin: 1.25rem 0 0.7rem; }
.audience-grid p { color: var(--muted); font-size: 0.84rem; line-height: 1.7; margin-bottom: 1.2rem; }
.aldes-backup-section { min-height: 560px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 5rem 1.5rem; color: var(--navy); background-image: linear-gradient(90deg, #eee9df 0%, #eee9df 38%, rgba(238,233,223,0.96) 52%, rgba(238,233,223,0.48) 72%, rgba(238,233,223,0.12) 100%), url('/static/img/hero.webp'); background-size: cover; background-position: center; }
.aldes-backup-section::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--navy)); }
.aldes-backup-content { margin: 0 auto; }
.aldes-backup-content > * { max-width: 680px; }
.aldes-backup-content h2 { color: var(--navy); }
.aldes-backup-content > p { color: rgba(14,31,61,0.72); line-height: 1.75; margin-bottom: 1rem; }
.aldes-proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin: 1.7rem 0; }
.aldes-proof-grid span { padding-left: 1.1rem; position: relative; color: rgba(14,31,61,0.84); font-size: 0.82rem; }
.aldes-proof-grid span::before { content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; position: absolute; left: 0; top: 0.42rem; }
.aldes-backup-section .hero-outline { color: var(--navy); border-color: rgba(14,31,61,0.3); background: rgba(255,255,255,0.42); }
.aldes-backup-section .hero-outline:hover { color: white; background: var(--navy); }
.sold-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sold-result-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 28px rgba(14,31,61,0.08); }
.sold-result-image { height: 190px; background: #3a4a63 center/cover; position: relative; }
.sold-result-image--empty { background: linear-gradient(135deg, var(--navy-dark), #263c60); }
.sold-result-image span { position: absolute; top: 0.7rem; left: 0.7rem; padding: 0.35rem 0.7rem; border-radius: 999px; background: #a72a32; color: white; text-transform: uppercase; font-size: 0.65rem; font-weight: 700; }
.sold-result-card > div:last-child { padding: 1rem; }
.sold-result-card small { color: var(--gold-dark); text-transform: uppercase; font-size: 0.67rem; }
.sold-result-card h3 { color: var(--navy); font-size: 1rem; margin-top: 0.35rem; }
.sold-page-header { padding: 4.2rem 1.5rem 3.6rem; background-image: linear-gradient(100deg, rgba(8,20,41,0.97) 0%, rgba(14,31,61,0.88) 52%, rgba(14,31,61,0.62) 100%), url('/static/img/bidder-architecture.webp'); background-size: cover; background-position: center 55%; color: white; border-bottom: 4px solid var(--gold); }
.sold-page-header h1 { max-width: 700px; margin-top: 0.6rem; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
.sold-page-header p { max-width: 650px; margin-top: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.65; }
.sold-hero-actions { display: flex; margin-top: 1.5rem; }
.sold-page-results.container { padding: 4rem 1.5rem 5rem; }
.sold-result-content h2 { color: var(--navy); font-family: var(--font-display); font-size: 1.18rem; line-height: 1.3; margin-top: 0.4rem; }
.sold-result-content > p { min-height: 2.6em; color: var(--muted); font-size: 0.8rem; line-height: 1.5; margin-top: 0.5rem; }
.sold-result-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 0.9rem; padding-top: 0.75rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.72rem; }
.sold-page-empty { padding: 3rem; text-align: center; border: 1px solid var(--border); border-radius: var(--radius); background: white; }
.sold-page-empty h2 { color: var(--navy); font-size: 1.35rem; }
.sold-page-empty p { color: var(--muted); margin-top: 0.5rem; }
.home-cta { padding: 5rem 1.5rem; background: var(--navy-dark); }
.home-cta .listings-grid { max-width: 1000px; margin: 0 auto; }
.home-cta .listing-card:hover { transform: none; }
.home-cta input, .home-cta select { font-family: inherit; }

/* Sell with us */
.sell-hero { min-height: 610px; display: flex; align-items: center; padding: 5rem 1.5rem; background: linear-gradient(90deg, rgba(8,20,41,0.94) 0%, rgba(8,20,41,0.78) 48%, rgba(8,20,41,0.18) 100%), url('/static/img/sell-hero.webp') center 42%/cover; color: white; }
.sell-hero-content { width: 100%; }
.sell-hero-content > * { max-width: 700px; }
.sell-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.06; margin-bottom: 1.25rem; }
.sell-hero h1 em { color: var(--gold); font-style: normal; }
.sell-hero-content > p { color: rgba(255,255,255,0.82); line-height: 1.7; font-size: 1rem; }
.sell-hero-content .sell-hero-note { color: rgba(255,255,255,0.62); font-size: 0.86rem; margin-top: 0.75rem; }
.sell-hero-actions { display: flex; gap: 0.8rem; margin-top: 1.7rem; }
.seller-friction { background: var(--navy); color: white; padding: 1.6rem 1.5rem; }
.seller-friction-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.seller-friction article { display: flex; gap: 0.8rem; padding: 0.4rem 1.2rem; border-right: 1px solid rgba(255,255,255,0.14); }
.seller-friction article:first-child { padding-left: 0; }
.seller-friction article:last-child { border-right: 0; }
.seller-friction article > span { color: var(--gold); font-size: 0.68rem; font-weight: 700; padding-top: 0.15rem; }
.seller-friction h3 { font-family: var(--font-body); font-size: 0.8rem; margin-bottom: 0.25rem; }
.seller-friction p { color: rgba(255,255,255,0.56); font-size: 0.7rem; line-height: 1.5; }
.seller-section, .seller-section.container { padding: 5.5rem 1.5rem; }
.seller-section h2, .seller-assets-copy h2, .seller-process-heading h2, .seller-aldes-content h2, .seller-faq-heading h2, .seller-enquiry-layout h2 { color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 0.9rem; }
.seller-fit-section { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 4rem; align-items: center; }
.seller-intro-column > p, .seller-process-heading > p, .seller-faq-heading > p { color: var(--muted); line-height: 1.7; }
.seller-fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.seller-fit-grid article { background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 12px 30px rgba(14,31,61,0.07); border-bottom: 2px solid transparent; transition: transform 0.3s ease, border-color 0.3s ease; }
.seller-fit-grid article:hover { transform: translateY(-5px); border-color: var(--gold); }
.seller-fit-grid b { color: var(--gold-dark); font-size: 0.68rem; }
.seller-fit-grid h3 { color: var(--navy); font-family: var(--font-body); font-size: 0.93rem; margin: 1rem 0 0.55rem; }
.seller-fit-grid p { color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.seller-comparison-section { background: #efede7; }
.seller-comparison { background: white; border-radius: var(--radius); box-shadow: 0 16px 40px rgba(14,31,61,0.08); overflow: hidden; }
.seller-comparison table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.seller-comparison th, .seller-comparison td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.55; }
.seller-comparison thead th { background: var(--navy); color: white; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }
.seller-comparison thead th:last-child { background: var(--gold); color: var(--navy); }
.seller-comparison tbody th { color: var(--navy); width: 16%; }
.seller-comparison tbody td:nth-child(2) { color: var(--muted); width: 39%; }
.seller-comparison tbody td:last-child { color: var(--navy); width: 45%; background: rgba(255,193,48,0.045); }
.seller-comparison-note { color: var(--muted); font-size: 0.78rem; text-align: center; margin-top: 1.2rem; }
.seller-assets-section { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 600px; background: var(--navy-dark); color: white; }
.seller-assets-image { background: linear-gradient(rgba(8,20,41,0.08),rgba(8,20,41,0.25)), url('/static/img/sell-industrial.webp') center/cover; }
.seller-assets-copy { padding: 5rem clamp(2rem, 6vw, 6rem); align-self: center; }
.seller-assets-copy h2 { color: white; }
.seller-assets-copy > p { color: rgba(255,255,255,0.65); line-height: 1.75; }
.seller-asset-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.7rem; }
.seller-asset-tags span { border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 0.5rem 0.8rem; color: rgba(255,255,255,0.82); font-size: 0.72rem; }
.seller-advantage-section { background: var(--navy); color: white; }
.seller-advantage-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); overflow: hidden; }
.seller-advantage-grid article { padding: 1.5rem 1.2rem; border-right: 1px solid rgba(255,255,255,0.12); transition: background 0.3s ease; }
.seller-advantage-grid article:last-child { border-right: 0; }
.seller-advantage-grid article:hover { background: rgba(255,255,255,0.07); }
.seller-advantage-grid b { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--navy); margin-bottom: 1.2rem; }
.seller-advantage-grid h3 { font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 0.6rem; }
.seller-advantage-grid p { color: rgba(255,255,255,0.58); font-size: 0.77rem; line-height: 1.6; }
.seller-process-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 4rem; align-items: start; }
.seller-process-heading { position: sticky; top: 110px; }
.seller-timeline { border-left: 1px solid var(--border); padding-left: 2rem; }
.seller-timeline article { position: relative; background: white; padding: 1.35rem 1.5rem; border-radius: 12px; box-shadow: 0 10px 28px rgba(14,31,61,0.06); margin-bottom: 1rem; }
.seller-timeline article::before { content: ""; position: absolute; left: -2.42rem; top: 1.55rem; width: 11px; height: 11px; background: var(--gold); border: 3px solid var(--bg); border-radius: 50%; }
.seller-timeline span { color: var(--gold-dark); text-transform: uppercase; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em; }
.seller-timeline h3 { color: var(--navy); font-family: var(--font-body); font-size: 1rem; margin: 0.3rem 0 0.45rem; }
.seller-timeline p { color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.seller-control-section { background: #efede7; }
.seller-control-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.seller-control-grid article { text-align: center; background: white; padding: 2rem; border-radius: var(--radius); box-shadow: 0 12px 28px rgba(14,31,61,0.06); }
.seller-control-icon { margin: 0 auto 1.1rem; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-weight: 700; }
.seller-control-grid h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.6rem; }
.seller-control-grid p { color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.seller-aldes-section { padding: 6rem 1.5rem; background: linear-gradient(90deg, rgba(8,20,41,0.96), rgba(8,20,41,0.63)), url('/static/img/sell-hero.webp') center/cover; color: white; }
.seller-aldes-content > * { max-width: 760px; }
.seller-aldes-content h2 { color: white; }
.seller-aldes-content > p { color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 0.8rem; }
.seller-proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin-top: 1.5rem; }
.seller-proof-grid span { color: rgba(255,255,255,0.84); font-size: 0.78rem; padding-left: 1rem; position: relative; }
.seller-proof-grid span::before { content: ""; position: absolute; left: 0; top: 0.4rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.seller-faq-section { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 4rem; align-items: start; }
.seller-faq-list details { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.seller-faq-list summary { color: var(--navy); font-size: 0.86rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.seller-faq-list summary::-webkit-details-marker { display: none; }
.seller-faq-list summary::after { content: "+"; color: var(--gold-dark); font-size: 1.1rem; }
.seller-faq-list details[open] summary::after { content: "−"; }
.seller-faq-list details p { color: var(--muted); font-size: 0.8rem; line-height: 1.7; padding: 0.8rem 2rem 0 0; }
.terms-page .terms-list { margin: 0.6rem 0 1.2rem; padding-left: 1.3rem; }
.terms-page .terms-list li { color: var(--text); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.6rem; }
.terms-page .terms-list li b { color: var(--navy); }
.seller-enquiry-section { padding: 6rem 1.5rem; background: linear-gradient(115deg, rgba(8,20,41,0.97), rgba(8,20,41,0.78)), url('/static/img/hero-aldes-castle.webp') center/cover; color: white; }
.seller-enquiry-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5rem; align-items: center; }
.seller-enquiry-layout h2 { color: white; }
.seller-enquiry-layout > div > p { color: rgba(255,255,255,0.68); line-height: 1.75; }
.seller-enquiry-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(10px); padding: 1.5rem; border-radius: var(--radius); }
.seller-enquiry-form input, .seller-enquiry-form select, .seller-enquiry-form textarea { width: 100%; border: 1px solid rgba(255,255,255,0.16); background: white; border-radius: 8px; padding: 0.75rem; font: inherit; font-size: 0.82rem; }
.seller-enquiry-form textarea, .seller-enquiry-form .btn, .seller-enquiry-form small { grid-column: 1 / -1; }
.seller-enquiry-form .btn { justify-content: center; }
.seller-enquiry-form small { color: rgba(255,255,255,0.52); font-size: 0.68rem; text-align: center; }

/* Agent partnership */
.agent-hero { min-height: 610px; display: flex; align-items: center; padding: 5rem 1.5rem; color: white; background-image: linear-gradient(90deg, rgba(8,20,41,0.96), rgba(8,20,41,0.78) 54%, rgba(8,20,41,0.16)), url('/static/img/agent-partnership-hero-2026.webp'); background-position: center 46%; }
.agent-hero-content { width: 100%; }
.agent-hero-content > * { max-width: 710px; }
.agent-hero h1 { font-size: clamp(2.3rem, 5vw, 4.1rem); line-height: 1.05; margin-bottom: 1.2rem; }
.agent-hero h1 em { color: var(--gold); font-style: normal; }
.agent-hero p { color: rgba(255,255,255,0.76); line-height: 1.7; font-size: 1rem; }
.agent-hero-actions { display: flex; gap: 0.8rem; margin-top: 1.7rem; }
.agent-friction { background: var(--navy); color: white; padding: 1.6rem 1.5rem; }
.agent-friction-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.agent-friction article { display: flex; gap: 0.8rem; padding: 0.4rem 1.2rem; border-right: 1px solid rgba(255,255,255,0.14); }
.agent-friction article:first-child { padding-left: 0; }
.agent-friction article:last-child { border-right: 0; }
.agent-friction article > span { color: var(--gold); font-size: 0.68rem; font-weight: 700; padding-top: 0.15rem; }
.agent-friction h3 { font-family: var(--font-body); font-size: 0.8rem; margin-bottom: 0.25rem; }
.agent-friction p { color: rgba(255,255,255,0.56); font-size: 0.7rem; line-height: 1.5; }
.agent-section, .agent-section.container { padding: 5.5rem 1.5rem; }
.agent-section h2, .agent-protection-content h2, .agent-enquiry-layout h2 { color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 0.9rem; }
.agent-intro-section { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 4rem; align-items: center; }
.agent-intro-copy > p, .agent-fit-layout > div:first-child > p, .agent-process-heading > p, .agent-included-layout > div:first-child > p, .agent-faq-heading > p { color: var(--muted); line-height: 1.7; }
.agent-check-list { list-style: none; margin-top: 1.2rem; display: grid; gap: 0.55rem; }
.agent-check-list li { color: var(--navy); font-size: 0.82rem; padding-left: 1.3rem; position: relative; }
.agent-check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.agent-intro-image { min-height: 390px; border-radius: var(--radius); background: linear-gradient(rgba(8,20,41,0.08),rgba(8,20,41,0.18)), url('/static/img/agent-office.webp') center/cover; box-shadow: 0 20px 50px rgba(14,31,61,0.13); }
.agent-fit-section { background: #efede7; }
.agent-fit-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 4rem; align-items: center; }
.agent-fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.agent-fit-grid article { background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 12px 30px rgba(14,31,61,0.07); border-bottom: 2px solid transparent; transition: transform 0.3s ease, border-color 0.3s ease; }
.agent-fit-grid article:hover { transform: translateY(-5px); border-color: var(--gold); }
.agent-fit-grid b { color: var(--gold-dark); font-size: 0.68rem; }
.agent-fit-grid h3 { color: var(--navy); font-family: var(--font-body); font-size: 0.9rem; margin: 1rem 0 0.55rem; }
.agent-fit-grid p { color: var(--muted); font-size: 0.77rem; line-height: 1.65; }
.agent-process-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 4rem; align-items: start; }
.agent-process-heading { position: sticky; top: 110px; }
.agent-timeline { border-left: 1px solid var(--border); padding-left: 2rem; }
.agent-timeline article { position: relative; background: white; padding: 1.35rem 1.5rem; border-radius: 12px; box-shadow: 0 10px 28px rgba(14,31,61,0.06); margin-bottom: 1rem; }
.agent-timeline article::before { content: ""; position: absolute; left: -2.42rem; top: 1.55rem; width: 11px; height: 11px; background: var(--gold); border: 3px solid var(--bg); border-radius: 50%; }
.agent-timeline span { color: var(--gold-dark); text-transform: uppercase; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em; }
.agent-timeline h3 { color: var(--navy); font-family: var(--font-body); font-size: 1rem; margin: 0.3rem 0 0.45rem; }
.agent-timeline p { color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.agent-included-section { position: relative; overflow: hidden; color: white; background-image: linear-gradient(110deg, rgba(8,20,41,0.97) 0%, rgba(14,31,61,0.9) 55%, rgba(14,31,61,0.76) 100%), url('/static/img/agent-office.webp'); background-size: cover; background-position: center 46%; }
.agent-included-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 76% 42%, rgba(255,193,48,0.07), transparent 32%); }
.agent-included-section > .container { position: relative; z-index: 1; }
.agent-included-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 4rem; align-items: center; }
.agent-included-layout h2 { color: white; }
.agent-included-layout > div:first-child > p { color: rgba(255,255,255,0.6); }
.agent-included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.agent-included-grid article { padding: 1.5rem; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); background: rgba(255,255,255,0.04); }
.agent-letter-icon { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-display); font-weight: 700; margin-bottom: 1.2rem; }
.agent-letter-icon .ui-icon { width: 21px; height: 21px; }
.agent-included-grid h3 { font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 0.6rem; }
.agent-included-grid p { color: rgba(255,255,255,0.58); font-size: 0.77rem; line-height: 1.65; }
.agent-earnings-intro { max-width: 760px; margin-bottom: 2rem; }
.agent-earnings-intro > p { color: var(--muted); line-height: 1.7; }
.agent-earnings-intro .agent-example-label { color: var(--navy); font-weight: 600; margin-top: 0.7rem; font-size: 0.78rem; }
.agent-option-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-bottom: 1.5rem; }
.agent-option-cards article { padding: 1.7rem; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(14,31,61,0.06); }
.agent-option-cards article.featured { border: 2px solid var(--gold); }
.agent-option-cards span { color: var(--gold-dark); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.agent-option-cards h3 { color: var(--navy); font-family: var(--font-body); font-size: 1rem; margin: 0.35rem 0; }
.agent-option-cards strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 0.55rem; }
.agent-option-cards p { color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.agent-earnings-table { border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 36px rgba(14,31,61,0.08); }
.agent-earnings-table table { width: 100%; border-collapse: collapse; background: white; font-size: 0.8rem; }
.agent-earnings-table th, .agent-earnings-table td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--border); text-align: center; }
.agent-earnings-table thead th { background: var(--navy); color: white; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.68rem; }
.agent-earnings-table thead th:last-child { background: var(--gold); color: var(--navy); }
.agent-earnings-table tbody th { color: var(--navy); text-align: left; }
.agent-earnings-table tbody td:nth-child(2) { color: var(--muted); }
.agent-earnings-table tbody td:last-child { color: var(--navy); background: rgba(255,193,48,0.045); }
.agent-earnings-table .agent-total-row th, .agent-earnings-table .agent-total-row td { font-weight: 700; color: var(--navy); background: rgba(255,193,48,0.12); }
.agent-commercial-note { color: var(--muted); text-align: center; font-size: 0.7rem; line-height: 1.6; margin-top: 1rem; }
.agent-protection-section { padding: 6rem 1.5rem; color: white; background: linear-gradient(90deg, rgba(8,20,41,0.96), rgba(8,20,41,0.65)), url('/static/img/agent-office.webp') center/cover; }
.agent-protection-content > * { max-width: 780px; }
.agent-protection-content h2 { color: white; }
.agent-protection-content > p { color: rgba(255,255,255,0.66); line-height: 1.75; }
.agent-protection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin-top: 1.5rem; }
.agent-protection-grid span { color: rgba(255,255,255,0.84); font-size: 0.8rem; padding-left: 1rem; position: relative; }
.agent-protection-grid span::before { content: ""; position: absolute; left: 0; top: 0.4rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.agent-faq-section { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 4rem; align-items: start; }
.agent-enquiry-section { padding: 6rem 1.5rem; color: white; background: linear-gradient(115deg, rgba(8,20,41,0.97), rgba(8,20,41,0.74)), url('/static/img/agent-office.webp') center/cover; }
.agent-enquiry-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5rem; align-items: center; }
.agent-enquiry-layout h2 { color: white; }
.agent-enquiry-layout > div > p { color: rgba(255,255,255,0.67); line-height: 1.75; }
.agent-enquiry-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; padding: 1.5rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.13); backdrop-filter: blur(10px); border-radius: var(--radius); }
.agent-enquiry-form input, .agent-enquiry-form textarea { width: 100%; padding: 0.75rem; border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; background: white; font: inherit; font-size: 0.82rem; }
.agent-enquiry-form textarea, .agent-enquiry-form .btn, .agent-enquiry-form small { grid-column: 1 / -1; }
.agent-enquiry-form .btn { justify-content: center; }
.agent-enquiry-form small { color: rgba(255,255,255,0.52); font-size: 0.68rem; text-align: center; }

/* Register to bid */
.bidder-hero { min-height: 610px; display: flex; align-items: center; padding: 5rem 1.5rem; color: white; background-image: linear-gradient(90deg, rgba(8,20,41,0.96) 0%, rgba(8,20,41,0.72) 48%, rgba(8,20,41,0.18) 100%), url('/static/img/register-bid-hero-premium-property.webp'); background-position: center 52%; background-size: 105%; animation: bidderHeroDrift 18s ease-in-out infinite alternate; }
@keyframes bidderHeroDrift { from { background-size: 105%; background-position: center 48%; } to { background-size: 113%; background-position: center 54%; } }
.bidder-hero-content { width: 100%; }
.bidder-hero-content > * { max-width: 700px; }
.bidder-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; margin-bottom: 1.2rem; }
.bidder-hero h1 em { color: var(--gold); font-style: normal; }
.bidder-hero p { color: rgba(255,255,255,0.76); line-height: 1.7; font-size: 1rem; }
.bidder-hero-actions { display: flex; gap: 0.8rem; margin-top: 1.7rem; }
.bidder-confidence-band { padding: 1.7rem 1.5rem; background: var(--navy); color: white; }
.bidder-confidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.bidder-confidence-grid article { padding: 0.3rem 1.2rem; border-right: 1px solid rgba(255,255,255,0.14); text-align: center; }
.bidder-confidence-grid article:last-child { border-right: 0; }
.bidder-confidence-grid strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; }
.bidder-confidence-grid span { display: block; font-size: 0.76rem; font-weight: 600; margin: 0.2rem 0; }
.bidder-confidence-grid small { color: rgba(255,255,255,0.5); font-size: 0.66rem; }
.bidder-section, .bidder-section.container { padding: 5.5rem 1.5rem; }
.bidder-section h2, .bidder-faq-copy h2 { color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 0.9rem; }
.bidder-process-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 4rem; align-items: start; }
.bidder-process-heading { position: sticky; top: 110px; }
.bidder-process-heading p, .bidder-clarity-intro p, .bidder-faq-copy > p { color: var(--muted); line-height: 1.7; }
.bidder-process-list { border-left: 1px solid var(--border); padding-left: 2rem; }
.bidder-process-list article { display: grid; grid-template-columns: 42px 1fr; gap: 0.9rem; position: relative; background: white; padding: 1.35rem 1.5rem; border-radius: 12px; box-shadow: 0 10px 28px rgba(14,31,61,0.06); margin-bottom: 1rem; }
.bidder-process-list article::before { content: ""; position: absolute; left: -2.42rem; top: 1.55rem; width: 11px; height: 11px; background: var(--gold); border: 3px solid var(--bg); border-radius: 50%; }
.bidder-process-list article > span { display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; background: var(--navy); color: var(--gold); border-radius: 50%; font-size: 0.67rem; font-weight: 700; }
.bidder-process-list h3 { color: var(--navy); font-family: var(--font-body); font-size: 1rem; margin-bottom: 0.4rem; }
.bidder-process-list p { color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.bidder-docs-section { padding: 5.5rem 1.5rem; background: #efede7; }
.bidder-doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; max-width: 900px; margin: 0 auto; }
.bidder-doc-grid article { background: white; border-radius: var(--radius); padding: 2rem; box-shadow: 0 12px 30px rgba(14,31,61,0.06); }
.bidder-doc-grid b { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--navy); color: var(--gold); border-radius: 12px; }
.bidder-doc-grid h3 { color: var(--navy); font-size: 1rem; margin: 1.1rem 0 0.55rem; }
.bidder-doc-grid p, .bidder-entity-note p { color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.bidder-entity-note { max-width: 900px; margin: 1.2rem auto 0; padding: 1.5rem 1.7rem; border-left: 3px solid var(--gold); background: rgba(255,255,255,0.55); border-radius: 0 var(--radius) var(--radius) 0; }
.bidder-entity-note h3 { color: var(--navy); font-size: 0.96rem; margin-bottom: 0.55rem; }
.bidder-fees-section { padding: 5.5rem 1.5rem; color: white; background: linear-gradient(115deg, rgba(8,20,41,0.96), rgba(8,20,41,0.78)), url('/static/img/bidder-architecture.webp') center/cover; }
.bidder-fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.bidder-fees-grid article { text-align: center; padding: 2rem; border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius); background: rgba(255,255,255,0.06); backdrop-filter: blur(7px); }
.bidder-letter-icon { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; margin: 0 auto 1rem; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-display); font-weight: 700; }
.bidder-letter-icon .ui-icon { width: 23px; height: 23px; }
.bidder-fees-grid h3 { font-size: 0.98rem; margin-bottom: 0.6rem; }
.bidder-fees-grid p { color: rgba(255,255,255,0.6); font-size: 0.78rem; line-height: 1.65; }
.bidder-clarity-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 4rem; align-items: center; }
.bidder-clarity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.bidder-clarity-grid article { background: white; border-radius: var(--radius); padding: 1.35rem; box-shadow: 0 10px 28px rgba(14,31,61,0.06); }
.bidder-clarity-grid b { color: var(--gold-dark); font-size: 0.68rem; }
.bidder-clarity-grid h3 { color: var(--navy); font-family: var(--font-body); font-size: 0.86rem; margin: 0.8rem 0 0.45rem; }
.bidder-clarity-grid p { color: var(--muted); font-size: 0.74rem; line-height: 1.6; }
.bidder-flow-section { padding: 6rem 1.5rem; background: #efede7; scroll-margin-top: 90px; }
.detail-brochure-anchor { scroll-margin-top: 90px; }
.bidder-builder { max-width: 760px; margin: 0 auto; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(14,31,61,0.14); }
.bidder-progress { padding: 1.25rem 1.5rem 0; }
.bidder-progress-copy { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; }
.bidder-progress-copy b { color: var(--navy); }
.bidder-progress-track { height: 4px; margin-top: 0.75rem; background: #ece9e2; border-radius: 999px; overflow: hidden; }
.bidder-progress-track i { display: block; height: 100%; width: 12.5%; background: var(--gold); border-radius: inherit; transition: width 0.45s cubic-bezier(.22,.8,.25,1); }
#bidder-registration-form,
#modal-bidder-registration-form { padding: 2rem 2.2rem 1.7rem; }
.bidder-step[hidden] { display: none; }
.bidder-step { min-height: 330px; animation: bidderStepIn 0.4s cubic-bezier(.22,.8,.25,1); }
@keyframes bidderStepIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
.bidder-step-kicker { color: var(--gold-dark); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.bidder-step h3 { color: var(--navy); font-size: clamp(1.4rem, 3vw, 2rem); margin: 0.45rem 0 1.5rem; }
.bidder-step > label, .bidder-step fieldset { display: block; border: 0; margin-bottom: 1rem; }
.bidder-step label, .bidder-step legend { color: var(--navy); font-size: 0.78rem; font-weight: 600; }
.bidder-step label > span, .bidder-step legend > span { color: #b42318; margin-left: 0.2rem; }
.bidder-step input[type="text"], .bidder-step input[type="email"], .bidder-step input[type="tel"], .bidder-step select { width: 100%; margin-top: 0.45rem; padding: 0.85rem 0.9rem; border: 1px solid var(--border); border-radius: 9px; background: #fbfaf7; font: inherit; font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.bidder-step input:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(255,193,48,0.16); }
.bidder-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 0.6rem; }
.bidder-choice-grid.vertical { grid-template-columns: 1fr; }
.bidder-choice { position: relative; cursor: pointer; }
.bidder-choice input { position: absolute; opacity: 0; pointer-events: none; }
.bidder-choice > span { display: block; min-height: 94px; padding: 1rem; border: 1px solid var(--border); border-radius: 10px; background: #fbfaf7; transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.bidder-choice input:checked + span { border-color: var(--gold-dark); background: rgba(255,193,48,0.12); box-shadow: inset 0 0 0 1px var(--gold-dark); }
.bidder-choice:hover > span { transform: translateY(-2px); }
.bidder-choice b { display: block; color: var(--navy); font-size: 0.84rem; }
.bidder-choice small { display: block; color: var(--muted); font-weight: 400; font-size: 0.68rem; line-height: 1.45; margin-top: 0.35rem; }
.bidder-file { display: block; padding: 1rem; border: 1px dashed rgba(14,31,61,0.25); border-radius: 10px; background: #fbfaf7; cursor: pointer; }
.bidder-file input { display: block; width: 100%; margin: 0.75rem 0 0.3rem; font-size: 0.78rem; }
.bidder-file small { display: block; color: var(--muted); font-weight: 400; font-size: 0.68rem; }
.bidder-inline-error, .bidder-flow-error { color: #b42318; background: #fff1f0; border-radius: 8px; padding: 0.65rem 0.8rem; font-size: 0.75rem; }
.bidder-review { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.bidder-review > div { padding: 0.7rem 0.8rem; background: #f7f5f0; border-radius: 8px; }
.bidder-review span { display: block; color: var(--muted); font-size: 0.62rem; text-transform: uppercase; }
.bidder-review b { display: block; color: var(--navy); font-size: 0.76rem; margin-top: 0.2rem; word-break: break-word; }
.bidder-terms { display: flex !important; gap: 0.65rem; align-items: flex-start; margin-top: 1rem; }
.bidder-terms input { margin-top: 0.2rem; }
.bidder-terms span { color: var(--text) !important; font-weight: 400; line-height: 1.55; }
.bidder-terms a { color: var(--navy); text-decoration: underline; }
.bidder-review-note { color: var(--muted); font-size: 0.68rem; line-height: 1.55; }
.bidder-deposit-warning { margin-top: 1rem; padding: 0.85rem 1rem; border: 2px solid #b42318; border-radius: 8px; background: #fff1f0; color: #b42318; font-weight: 700; font-size: 0.85rem; line-height: 1.5; }
.bidder-flow-actions { display: flex; justify-content: flex-end; gap: 0.7rem; margin-top: 1.2rem; }
.bidder-flow-actions [hidden] { display: none !important; }
.bidder-back { margin-right: auto; }
.bidder-success { max-width: 720px; margin: 0 auto; text-align: center; padding: 3rem; background: white; border-radius: var(--radius); box-shadow: 0 18px 45px rgba(14,31,61,0.1); }
.bidder-success-mark { display: flex; width: 58px; height: 58px; align-items: center; justify-content: center; margin: 0 auto 1rem; border-radius: 50%; background: #eaf7ef; color: #1a5c35; font-size: 1.5rem; }
.bidder-success h3 { color: var(--navy); font-size: 1.5rem; }
.bidder-success p { color: var(--muted); line-height: 1.7; margin: 0.7rem auto 1.2rem; max-width: 560px; }
.bidder-payment-details { max-width: 480px; margin: 0 auto 1.4rem; padding: 1.1rem 1.3rem; text-align: left; background: #f7f5f0; border-radius: 10px; }
.bidder-payment-intro { margin: 0 0 0.9rem !important; max-width: none !important; }
.bidder-payment-intro b { color: var(--navy); }
.bidder-payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.bidder-payment-grid div { padding: 0.55rem 0.7rem; background: white; border-radius: 8px; }
.bidder-payment-grid span { display: block; color: var(--muted); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.04em; }
.bidder-payment-grid b { display: block; color: var(--navy); font-size: 0.82rem; margin-top: 0.15rem; word-break: break-word; }
.bidder-payment-note { margin: 0.8rem 0 0 !important; font-size: 0.78rem !important; max-width: none !important; }
.bidder-faq-section { padding: 5.5rem 1.5rem; }
.bidder-faq-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.bidder-faq-image { min-height: 520px; border-radius: var(--radius); background: linear-gradient(rgba(8,20,41,0.06),rgba(8,20,41,0.18)), url('/static/img/bidder-architecture.webp') center/cover; box-shadow: 0 20px 50px rgba(14,31,61,0.12); }

/* Shared cinematic motion for every photographic page hero */
.cinematic-hero {
  background-size: 105%;
  animation: cinematicHeroDrift 8s ease-in-out infinite alternate;
  will-change: background-size;
}

@keyframes cinematicHeroDrift {
  from { background-size: 105%; }
  to { background-size: 113%; }
}

/* Bidder page motion accents */
.bidder-confidence-grid article.motion-reveal { transform: translateY(18px) scale(0.94); }
.bidder-confidence-grid article.motion-reveal.is-visible { transform: translateY(0) scale(1); }
.bidder-process-list article.motion-reveal { transform: translateX(42px); }
.bidder-process-list article.motion-reveal.is-visible { transform: translateX(0); }
.bidder-doc-grid article.motion-reveal,
.bidder-fees-grid article.motion-reveal,
.bidder-clarity-grid article.motion-reveal { transform: translateY(32px) scale(0.97); }
.bidder-doc-grid article.motion-reveal.is-visible,
.bidder-fees-grid article.motion-reveal.is-visible,
.bidder-clarity-grid article.motion-reveal.is-visible { transform: translateY(0) scale(1); }
.bidder-doc-grid article,
.bidder-fees-grid article,
.bidder-clarity-grid article { transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease; }
.bidder-doc-grid article:hover,
.bidder-clarity-grid article:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(14,31,61,0.12); }
.bidder-fees-grid article:hover { transform: translateY(-6px); background: rgba(255,255,255,0.11); }
.bidder-builder.motion-reveal { transform: translateY(38px) scale(0.975); }
.bidder-builder.motion-reveal.is-visible { transform: translateY(0) scale(1); }
.bidder-faq-image { animation: bidderArchitectureDrift 16s ease-in-out infinite alternate; }
@keyframes bidderArchitectureDrift { from { background-position: 46% center; } to { background-position: 56% center; } }

/* About Aldes Auctions */
.about-hero { min-height: 620px; display: flex; align-items: center; padding: 5rem 1.5rem; color: white; background-image: linear-gradient(90deg, rgba(8,20,41,0.96) 0%, rgba(8,20,41,0.8) 52%, rgba(8,20,41,0.3) 100%), url('/static/img/about-hero-2026.webp'); background-position: center 48%; }
.about-hero-content { width: 100%; }
.about-hero-content > * { max-width: 730px; }
.about-hero h1 { font-size: clamp(2.25rem, 5vw, 4.15rem); line-height: 1.04; margin-bottom: 1.25rem; }
.about-hero h1 em { color: var(--gold); font-style: normal; }
.about-hero p { color: rgba(255,255,255,0.8); line-height: 1.75; font-size: 1rem; }
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.about-facts { background: var(--navy); color: white; padding: 1.8rem 1.5rem; }
.about-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.about-facts-grid article { text-align: center; padding: 0.35rem 1rem; border-right: 1px solid rgba(255,255,255,0.14); }
.about-facts-grid article:last-child { border-right: 0; }
.about-facts-grid strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: 1.2rem; }
.about-facts-grid span { display: block; margin-top: 0.25rem; color: rgba(255,255,255,0.58); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }
.about-section, .about-section.container { padding: 5.5rem 1.5rem; }
.about-section h2, .about-story-layout h2, .about-value-layout h2, .about-team-intro h2, .about-cta h2 { color: var(--navy); font-size: clamp(1.75rem, 3.2vw, 2.6rem); line-height: 1.14; margin-bottom: 1rem; }
.about-purpose-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 5rem; align-items: center; }
.about-purpose-copy p, .about-story-layout p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.about-pillars article { background: white; border-radius: var(--radius); padding: 1.6rem; box-shadow: 0 14px 34px rgba(14,31,61,0.07); border-bottom: 3px solid transparent; transition: transform 0.3s ease, border-color 0.3s ease; }
.about-pillars article:hover { transform: translateY(-6px); border-color: var(--gold); }
.about-pillars b { display: flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 0.68rem; }
.about-pillars h3 { color: var(--navy); font-family: var(--font-body); font-size: 0.93rem; margin: 1.5rem 0 0.55rem; }
.about-pillars p { color: var(--muted); font-size: 0.78rem; line-height: 1.65; }
.about-story-section { padding: 5.5rem 1.5rem; background: linear-gradient(120deg, rgba(8,20,41,0.97), rgba(14,31,61,0.84)), url('/static/img/hero.webp') center/cover; }
.about-story-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 5rem; }
.about-story-layout h2 { color: white; }
.about-story-layout p { color: rgba(255,255,255,0.7); }
.about-capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.about-capability-grid article { background: white; padding: 1.7rem; border-radius: var(--radius); box-shadow: 0 12px 30px rgba(14,31,61,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.about-capability-grid article:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(14,31,61,0.12); }
.about-capability-grid article > span { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; color: var(--gold); background: var(--navy); font-family: var(--font-display); font-weight: 700; }
.about-capability-grid h3 { color: var(--navy); margin: 1.25rem 0 0.6rem; }
.about-capability-grid p { color: var(--muted); font-size: 0.8rem; line-height: 1.7; }
.about-value-band { padding: 5rem 1.5rem; color: white; background: linear-gradient(110deg, rgba(8,20,41,0.95), rgba(14,31,61,0.74)), url('/static/img/sell-industrial.webp') center/cover; }
.about-value-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 5rem; align-items: center; }
.about-value-layout h2 { color: white; }
.about-value-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.about-value-points p { padding: 1.3rem; border-radius: var(--radius); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.13); color: rgba(255,255,255,0.68); font-size: 0.8rem; line-height: 1.65; }
.about-value-points b { display: block; color: var(--gold); margin-bottom: 0.45rem; font-size: 0.88rem; }
.about-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.about-audience-grid article { background: white; padding: 2rem; border-radius: var(--radius); box-shadow: 0 12px 30px rgba(14,31,61,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.about-audience-grid article:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(14,31,61,0.11); }
.about-audience-grid h3 { color: var(--navy); margin-bottom: 0.7rem; }
.about-audience-grid p { color: var(--muted); line-height: 1.7; font-size: 0.83rem; margin-bottom: 1.2rem; }
.about-audience-grid a { color: var(--navy); font-size: 0.78rem; font-weight: 700; }
.about-team-section { padding: 6rem 1.5rem; background: #ebe8e1; }
.about-team-layout { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 4rem; align-items: start; }
.about-team-intro { position: sticky; top: 120px; }
.about-team-intro p { color: var(--muted); line-height: 1.75; }
.about-team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.about-person-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 36px rgba(14,31,61,0.09); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.about-person-card:hover { transform: translateY(-7px); box-shadow: 0 24px 50px rgba(14,31,61,0.15); }
.about-person-photo { display: block; height: 360px; background-size: cover; background-position: center; transition: transform 0.65s cubic-bezier(.22,.8,.25,1); }
.about-person-card:hover .about-person-photo { transform: scale(1.035); }
.about-person-body { position: relative; background: white; padding: 1.5rem; }
.about-person-body > span { color: var(--gold-dark); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.about-person-body h3 { color: var(--navy); font-size: 1.35rem; margin: 0.35rem 0 0.7rem; }
.about-person-body p { color: var(--muted); font-size: 0.8rem; line-height: 1.65; min-height: 82px; }
.about-person-body .btn { margin-top: 1.1rem; }
.about-cta { padding: 5rem 1.5rem; text-align: center; background: linear-gradient(120deg, rgba(8,20,41,0.97), rgba(14,31,61,0.82)), url('/static/img/agent-office.webp') center/cover; }
.about-cta-content { max-width: 860px; }
.about-cta h2 { color: white; }
.about-cta-content > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* Personal digital cards */
.digital-card-page { min-height: calc(100vh - 88px); padding: 4rem 1.5rem 5rem; background: radial-gradient(circle at 50% 0%, #27466f 0%, var(--navy) 34%, var(--navy-dark) 100%); }
.digital-card-close { position: absolute; z-index: 2; top: 1.5rem; right: 1.5rem; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.65rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.94); color: var(--navy); box-shadow: 0 10px 30px rgba(0,0,0,0.2); font-size: 0.76rem; font-weight: 700; backdrop-filter: blur(10px); transition: transform 0.2s ease, background 0.2s ease; }
.digital-card-close:hover { transform: translateY(-2px); background: var(--gold); }
.digital-card-close span { font-size: 1.15rem; line-height: 0.8; }
.digital-card-shell { width: min(100%, 440px); margin: 0 auto; border-radius: 26px; overflow: hidden; color: white; background: var(--navy); box-shadow: 0 34px 90px rgba(0,0,0,0.42); border: 1px solid rgba(255,255,255,0.12); }
.digital-card-portrait { position: relative; min-height: 520px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; background-size: cover; background-position: center; }
.digital-card-logo { width: 82px; height: auto; padding: 0.45rem; border-radius: 12px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); }
.digital-card-heading > span { display: inline-block; margin-bottom: 0.45rem; color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.digital-card-heading h1 { font-size: 2.15rem; line-height: 1.05; }
.digital-card-heading p { margin-top: 0.7rem; color: rgba(255,255,255,0.7); font-size: 0.72rem; line-height: 1.55; max-width: 330px; }
.digital-card-content { padding: 1.4rem; background: linear-gradient(180deg, #10284d, var(--navy-dark)); }
.digital-primary-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
.digital-primary-actions a { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; padding: 0.9rem 0.45rem; border-radius: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.09); transition: background 0.2s ease, transform 0.2s ease; }
.digital-primary-actions a:hover { background: rgba(255,193,48,0.14); transform: translateY(-3px); }
.digital-primary-actions b { display: flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 0.75rem; }
.digital-primary-actions span { font-size: 0.68rem; }
.digital-save-contact { width: 100%; justify-content: center; margin: 0.8rem 0 1.2rem; }
.digital-contact-list { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.1); }
.digital-contact-list a { padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.digital-contact-list span { display: block; color: rgba(255,255,255,0.4); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.22rem; }
.digital-contact-list strong { color: rgba(255,255,255,0.86); font-size: 0.76rem; font-weight: 500; }
.digital-card-about, .digital-card-expertise { padding-top: 1.5rem; }
.digital-label { display: block; color: var(--gold); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.7rem; }
.digital-card-about p { color: rgba(255,255,255,0.63); font-size: 0.73rem; line-height: 1.7; margin-bottom: 0.8rem; }
.digital-card-expertise > div { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.digital-card-expertise > div > span { padding: 0.45rem 0.65rem; border-radius: 999px; border: 1px solid rgba(255,193,48,0.26); background: rgba(255,193,48,0.07); color: rgba(255,255,255,0.78); font-size: 0.64rem; }
.digital-submit-link { display: flex; flex-direction: column; margin: 1.5rem 0; padding: 1rem; border-radius: 12px; background: var(--gold); color: var(--navy); }
.digital-submit-link span { font-weight: 700; font-size: 0.82rem; }
.digital-submit-link small { margin-top: 0.25rem; font-size: 0.62rem; opacity: 0.68; }
.digital-card-share { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.1); }
.digital-card-share img { padding: 6px; border-radius: 8px; background: white; }
.digital-share-button { cursor: pointer; padding: 0.6rem 0.85rem; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; background: rgba(255,255,255,0.07); color: white; font: inherit; font-size: 0.68rem; }
.digital-share-status { min-height: 18px; margin-top: 0.5rem; color: var(--gold); font-size: 0.65rem; }

/* Contact Aldes Auctions */
.contact-hero { min-height: 610px; display: flex; align-items: center; padding: 5rem 1.5rem; color: white; background-image: linear-gradient(90deg, rgba(8,20,41,0.95) 0%, rgba(8,20,41,0.76) 49%, rgba(8,20,41,0.24) 100%), url('/static/img/contact-hero-2026.webp'); background-position: center 58%; }
.contact-hero-content { width: 100%; }
.contact-hero-content > * { max-width: 720px; }
.contact-hero h1 { font-size: clamp(2.3rem, 5vw, 4.1rem); line-height: 1.04; margin-bottom: 1.2rem; }
.contact-hero h1 em { color: var(--gold); font-style: normal; }
.contact-hero p { color: rgba(255,255,255,0.8); line-height: 1.72; }
.contact-hero .contact-hero-note { color: rgba(255,255,255,0.58); font-size: 0.82rem; margin-top: 0.7rem; }
.contact-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.contact-direct-section { padding: 5.5rem 1.5rem; }
.contact-direct-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 4rem; align-items: start; }
.contact-direct-intro h2, .contact-map-layout h2, .contact-principles-layout h2 { color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 0.9rem; }
.contact-direct-intro > p, .contact-map-layout > div > p { color: var(--muted); line-height: 1.72; }
.contact-office-card { margin-top: 1.5rem; padding: 1.3rem; background: var(--navy); color: white; border-radius: var(--radius); }
.contact-office-card span { color: var(--gold); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-office-card strong { display: block; font-size: 0.86rem; line-height: 1.55; margin: 0.55rem 0; }
.contact-office-card a { color: rgba(255,255,255,0.68); font-size: 0.7rem; }
.contact-people-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.contact-people-grid article { overflow: hidden; background: white; border-radius: var(--radius); box-shadow: 0 14px 34px rgba(14,31,61,0.08); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.contact-people-grid article:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(14,31,61,0.13); }
.contact-person-photo { height: 280px; background-position: center top; background-size: cover; transition: transform 0.6s ease; }
.contact-people-grid article:hover .contact-person-photo { transform: scale(1.035); }
.contact-people-grid article > div:last-child { position: relative; padding: 1.35rem; background: white; }
.contact-people-grid article > div > span { color: var(--gold-dark); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-people-grid h3 { color: var(--navy); font-size: 1.2rem; margin: 0.3rem 0 0.55rem; }
.contact-people-grid p { color: var(--muted); font-size: 0.76rem; line-height: 1.6; min-height: 58px; }
.contact-person-actions { display: flex; gap: 0.4rem; margin: 1rem 0; }
.contact-person-actions a { padding: 0.45rem 0.65rem; border-radius: 999px; background: var(--navy); color: white; font-size: 0.63rem; font-weight: 600; }
.contact-person-actions a:hover { background: var(--gold); color: var(--navy); }
.contact-profile-link { color: var(--navy); font-size: 0.7rem; font-weight: 700; }
.contact-map-section { padding: 5.5rem 1.5rem; background: #ebe8e1; }
.contact-map-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center; }
.contact-map-layout iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius); box-shadow: 0 18px 46px rgba(14,31,61,0.12); filter: saturate(0.8); }
.contact-section, .contact-section.container { padding: 5.5rem 1.5rem; }
.contact-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.contact-service-grid article { padding: 1.6rem; background: white; border-radius: var(--radius); border-bottom: 3px solid transparent; box-shadow: 0 12px 30px rgba(14,31,61,0.07); transition: transform 0.3s ease, border-color 0.3s ease; }
.contact-service-grid article:hover { transform: translateY(-6px); border-color: var(--gold); }
.contact-service-grid b { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 0.67rem; }
.contact-service-grid h3 { color: var(--navy); font-family: var(--font-body); font-size: 0.9rem; margin: 1.4rem 0 0.55rem; }
.contact-service-grid p { color: var(--muted); font-size: 0.76rem; line-height: 1.65; min-height: 102px; }
.contact-service-grid a { display: inline-block; color: var(--navy); font-size: 0.68rem; font-weight: 700; margin-top: 0.8rem; }
.contact-principles-section { padding: 5.5rem 1.5rem; background: var(--navy); color: white; }
.contact-principles-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 4rem; align-items: center; }
.contact-principles-layout h2 { color: white; }
.contact-principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); overflow: hidden; }
.contact-principles-grid article { padding: 1.5rem; border-right: 1px solid rgba(255,255,255,0.12); }
.contact-principles-grid article:last-child { border-right: 0; }
.contact-principles-grid span { color: var(--gold); font-size: 0.65rem; font-weight: 700; }
.contact-principles-grid h3 { font-family: var(--font-body); font-size: 0.85rem; margin: 1.25rem 0 0.55rem; }
.contact-principles-grid p { color: rgba(255,255,255,0.57); font-size: 0.74rem; line-height: 1.65; }
.contact-flow-section { position: relative; overflow: hidden; padding: 6rem 1.5rem; background: radial-gradient(circle at 82% 18%, rgba(39,70,111,0.72), transparent 34%), linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 58%, #17345e 100%); box-shadow: inset 0 22px 55px rgba(0,0,0,0.2); }
.contact-flow-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--navy), var(--gold-dark), var(--gold)); }
.contact-flow-section::after { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; bottom: -300px; border: 1px solid rgba(255,193,48,0.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,193,48,0.025), 0 0 0 140px rgba(255,255,255,0.018); pointer-events: none; }
.contact-flow-section > .container { position: relative; z-index: 1; }
.contact-flow-section .centered-heading p { color: rgba(255,255,255,0.64); }
.contact-builder, .contact-success { max-width: 820px; margin: 0 auto; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,0.3); }
.contact-progress { padding: 1.2rem 1.5rem; background: #f0eee8; border-bottom: 1px solid var(--border); }
.contact-progress > div { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.68rem; margin-bottom: 0.65rem; }
.contact-progress > i { display: block; height: 4px; border-radius: 999px; overflow: hidden; background: rgba(14,31,61,0.1); }
.contact-progress > i > b { display: block; width: 20%; height: 100%; border-radius: inherit; background: var(--gold); transition: width 0.35s ease; }
#contact-enquiry-form { padding: 2rem; }
.contact-step[hidden] { display: none; }
.contact-step { min-height: 350px; animation: contactStepIn 0.4s cubic-bezier(.22,.8,.25,1); }
@keyframes contactStepIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
.contact-step h3 { color: var(--navy); font-size: clamp(1.45rem, 3vw, 2rem); margin: 0.45rem 0 1.5rem; }
.contact-step > label, .contact-step fieldset { display: block; border: 0; margin-bottom: 1rem; }
.contact-step label, .contact-step legend { color: var(--navy); font-size: 0.78rem; font-weight: 600; }
.contact-step label > span, .contact-step legend > span { color: #b42318; }
.contact-step input[type="text"], .contact-step input[type="email"], .contact-step input[type="tel"], .contact-step textarea { width: 100%; margin-top: 0.45rem; padding: 0.85rem 0.9rem; border: 1px solid var(--border); border-radius: 9px; background: #fbfaf7; font: inherit; font-size: 0.88rem; outline: none; resize: vertical; }
.contact-step input:focus, .contact-step textarea:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(255,193,48,0.16); }
.contact-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin-top: 0.55rem; }
.contact-choice-grid.compact { grid-template-columns: repeat(3, 1fr); }
.contact-choice-grid label { cursor: pointer; position: relative; }
.contact-choice-grid input { position: absolute; opacity: 0; }
.contact-choice-grid label > span { display: flex; flex-direction: column; gap: 0.25rem; min-height: 78px; padding: 0.9rem; border: 1px solid var(--border); border-radius: 10px; background: #fbfaf7; color: var(--navy); transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.contact-choice-grid.compact label > span { min-height: 56px; justify-content: center; }
.contact-choice-grid label:hover > span { transform: translateY(-2px); border-color: rgba(230,168,0,0.45); }
.contact-choice-grid input:checked + span { border-color: var(--gold-dark); background: rgba(255,193,48,0.12); box-shadow: inset 0 0 0 1px var(--gold-dark); }
.contact-choice-grid b { font-size: 0.78rem; }
.contact-choice-grid small { color: var(--muted); font-size: 0.67rem; font-weight: 400; }
.contact-review { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem; margin-bottom: 1rem; }
.contact-review div { padding: 0.8rem; border-radius: 9px; background: #f5f3ee; }
.contact-review span { display: block; color: var(--muted); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.contact-review strong { color: var(--navy); font-size: 0.72rem; line-height: 1.5; white-space: pre-wrap; }
.contact-consent { display: flex !important; align-items: flex-start; gap: 0.6rem; }
.contact-consent input { margin-top: 0.2rem; }
.contact-consent span { color: var(--text) !important; font-weight: 400; line-height: 1.5; }
.contact-flow-error { color: #b42318; font-size: 0.7rem; margin-bottom: 0.7rem; }
.contact-flow-actions { display: flex; justify-content: flex-end; gap: 0.7rem; margin-top: 1rem; }
.contact-flow-actions [hidden] { display: none; }
.contact-flow-actions [data-contact-back] { margin-right: auto; }
.contact-success { text-align: center; padding: 3rem; }
.contact-success > div { display: flex; width: 58px; height: 58px; align-items: center; justify-content: center; margin: 0 auto 1rem; border-radius: 50%; background: #eaf7ef; color: #1a5c35; font-size: 1.4rem; }
.contact-success h3 { color: var(--navy); font-size: 1.5rem; }
.contact-success p { color: var(--muted); line-height: 1.7; max-width: 580px; margin: 0.8rem auto 1.2rem; }

/* Contextual enquiry modal: reuses the guided form from the page footer. */
body.contact-modal-open { overflow: hidden; }
.contact-modal[hidden] { display: none; }
.contact-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 1rem; }
.contact-modal-backdrop { position: absolute; inset: 0; background: rgba(8,20,41,0.76); backdrop-filter: blur(5px); }
.contact-modal-dialog { position: relative; width: min(900px, 100%); max-height: calc(100vh - 2rem); overflow-y: auto; border-radius: 20px; background: #efede7; box-shadow: 0 28px 80px rgba(8,20,41,0.38); }
.contact-modal-close { position: sticky; z-index: 2; top: 0.8rem; float: right; width: 42px; height: 42px; margin: 0.8rem 0.8rem -42px 0; border: 1px solid var(--border); border-radius: 50%; background: white; color: var(--navy); font-size: 1.65rem; line-height: 1; cursor: pointer; }
.contact-modal-heading { padding: 2rem 4.7rem 1.2rem 2rem; }
.contact-modal-heading h2 { margin: 0.35rem 0; color: var(--navy); font-size: clamp(1.45rem, 3vw, 2rem); }
.contact-modal-heading p { max-width: 650px; color: var(--muted); font-size: 0.82rem; line-height: 1.55; }
.contact-modal-content { padding: 0 1.1rem 1.1rem; }
.contact-modal .contact-builder { max-width: none; margin: 0; box-shadow: 0 16px 42px rgba(14,31,61,0.12); }
.contact-modal .contact-step { min-height: 330px; }

@media (max-height: 700px) and (min-width: 601px) {
  .contact-modal-heading { padding-top: 1.2rem; padding-bottom: 0.8rem; }
  .contact-modal .contact-progress { padding-block: 0.9rem; }
  .contact-modal #contact-enquiry-form { padding-top: 1.4rem; padding-bottom: 1.3rem; }
  .contact-modal .contact-step { min-height: 290px; }
}

@media (max-width: 600px) {
  .contact-modal { padding: 0; place-items: stretch; }
  .contact-modal-dialog { width: 100%; max-height: 100vh; border-radius: 0; }
  .contact-modal-heading { padding: 1.4rem 4rem 1rem 1rem; }
  .contact-modal-content { padding: 0 0.65rem 0.65rem; }
  .contact-modal .contact-step { min-height: auto; }
}

/* Current auction alerts */
.auction-alerts-section { padding: 5rem 1.5rem; background: #ebe8e1; }
.auction-alerts-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center; }
.auction-alerts-layout h2 { color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 0.9rem; }
.auction-alerts-layout > div > p { color: var(--muted); line-height: 1.7; }
.auction-alert-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1.5rem; background: white; border-radius: var(--radius); box-shadow: 0 16px 38px rgba(14,31,61,0.09); }
.auction-alert-form label { color: var(--navy); font-size: 0.7rem; font-weight: 600; }
.auction-alert-form input, .auction-alert-form select { width: 100%; margin-top: 0.4rem; padding: 0.75rem; border: 1px solid var(--border); border-radius: 8px; background: #fbfaf7; font: inherit; font-size: 0.8rem; }
.auction-alert-form .btn, .auction-alert-form small { grid-column: 1 / -1; }
.auction-alert-form .btn { justify-content: center; }
.auction-alert-form small { color: var(--muted); font-size: 0.65rem; text-align: center; }
.auction-alert-success { padding: 2rem; text-align: center; background: white; border-radius: var(--radius); box-shadow: 0 16px 38px rgba(14,31,61,0.09); }
.auction-alert-success > span { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; margin: 0 auto 0.8rem; border-radius: 50%; background: #eaf7ef; color: #1a5c35; }
.auction-alert-success h3 { color: var(--navy); }
.auction-alert-success p { color: var(--muted); margin-top: 0.45rem; font-size: 0.8rem; }

/* Motion */
@keyframes heroDrift {
  from { background-size: 105%; }
  to { background-size: 112%; }
}

.motion-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s cubic-bezier(.22,.8,.25,1) var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(.22,.8,.25,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal.is-visible { opacity: 1; transform: translateY(0); }
.credibility-item.motion-reveal { transform: translateY(18px) scale(0.97); }
.credibility-item.motion-reveal.is-visible { transform: translateY(0) scale(1); }
.scope-item.motion-reveal,
.principle-card.motion-reveal,
.audience-grid article.motion-reveal { transform: translateY(28px) scale(0.98); }
.scope-item.motion-reveal.is-visible,
.principle-card.motion-reveal.is-visible,
.audience-grid article.motion-reveal.is-visible { transform: translateY(0) scale(1); }

.process-track::before { transform: scaleX(0); transform-origin: left; transition: transform 1.2s cubic-bezier(.22,.8,.25,1); }
.process-track.is-visible::before { transform: scaleX(1); }

.listing-card-image,
.sold-result-image { transition: transform 0.65s cubic-bezier(.22,.8,.25,1), filter 0.65s ease; }
.listing-card:hover .listing-card-image,
.sold-result-card:hover .sold-result-image { transform: scale(1.045); filter: saturate(1.08); }
.listing-card { isolation: isolate; }
.listing-card-body { position: relative; z-index: 1; background: white; }
.btn { transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease; }
.btn:hover { box-shadow: 0 10px 28px rgba(8,20,41,0.18); }
.advantage-grid article { transition: background 0.3s ease, transform 0.3s ease; }
.advantage-grid article:hover { background: rgba(255,255,255,0.09); transform: translateY(-5px); }
.scope-item { transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.scope-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,193,48,0.55); transform: translateX(5px); }
.audience-grid article { transition: box-shadow 0.35s ease, transform 0.35s ease; }
.audience-grid article:hover { box-shadow: 0 20px 45px rgba(14,31,61,0.12); transform: translateY(-6px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .motion-reveal { opacity: 1; transform: none; }
  .process-track::before { transform: scaleX(1); }
}

/* Responsive */
@media (max-width: 900px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid-4col,
  .listings-grid-3col { grid-template-columns: repeat(2, 1fr); }
  .credibility-band { grid-template-columns: repeat(2, 1fr); }
  .credibility-item:nth-child(2) { border-right: 0; }
  .scope-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid article { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 2rem 0; }
  .process-track::before { display: none; }
  .footer-row { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .seller-friction-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0; }
  .seller-friction article:nth-child(2) { border-right: 0; }
  .seller-fit-section, .seller-process-section, .seller-faq-section, .seller-enquiry-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .seller-assets-section { grid-template-columns: 1fr; }
  .seller-assets-image { min-height: 420px; }
  .seller-advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .seller-advantage-grid article { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .seller-process-heading { position: static; }
  .agent-friction-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0; }
  .agent-friction article:nth-child(2) { border-right: 0; }
  .agent-intro-section, .agent-fit-layout, .agent-process-section, .agent-included-layout, .agent-faq-section, .agent-enquiry-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .agent-fit-grid, .agent-included-grid { grid-template-columns: repeat(3, 1fr); }
  .agent-process-heading { position: static; }
  .bidder-process-section, .bidder-clarity-section, .bidder-faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .bidder-process-heading { position: static; }
  .bidder-clarity-grid { grid-template-columns: repeat(2, 1fr); }
  .bidder-faq-image { min-height: 380px; }
  .about-facts-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem 0; }
  .about-facts-grid article:nth-child(2) { border-right: 0; }
  .about-purpose-layout, .about-story-layout, .about-value-layout, .about-team-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-capability-grid { grid-template-columns: repeat(2, 1fr); }
  .about-team-intro { position: static; }
  .contact-direct-layout, .contact-map-layout, .contact-principles-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-service-grid p { min-height: 72px; }
  .auction-alerts-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .cinematic-hero { background-size: cover; animation: none; will-change: auto; }
}

@media (max-width: 600px) {
  .listings-grid { grid-template-columns: 1fr; }
  .listings-grid-4col,
  .listings-grid-3col,
  .listings-grid-2col { grid-template-columns: 1fr; }
  .site-nav { grid-template-columns: 1fr auto; justify-items: stretch; padding: 0.7rem 1rem; gap: 0.5rem; }
  .nav-brand { justify-self: start; }
  .nav-logo-img { height: 54px; }
  .nav-toggle { display: flex; justify-self: end; align-self: center; }
  .nav-links { display: none; grid-column: 1 / -1; width: 100%; padding: 0.75rem 0 0.35rem; flex-direction: column; align-items: stretch; gap: 0.25rem; border-top: 1px solid var(--border); }
  .site-nav.nav-open .nav-links { display: flex; animation: mobileNavIn 0.28s cubic-bezier(.22,.8,.25,1); }
  .nav-links a { width: 100%; padding: 0.75rem 0.9rem; text-align: left; border-radius: 9px; }
  .site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  @keyframes mobileNavIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  .hero { margin: 0 0.75rem; padding: 1.5rem; }
  .home-hero { min-height: 520px; }
  .hero-actions, .aldes-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn, .aldes-actions .btn { justify-content: center; }
  .home-section,
  .home-section.container { padding: 3.5rem 1rem; }
  .sold-page-header { padding: 3.5rem 1rem 3rem; background-position: 58% center; }
  .sold-hero-actions, .sold-hero-actions .btn { width: 100%; }
  .sold-hero-actions .btn { justify-content: center; }
  .sold-page-results.container { padding: 2.5rem 1rem 4rem; }
  .credibility-band, .principles-grid, .scope-grid, .audience-grid, .sold-results-grid, .aldes-proof-grid { grid-template-columns: 1fr; }
  .credibility-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .advantage-signoff { display: none; }
  .footer-links .footer-admin-link { display: none; }
  .credibility-item:last-child { border-bottom: 0; }
  .section-heading-row { align-items: start; flex-direction: column; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-grid article { border-right: 0; }
  .process-track { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 42px 1fr; column-gap: 0.8rem; }
  .process-step > span { grid-row: span 2; }
  .aldes-backup-section, .home-cta { padding: 4rem 1rem; }
  .sell-hero { min-height: 660px; padding: 4rem 1rem; background-position: 58% center; }
  .sell-hero-actions { flex-direction: column; }
  .sell-hero-actions .btn { justify-content: center; }
  .seller-section, .seller-section.container { padding: 4rem 1rem; }
  .seller-friction { padding: 1.5rem 1rem; }
  .seller-friction-grid, .seller-fit-grid, .seller-control-grid, .seller-proof-grid { grid-template-columns: 1fr; }
  .seller-friction article, .seller-friction article:first-child { padding: 0.5rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .seller-friction article:last-child { border-bottom: 0; }
  .seller-comparison th, .seller-comparison td { min-width: 180px; }
  .seller-assets-image { min-height: 300px; }
  .seller-assets-copy { padding: 4rem 1rem; }
  .seller-advantage-grid { grid-template-columns: 1fr; }
  .seller-advantage-grid article { border-right: 0; }
  .seller-aldes-section, .seller-enquiry-section { padding: 4rem 1rem; }
  .seller-enquiry-form { grid-template-columns: 1fr; padding: 1rem; }
  .seller-enquiry-form > * { grid-column: 1 !important; }
  .agent-hero { min-height: 660px; padding: 4rem 1rem; background-position: 60% center; }
  .agent-hero-actions { flex-direction: column; }
  .agent-hero-actions .btn { justify-content: center; }
  .agent-section, .agent-section.container { padding: 4rem 1rem; }
  .agent-friction { padding: 1.5rem 1rem; }
  .agent-friction-grid, .agent-fit-grid, .agent-included-grid, .agent-option-cards, .agent-protection-grid { grid-template-columns: 1fr; }
  .agent-friction article, .agent-friction article:first-child { padding: 0.5rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .agent-friction article:last-child { border-bottom: 0; }
  .agent-intro-image { min-height: 280px; }
  .agent-earnings-table th, .agent-earnings-table td { min-width: 180px; }
  .agent-protection-section, .agent-enquiry-section { padding: 4rem 1rem; }
  .agent-enquiry-form { grid-template-columns: 1fr; padding: 1rem; }
  .agent-enquiry-form > * { grid-column: 1 !important; }
  .bidder-hero { min-height: 660px; padding: 4rem 1rem; background-position: 58% center; }
  .bidder-hero-actions { flex-direction: column; }
  .bidder-hero-actions .btn { justify-content: center; }
  .bidder-confidence-band { padding: 1.5rem 1rem; }
  .bidder-confidence-grid, .bidder-doc-grid, .bidder-fees-grid, .bidder-clarity-grid { grid-template-columns: 1fr; }
  .bidder-confidence-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 0.8rem 0; }
  .bidder-confidence-grid article:last-child { border-bottom: 0; }
  .bidder-section, .bidder-section.container, .bidder-docs-section, .bidder-fees-section, .bidder-flow-section, .bidder-faq-section { padding: 4rem 1rem; }
  #bidder-registration-form,
  #modal-bidder-registration-form { padding: 1.5rem 1rem; }
  .bidder-step { min-height: 390px; }
  .bidder-choice-grid { grid-template-columns: 1fr; }
  .bidder-review { grid-template-columns: 1fr; max-height: 290px; overflow-y: auto; }
  .bidder-flow-actions { flex-wrap: wrap; }
  .bidder-flow-actions .btn { justify-content: center; }
  .bidder-faq-image { min-height: 300px; }
  .about-hero { min-height: 680px; padding: 4rem 1rem; background-position: 58% center; }
  .about-hero-actions { flex-direction: column; }
  .about-hero-actions .btn { justify-content: center; }
  .about-facts { padding: 1.5rem 1rem; }
  .about-facts-grid, .about-pillars, .about-capability-grid, .about-value-points, .about-audience-grid, .about-team-grid { grid-template-columns: 1fr; }
  .about-facts-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.14); padding: 0.8rem 0; }
  .about-facts-grid article:last-child { border-bottom: 0; }
  .about-section, .about-section.container, .about-story-section, .about-value-band, .about-team-section, .about-cta { padding: 4rem 1rem; }
  .about-person-photo { height: 390px; }
  .about-person-body p { min-height: auto; }
  .digital-card-page { padding: 1rem 0.65rem 3rem; }
  .digital-card-close { top: 1rem; right: 1rem; }
  .digital-card-portrait { min-height: 470px; }
  .contact-hero { min-height: 680px; padding: 4rem 1rem; background-position: 62% center; }
  .contact-hero-actions { flex-direction: column; }
  .contact-hero-actions .btn { justify-content: center; }
  .contact-direct-section, .contact-map-section, .contact-section, .contact-section.container, .contact-principles-section, .contact-flow-section { padding: 4rem 1rem; }
  .contact-people-grid, .contact-service-grid, .contact-principles-grid, .contact-choice-grid, .contact-choice-grid.compact, .contact-review { grid-template-columns: 1fr; }
  .contact-people-grid p, .contact-service-grid p { min-height: auto; }
  .contact-person-photo { height: 330px; }
  .contact-principles-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .contact-principles-grid article:last-child { border-bottom: 0; }
  .contact-map-layout iframe { height: 320px; }
  #contact-enquiry-form { padding: 1.35rem; }
  .contact-step { min-height: 420px; }
  .contact-flow-actions { flex-wrap: wrap; }
  .contact-success { padding: 2rem 1.2rem; }
  .auction-alerts-section { padding: 4rem 1rem; }
  .auction-alert-form { grid-template-columns: 1fr; padding: 1.1rem; }
  .auction-alert-form .btn, .auction-alert-form small { grid-column: 1; }
}

/* ── Listing detail page (mobile-first: base = single column) ─── */
.detail-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 1rem 3rem;
}

.detail-gallery-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #3a4a63;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(14,31,61,0.55);
  color: white;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.gallery-nav:hover { background: rgba(14,31,61,0.8); }
.gallery-nav-prev { left: 0.75rem; }
.gallery-nav-next { right: 0.75rem; }

.detail-gallery-thumb-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-gallery-thumb-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,31,61,0.6);
  border-radius: 8px;
}
.detail-gallery-thumb-more span {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(8,20,41,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 2;
  border: 0;
  background: none;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox-counter {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.gallery-lightbox .gallery-nav { width: 48px; height: 48px; font-size: 1.3rem; }
.gallery-lightbox .gallery-nav-prev { left: 1.25rem; }
.gallery-lightbox .gallery-nav-next { right: 1.25rem; }

.detail-sold-banner {
  position: absolute;
  top: 2rem;
  right: -3.4rem;
  z-index: 2;
  width: 240px;
  padding: 0.75rem 1rem;
  transform: rotate(35deg);
  background: #a72a32;
  color: white;
  box-shadow: 0 8px 24px rgba(8,20,41,0.28);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.detail-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-bottom: 0.25rem;
}

.detail-gallery-thumb {
  flex: 0 0 auto;
  width: 84px;
  height: 64px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.detail-gallery-thumb.active { border-color: var(--gold); }

.detail-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.detail-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
}

.detail-badge.category { background: var(--gold); color: var(--navy); }
.detail-badge.sold { background: #a72a32; color: white; }
.detail-badge.on-hold { background: var(--muted); color: white; }

.detail-title { font-size: 1.5rem; line-height: 1.25; color: var(--navy); margin: 0.75rem 0 0.25rem; }
.detail-address { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }

.detail-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(14, 31, 61, 0.06);
}

.detail-overview-item { }
.detail-overview-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.2rem; }
.detail-overview-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

.detail-summary {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(14, 31, 61, 0.06);
  line-height: 1.7;
  color: var(--text);
}

.detail-summary h2 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.6rem; }

.detail-map iframe { width: 100%; height: 260px; border: 0; border-radius: var(--radius); display: block; }
.detail-map-fallback {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(14, 31, 61, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-sidebar {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(14, 31, 61, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.detail-broker { display: flex; align-items: center; gap: 0.75rem; }

.detail-broker-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  flex-shrink: 0;
}

.detail-broker-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.detail-broker-role { font-size: 0.75rem; color: var(--muted); }

.detail-sidebar form { display: flex; flex-direction: column; gap: 0.6rem; }
.detail-sidebar input,
.detail-sidebar textarea {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
}

.detail-sidebar-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.detail-sidebar-actions .btn { justify-content: center; }

.detail-enquiry-sent {
  background: rgba(63, 107, 74, 0.1);
  color: #3F6B4A;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

.detail-sold-notice { padding: 1rem; border-radius: 10px; border-left: 4px solid var(--gold); background: rgba(255,193,48,0.12); }
.detail-sold-notice strong { display: block; color: var(--navy); font-size: 0.92rem; }
.detail-sold-notice p { margin-top: 0.35rem; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }

/* Auction-specific bidder registration modal */
body.bidder-modal-open { overflow: hidden; }
.bidder-modal[hidden] { display: none; }
.bidder-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 1rem; }
.bidder-modal-backdrop { position: absolute; inset: 0; background: rgba(8, 20, 41, 0.72); backdrop-filter: blur(5px); }
.bidder-modal-dialog { position: relative; width: min(820px, 100%); max-height: calc(100vh - 2rem); overflow-y: auto; background: #efede7; border-radius: 20px; box-shadow: 0 28px 80px rgba(8, 20, 41, 0.35); }
.bidder-modal-close { position: sticky; z-index: 2; top: 0.8rem; float: right; width: 42px; height: 42px; margin: 0.8rem 0.8rem -42px 0; border: 1px solid var(--border); border-radius: 50%; background: white; color: var(--navy); font-size: 1.65rem; line-height: 1; cursor: pointer; }
.bidder-modal-heading { padding: 2rem 4.5rem 1.2rem 2rem; }
.bidder-modal-heading h2 { margin: 0.35rem 0; color: var(--navy); font-size: clamp(1.45rem, 3vw, 2rem); }
.bidder-modal-heading p { color: var(--muted); font-size: 0.82rem; }
.bidder-modal-builder { margin: 0 1.1rem 1.1rem; box-shadow: 0 16px 40px rgba(14,31,61,0.1); }
.bidder-selected-auction { display: grid; gap: 0.18rem; margin-bottom: 1.15rem; padding: 0.9rem 1rem; border-left: 3px solid var(--gold); border-radius: 0 9px 9px 0; background: #f7f5f0; }
.bidder-selected-auction span { color: var(--muted); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.bidder-selected-auction b { color: var(--navy); font-size: 0.88rem; }
.bidder-selected-auction small { color: var(--muted); font-size: 0.7rem; }
.bidder-deposit-note { margin: 0 0 1.15rem; padding: 0.65rem 0.9rem; border-radius: 8px; background: rgba(255,193,48,0.14); color: var(--navy); font-size: 0.78rem; font-weight: 600; }
.bidder-modal .bidder-success { box-shadow: none; }
.bidder-modal .bidder-step { min-height: 300px; }

@media (max-height: 650px) and (min-width: 601px) {
  .bidder-modal-heading { padding-top: 1.25rem; padding-bottom: 0.85rem; }
  .bidder-modal-builder { margin-bottom: 0.8rem; }
  .bidder-modal .bidder-progress { padding-top: 1rem; }
  #modal-bidder-registration-form { padding-top: 1.35rem; padding-bottom: 1.25rem; }
  .bidder-modal .bidder-step { min-height: 250px; }
  .bidder-modal .bidder-step h3 { margin-bottom: 1.1rem; }
  .bidder-modal .bidder-selected-auction { margin-bottom: 0.85rem; padding-block: 0.75rem; }
  .bidder-modal .bidder-flow-actions { margin-top: 0.9rem; }
}

@media (max-width: 600px) {
  .bidder-modal { padding: 0; place-items: stretch; }
  .bidder-modal-dialog { width: 100%; height: 100%; max-height: 100dvh; border-radius: 0; }
  .bidder-modal-heading { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .bidder-modal-close { float: none; display: block; margin: 0.8rem 0.8rem 0.6rem auto; }
  .bidder-modal-builder { margin: 0 0.65rem 0.65rem; border-radius: 14px; }
  .bidder-modal .bidder-progress { padding-inline: 1rem; }
  .bidder-modal .bidder-step { min-height: auto; }
}

@media (min-width: 900px) {
  .detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: start;
    padding: 2rem 1.5rem 3rem;
    gap: 2rem;
  }
  .detail-main { grid-column: 1; }
  .detail-sidebar { grid-column: 2; position: sticky; top: 90px; }
  .detail-gallery-main { aspect-ratio: 16 / 9; }
}

/* Mobile usability pass. Keep these overrides isolated from tablet/desktop. */
@media (max-width: 600px) {
  html { font-size: 16px; overflow-x: clip; }
  body { font-size: 16px; line-height: 1.6; overflow-x: clip; }
  p, li { overflow-wrap: anywhere; }

  /* Comfortable touch targets and legible form controls (also prevents iOS zoom). */
  .btn { min-height: 48px; padding: 0.8rem 1.2rem; font-size: 0.95rem; justify-content: center; }
  button, input, select, textarea { font-size: 16px !important; }
  input, select, textarea { min-height: 48px; }
  textarea { min-height: 120px; }
  .nav-toggle { width: 48px; height: 48px; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; font-size: 0.95rem; }

  .hero, .home-hero, .sell-hero, .agent-hero, .bidder-hero,
  .about-hero, .contact-hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .home-hero { min-height: min(620px, calc(100svh - 74px)); }
  .hero h1, .sell-hero h1, .agent-hero h1, .bidder-hero h1,
  .about-hero h1, .contact-hero h1 { font-size: clamp(2rem, 10vw, 2.65rem); line-height: 1.08; }
  .hero-intro, .sell-hero-content > p, .agent-hero-content > p,
  .bidder-hero-content > p, .about-hero-content > p,
  .contact-hero-content > p { font-size: 1rem; line-height: 1.65; }
  .hero-eyebrow, .section-kicker { font-size: 0.78rem; line-height: 1.35; }

  .home-section, .home-section.container, .seller-section, .seller-section.container,
  .agent-section, .agent-section.container, .bidder-section, .bidder-section.container,
  .bidder-docs-section, .bidder-fees-section, .bidder-flow-section, .bidder-faq-section,
  .about-section, .about-section.container, .about-story-section, .about-value-band,
  .about-team-section, .about-cta, .contact-direct-section, .contact-map-section,
  .contact-section, .contact-section.container, .contact-principles-section,
  .contact-flow-section, .auction-alerts-section { padding-top: 3.25rem; padding-bottom: 3.25rem; }
  .section-heading-row { gap: 1rem; margin-bottom: 1.5rem; }
  .section-heading-row h2, .centered-heading h2, .scope-layout h2,
  .aldes-backup-content h2, .seller-section h2, .seller-assets-copy h2,
  .seller-process-heading h2, .seller-aldes-content h2, .seller-faq-heading h2,
  .seller-enquiry-layout h2 { font-size: clamp(1.75rem, 8vw, 2.15rem); }

  /* Small desktop captions become readable body copy on phones. */
  .listing-card-cat, .listing-card-footer, .footer-copyright, .footer-endorsement,
  .footer-links a, .credibility-item span, .principle-card p, .advantage-grid p,
  .process-step p, .sold-result-card small, .seller-friction p,
  .seller-fit-grid p, .seller-asset-tags span, .seller-advantage-grid p,
  .seller-proof-grid span, .agent-friction p, .agent-fit-grid p,
  .agent-included-grid p, .bidder-confidence-grid span, .bidder-confidence-grid small,
  .bidder-fees-grid p, .bidder-clarity-grid p, .about-facts-grid span,
  .about-pillars p, .about-audience-grid a, .contact-office-card a,
  .contact-people-grid p, .contact-service-grid p, .contact-service-grid a,
  .contact-principles-grid p, .detail-broker-role {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .listing-card-title, .process-step h3, .advantage-grid h3 { font-size: 1rem; }
  .listing-card-body, .principle-card, .audience-grid article { padding: 1.25rem; }
  .listing-card-image, .sold-result-image { height: 220px; }

  .credibility-band { padding: 1.25rem 1rem; }
  .credibility-item { padding: 1rem 0.5rem; }
  .scope-layout { gap: 2rem; }
  .scope-item { min-height: 52px; font-size: 0.95rem; }
  .process-track { gap: 1.4rem; }
  .process-step { padding: 0; grid-template-columns: 44px minmax(0, 1fr); }
  .process-step > span { width: 40px; height: 40px; margin-bottom: 0; }
  .aldes-backup-section { min-height: auto; background-position: 62% center; }

  /* Convert wide comparisons into labelled cards instead of forcing side-scrolling. */
  .seller-comparison, .agent-earnings-table { overflow: visible; background: transparent; box-shadow: none; }
  .seller-comparison table, .seller-comparison tbody,
  .agent-earnings-table table, .agent-earnings-table tbody { display: block; width: 100%; min-width: 0; }
  .seller-comparison thead, .agent-earnings-table thead { display: none; }
  .seller-comparison tr, .agent-earnings-table tr {
    display: block;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 8px 24px rgba(14,31,61,0.06);
  }
  .seller-comparison th, .seller-comparison td,
  .agent-earnings-table th, .agent-earnings-table td {
    display: block;
    width: 100% !important;
    min-width: 0;
    padding: 1rem;
    border: 0;
    text-align: left;
  }
  .seller-comparison tbody th, .agent-earnings-table tbody th {
    padding: 0.8rem 1rem;
    background: var(--navy);
    color: white;
    font-size: 1rem;
  }
  .seller-comparison td + td, .agent-earnings-table td + td { border-top: 1px solid var(--border); }
  .seller-comparison td::before, .agent-earnings-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.35rem;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
  }
  .seller-comparison tbody td:nth-child(2) { color: var(--muted); }
  .seller-comparison tbody td:last-child { background: rgba(255,193,48,0.08); color: var(--navy); }
  .agent-earnings-table tbody td { text-align: left; }
  .agent-earnings-table tbody td:last-child { background: rgba(255,193,48,0.08); }
  .agent-earnings-table .agent-total-row th,
  .agent-earnings-table .agent-total-row td { background: rgba(255,193,48,0.14); color: var(--navy); }

  .seller-assets-copy, .seller-aldes-section, .seller-enquiry-section,
  .agent-protection-section, .agent-enquiry-section { padding-top: 3.25rem; padding-bottom: 3.25rem; }
  .seller-assets-image, .agent-intro-image, .bidder-faq-image { min-height: 240px; }
  .bidder-step, .contact-step { min-height: auto; }
  .bidder-flow-actions, .contact-flow-actions { display: grid; grid-template-columns: 1fr; gap: 0.65rem; }
  .bidder-flow-actions .btn, .contact-flow-actions .btn { width: 100%; }
  .bidder-review, .contact-review { max-height: none; overflow: visible; }

  .about-person-photo { height: min(390px, 105vw); }
  .contact-person-photo { height: min(330px, 88vw); }
  .contact-map-layout iframe { height: 260px; }
  .contact-person-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .contact-person-actions a { min-height: 44px; display: inline-flex; align-items: center; padding: 0.65rem 0.85rem; font-size: 0.85rem; }

  .digital-card-page { padding-inline: 0; }
  .digital-card-shell { border-radius: 0; }
  .digital-card-portrait { min-height: min(520px, 80svh); }
  .digital-primary-actions span, .digital-contact-list strong,
  .digital-card-about p, .digital-card-expertise > div > span { font-size: 0.85rem; }

  .detail-layout { padding-inline: 0.9rem; }
  .detail-title { font-size: 1.75rem; }
  .detail-overview { grid-template-columns: 1fr; }
  .detail-overview-label, .detail-badge { font-size: 0.75rem; }
  .detail-summary, .detail-sidebar { padding: 1.1rem; }
  .detail-map iframe { height: 230px; }

  .site-footer { padding: 1.75rem 1rem; }
  .footer-row { gap: 1rem; }
  .footer-links { gap: 0.35rem 1rem; }
  .footer-links a { min-height: 44px; display: inline-flex; align-items: center; }

  .sell-hero-actions, .agent-hero-actions, .bidder-hero-actions,
  .about-hero-actions, .contact-hero-actions, .hero-actions, .aldes-actions { width: 100%; }
  .sell-hero-actions .btn, .agent-hero-actions .btn, .bidder-hero-actions .btn,
  .about-hero-actions .btn, .contact-hero-actions .btn,
  .hero-actions .btn, .aldes-actions .btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .site-nav { padding-inline: 0.75rem; }
  .nav-logo-img { height: 48px; }
  .hero { margin-inline: 0.5rem; padding-inline: 1rem; }
  .home-section, .home-section.container { padding-inline: 0.85rem; }
  .hero h1, .sell-hero h1, .agent-hero h1, .bidder-hero h1,
  .about-hero h1, .contact-hero h1 { font-size: 1.9rem; }
}

/* Legal pages (privacy policy, terms) */
.legal-page { padding: 2.5rem 1.5rem 4rem; max-width: 760px; }
.legal-page h1 { color: var(--navy); font-size: 1.8rem; margin-bottom: 0.4rem; }
.legal-page .legal-updated { color: var(--muted); font-size: 0.78rem; margin-bottom: 2rem; }
.legal-page h2 { color: var(--navy); font-size: 1.15rem; margin: 2.2rem 0 0.8rem; }
.legal-page h3 { color: var(--navy); font-size: 0.95rem; margin: 1.3rem 0 0.5rem; }
.legal-page p { color: var(--text); line-height: 1.75; font-size: 0.9rem; margin-bottom: 0.9rem; }
.legal-page ul { color: var(--text); line-height: 1.75; font-size: 0.9rem; margin: 0 0 0.9rem 1.2rem; }
.legal-page li { margin-bottom: 0.4rem; }
.legal-page a { color: var(--navy); text-decoration: underline; }
.legal-page strong { color: var(--navy); }

.auction-category-filters.flex { flex-wrap: wrap; }
@media (max-width: 600px) {
  .auction-category-filters.flex {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }
  .auction-category-filters.flex .btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
