:root {
  --gold: #d7b56d;
  --cream: #fff7e8;
  --dark: #0d0b08;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: #0d0b08;
  color: #fff7e8;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(13, 11, 8, 0.92) 0%, rgba(13, 11, 8, 0.74) 44%, rgba(13, 11, 8, 0.25) 100%),
    url('images/header.jpg');
  background-size: cover;
  background-position: center;
}

.cta-section-bg {
  background-image: url('images/535940248_18062494076200044_8164092650417808142_n.jpg');
  background-size: cover;
  background-position: center;
}

.owner-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0806 0%, #14100c 48%, #0d0b08 100%);
}

.owner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(215, 181, 109, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(215, 181, 109, 0.08), transparent);
  pointer-events: none;
}

.owner-frame {
  position: relative;
  padding: 5px;
  border-radius: 2rem;
  background: linear-gradient(135deg, #f8e7a8, #d7b56d, #9a7229, #f4df9b, #c59a3a);
  box-shadow:
    0 0 0 1px rgba(215, 181, 109, 0.3),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(215, 181, 109, 0.12);
}

.owner-frame img {
  display: block;
  width: 100%;
  border-radius: calc(2rem - 5px);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.owner-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(215, 181, 109, 0.18);
  user-select: none;
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gold-gradient {
  background: linear-gradient(135deg, #f4df9b, #c59a3a, #8e651e);
}

.image-card img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.image-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-ring {
  display: inline-flex;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f8e7a8, #d7b56d, #b8892f, #f4df9b, #c59a3a);
  box-shadow: 0 0 0 1px rgba(215, 181, 109, 0.35), 0 8px 24px rgba(215, 181, 109, 0.18);
}

.logo-ring--header {
  padding: 3px;
}

.logo-ring--footer {
  padding: 4px;
}

.logo-img {
  display: block;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid #0d0b08;
  background: #0d0b08;
}

.logo-ring--header .logo-img {
  width: 3.75rem;
  height: 3.75rem;
}

.logo-ring--footer .logo-img {
  width: 5.25rem;
  height: 5.25rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080604;
  padding: 2.5rem 0 6.5rem;
}

.footer-map {
  margin-bottom: 2rem;
}

.footer-map-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-map-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-map-title {
  margin-top: 0.35rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff7e8;
}

.footer-map-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-map-link:hover {
  color: #f4df9b;
}

.footer-map-frame {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(215, 181, 109, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.footer-map-frame iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

@media (min-width: 768px) {
  .footer-map-frame iframe {
    height: 320px;
  }
}

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 2.5rem;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer-legal a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 247, 232, 0.5);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-legal a:hover {
  color: var(--gold);
  border-color: rgba(215, 181, 109, 0.45);
  background: rgba(215, 181, 109, 0.08);
}

.footer-legal a.is-active {
  color: var(--gold);
  border-color: rgba(215, 181, 109, 0.55);
  background: rgba(215, 181, 109, 0.12);
}

.footer-copy {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 247, 232, 0.3);
}

.legal-page {
  padding: 7rem 1.25rem 4rem;
}

.legal-content {
  max-width: 46rem;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.legal-content .legal-updated {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 247, 232, 0.4);
}

.legal-content h2 {
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

.legal-content p,
.legal-content li {
  margin-top: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 247, 232, 0.68);
}

.legal-content ul {
  margin-top: 0.85rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wizard-page {
  min-height: 100vh;
  padding: 6.5rem 1.25rem 3rem;
  background: linear-gradient(180deg, #0d0b08 0%, #14100c 40%, #0d0b08 100%);
}

.wizard-shell {
  max-width: 34rem;
  margin: 0 auto;
}

.wizard-card {
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff7e8;
  color: #0d0b08;
  padding: 1.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .wizard-card {
    padding: 2rem;
  }
}

.wizard-progress {
  margin-bottom: 1.5rem;
}

.wizard-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 247, 232, 0.55);
}

.wizard-progress-bar {
  height: 4px;
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
}

.wizard-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f4df9b, #c59a3a);
  transition: width 0.35s ease;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
  animation: wizardFade 0.35s ease;
}

@keyframes wizardFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-step-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
}

.wizard-step-intro {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(13, 11, 8, 0.58);
}

.wizard-field {
  display: block;
  margin-top: 1.25rem;
}

.wizard-field-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
}

.wizard-field-hint {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(13, 11, 8, 0.48);
}

.wizard-input,
.wizard-select,
.wizard-textarea {
  margin-top: 0.65rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(13, 11, 8, 0.12);
  background: #fff;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wizard-input:focus,
.wizard-select:focus,
.wizard-textarea:focus {
  border-color: #9a7229;
  box-shadow: 0 0 0 3px rgba(154, 114, 41, 0.12);
}

.wizard-textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.wizard-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(13, 11, 8, 0.72);
}

.wizard-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.wizard-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.wizard-btn {
  flex: 1;
  border-radius: 9999px;
  padding: 0.95rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wizard-btn:active {
  transform: scale(0.98);
}

.wizard-btn--back {
  border: 1px solid rgba(13, 11, 8, 0.14);
  background: transparent;
  color: #0d0b08;
}

.wizard-btn--next {
  background: linear-gradient(135deg, #f4df9b, #c59a3a, #8e651e);
  color: #0d0b08;
  box-shadow: 0 12px 32px rgba(197, 154, 58, 0.25);
}

.wizard-btn--next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.wizard-saved {
  margin-top: 1rem;
  font-size: 0.72rem;
  text-align: center;
  color: rgba(13, 11, 8, 0.38);
}

.wizard-success {
  text-align: center;
  padding: 1rem 0.25rem;
}

.wizard-success-icon {
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(154, 114, 41, 0.12);
  color: #9a7229;
  font-size: 1.5rem;
  font-weight: 800;
}

.wizard-error {
  margin-top: 0.75rem;
  border-radius: 1rem;
  background: #fef2f2;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #991b1b;
}

.split-section-grid {
  align-items: center;
}

.split-section-card {
  width: 100%;
  height: fit-content;
  align-self: center;
}
