/* ═══════════════════════════════════════════════════════════
   HARBOUR VIEW ESTATES — Auction Page Styles
   Nordic Lakeland Design System
   
   HOW TO USE IN JOOMLA:
   1. Upload this file to: /media/css/harbour-view-estates.css
   2. Add to your template or page via:
      - Template: Add <link> in index.php <head>
      - OR: Extensions > Templates > Options > Custom CSS
      - OR: Use "Custom HTML" module with inline <style>
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables (Design Tokens) ── */
:root {
  /* Nordic Lakeland Palette */
  --hve-lake: #5b7a8a;
  --hve-lake-light: #8ba5b3;
  --hve-lake-dark: #2d4a5a;
  --hve-evergreen: #2d5a3d;
  --hve-evergreen-light: #4a7a5d;
  --hve-birch: #c8b48a;
  --hve-birch-light: #e8dcc4;
  --hve-copper: #b8864a;
  --hve-copper-dark: #9a6e38;
  --hve-sand: #e8dcc4;
  --hve-slate: #5a6070;

  /* Semantic Colors */
  --hve-bg: #f7f4ef;
  --hve-bg-card: #faf8f5;
  --hve-fg: #1e2230;
  --hve-fg-muted: #6a6e7a;
  --hve-border: #ddd6c8;
  --hve-secondary: #ede8df;

  /* Typography */
  --hve-font-display: 'DM Serif Display', Georgia, serif;
  --hve-font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --hve-font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* ── Google Fonts (add to <head> if not already loaded) ──
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=JetBrains+Mono:wght@400;600&family=Source+Sans+3:wght@300;400;600;700&display=swap" rel="stylesheet">
── */

/* ── Full-width override ──
   Forces the auction layout to break out of any
   Joomla container/article wrapper constraints. */
.hve-auction {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
}

/* ── Reset within auction scope ── */
.hve-auction * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hve-auction img {
  max-width: 100%;
  height: auto;
  display: block;
}
.hve-auction a {
  text-decoration: none;
  color: inherit;
}

/* ── Unicode icon text (replaces SVGs stripped by Joomla) ── */
.hve-icon-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

/* ── Container (full-width, flush to edges) ── */
.hve-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) {
  .hve-container { padding: 0 2rem; }
}
@media (min-width: 1024px) {
  .hve-container { padding: 0 3rem; }
}
@media (min-width: 1400px) {
  .hve-container { padding: 0 4rem; }
}

/* ── Smooth scroll ── */
html {
  scroll-behavior: smooth;
}

/* ══════════════════════════════════════════
   SECTION 1: HERO
   ══════════════════════════════════════════ */
.hve-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hve-hero__bg {
  position: absolute;
  inset: 0;
}
.hve-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hve-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.1));
}
.hve-hero__content {
  position: relative;
  padding-bottom: 3rem;
  max-width: 800px;
}
@media (min-width: 1024px) {
  .hve-hero__content { padding-bottom: 5rem; }
}
.hve-hero__eyebrow {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--hve-font-body);
  font-weight: 600;
}
.hve-hero__title {
  font-size: 2rem;
  color: #fff !important;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-family: var(--hve-font-display);
}
.hve-hero__title {
  color: #fff !important;
}
@media (min-width: 768px) {
  .hve-hero__title { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
  .hve-hero__title { font-size: 3rem; }
}
.hve-hero__desc {
  color: rgba(255,255,255,0.8) !important;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
  font-family: var(--hve-font-body);
  font-weight: 300;
}
.hve-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
/* wave divider removed — SVG stripped by Joomla */

/* ── Buttons ── */
.hve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--hve-font-body);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hve-btn--copper {
  background: var(--hve-copper) !important;
  color: #fff !important;
}
.hve-btn--copper:hover {
  background: var(--hve-copper-dark) !important;
}
.hve-btn--ghost {
  background: rgba(255,255,255,0.25) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
  border: 2px solid #fff !important;
}
.hve-btn--ghost:hover {
  background: rgba(255,255,255,0.4) !important;
}
.hve-btn--outline {
  background: transparent !important;
  color: var(--hve-copper) !important;
  border: 1px solid rgba(184,134,74,0.3) !important;
}
.hve-btn--outline:hover {
  border-color: rgba(184,134,74,0.5) !important;
}
.hve-btn--full {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════════
   SECTION: STICKY NAV
   ══════════════════════════════════════════ */
.hve-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hve-border);
}
.hve-nav__inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hve-nav__inner::-webkit-scrollbar { display: none; }
.hve-nav__link {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hve-fg-muted);
  font-family: var(--hve-font-body);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.hve-nav__link:hover {
  color: var(--hve-fg);
  background: rgba(237,232,223,0.5);
}

/* ══════════════════════════════════════════
   SECTION: OVERVIEW
   ══════════════════════════════════════════ */
.hve-section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .hve-section { padding: 6rem 0; }
}
.hve-section--alt {
  background: rgba(237,232,223,0.4);
}
.hve-section--evergreen {
  background: var(--hve-evergreen);
}
.hve-section--topo {
  background-image: 
    radial-gradient(ellipse 800px 400px at 20% 50%, rgba(91,122,138,0.03), transparent),
    radial-gradient(ellipse 600px 300px at 80% 30%, rgba(45,90,61,0.03), transparent);
}

.hve-eyebrow {
  color: var(--hve-copper);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--hve-font-body);
  font-weight: 600;
}
.hve-heading {
  font-size: 1.5rem;
  color: var(--hve-fg);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-family: var(--hve-font-display);
}
@media (min-width: 768px) {
  .hve-heading { font-size: 1.875rem; }
}
.hve-heading--white { color: #fff !important; }
.hve-text {
  color: var(--hve-fg-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  font-family: var(--hve-font-body);
}
.hve-text--white { color: rgba(255,255,255,0.7) !important; }

/* Overview grid */
.hve-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hve-overview-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Stats grid */
.hve-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hve-stat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.hve-stat__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,90,61,0.1);
  color: var(--hve-evergreen);
  flex-shrink: 0;
}
.hve-stat__icon .hve-icon-text {
  font-size: 1rem;
  line-height: 1;
}
.hve-stat__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hve-fg);
  font-family: var(--hve-font-body);
}
.hve-stat__sub {
  font-size: 0.75rem;
  color: var(--hve-fg-muted);
  font-family: var(--hve-font-body);
}

/* Overview image */
.hve-overview-img {
  position: relative;
}
.hve-overview-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .hve-overview-img img { height: 450px; }
}
.hve-overview-img__badge {
  position: absolute;
  bottom: -20px;
  left: -16px;
  background: var(--hve-bg-card);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--hve-border);
}
.hve-overview-img__badge-label {
  font-size: 0.625rem;
  color: var(--hve-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--hve-font-body);
  margin-bottom: 0.25rem;
}
.hve-overview-img__badge-value {
  font-size: 1.25rem;
  color: var(--hve-evergreen);
  font-weight: 600;
  font-family: var(--hve-font-mono);
}

/* Lifestyle cards */
.hve-cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .hve-cards-3 { grid-template-columns: repeat(3, 1fr); }
}
.hve-card {
  background: var(--hve-bg-card);
  padding: 1.5rem;
  border: 1px solid var(--hve-border);
  transition: box-shadow 0.2s ease;
}
.hve-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.hve-card__icon {
  display: none !important;
}
.hve-card__icon .hve-icon-text {
  font-size: 1.25rem;
  line-height: 1;
}
.hve-card__title {
  font-size: 1rem;
  color: var(--hve-fg);
  margin-bottom: 0.5rem;
  font-family: var(--hve-font-display);
}

/* ══════════════════════════════════════════
   SECTION: HERITAGE BANNER
   ══════════════════════════════════════════ */
.hve-heritage {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hve-heritage { padding: 6rem 0; }
}
.hve-heritage__bg {
  position: absolute;
  inset: 0;
}
.hve-heritage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hve-heritage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4));
}
.hve-heritage__content {
  position: relative;
  max-width: 560px;
}

/* ══════════════════════════════════════════
   SECTION: PARCEL CARDS
   ══════════════════════════════════════════ */
.hve-parcels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .hve-parcels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .hve-parcels-grid { grid-template-columns: repeat(3, 1fr); }
}

.hve-parcel {
  background: var(--hve-bg-card);
  border: 1px solid var(--hve-border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.hve-parcel:hover {
  border-color: rgba(184,134,74,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.hve-parcel--expanded {
  grid-column: 1 / -1;
  border-color: rgba(184,134,74,0.5);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.hve-parcel--expanded .hve-parcel__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hve-parcel--expanded .hve-parcel__inner {
    grid-template-columns: 1fr 2fr;
  }
}

.hve-parcel__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.hve-parcel--expanded .hve-parcel__img {
  height: 220px;
}
@media (min-width: 1024px) {
  .hve-parcel--expanded .hve-parcel__img {
    height: 100%;
    min-height: 400px;
  }
}
.hve-parcel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hve-parcel__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(91,122,138,0.2);
  color: var(--hve-lake-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--hve-font-mono);
  backdrop-filter: blur(8px);
}
.hve-parcel__lot {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.6);
  color: #fff !important;
  font-size: 0.75rem;
  font-family: var(--hve-font-mono);
  backdrop-filter: blur(8px);
}
.hve-parcel__body {
  padding: 1.25rem;
}
.hve-parcel__title {
  font-size: 1.125rem;
  color: var(--hve-fg);
  margin-bottom: 0.25rem;
  font-family: var(--hve-font-display);
}
.hve-parcel__subtitle {
  font-size: 0.75rem;
  color: var(--hve-fg-muted);
  margin-bottom: 0.75rem;
  font-family: var(--hve-font-body);
}
.hve-parcel__quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.hve-parcel__fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--hve-fg-muted);
}
.hve-parcel__fact svg {
  flex-shrink: 0;
}

/* Bid area */
.hve-parcel__bid {
  background: rgba(237,232,223,0.5);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hve-parcel__bid-label {
  font-size: 0.625rem;
  color: var(--hve-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--hve-font-body);
}
.hve-parcel__bid-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hve-evergreen);
  font-family: var(--hve-font-mono);
}
.hve-parcel__bid-date {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hve-fg);
  font-family: var(--hve-font-mono);
}

/* Expanded detail */
.hve-parcel__detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hve-border);
  display: none;
}
.hve-parcel--expanded .hve-parcel__detail {
  display: block;
}

/* Facts table */
.hve-facts-table {
  width: 100%;
  border: 1px solid var(--hve-border);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.hve-facts-row {
  display: flex;
  flex-direction: column;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid rgba(221,214,200,0.5);
}
@media (min-width: 640px) {
  .hve-facts-row { flex-direction: row; align-items: flex-start; }
}
.hve-facts-row:nth-child(even) {
  background: rgba(237,232,223,0.3);
}
.hve-facts-row:last-child {
  border-bottom: none;
}
.hve-facts-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--hve-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--hve-font-body);
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .hve-facts-label { width: 160px; }
}
.hve-facts-value {
  font-size: 0.875rem;
  color: var(--hve-fg-muted);
  font-family: var(--hve-font-body);
}
.hve-facts-value--mono {
  font-family: var(--hve-font-mono);
}

/* Auction info grid */
.hve-auction-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .hve-auction-info { grid-template-columns: repeat(4, 1fr); }
}
.hve-auction-info__item {
  background: rgba(237,232,223,0.5);
  padding: 0.75rem;
}
.hve-auction-info__label {
  font-size: 0.625rem;
  color: var(--hve-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-family: var(--hve-font-body);
}
.hve-auction-info__value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hve-fg);
}
.hve-auction-info__value--green {
  color: var(--hve-evergreen);
}

/* ══════════════════════════════════════════
   SECTION: HOW IT WORKS
   ══════════════════════════════════════════ */
.hve-steps {
  max-width: 800px;
  margin: 0 auto;
}
.hve-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .hve-step { gap: 2rem; }
}
.hve-step__icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.hve-step__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hve-evergreen);
  color: #fff !important;
}
.hve-step__icon .hve-icon-text {
  font-size: 1.25rem;
  line-height: 1;
}
.hve-step__line {
  width: 1px;
  flex: 1;
  background: var(--hve-border);
  margin-top: 0.75rem;
}
.hve-step__num {
  font-size: 0.625rem;
  color: var(--hve-copper);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--hve-font-mono);
  margin-bottom: 0.5rem;
}
.hve-step__title {
  font-size: 1.25rem;
  color: var(--hve-fg);
  margin-bottom: 0.5rem;
  font-family: var(--hve-font-display);
}

/* ══════════════════════════════════════════
   SECTION: SCHEDULE TABLE
   ══════════════════════════════════════════ */
.hve-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--hve-bg-card);
  border: 1px solid var(--hve-border);
  overflow: hidden;
}
.hve-schedule-table thead tr {
  background: var(--hve-lake-dark);
  color: #fff !important;
}
.hve-schedule-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: var(--hve-font-body);
}
.hve-schedule-table td {
  padding: 0.75rem 1rem;
  color: var(--hve-fg-muted);
  border-bottom: 1px solid rgba(221,214,200,0.5);
}
.hve-schedule-table tbody tr:nth-child(even) {
  background: rgba(237,232,223,0.2);
}
.hve-schedule-table .hve-mono {
  font-family: var(--hve-font-mono);
}
.hve-schedule-table .hve-bold {
  font-weight: 600;
  color: var(--hve-fg);
}
.hve-schedule-table .hve-copper-text {
  font-weight: 600;
  color: var(--hve-copper);
  font-family: var(--hve-font-mono);
}

/* Summary cards */
.hve-summary-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .hve-summary-3 { grid-template-columns: repeat(3, 1fr); }
}
.hve-summary-card {
  background: rgba(237,232,223,0.5);
  padding: 1rem;
  text-align: center;
}
.hve-summary-card__label {
  font-size: 0.75rem;
  color: var(--hve-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-family: var(--hve-font-body);
}
.hve-summary-card__value {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--hve-font-mono);
}
.hve-summary-card__value--green {
  color: var(--hve-evergreen);
}

/* ══════════════════════════════════════════
   SECTION: TERMS
   ══════════════════════════════════════════ */
.hve-terms-card {
  background: var(--hve-bg-card);
  border: 1px solid var(--hve-border);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .hve-terms-card { padding: 2rem; }
}
.hve-terms-card__title {
  font-size: 1.25rem;
  color: var(--hve-fg);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--hve-font-display);
}
.hve-terms-card__title svg {
  color: var(--hve-copper);
}
.hve-terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .hve-terms-grid { grid-template-columns: 1fr 1fr; }
}
.hve-terms-item {
  background: rgba(237,232,223,0.3);
  padding: 1rem;
}
.hve-terms-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hve-fg);
  margin-bottom: 0.25rem;
  font-family: var(--hve-font-body);
}

/* ══════════════════════════════════════════
   SECTION: CONTACT CTA
   ══════════════════════════════════════════ */
.hve-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hve-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0;
}
.hve-cta__contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}
@media (min-width: 640px) {
  .hve-cta__contacts { grid-template-columns: repeat(3, 1fr); }
}
.hve-cta__contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 0.75rem;
  font-family: var(--hve-font-body);
}
.hve-cta__contact-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.875rem;
  font-family: var(--hve-font-body);
  transition: color 0.2s ease;
}
.hve-cta__contact-value:hover {
  color: #fff !important;
}
.hve-cta__contact-value svg {
  color: var(--hve-copper);
}

/* ══════════════════════════════════════════
   SECTION: HIKASHOP PLACEHOLDER
   ══════════════════════════════════════════ */
.hve-hikashop-placeholder {
  background: rgba(232,220,196,0.4);
  border: 1px solid rgba(200,180,138,0.3);
  padding: 0.625rem 1rem;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: var(--hve-slate);
  font-family: var(--hve-font-mono);
}

/* ══════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════ */
.hve-text-center { text-align: center; }
.hve-mb-3 { margin-bottom: 0.75rem; }
.hve-mb-4 { margin-bottom: 1rem; }
.hve-mb-6 { margin-bottom: 1.5rem; }
.hve-mb-8 { margin-bottom: 2rem; }
.hve-mb-12 { margin-bottom: 3rem; }
.hve-mt-6 { margin-top: 1.5rem; }
.hve-max-w-2xl { max-width: 640px; margin-left: auto; margin-right: auto; }
.hve-max-w-3xl { max-width: 768px; margin-left: auto; margin-right: auto; }
.hve-max-w-4xl { max-width: 896px; margin-left: auto; margin-right: auto; }
.hve-scroll-mt { scroll-margin-top: 4rem; }

/* SVG icon inline sizing */
.hve-auction .hve-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
.hve-icon--sm { width: 12px; height: 12px; }
.hve-icon--md { width: 16px; height: 16px; }
.hve-icon--lg { width: 20px; height: 20px; }
