/* ============================================================
   Sugar Daddy Saudi Arabia — Static Site Stylesheet
   Pixel-perfect conversion from React + Tailwind CSS
   ============================================================ */

/* ─── CSS Custom Properties ─── */
:root {
  --royal-gold: #C8A55A;
  --deep-charcoal: #1A1A2E;
  --warm-ivory: #FAF8F5;
  --soft-cream: #F5F0E8;
  --muted-gold: #D4B87A;
  --light-taupe: #8A7E6B;
  --pale-gold: #E8D5A3;
  --deep-navy: #16213E;
  --blush-rose: #C9A9A6;
  --white: #ffffff;
  --black: #000000;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.625rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --shadow-gold: 0 4px 16px rgba(200, 165, 90, 0.2);
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 26, 46, 0.12);
  --container-max: 1280px;
}

/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--deep-charcoal);
  background-color: var(--warm-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container-narrow {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.container-medium {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container-medium {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ─── Section Spacing ─── */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.section-sm {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-lg {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .section-lg {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }
}

/* ─── Background Colors ─── */
.bg-warm-ivory { background-color: var(--warm-ivory); }
.bg-soft-cream { background-color: var(--soft-cream); }
.bg-deep-charcoal { background-color: var(--deep-charcoal); }
.bg-deep-navy { background-color: var(--deep-navy); }
.bg-white { background-color: var(--white); }
.bg-gold { background-color: var(--royal-gold); }

/* ─── Text Colors ─── */
.text-gold { color: var(--royal-gold); }
.text-charcoal { color: var(--deep-charcoal); }
.text-taupe { color: var(--light-taupe); }
.text-white { color: var(--white); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-white-85 { color: rgba(255, 255, 255, 0.85); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-white-40 { color: rgba(255, 255, 255, 0.4); }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212, 184, 122, 0.2);
}

.navbar-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .navbar-inner {
    padding: 0 2.5rem;
  }
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.navbar-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--royal-gold);
  flex-shrink: 0;
}

.navbar-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-charcoal);
}

@media (min-width: 768px) {
  .navbar-logo-text {
    font-size: 1.25rem;
  }
}

.navbar-logo-text span {
  color: var(--royal-gold);
}

/* Desktop Nav */
.navbar-nav {
  display: none;
}

@media (min-width: 768px) {
  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--deep-charcoal);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link.active {
  color: var(--royal-gold);
  border-bottom: 2px solid var(--royal-gold);
  padding-bottom: 0.125rem;
}

/* Homepage transparent navbar */
.navbar-transparent .nav-link {
  color: var(--white);
}

.navbar-transparent .nav-link:hover {
  color: var(--royal-gold);
}

.navbar-transparent .nav-link.active {
  color: var(--royal-gold);
  border-bottom-color: var(--royal-gold);
}

.navbar-transparent .navbar-logo-text {
  color: var(--white);
}

/* Scrolled navbar links */
.navbar:not(.navbar-transparent) .nav-link,
.navbar.scrolled .nav-link {
  color: var(--deep-charcoal);
}

.navbar:not(.navbar-transparent) .nav-link:hover,
.navbar.scrolled .nav-link:hover {
  color: var(--royal-gold);
}

/* Desktop CTAs */
.navbar-ctas {
  display: none;
}

@media (min-width: 768px) {
  .navbar-ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Mobile Hamburger */
.navbar-hamburger {
  display: flex;
  padding: 0.5rem;
  color: var(--deep-charcoal);
}

.navbar-transparent .navbar-hamburger {
  color: var(--white);
}

.navbar.scrolled .navbar-hamburger {
  color: var(--deep-charcoal);
}

@media (min-width: 768px) {
  .navbar-hamburger {
    display: none;
  }
}

.navbar-hamburger svg {
  width: 24px;
  height: 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background-color: var(--royal-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 165, 90, 0.3);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-dark {
  border: 1px solid rgba(26, 26, 46, 0.3);
  color: var(--deep-charcoal);
}

.btn-outline-dark:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
}

/* Make homepage CTA buttons readable after the transparent nav becomes solid */
.navbar.scrolled .navbar-ctas .btn-outline {
  background-color: var(--white);
  border-color: rgba(26, 26, 46, 0.35);
  color: var(--deep-charcoal);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar.scrolled .navbar-ctas .btn-outline:hover {
  background-color: var(--warm-ivory);
  border-color: var(--royal-gold);
  color: var(--royal-gold);
}

.navbar.scrolled .navbar-ctas .btn-primary {
  background-color: var(--royal-gold);
  color: var(--white);
  border: 1px solid var(--royal-gold);
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: 0.9375rem;
}

.btn-xl {
  padding: 1rem 3rem;
  font-size: 1rem;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--royal-gold);
  transition: gap 0.2s;
}

.btn-link:hover {
  gap: 0.75rem;
}

.btn-link-arrow {
  font-size: 1.125rem;
  transition: transform 0.2s;
}

.btn-link:hover .btn-link-arrow {
  transform: translateX(2px);
}

.btn-full {
  width: 100%;
}

.btn-submit {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--royal-gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  transition: all 0.2s;
}

.btn-submit:hover {
  box-shadow: var(--shadow-gold);
}

.btn-submit:active {
  transform: translateY(1px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.3) 0%,
    rgba(26, 26, 46, 0.1) 50%,
    rgba(26, 26, 46, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 1.25rem 0;
  max-width: 48rem;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-eyebrow {
    font-size: 0.875rem;
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 640px) {
  .hero-btn {
    width: auto;
  }
}

/* Trust bar */
.hero-trust {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: none;
}

@media (min-width: 768px) {
  .hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
}

.hero-trust-divider {
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-right: 1.5rem;
}

.hero-trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .hero-scroll {
    display: none;
  }
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce-chevron 2s ease-in-out infinite;
}

/* Page hero (non-homepage) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 60vh;
  }
}

.page-hero-sm {
  min-height: 40vh;
}

@media (min-width: 768px) {
  .page-hero-sm {
    min-height: 50vh;
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(26, 26, 46, 0.3) 50%,
    rgba(26, 26, 46, 0.6) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.25rem;
  max-width: 48rem;
}

.page-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.page-hero-eyebrow.gold {
  color: var(--royal-gold);
}

.page-hero-eyebrow.white {
  color: var(--white);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero-title {
    font-size: 3.75rem;
  }
}

.page-hero-title.white {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero-title.dark {
  color: var(--deep-charcoal);
}

.page-hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 1.25rem auto 0;
  line-height: 1.7;
}

.page-hero-desc.white {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero-desc.taupe {
  color: var(--light-taupe);
}

/* ─── Section Labels ─── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--royal-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

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

/* ─── Section Titles ─── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--deep-charcoal);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.75rem;
  }
}

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

.section-title.white {
  color: var(--white);
}

.section-title.mb-standard {
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .section-title.mb-standard {
    margin-bottom: 4rem;
  }
}

/* ─── Card Styles ─── */
.card {
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
  }
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--royal-gold);
  margin: 0 auto 1.25rem;
}

.card-icon-lg {
  width: 40px;
  height: 40px;
  color: var(--royal-gold);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-icon-sm {
  width: 32px;
  height: 32px;
  color: var(--royal-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 0.75rem;
}

.card-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--light-taupe);
  line-height: 1.7;
}

/* Dark card variant */
.card-dark {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 184, 122, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s, background-color 0.3s;
}

@media (min-width: 768px) {
  .card-dark {
    padding: 2.5rem;
  }
}

.card-dark:hover {
  border-color: rgba(212, 184, 122, 0.3);
  background-color: rgba(255, 255, 255, 0.06);
}

.card-dark .card-title {
  color: var(--white);
}

.card-dark .card-body {
  color: rgba(255, 255, 255, 0.7);
}

.card-dark .card-icon-lg {
  color: var(--royal-gold);
}

/* Blush rose card variant */
.card-rose {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 166, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s;
}

.card-rose:hover {
  border-color: rgba(201, 169, 166, 0.3);
}

.card-rose .card-icon-lg {
  color: var(--blush-rose);
}

/* ─── Grid Layouts ─── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.grid-2-lg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .grid-2-lg {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ─── Image Styles ─── */
.img-rounded {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.img-aspect-4-5 {
  aspect-ratio: 4 / 5;
}

.img-aspect-3-4 {
  aspect-ratio: 3 / 4;
}

.img-aspect-square {
  aspect-ratio: 1 / 1;
}

.img-aspect-16-10 {
  aspect-ratio: 16 / 10;
}

.img-aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.img-full {
  width: 100%;
}

/* ─── Two-column layouts ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 55% 45%;
  }
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col-reverse {
    grid-template-columns: 45% 55%;
  }
}

.two-col-equal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col-equal {
    grid-template-columns: 1fr 1fr;
  }
}

.order-lg-1 { order: 1; }
.order-lg-2 { order: 2; }

@media (min-width: 1024px) {
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
}

/* ─── How It Works Steps ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.steps-connector {
  display: none;
}

@media (min-width: 1024px) {
  .steps-connector {
    display: block;
    position: absolute;
    top: 28px;
    left: 16%;
    right: 16%;
    height: 2px;
    background-color: rgba(212, 184, 122, 0.3);
  }
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 10;
}

.step-number span {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.step-number.gold { background-color: var(--royal-gold); }
.step-number.charcoal { background-color: var(--deep-charcoal); }
.step-number.muted-gold { background-color: var(--muted-gold); }

/* ─── FAQ Accordion ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
  border-left: 3px solid transparent;
}

.faq-item.open {
  border-left-color: var(--royal-gold);
}

.faq-item.bg-ivory {
  background-color: var(--warm-ivory);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
}

@media (min-width: 768px) {
  .faq-trigger {
    padding: 1.5rem;
  }
}

.faq-trigger-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .faq-trigger-text {
    font-size: 1.125rem;
  }
}

.faq-trigger-icon {
  color: var(--royal-gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-trigger-icon svg {
  width: 20px;
  height: 20px;
}

.faq-content {
  padding: 0 1.25rem 1.25rem;
}

@media (min-width: 768px) {
  .faq-content {
    padding: 0 1.5rem 1.5rem;
  }
}

.faq-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--light-taupe);
  line-height: 1.7;
  padding-top: 0.25rem;
}

/* ─── Category Tabs ─── */
.category-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.cat-tab {
  flex-shrink: 0;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 184, 122, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light-taupe);
  background-color: transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.cat-tab:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
}

.cat-tab.active {
  background-color: var(--royal-gold);
  color: var(--white);
  border-color: var(--royal-gold);
}

.cat-tabs-center {
  justify-content: center;
}

/* ─── Blog Cards ─── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-img-wrap {
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--royal-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.375;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--light-taupe);
  margin-bottom: 1rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(138, 126, 107, 0.6);
}

.blog-card-meta-item svg {
  width: 14px;
  height: 14px;
}

/* ─── City Cards ─── */
.city-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.city-card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.city-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s;
}

.city-card:hover .city-card-img {
  transform: scale(1.05);
}

.city-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.6), transparent);
}

.city-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .city-card-title {
    font-size: 1.875rem;
  }
}

.city-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ─── City Detail Section ─── */
.city-detail {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .city-detail {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.city-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .city-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.city-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .city-stats {
    gap: 2rem;
  }
}

.city-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal-gold);
}

@media (min-width: 768px) {
  .city-stat-num {
    font-size: 1.75rem;
  }
}

.city-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--light-taupe);
}

/* ─── Timeline ─── */
.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(212, 184, 122, 0.4);
}

@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-1px);
  }
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 1rem;
  width: 16px;
  height: 16px;
  background-color: var(--royal-gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
  }
}

.timeline-content {
  padding-left: 2.75rem;
}

@media (min-width: 768px) {
  .timeline-content {
    width: 50%;
    padding-left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    padding-right: 3rem;
    text-align: right;
  }

  .timeline-item:nth-child(even) .timeline-content {
    padding-left: 3rem;
    margin-left: 50%;
  }
}

.timeline-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--royal-gold);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 0.5rem;
}

.timeline-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--light-taupe);
  line-height: 1.7;
}

/* ─── Contact Info ─── */
.contact-info-item {
  display: flex;
  gap: 1rem;
}

.contact-info-icon {
  width: 28px;
  height: 28px;
  color: var(--royal-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--light-taupe);
}

.contact-info-value a {
  color: var(--light-taupe);
  transition: color 0.2s;
}

.contact-info-value a:hover {
  color: var(--royal-gold);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
}

.contact-badge.gold {
  background-color: rgba(232, 213, 163, 0.3);
  color: var(--royal-gold);
}

.contact-badge.green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.contact-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
}

/* ─── Forms ─── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--deep-charcoal);
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 184, 122, 0.3);
  background-color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--deep-charcoal);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
  color: rgba(138, 126, 107, 0.5);
}

.form-input:focus {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 3px rgba(200, 165, 90, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 184, 122, 0.3);
  background-color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--deep-charcoal);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  min-height: 120px;
}

.form-textarea::placeholder {
  color: rgba(138, 126, 107, 0.5);
}

.form-textarea:focus {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 3px rgba(200, 165, 90, 0.1);
}

.form-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(138, 126, 107, 0.6);
  text-align: center;
  margin-top: 0.25rem;
}

/* ─── Password Input ─── */
.password-wrap {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-taupe);
  transition: color 0.2s;
  padding: 0.25rem;
}

.password-toggle:hover {
  color: var(--royal-gold);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

/* ─── Checkbox ─── */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 0.25rem;
  border: 1px solid var(--muted-gold);
  accent-color: var(--royal-gold);
}

.checkbox-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--light-taupe);
}

/* ─── Divider ─── */
.divider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: rgba(212, 184, 122, 0.2);
}

.divider-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(138, 126, 107, 0.6);
}

/* ─── Social Buttons ─── */
.social-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .social-btns {
    flex-direction: row;
  }
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 184, 122, 0.3);
  background-color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--deep-charcoal);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.social-btn:hover {
  background-color: var(--soft-cream);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* ─── Login Page ─── */
.login-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
}

.login-image {
  display: none;
}

@media (min-width: 768px) {
  .login-image {
    display: block;
    width: 50%;
    position: relative;
    overflow: hidden;
  }
}

.login-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 20s ease-in-out infinite alternate;
}

.login-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.4) 0%,
    rgba(26, 26, 46, 0.2) 50%,
    rgba(26, 26, 46, 0.5) 100%
  );
}

.login-image-content {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  z-index: 10;
}

.login-image-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.login-image-brand svg {
  width: 32px;
  height: 32px;
  color: var(--royal-gold);
}

.login-image-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.login-image-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.login-image-trust {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.login-image-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.login-image-trust-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.login-image-trust-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.login-form-side {
  width: 100%;
  background-color: var(--warm-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.5rem 3rem;
}

@media (min-width: 768px) {
  .login-form-side {
    width: 50%;
    padding: 3rem 4rem;
  }
}

.login-form-wrap {
  width: 100%;
  max-width: 440px;
}

.login-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .login-form-title {
    font-size: 1.875rem;
    text-align: left;
  }
}

.login-form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--light-taupe);
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .login-form-subtitle {
    text-align: left;
  }
}

.login-form-footer {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--light-taupe);
  text-align: center;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .login-form-footer {
    text-align: left;
  }
}

.login-form-footer a {
  font-weight: 600;
  color: var(--royal-gold);
}

.login-form-footer a:hover {
  text-decoration: underline;
}

.login-form-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .login-form-links {
    justify-content: flex-start;
  }
}

.login-form-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(138, 126, 107, 0.5);
  cursor: pointer;
  transition: color 0.2s;
}

.login-form-link:hover {
  color: var(--light-taupe);
}

/* ─── Newsletter CTA ─── */
.newsletter {
  padding: 4rem 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 184, 122, 0.3);
  background-color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--deep-charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(138, 126, 107, 0.5);
}

.newsletter-input:focus {
  border-color: var(--royal-gold);
}

.newsletter-btn {
  height: 3rem;
  padding: 0 1.75rem;
  border-radius: 0.5rem;
  background-color: var(--royal-gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  filter: brightness(1.1);
}

.newsletter-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(138, 126, 107, 0.5);
  margin-top: 0.75rem;
}

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(to bottom right, var(--deep-charcoal), var(--deep-navy));
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 8.75rem 0;
  }
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.cta-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.cta-subtext a {
  color: var(--royal-gold);
  font-weight: 500;
}

.cta-subtext a:hover {
  text-decoration: underline;
}

/* ─── Footer ─── */
.footer {
  background-color: var(--deep-navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand-icon svg {
  width: 32px;
  height: 32px;
  color: var(--royal-gold);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-social-icon {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-social-icon:hover {
  color: var(--royal-gold);
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-legal-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--warm-ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: fadeIn 0.3s ease-out;
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem;
  color: var(--deep-charcoal);
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}

.mobile-menu-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep-charcoal);
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--royal-gold);
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  width: 16rem;
}

/* ─── Sticky Bar ─── */
.sticky-bar {
  position: sticky;
  top: 72px;
  z-index: 40;
  background-color: var(--white);
  padding-top: 2rem;
  padding-bottom: 0;
}

.sticky-bar.bordered {
  border-bottom: 1px solid rgba(212, 184, 122, 0.15);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ─── Feature List ─── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feature-item svg.gold {
  color: var(--royal-gold);
}

.feature-item svg.rose {
  color: var(--blush-rose);
}

.feature-item span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--light-taupe);
}

.feature-item-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--royal-gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Communication Tips ─── */
.comm-tip {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comm-tip svg {
  width: 20px;
  height: 20px;
  color: var(--royal-gold);
  flex-shrink: 0;
}

.comm-tip svg.rose {
  color: var(--blush-rose);
}

.comm-tip span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--deep-charcoal);
}

.comm-tips-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ─── Checklist ─── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checklist-item svg {
  width: 20px;
  height: 20px;
  color: var(--royal-gold);
  flex-shrink: 0;
}

.checklist-item span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ─── Response Promise Cards ─── */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.promise-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.promise-card svg {
  width: 32px;
  height: 32px;
  color: var(--royal-gold);
  margin: 0 auto 0.75rem;
}

.promise-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 0.25rem;
}

.promise-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--light-taupe);
}

/* ─── Success Message ─── */
.success-msg {
  text-align: center;
  padding: 3rem 0;
}

.success-msg svg {
  width: 48px;
  height: 48px;
  color: var(--royal-gold);
  margin: 0 auto 1rem;
}

.success-msg h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 0.5rem;
}

.success-msg p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--light-taupe);
}

/* ─── Content Card ─── */
.content-card {
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 3px solid var(--royal-gold);
}

@media (min-width: 768px) {
  .content-card {
    padding: 2rem;
  }
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Content card with icon */
.content-card-icon {
  display: flex;
  gap: 1.25rem;
}

.content-card-icon-svg {
  width: 40px;
  height: 40px;
  color: var(--royal-gold);
  flex-shrink: 0;
}

.content-card-icon-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 0.375rem;
}

.content-card-icon-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--light-taupe);
  line-height: 1.7;
}

/* ─── About Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ─── Text Utilities ─── */
.text-center { text-align: center; }
.text-left { text-align: left; }

@media (min-width: 768px) {
  .md-text-left { text-align: left; }
}

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-lg { max-width: 32rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mr-6 { margin-right: 1.5rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.inline-flex { display: inline-flex; }
.shrink-0 { flex-shrink: 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.hidden { display: none; }
.w-full { width: 100%; }

@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-block { display: block; }
  .md-hidden { display: none; }
}

/* ─── Flex row/col helpers ─── */
.flex-row-sm {
  flex-direction: column;
}

@media (min-width: 640px) {
  .flex-row-sm {
    flex-direction: row;
  }
}

/* ─── Pattern backgrounds ─── */
.bg-pattern-dots {
  background-color: var(--warm-ivory);
  background-image: radial-gradient(circle, rgba(212, 184, 122, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bg-pattern-diamonds {
  background-color: var(--warm-ivory);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 23px, rgba(212, 184, 122, 0.08) 23px, rgba(212, 184, 122, 0.08) 24px);
}

.bg-radial-gold {
  background: radial-gradient(circle at center, rgba(200, 165, 90, 0.08) 0%, transparent 70%);
}

.bg-radial-subtle {
  background: radial-gradient(circle at center, rgba(200, 165, 90, 0.06) 0%, transparent 70%);
}

/* ─── Text sizes ─── */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }

.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.7; }
.leading-snug { line-height: 1.375; }
.tracking-wide { letter-spacing: 0.08em; }
.tracking-wider { letter-spacing: 0.12em; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.transition-all { transition: all 0.3s; }
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-transform { transition: transform 0.5s; }

/* ─── Whitespace ─── */
.whitespace-pre-line { white-space: pre-line; }

/* ─── Forgot password link ─── */
.forgot-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--royal-gold);
  cursor: pointer;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* ─── ────────────────────────────────────────────────────
   Scroll Reveal Animations
   ──────────────────────────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-item:nth-child(1) { transition-delay: 0ms; }
.reveal-item:nth-child(2) { transition-delay: 80ms; }
.reveal-item:nth-child(3) { transition-delay: 160ms; }
.reveal-item:nth-child(4) { transition-delay: 240ms; }
.reveal-item:nth-child(5) { transition-delay: 320ms; }
.reveal-item:nth-child(6) { transition-delay: 400ms; }
.reveal-item:nth-child(7) { transition-delay: 480ms; }
.reveal-item:nth-child(8) { transition-delay: 560ms; }
.reveal-item:nth-child(9) { transition-delay: 640ms; }

/* ─── Animations ─── */
@keyframes bounce-chevron {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── Utility: visually hidden but accessible ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Page main wrapper ─── */
.page-main {
  padding-top: 72px;
}

/* ─── Inline SVG icon sizing ─── */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 28px; height: 28px; }
.icon-2xl { width: 32px; height: 32px; }

/* ─── cursor pointer ─── */
.cursor-pointer { cursor: pointer; }

/* ─── Inline block ─── */
.inline-block { display: inline-block; }
.block { display: block; }

/* ─── Hover underline ─── */
.hover-underline:hover { text-decoration: underline; }

/* ─── Active translate ─── */
.active-translate:active { transform: translateY(1px); }
