.home-page .gold-grad {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-page .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 1rem;
}

.home-page .hero-panel {
  padding: 3rem 0 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(251, 249, 245, 0.65) 100%);
  border-bottom: 1px solid var(--line);
}

.home-page .hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2.75rem;
  align-items: stretch;
}

.home-page .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.home-page .hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
}

.home-page .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.home-page .hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.home-page .hero-highlight {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.home-page .hi-icon {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--gold-bright), var(--gold-deep));
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(184, 134, 45, 0.2);
}

.home-page .hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 0;
}

.home-page .hero-figure {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.home-page .hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

/* ── Hero infobar ──────────────────────────────────────────────────────────── */

.home-page .hero-infobar {
  display: flex;
  align-items: stretch;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 32px rgba(20, 18, 15, 0.06);
  overflow: hidden;
}

.home-page .hero-infobar-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.25rem 1.5rem;
}

.home-page .hero-infobar-divider {
  width: 1px;
  background: var(--line);
  flex-shrink: 0;
  align-self: stretch;
}

.home-page .infobar-value {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.home-page .infobar-unit {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.1em;
}

.home-page .infobar-label {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.home-page .hero-infobar-cta {
  background: linear-gradient(135deg, rgba(184, 134, 45, 0.06) 0%, rgba(212, 175, 55, 0.04) 100%);
}

.home-page .infobar-phone {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  line-height: 1;
  transition: color 0.15s;
}

.home-page .infobar-phone:hover {
  color: var(--gold-bright);
}

.home-page .metric-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
  color: var(--text);
}

.home-page .metric-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .band {
  padding: 4rem 0;
}

.home-page .trust-band {
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
  background: #fff;
}

.home-page .trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-page .trust-item {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-align: center;
}

.home-page .band-media {
  padding: 3.5rem 0;
  background: var(--bg-page);
}

.home-page .media-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.home-page .media-mosaic-cell {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(20, 18, 15, 0.08);
  background: var(--panel-2);
}

.home-page .media-mosaic-cell img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.home-page .media-mosaic-cell--tall img {
  min-height: 280px;
}

.home-page .media-caption {
  display: block;
  padding: 0.65rem 0.85rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: #fff;
  border-top: 1px solid var(--line);
  letter-spacing: 0.04em;
}

.home-page .section-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.home-page .section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.home-page .section-header.align-left {
  text-align: left;
  margin-inline: 0;
}

.home-page .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.home-page .section-sub {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.home-page .section-sub.align-left {
  max-width: 52ch;
}

.home-page .card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-page .card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .feature-card {
  border-radius: var(--radius);
  padding: 1.65rem 1.65rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(20, 18, 15, 0.07);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-page .feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 134, 45, 0.35);
  box-shadow: 0 22px 52px rgba(20, 18, 15, 0.1);
}

.home-page .feature-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.home-page .feature-body {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.home-page .text-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 107, 47, 0.35);
}

.home-page .text-link:hover {
  color: var(--text);
  border-bottom-color: rgba(20, 18, 15, 0.35);
}

.home-page .band-muted {
  background: var(--bg-warm);
  border-block: 1px solid var(--line);
}

.home-page .liquidity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.home-page .liquidity-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-page .liquidity-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.home-page .liquidity-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-page .pill-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-page .pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-muted);
  background: #fff;
}

.home-page .showcase-panel {
  border-radius: var(--radius);
  padding: 2rem;
  background: linear-gradient(160deg, #fff 0%, #faf6ef 100%);
  border: 1px solid rgba(184, 134, 45, 0.25);
  box-shadow: 0 18px 48px rgba(20, 18, 15, 0.08);
}

.home-page .showcase-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.home-page .showcase-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.home-page .showcase-body {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-page .showcase-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-page .badge-soft {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--text-muted);
}

.home-page .process-photo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-page .process-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(20, 18, 15, 0.08);
}

.home-page .process-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.home-page .steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 56px rgba(20, 18, 15, 0.08);
}

.home-page .step {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.65rem 2.25rem;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: background 0.18s ease;
}

.home-page .step:last-child {
  border-right: none;
}

.home-page .step:hover {
  background: #fffdf9;
}

.home-page .step-index {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-page .step-body::before {
  content: "";
  display: block;
  height: 2px;
  width: 2.25rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 999px;
  margin-bottom: 1rem;
}

.home-page .step-title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.home-page .step-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.home-page .band-quote {
  padding-bottom: 5rem;
  background: linear-gradient(180deg, var(--bg-page), #fff);
}

.home-page .quote-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.75rem;
  align-items: start;
}

.home-page .quote-side-photo {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(20, 18, 15, 0.08);
}

.home-page .quote-side-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-page .quote-bullets {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.home-page .quote-panel-wrap {
  position: relative;
}

.home-page .quote-panel {
  border-radius: var(--radius);
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-page .quote-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.1rem;
}

.home-page .quote-form .field.full {
  grid-column: 1 / -1;
}

.home-page .field-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.home-page .field-label .req {
  color: var(--gold-deep);
}

.home-page .field-label .optional {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-left: 0.35rem;
}

.home-page .field-control {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.home-page .field-icon {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  width: 18px;
  height: 18px;
  opacity: 0.6;
  pointer-events: none;
}

.home-page .field-icon-doc {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' fill='none' stroke='%238c6b2f' stroke-width='1.5'%3E%3Cpath d='M7 4h6l4 4v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.home-page .field-icon-currency {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%238c6b2f' stroke-width='1.5'%3E%3Cpath d='M12 3v18M7.5 8.5h6a2.5 2.5 0 0 1 0 5h-5a2.5 2.5 0 0 0 0 5H17'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.home-page .field-icon-user {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%238c6b2f' stroke-width='1.5'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4z'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.home-page .field-icon-phone {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%238c6b2f' stroke-width='1.5'%3E%3Cpath d='M5 4h4l2 5-2 1a11 11 0 0 0 5 5l1-2 5 2v4a2 2 0 0 1-2 2A16 16 0 0 1 3 6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.home-page .field-icon-mail {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%238c6b2f' stroke-width='1.5'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='M4 8l8 5 8-5'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.home-page .field-icon-pin {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%238c6b2f' stroke-width='1.5'%3E%3Cpath d='M12 21s7-5.6 7-11a7 7 0 1 0-14 0c0 5.4 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.2'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.home-page .field-input {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fbfaf7;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem 0.85rem 2.65rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.home-page textarea.field-input {
  min-height: 120px;
  resize: vertical;
  padding-top: 0.85rem;
}

.home-page .field-input::placeholder {
  color: rgba(90, 83, 73, 0.45);
}

.home-page .field-input:focus {
  border-color: rgba(184, 134, 45, 0.55);
  box-shadow: 0 0 0 3px rgba(184, 134, 45, 0.12);
  background: #fff;
}

.home-page .field.is-invalid .field-input,
.home-page .field.is-invalid .file-drop {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.14);
}

.home-page .field-error {
  min-height: 1.1rem;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #b91c1c;
}

.home-page .field-hint {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.home-page .file-drop {
  position: relative;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(184, 134, 45, 0.45);
  padding: 1.25rem 1rem;
  text-align: center;
  background: #fffdf8;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.home-page .file-drop:hover,
.home-page .file-drop.is-focused {
  border-color: rgba(184, 134, 45, 0.75);
  background: #fffaf0;
}

.home-page .file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.home-page .file-drop-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.home-page .file-drop-meta {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.home-page .file-preview-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-page .file-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  color: var(--text);
}

.home-page .file-preview-remove {
  border: none;
  background: transparent;
  color: var(--gold-deep);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .consent-field {
  padding-top: 0.25rem;
}

.home-page .checkbox-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.home-page .checkbox-label input {
  margin-top: 0.2rem;
}

.home-page .consent-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-faint);
}

.home-page .form-banner-error {
  margin: 0.75rem 0 0;
  min-height: 1.2rem;
  color: #b91c1c;
  font-size: 0.88rem;
}

.home-page .form-actions {
  margin-top: 1.25rem;
}

.home-page .btn .btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(26, 18, 8, 0.2);
  border-top-color: rgba(26, 18, 8, 0.85);
  animation: home-spin 0.7s linear infinite;
  display: none;
}

.home-page .btn.is-loading .btn-label {
  opacity: 0.65;
}

.home-page .btn.is-loading .btn-spinner {
  display: inline-block;
}

.home-page .quote-thanks {
  text-align: left;
}

.home-page .thanks-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.home-page .thanks-body {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1rem;
}

/* ── Contact / Location section ─────────────────────────────────────────── */

.home-page .band-contact {
  padding: 5rem 0;
}

.home-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.home-page .contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(20, 18, 15, 0.08);
  height: 480px;
}

.home-page .contact-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.home-page .map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #faf8f4 0%, #f3ede2 100%);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.home-page .map-placeholder:hover {
  background: linear-gradient(160deg, #f5f0e8 0%, #ede4d2 100%);
}

.home-page .map-placeholder:hover .map-placeholder-cta {
  background: var(--gold-deep);
  color: #fff;
}

.home-page .map-placeholder-pin {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8862d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.home-page .map-placeholder-address {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  text-align: center;
  line-height: 1.55;
}

.home-page .map-placeholder-cta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  transition: background 0.2s, color 0.2s;
}

.home-page .contact-info {
  padding: 0.5rem 0;
}

.home-page .contact-details {
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.home-page .contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.home-page .contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.55;
}

.home-page .contact-icon-pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8862d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  opacity: 1;
}

.home-page .contact-icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8862d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.15 12 19.79 19.79 0 0 1 1.08 3.4 2 2 0 0 1 3.06 1.22h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L7.09 9.1a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2z'/%3E%3C/svg%3E");
  opacity: 1;
}

.home-page .contact-icon-star {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b8862d' stroke='%23b8862d' stroke-width='1.2'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E");
  opacity: 1;
}

.home-page .contact-icon-clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8862d' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
  opacity: 1;
}

.home-page .contact-address-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.97rem;
  line-height: 1.6;
  transition: color 0.15s;
}

.home-page .contact-address-link:hover {
  color: var(--gold-deep);
}

.home-page .contact-phone-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.home-page .contact-phone-link:hover {
  color: var(--gold-deep);
}

.home-page .contact-rating {
  color: var(--gold-deep);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-right: 0.4rem;
}

.home-page .contact-rating-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.home-page .hours-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-page .hours-note a {
  color: var(--gold-deep);
  text-decoration: none;
}

.home-page .contact-quote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold-deep);
  background: rgba(184, 134, 45, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-page .contact-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ── Footer contact block ────────────────────────────────────────────────── */

@keyframes home-spin {
  to {
    transform: rotate(360deg);
  }
}
