/* ================================================================
   SHARED LAYOUT & COMPONENTS
   ================================================================ */

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section ── */
.section {
  padding: var(--section-pad) var(--gutter);
  position: relative;
}
.section--dark { background: var(--navy); }
.section--deeper { background: var(--navy-deep); }

/* ── Section Header ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
}
.section-label--center {
  justify-content: center;
}
.section-label--center::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1; letter-spacing: 0.04em;
  color: var(--ivory);
  margin-bottom: 18px;
}
.section-title span { color: var(--gold); }

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 21px);
  color: var(--ivory-dim);
  font-weight: 300; line-height: 1.7;
  max-width: 580px;
  margin-bottom: 54px;
}
.section-subtitle--center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }

/* ── Gold Divider ── */
.divider {
  width: 70px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--royal-bright));
  margin: 20px 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ── Ornamental line ── */
.ornamental {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 20px 0;
}
.ornamental::before, .ornamental::after {
  content: '';
  flex: 1; max-width: 180px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.ornamental-symbol {
  font-family: var(--font-serif);
  font-size: 22px; color: var(--gold);
  font-style: italic;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}
.btn-royal {
  padding: 15px 38px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-bright));
  color: var(--navy-deep);
  box-shadow: 0 4px 30px rgba(201,160,64,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-royal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201,160,64,.55);
}
.btn-outline {
  padding: 14px 38px;
  border: 1px solid rgba(201,160,64,.45);
  color: var(--gold);
  background: rgba(201,160,64,.04);
}
.btn-outline:hover {
  background: rgba(201,160,64,.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,160,64,.2);
}
.btn-sm { padding: 10px 24px; font-size: 10px; }

/* ── Page Hero Banner ── */
.page-hero {
  min-height: 46vh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 120px var(--gutter) 56px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    var(--navy-deep) 0%,
    var(--navy-surface) 55%,
    var(--navy-deep) 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(0deg, var(--navy-deep), transparent);
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 60px),
    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 60px);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto; width: 100%;
}
.page-hero-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 88px);
  font-weight: 800; text-transform: uppercase;
  line-height: 0.9; letter-spacing: 0.04em;
  color: var(--ivory); margin-bottom: 18px;
}
.page-hero-title span { color: var(--gold); }
.page-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 20px);
  color: var(--ivory-dim);
  max-width: 560px; font-weight: 300;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 100px var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.breadcrumb a { cursor: pointer; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-dark); }
.breadcrumb span:last-child { color: var(--gold); }

/* ── Brand Ticker Strip ── */
.ticker {
  background: linear-gradient(90deg,
    var(--royal), var(--navy-surface), var(--royal-bright), var(--navy-surface), var(--royal));
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(201,160,64,.2);
  border-bottom: 1px solid rgba(201,160,64,.2);
}
.ticker-inner {
  display: flex; gap: 56px;
  animation: tickerScroll 22s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.45em;
  color: var(--gold-light); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.ticker-item::after { content: '♦'; color: var(--gold); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Dealer CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy-deep) 50%, var(--royal) 100%);
  padding: 80px var(--gutter);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(201,160,64,.05) 0, rgba(201,160,64,.05) 1px,
    transparent 0, transparent 80px);
}
.cta-banner-inner {
  max-width: 760px; margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-banner p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(245,248,238,.75);
  margin-bottom: 36px; line-height: 1.6;
}

/* ── Footer ── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,160,64,.15);
  padding: 72px var(--gutter) 36px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-logo { height: 72px; width: auto; margin-bottom: 18px; }
.footer-tagline {
  font-family: var(--font-hindi);
  font-size: 15px; color: var(--gold-light);
  margin-bottom: 12px; opacity: 0.85;
}
.footer-desc {
  font-family: var(--font-serif);
  font-size: 14px; color: var(--muted);
  line-height: 1.7; max-width: 280px; margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,160,64,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--muted);
  transition: var(--transition); text-decoration: none;
}
.footer-social-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,160,64,.08);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-family: var(--font-sans);
  font-size: 12.5px; color: var(--muted);
  transition: color 0.3s; letter-spacing: 0.05em;
}
.footer-col li a:hover { color: var(--gold); }
.footer-disclaimer {
  margin-top: 22px; padding: 18px 22px;
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(192,57,43,.18);
  border-radius: 4px;
  font-family: var(--font-sans); font-size: 11px;
  color: var(--muted); text-align: center;
  letter-spacing: 0.04em; line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(201,160,64,.1);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 11.5px; color: var(--muted); letter-spacing: 0.08em;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-family: var(--font-sans); font-size: 11px;
  color: var(--muted); letter-spacing: 0.1em;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
