.real-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder:has(img)::before,
.package-img:has(img)::before,
.package-img:has(img)::after { display: none; }

.offer-image img { transition: transform .3s; }
.offer-card:hover .offer-image img { transform: scale(1.02); }

.gallery figure > div:has(img)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(39,34,31,.45));
  pointer-events: none;
}

.gallery figure > div span,
.oldtimer-art p { z-index: 2; }

.oldtimer-art:has(img)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(39,34,31,.5));
}

.desktop-nav a[aria-current="page"] { color: var(--red); }
.desktop-nav a[aria-current="page"]::after { right: 0; }

.site-header {
  background: rgba(255, 249, 241, .98);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-image img { object-position: 50% 50%; }
.portrait-placeholder img { object-position: 50% 45%; }

/* Consistent type scale and spacing rhythm */
.brand small { font-size: 9px; }
.eyebrow,
.breadcrumb { font-size: 12px; }
.footer-bottom { font-size: 11px; }
.trust-row dt,
.floating-label small,
.caption,
.info-strip small,
.concept-list span,
.oldtimer-art p,
.package-card dl div,
.price-note { font-size: 11px; }
.since-stamp { font-size: 10px; }
.badge,
.pill,
.gallery figcaption,
.menu-card-footer small,
.vehicle-meta small { font-size: 11px; }
.feature-card p,
.menu-card p,
.timeline-card p,
.legal p,
.legal li { font-size: 14px; }
.legal h2 { overflow-wrap: anywhere; hyphens: auto; }
.source-note,
.tax-notice,
.service-grid p { font-size: 13px; }
.inquiry-form > small { font-size: 12px; }
.filter-button { min-height: 44px; }

.page-hero { padding-top: 72px; padding-bottom: 64px; }
.page-hero h1 { font-size: clamp(46px, 5.5vw, 70px); }
.content-section { padding-top: 80px; padding-bottom: 80px; }
.content-title h2 { font-size: clamp(38px, 4vw, 52px); }
.offers { padding-bottom: 96px; }
.story { padding-bottom: 104px; }
.packages,
.moments { padding-top: 96px; padding-bottom: 96px; }
.service-inner { padding-top: 96px; padding-bottom: 96px; }
.inquiry { margin-bottom: 96px; padding-top: 64px; padding-bottom: 64px; }
.cta-band,
.cta-band-centered { margin-top: 70px; margin-bottom: 70px; }

/* Unified form controls */
.inquiry-form label,
.form-step label { font-size: 13px; }
.inquiry-form input:not([type="checkbox"]),
.inquiry-form select,
.form-step input:not([type="radio"]):not([type="checkbox"]),
.form-step select {
  height: 52px;
  min-height: 52px;
  padding: 0 15px;
  font-size: 15px;
  line-height: 1.25;
}
.form-step textarea {
  min-height: 126px;
  padding: 15px;
  font-size: 15px;
  line-height: 1.5;
}
.inquiry-form select,
.form-step select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--red) 50%), linear-gradient(135deg, var(--red) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 38px;
}

/* Branded calendar */
.date-picker { position: relative; width: 100%; }
.custom-date-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236f2632' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='3'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E");
  background-position: calc(100% - 18px) center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  padding-right: 44px !important;
}
.date-picker-panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  left: 50%;
  width: min(320px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(74, 24, 32, .2);
  transform: translateX(-50%);
}
.date-picker-panel[hidden] { display: none; }
.date-picker-header {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  text-align: center;
}
.date-picker-header strong { font: 600 19px var(--display); text-transform: capitalize; }
.date-picker-nav,
.date-picker-day,
.date-picker-today {
  border: 0;
  color: var(--ink);
  background: transparent;
}
.date-picker-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
}
.date-picker-nav:hover { background: var(--cream2); color: var(--red); }
.date-picker-weekdays,
.date-picker-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.date-picker-weekdays { margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 600; text-align: center; }
.date-picker-day,
.date-picker-spacer { aspect-ratio: 1; min-width: 0; }
.date-picker-day { border-radius: 50%; font-size: 13px; }
.date-picker-day:hover { background: var(--cream2); color: var(--red); }
.date-picker-day.is-today { box-shadow: inset 0 0 0 1px var(--red); color: var(--red); }
.date-picker-day.is-selected { background: var(--red); color: var(--cream); box-shadow: none; }
.date-picker-today {
  width: 100%;
  min-height: 40px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .page-hero { padding-top: 48px; padding-bottom: 48px; }
  .page-hero h1,
  .page-hero.compact h1 { font-size: clamp(38px, 11vw, 43px); }
  .hero h1 { font-size: clamp(40px, 12vw, 43px); overflow-wrap: anywhere; }
  .content-section { padding-top: 60px; padding-bottom: 60px; }
  .content-title h2,
  .split-content h2,
  .story h2,
  .oldtimer h2,
  .section-heading h2,
  .service-heading h2,
  .inquiry h2 { font-size: 38px; }
  .offers { padding-bottom: 72px; }
  .story { padding-bottom: 72px; }
  .packages,
  .moments { padding-top: 72px; padding-bottom: 72px; }
  .service-inner { padding-top: 68px; padding-bottom: 68px; }
  .inquiry { margin-bottom: 68px; padding-top: 48px; padding-bottom: 48px; }
  .cta-band,
  .cta-band-centered { margin-top: 54px; margin-bottom: 54px; }
  .inquiry-form input:not([type="checkbox"]),
  .inquiry-form select,
  .form-step input:not([type="radio"]):not([type="checkbox"]),
  .form-step select,
  .form-step textarea { font-size: 16px; }
  .date-picker-panel { padding: 16px; }

  .footer-bottom {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .page-hero.compact h1 {
    overflow-wrap: anywhere;
  }
}
