/* =============================================
   TRIDENT ESTATES — STYLE.CSS
   Royal Blue #0B2D6E | Gold #C9A84C
   Fonts: Cormorant Garamond (display) + Switzer (body)
   ============================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Colours */
  --royal-blue:        #05102F;
  --royal-blue-dark:   #030A1F;
  --royal-blue-mid:    #0A1D52;
  --gold:              #BA963E;
  --gold-light:        #D3AE56;
  --gold-dark:         #8E7128;

  /* Light Mode Surfaces */
  --color-bg:              #f8f7f4;
  --color-surface:         #ffffff;
  --color-surface-2:       #f2f0eb;
  --color-border:          #e2dfd8;
  --color-text:            #1a1a2e;
  --color-text-muted:      #5a5a72;
  --color-text-faint:      #9898aa;
  --color-text-inverse:    #f8f7f4;

  /* Semantic */
  --color-primary:       var(--royal-blue);
  --color-primary-hover: var(--royal-blue-mid);
  --color-accent:        var(--gold);
  --color-accent-hover:  var(--gold-dark);

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,45,110,0.08);
  --shadow-md: 0 4px 16px rgba(11,45,110,0.10);
  --shadow-lg: 0 12px 40px rgba(11,45,110,0.14);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:   1200px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Switzer', 'Helvetica Neue', sans-serif;
}

/* Dark Mode */
[data-theme='dark'] {
  --color-bg:            #0e1525;
  --color-surface:       #141e35;
  --color-surface-2:     #1a2640;
  --color-border:        #253350;
  --color-text:          #dde4f0;
  --color-text-muted:    #8898bb;
  --color-text-faint:    #4a5878;
  --color-text-inverse:  #0e1525;
  --color-primary:       #3a6cc8;
  --color-primary-hover: #5585de;
  --gold:                #d9bb6e;
  --color-accent:        #d9bb6e;
  --color-accent-hover:  #e8cc88;
}

/* System preference fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:            #0e1525;
    --color-surface:       #141e35;
    --color-surface-2:     #1a2640;
    --color-border:        #253350;
    --color-text:          #dde4f0;
    --color-text-muted:    #8898bb;
    --color-text-faint:    #4a5878;
    --color-text-inverse:  #0e1525;
    --color-primary:       #3a6cc8;
    --color-primary-hover: #5585de;
    --gold:                #d9bb6e;
    --color-accent:        #d9bb6e;
    --color-accent-hover:  #e8cc88;
  }
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color var(--transition), color var(--transition);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'], ol[role='list'] { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.15;
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 70ch;
}

::selection {
  background: rgba(201,168,76,0.25);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button { cursor: pointer; background: none; border: none; }

/* ---------- TYPOGRAPHY ---------- */
.font-display { font-family: var(--font-display); }

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}

.container--narrow {
  max-width: var(--content-default);
}

/* ---------- HEADER / NAV ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--royal-blue);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo__svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo__img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 10px rgba(0,0,0,0.25);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.logo__sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.nav__link--cta {
  background: var(--gold);
  color: var(--royal-blue) !important;
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  margin-left: var(--space-2);
}

.nav__link--cta:hover {
  background: var(--gold-light) !important;
  color: var(--royal-blue) !important;
}

/* Theme toggle */
.theme-toggle {
  color: rgba(255,255,255,0.6);
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover { color: #fff; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: var(--space-2);
  color: rgba(255,255,255,0.8);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  background: var(--royal-blue-dark);
  padding: var(--space-4) var(--space-6) var(--space-6);
  border-top: 1px solid rgba(201,168,76,0.2);
}

.nav-mobile.open { display: flex; }

.nav-mobile .nav__link {
  display: block;
  padding: var(--space-3) var(--space-4);
}

.nav-mobile .nav__link--cta {
  margin-left: 0;
  margin-top: var(--space-2);
  text-align: center;
}

@media (max-width: 860px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}

/* ---------- HERO (Blue BG) ---------- */
.hero {
  background: var(--royal-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero .container { width: 100%; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 50%, rgba(201,168,76,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.14);
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero { min-height: 50vh; }
  .hero::after { display: none; }
}

.hero--page {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: var(--space-6);
  max-width: 18ch;
}

.hero__subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--gold);
  color: var(--royal-blue);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--royal-blue);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.btn--blue {
  background: var(--royal-blue);
  color: #fff;
  border-color: var(--royal-blue);
}

.btn--blue:hover {
  background: var(--royal-blue-mid);
  border-color: var(--royal-blue-mid);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

/* ---------- GOLD DIVIDER ---------- */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--space-6);
}

.gold-rule--center { margin-inline: auto; margin-bottom: var(--space-6); }

/* ---------- SECTION UTILITIES ---------- */
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.section--alt {
  background: var(--color-surface-2);
}

.section--blue {
  background: var(--royal-blue);
  color: #fff;
}

.section--dark-blue {
  background: var(--royal-blue-dark);
  color: #fff;
}

.section__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section__title--light {
  color: #ffffff;
}

.section__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 58ch;
  line-height: 1.7;
}

.section__body--light {
  color: rgba(255,255,255,0.72);
}

.section-header {
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

.section-header--center { text-align: center; }
.section-header--center .section__body { margin-inline: auto; }
.section-header--center .gold-rule { margin-inline: auto; }

/* ---------- CARDS ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(201,168,76,0.3);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(11,45,110,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--royal-blue);
}

[data-theme='dark'] .card__icon {
  background: rgba(255,255,255,0.06);
  color: var(--gold);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.card__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ---------- STAT BLOCKS ---------- */
.stat {
  text-align: center;
  padding: var(--space-6);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* ---------- SERVICE TIER CARDS ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.tier-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.tier-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}

.tier-card__badge {
  position: absolute;
  top: -12px;
  left: var(--space-6);
  background: var(--gold);
  color: var(--royal-blue);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2em 0.75em;
  border-radius: var(--radius-sm);
}

.tier-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.tier-card__fee {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--royal-blue);
  margin-bottom: var(--space-5);
  line-height: 1;
}

[data-theme='dark'] .tier-card__fee { color: var(--gold); }

.tier-card__fee span {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
}

.tier-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tier-card__list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-6);
  position: relative;
  max-width: none;
}

.tier-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 14px;
  background: var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-size: cover;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  max-width: none;
}

.testimonial__author {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.testimonial__author strong { color: var(--color-text); }

/* ---------- STEP / PROCESS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
}

.step__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--space-3);
}

.step__body {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: none;
}

/* ---------- CONTACT FORM ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(11,45,110,0.1);
}

[data-theme='dark'] .form-group input:focus,
[data-theme='dark'] .form-group select:focus,
[data-theme='dark'] .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--royal-blue-dark);
  color: rgba(255,255,255,0.65);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  margin-bottom: var(--space-12);
}

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand .logo__name { color: #fff; }
.footer__brand .logo__sub { color: var(--gold); }

.footer__tagline {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 32ch;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__contact-item a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer__bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__bottom a:hover { color: var(--gold); }

/* ---------- PAGE HERO VARIANTS ---------- */
.page-intro {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
  background: var(--royal-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-intro::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}

.page-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- GRID HELPERS ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--space-6), 3vw, var(--space-12));
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
}

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

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- MISC UTILITIES ---------- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }

.tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.2em 0.75em;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
}

[data-theme='dark'] .tag {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

/* Scroll fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Banner */
.cta-banner {
  background: var(--gold);
  padding: clamp(var(--space-10), 5vw, var(--space-16));
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--royal-blue);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.cta-banner__sub {
  font-size: var(--text-base);
  color: rgba(11,45,110,0.75);
  margin-bottom: var(--space-8);
  max-width: 52ch;
  margin-inline: auto;
}

/* Info rows */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.info-row:last-child { border-bottom: none; }

.info-row__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(11,45,110,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  margin-top: 2px;
}

[data-theme='dark'] .info-row__icon {
  background: rgba(255,255,255,0.06);
  color: var(--gold);
}

.info-row__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.info-row__value {
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: none;
}
