:root {
  --ink:#0b0b0c;
  --soft:#f7f7f5;
  --line:#e9e7e2;
  --gold:#b08d57;
  --gold-ink:#8b6b3f;
}

/* Global reset-ish */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  background: var(--soft);
  color: var(--ink);
}

/* Narrow content wrapper to match brochure/website feel */
.container-narrow {
  max-width: 1120px;
}

/* Utility styles that sit on top of Tailwind */

.card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

/* Slightly softer card for inline sections (e.g. some interior cards) */
.card-soft {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.20);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.30);
}

.btn-outline {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
}

.btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
}

/* Header / top bar */

.sa-header-top {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.sa-header-top-inner {
  font-size: 0.85rem;
  color: #4b5563;
}

.sa-header {
  background: #ffffffcc;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.sa-nav-link {
  font-size: 0.85rem;
  color: #4b5563;
  text-decoration: none;
}

.sa-nav-link:hover {
  opacity: 0.7;
}

/* Logo treatment */

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 16px;
}

.logo-text {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

/* Typography */

.headline {
  font-family: "Playfair Display", system-ui, -apple-system, serif;
  letter-spacing: 0.02em;
}

.hairline {
  border-top: 1px solid var(--line);
}

.link-underline {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(.6);
  transform-origin: left;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.link-underline:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Quote configurator option cards */

.option-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0.65rem 0.7rem;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, transform 0.1s ease, color 0.1s ease;
}

.option-card-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.option-card-price {
  font-size: 0.8rem;
  color: var(--gold-ink);
}

.option-card-desc {
  font-size: 0.76rem;
  color: #6b7280;
  margin-top: 2px;
}

.option-card--active {
  border-color: var(--ink);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  background: #0b0b0c;
  color: #f9fafb;
}

.option-card--active .option-card-price {
  color: #facc6b;
}

/* Golden Offer - Signature Elite Package */
.option-card--featured {
  position: relative;
  border: 2px solid var(--gold-ink);
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(250, 204, 107, 0.25);
}

.option-card--featured:hover {
  box-shadow: 0 8px 30px rgba(250, 204, 107, 0.35);
  transform: translateY(-2px);
}

.option-card--featured.option-card--active {
  background: linear-gradient(135deg, #0b0b0c 0%, #1a1a1b 100%);
  border-color: var(--gold-ink);
  box-shadow: 0 12px 40px rgba(250, 204, 107, 0.4);
}

.golden-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold-ink) 0%, #d4a017 100%);
  color: #0b0b0c;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(250, 204, 107, 0.4);
  z-index: 1;
}

.golden-badge i {
  font-size: 0.65rem;
}

.option-card--featured .option-card-title {
  color: #0b0b0c;
  font-weight: 700;
}

.option-card--featured .option-card-price {
  color: var(--gold-ink);
  font-weight: 600;
}

.option-card--featured.option-card--active .option-card-title {
  color: #f9fafb;
}

.option-card--featured.option-card--active .golden-badge {
  background: linear-gradient(135deg, #facc6b 0%, #f59e0b 100%);
  color: #0b0b0c;
}

.option-card-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .5);
  padding: 1px 6px;
  font-size: 0.7rem;
  margin-top: 4px;
}

/* Quote summary text adjustments */

.quote-summary-label {
  color: #6b7280;
}

/* Simple dialog styling override */

dialog {
  border: none;
  padding: 0;
  background: transparent;
}

.sa-dialog-inner {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.30);
}

/* Lightbox dialog */

.lightbox-dialog {
  background: rgba(15, 23, 42, 0.75);
}

.lightbox-image {
  border-radius: 20px;
  max-height: 90vh;
  object-fit: contain;
}

/* Responsive tweaks */

@media (max-width: 768px) {
  .card {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
  }
}