/* ---------- Tailwind config parity: CSS variables (index.css + theme.extend) ---------- */
:root {
  --background: 230 96% 9%;
  --foreground: 40 30% 90%;
  --card: 230 80% 12%;
  --card-foreground: 40 30% 90%;
  --popover: 230 80% 12%;
  --popover-foreground: 40 30% 90%;
  --primary: 37 44% 43%;
  --primary-foreground: 230 96% 9%;
  --secondary: 230 60% 16%;
  --secondary-foreground: 40 30% 90%;
  --muted: 230 50% 18%;
  --muted-foreground: 230 20% 55%;
  --accent: 37 44% 43%;
  --accent-foreground: 230 96% 9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 230 40% 20%;
  --input: 230 40% 20%;
  --ring: 37 44% 43%;
  /* tailwind.config.js borderRadius: lg = var(--radius), md = -2px, sm = -4px */
  --radius: 0.5rem;
  --radius-md: calc(var(--radius) - 2px);
  --radius-sm: calc(var(--radius) - 4px);
  --gold: 37 44% 43%;
  --gold-light: 37 50% 55%;
  --gold-dark: 37 40% 30%;
  --navy: 230 96% 9%;
  --navy-light: 230 60% 16%;
  --navy-lighter: 230 40% 22%;
}

* { box-sizing: border-box; border-color: hsl(var(--border)); }

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: hidden;
}

/* Heading reset: no top margin, consistent spacing (match React/Tailwind) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  margin-top: 0;
  line-height: 1.2;
}

/* theme.extend.fontFamily */
.font-display { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; }
.font-body { font-family: 'Raleway', sans-serif; }

/* theme.extend.colors + index.css utilities */
.text-gold { color: hsl(var(--gold)); }
.bg-gold { background-color: hsl(var(--gold)); }
.border-gold { border-color: hsl(var(--gold)); }
.fill-gold { fill: hsl(var(--gold)); }
.bg-navy { background-color: hsl(var(--navy)); }
.bg-navy-light { background-color: hsl(var(--navy-light)); }
.bg-navy-lighter { background-color: hsl(var(--navy-lighter)); }
.bg-background { background-color: hsl(var(--background)); }
.text-foreground { color: hsl(var(--foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.border-border { border-color: hsl(var(--border)); }
.text-primary { color: hsl(var(--primary)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-border { color: hsl(var(--border)); }

.gold-gradient {
  background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)), hsl(var(--gold-light)));
}
.navy-gradient {
  background: linear-gradient(180deg, hsl(var(--navy)) 0%, hsl(var(--navy-light)) 100%);
}

/* theme.extend.borderRadius */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }

/* Typography (Tailwind defaults used in React) */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.35em\] { letter-spacing: 0.35em; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.625; }
.italic { font-style: italic; }

/* ---------- Layout (tailwind.config.js container: center, padding 2rem, screens 2xl 1400px) ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 640px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 768px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.min-h-screen { min-height: 100vh; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-hidden { overflow: hidden; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 768px) {
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}
.pt-24 { padding-top: 6rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-16 { padding-bottom: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: transparent;
  transition: background 0.2s, padding 0.2s, border 0.2s, box-shadow 0.2s;
}
.site-header.scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  padding: 0.75rem 0;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo-link {
  display: block;
  height: 3.5rem;
  width: 220px;
}
.site-header .logo-link img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left;
}
@media (min-width: 768px) {
  .site-header .logo-link { height: 4rem; width: 280px; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.7);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-desktop a:hover { color: hsl(var(--gold)); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--gold));
  transition: width 0.3s;
}
.nav-desktop a:hover::after { width: 100%; }

.header-cta { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .header-cta { display: flex; } }

/* Buttons (match React Button: rounded-md, ring-offset-background, focus-visible ring) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity 0.2s, background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: 1px solid transparent;
  font-family: 'Raleway', 'Segoe UI', Arial, sans-serif;
  appearance: none;
  -webkit-appearance: none;
}
.btn svg {
  pointer-events: none;
  flex-shrink: 0;
}
.btn:focus { outline: none; }
.btn:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
}
.btn:disabled { pointer-events: none; opacity: 0.5; cursor: not-allowed; }
.btn-outline {
  background: transparent;
  border-color: hsl(var(--gold) / 0.5);
  color: hsl(var(--gold));
}
.btn-outline:hover {
  background: hsl(var(--gold) / 0.2);
  border-color: hsl(var(--gold));
  color: hsl(var(--foreground));
}
.btn-gold {
  background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)), hsl(var(--gold-light)));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
}
.btn-gold:hover { opacity: 0.9; }
.btn-lg {
  height: 2.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1rem;
}
.btn.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Mobile menu trigger */
.menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.menu-trigger:focus { outline: none; }
.menu-trigger:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
  border-radius: var(--radius-md);
}
@media (min-width: 1024px) { .menu-trigger { display: none; } }

/* Mobile sheet */
.mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s;
}
.mobile-sheet.open { pointer-events: auto; visibility: visible; }
.mobile-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 0.8);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-sheet.open .mobile-sheet-overlay { opacity: 1; }
.mobile-sheet-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: hsl(var(--background));
  border-left: 1px solid hsl(var(--border));
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-sheet.open .mobile-sheet-panel { transform: translateX(0); }
.mobile-sheet-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  font-size: 1.25rem;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--radius-sm);
}
.mobile-sheet-close:focus { outline: none; }
.mobile-sheet-close:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
}
.mobile-sheet-close:hover { color: hsl(var(--gold)); }
.mobile-sheet nav { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 1rem; }
.mobile-sheet nav a {
  padding: 0.75rem 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground) / 0.7);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background 0.2s, color 0.2s;
}
.mobile-sheet nav a:hover { color: hsl(var(--gold)); background: hsl(var(--muted) / 0.5); }
.mobile-sheet-cta { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 1rem; }

/* ---------- Hero / Banner (match React: container pt-24 pb-16 px-4 md:px-8, max-w-3xl inner) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--navy));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--background) / 0.9), hsl(var(--background) / 0.7), hsl(var(--background)));
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content { padding-left: 2rem; padding-right: 2rem; }
}
.hero-content-inner {
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
}
.hero-line {
  height: 2px;
  width: 4rem;
  background: hsl(var(--gold));
  margin: 0 auto 2rem;
}
.hero-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: hsl(var(--gold));
  margin-bottom: 1.25rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .hero-tag { font-size: 0.875rem; }
}
.hero-content-inner h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .hero-content-inner h1 { font-size: 3rem; }
}
@media (min-width: 768px) {
  .hero-content-inner h1 { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .hero-content-inner h1 { font-size: 4.5rem; }
}
.hero-desc {
  color: hsl(var(--foreground) / 0.6);
  font-size: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .hero-desc { font-size: 1.125rem; }
}
@media (min-width: 768px) {
  .hero-desc { font-size: 1.25rem; }
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* ---------- Sections common ---------- */
.section { padding-top: 6rem; padding-bottom: 6rem; }
.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title-wrap .section-tag {
  margin-bottom: 0.75rem;
}
.section-title-wrap .section-title,
.section-title-wrap h1,
.section-title-wrap h2 {
  margin-bottom: 0;
}
.section-tag {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--gold));
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0;
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}
/* Heading margin utility (match React mb-3) */
.mb-3 { margin-bottom: 0.75rem; }

/* About */
.about-grid { display: grid; gap: 4rem; align-items: center; margin-bottom: 5rem; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: hsl(var(--foreground) / 0.7); line-height: 1.6; margin-bottom: 1rem; }
.about-image-wrap { position: relative; }
.about-image-wrap .ratio-4-3 { aspect-ratio: 4/3; border-radius: 0.5rem; border: 1px solid hsl(var(--border)); overflow: hidden; }
.about-image-wrap .ratio-4-3 img { width: 100%; height: 100%; object-fit: cover; }
.about-image-wrap .deco { position: absolute; bottom: -1rem; right: -1rem; width: 6rem; height: 6rem; border: 2px solid hsl(var(--gold)); border-radius: 0.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--background) / 0.5);
  border: 1px solid hsl(var(--border));
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: hsl(var(--gold) / 0.5); }
.stat-card .icon { width: 2rem; height: 2rem; color: hsl(var(--gold)); margin: 0 auto 0.75rem; }
.stat-card .value { font-size: 2.25rem; font-weight: 700; font-family: 'Playfair Display', Georgia, serif; color: hsl(var(--gold)); }
@media (min-width: 768px) { .stat-card .value { font-size: 3rem; } }
.stat-card .label { color: hsl(var(--foreground) / 0.6); font-size: 0.875rem; margin-top: 0.5rem; }

/* ---------- About Us page (full redesign) ---------- */
.au-page { min-height: 100vh; background: hsl(var(--background)); }

/* Hero: Who We Are */
.au-hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.au-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, hsl(var(--navy)) 0%, hsl(var(--navy-light)) 50%, hsl(var(--background)) 100%);
  z-index: 0;
}
.au-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, hsl(var(--gold) / 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.au-hero-inner { position: relative; z-index: 1; }
.au-hero-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.au-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: hsl(var(--gold));
  margin-bottom: 1rem;
}
.au-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}
@media (min-width: 640px) { .au-hero-title { font-size: 3.25rem; } }
@media (min-width: 768px) { .au-hero-title { font-size: 3.75rem; } }
.au-hero-line {
  width: 4rem;
  height: 3px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, hsl(var(--gold-dark)), hsl(var(--gold)));
}
.au-hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.9);
  margin: 0 0 1.25rem;
}
.au-hero-text {
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.65);
  margin: 0;
}

/* Vision & Mission */
.au-vision-mission {
  padding: 5.5rem 0;
  background: hsl(var(--navy-light));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
.au-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.au-section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: hsl(var(--gold));
  margin: 0 0 0.75rem;
}
.au-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) { .au-section-title { font-size: 2.75rem; } }
.au-vm-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .au-vm-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.au-vm-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.au-vm-card:hover {
  border-color: hsl(var(--gold) / 0.4);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4), 0 0 0 1px hsl(var(--gold) / 0.1);
  transform: translateY(-2px);
}
.au-vm-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: hsl(var(--gold) / 0.12);
}
.au-vm-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px hsl(var(--gold) / 0.3);
}
.au-vm-icon-wrap svg { width: 2rem; height: 2rem; color: hsl(var(--primary-foreground)); }
.au-vm-heading {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.au-vm-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.75);
  margin: 0;
}

/* Team */
.au-team {
  padding: 5.5rem 0 6rem;
  background: hsl(var(--background));
}
.au-team-list { max-width: 56rem; margin: 0 auto 3rem; }
.au-team-card {
  display: grid;
  gap: 0;
  margin-bottom: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  transition: border-color 0.25s, box-shadow 0.25s;
}
.au-team-card:last-of-type { margin-bottom: 0; }
.au-team-card:hover {
  border-color: hsl(var(--gold) / 0.35);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.35);
}
@media (min-width: 768px) {
  .au-team-card { grid-template-columns: 0.9fr 1.1fr; gap: 0; align-items: stretch; }
  .au-team-card--flip { direction: rtl; }
  .au-team-card--flip > * { direction: ltr; }
}
.au-team-card-media {
  position: relative;
  min-height: 280px;
  background: hsl(var(--navy-lighter));
  overflow: hidden;
}
@media (min-width: 768px) { .au-team-card-media { min-height: 360px; } }
.au-team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.au-team-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, hsl(var(--card) / 0.95), transparent);
  pointer-events: none;
}
.au-team-card-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .au-team-card-body { padding: 2.5rem 2.5rem 2.5rem 2rem; } }
.au-team-card-role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.au-team-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.au-team-card-line {
  width: 3rem;
  height: 2px;
  background: hsl(var(--gold));
  margin-bottom: 1.25rem;
}
.au-team-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.75);
  margin: 0;
}
.au-cta {
  text-align: center;
  margin-top: 2rem;
}
.text-center { text-align: center; }

/* Locations */
.locations-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
.location-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  transition: border-color 0.5s, box-shadow 0.5s;
}
.location-card:hover { border-color: hsl(var(--gold) / 0.6); box-shadow: 0 0 30px -5px hsl(37 44% 43% / 0.2); }
.location-card .img-wrap { aspect-ratio: 16/10; background: hsl(var(--navy-lighter)); overflow: hidden; min-height: 140px; }
.location-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; background: hsl(var(--navy-lighter)); }
.location-card .content { padding: 1.5rem; }
.location-card h3 { font-size: 1.5rem; font-weight: 700; margin-top: 0; margin-bottom: 0.75rem; transition: color 0.2s; }
.location-card:hover h3 { color: hsl(var(--gold)); }
.location-card p { color: hsl(var(--foreground) / 0.6); font-size: 0.875rem; line-height: 1.6; }
.location-card .bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, hsl(var(--gold-dark)), hsl(var(--gold))); transform: scaleX(0); transition: transform 0.5s; transform-origin: left; }
.location-card:hover .bar { transform: scaleX(1); }
.location-card { position: relative; }

/* Property types */
.types-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .types-grid { grid-template-columns: repeat(3, 1fr); } }
.type-card {
  padding: 2rem;
  border-radius: 0.75rem;
  background: hsl(var(--background) / 0.5);
  border: 1px solid hsl(var(--border));
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.type-card:hover { border-color: hsl(var(--gold) / 0.5); transform: scale(1.03); box-shadow: 0 0 40px -10px hsl(37 44% 43% / 0.2); }
.type-card .icon-wrap { width: 3.5rem; height: 3.5rem; border-radius: 0.5rem; background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)), hsl(var(--gold-light))); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.type-card .icon-wrap svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary-foreground)); }
.type-card h3 { font-size: 1.25rem; font-weight: 700; margin-top: 0; margin-bottom: 0.75rem; transition: color 0.2s; }
.type-card:hover h3 { color: hsl(var(--gold)); }
.type-card p { color: hsl(var(--foreground) / 0.6); font-size: 0.875rem; line-height: 1.6; }

/* Services */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  padding: 2rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover { border-color: hsl(var(--gold) / 0.5); box-shadow: 0 0 30px -5px hsl(37 44% 43% / 0.15); }
.service-card .icon { width: 2.5rem; height: 2.5rem; color: hsl(var(--gold)); margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-top: 0; margin-bottom: 0.75rem; transition: color 0.2s; }
.service-card:hover h3 { color: hsl(var(--gold)); }
.service-card p { color: hsl(var(--foreground) / 0.6); font-size: 0.875rem; line-height: 1.6; }

/* Builders marquee */
.builders-wrap { overflow: hidden; }
.builders-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 3s linear infinite;
}
@media (min-width: 640px) {
  .builders-track { animation-duration: 6s; }
}
@media (min-width: 1024px) {
  .builders-track { animation-duration: 10s; }
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.builder-chip {
  flex-shrink: 0;
  width: 14rem;
  height: 5rem;
  border-radius: 0.5rem;
  background: hsl(var(--background) / 0.5);
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  transition: border-color 0.2s;
}
.builder-chip:hover { border-color: hsl(var(--gold) / 0.4); }
.builder-chip span { font-size: 1.5rem; font-weight: 700; color: hsl(var(--foreground) / 0.8); white-space: nowrap; }

/* Testimonials */
.testimonial-box {
  max-width: 42rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  padding: 2.5rem;
  position: relative;
  text-align: center;
}
.testimonial-avatar { width: 4rem; height: 4rem; border-radius: 50%; background: hsl(var(--navy-lighter)); border: 2px solid hsl(var(--gold)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.testimonial-avatar svg { width: 2rem; height: 2rem; color: hsl(var(--gold)); }
.testimonial-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-quote { color: hsl(var(--foreground) / 0.8); font-style: italic; font-size: 1.125rem; margin-bottom: 1.5rem; line-height: 1.6; }
.testimonial-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.125rem; font-weight: 700; }
.testimonial-location { color: hsl(var(--gold)); font-size: 0.875rem; }
.testimonial-prev, .testimonial-next {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid hsl(var(--border));
  background: none;
  color: hsl(var(--foreground) / 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.testimonial-next { left: auto; right: 1rem; }
.testimonial-prev:hover, .testimonial-next:hover { border-color: hsl(var(--gold)); color: hsl(var(--gold)); }
.testimonial-prev:focus, .testimonial-next:focus { outline: none; }
.testimonial-prev:focus-visible, .testimonial-next:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
}
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.testimonial-dots button {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background: hsl(var(--border));
}
.testimonial-dots button.active { background: hsl(var(--gold)); }
.testimonial-dots button:focus { outline: none; }
.testimonial-dots button:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 3px hsl(var(--ring));
}

/* CTA section */
.cta-section { position: relative; padding: 6rem 0; overflow: hidden; }
.cta-section .bg1 { position: absolute; inset: 0; background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)), hsl(var(--gold-light))); opacity: 0.1; }
.cta-section .bg2 { position: absolute; inset: 0; background: hsl(var(--background) / 0.8); }
.cta-section .cta-inner { position: relative; z-index: 10; text-align: center; width: 100%; max-width: 48rem; margin-left: auto; margin-right: auto; }
.cta-section h2 { margin-top: 0; margin-bottom: 1.5rem; }
.cta-section .cta-p { color: hsl(var(--foreground) / 0.7); font-size: 1.125rem; margin-bottom: 2.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: hsl(var(--navy-light));
  border-top: 1px solid hsl(var(--border));
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo-wrap { width: 80%; max-width: 180px; }
.footer-logo-wrap img { width: 100%; height: auto; }
.footer h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.125rem; font-weight: 700; margin-top: 0; margin-bottom: 1rem; }
.footer-contact p, .footer-links a { color: hsl(var(--foreground) / 0.5); font-size: 0.875rem; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links h4 { margin-bottom: 0; }
.footer-links a { display: block; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: hsl(var(--gold)); }
.footer-bottom { border-top: 1px solid hsl(var(--border)); padding-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; justify-content: space-between; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p, .footer-bottom span { color: hsl(var(--foreground) / 0.4); font-size: 0.875rem; }
.footer-bottom a { color: hsl(var(--gold)); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Contact page ---------- */
.page-main { padding-top: 6rem; padding-bottom: 6rem; }
.contact-grid { display: grid; gap: 3rem; max-width: 72rem; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 1fr; } }
.contact-form-card {
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  padding: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row-2 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: repeat(2, 1fr); } }
.form-group { margin-bottom: 0; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground) / 0.8); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: calc(var(--radius));
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-family: inherit;
  transition: box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
}
.form-input::placeholder, .form-textarea::placeholder { color: hsl(var(--muted-foreground)); }
.form-textarea { min-height: 120px; resize: vertical; padding: 0.5rem 0.75rem; height: auto; }
.form-error { font-size: 0.75rem; color: hsl(var(--destructive)); margin-top: 0.25rem; }
.form-submit { width: 100%; margin-top: 0; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-sidebar .contact-card {
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  padding: 2rem;
}
.contact-sidebar h3 { font-size: 1.25rem; font-weight: 700; margin-top: 0; margin-bottom: 1.25rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item .icon { width: 1.25rem; height: 1.25rem; color: hsl(var(--gold)); flex-shrink: 0; margin-top: 0.125rem; }
.contact-info-item > div { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-info-item p { margin: 0; font-size: 0.875rem; }
.contact-info-item .label { color: hsl(var(--foreground) / 0.8); }
.contact-info-item .value { color: hsl(var(--foreground)); font-weight: 500; }
.office-hours { font-family: 'Raleway', sans-serif; margin-top: 0; }
.office-hours .row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.25rem 0; }
.office-hours .row:last-child { padding-bottom: 0; }
.office-hours .row .day { color: hsl(var(--foreground) / 0.7); }
.office-hours .row .time { color: hsl(var(--foreground)); }
.office-hours .row.special .time { color: hsl(var(--gold)); }

/* Spinner */
.sending-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}
.sending-spinner .spinner {
  width: 3rem;
  height: 3rem;
  border: 2px solid hsl(var(--gold));
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Thank you page */
.thank-you-wrap { min-height: 60vh; display: flex; align-items: center; }
.thank-you-wrap.page-main { padding-bottom: 0; }
.thank-you-inner { max-width: 36rem; margin: 0 auto; text-align: center; }
.thank-you-icon { display: inline-flex; align-items: center; justify-content: center; width: 5rem; height: 5rem; border-radius: 50%; background: hsl(var(--gold) / 0.1); border: 2px solid hsl(var(--gold)); margin-bottom: 2rem; }
.thank-you-icon svg { width: 3rem; height: 3rem; color: hsl(var(--gold)); }
.thank-you h1 { margin-top: 0; margin-bottom: 1rem; }
.thank-you .lead { color: hsl(var(--foreground) / 0.7); font-size: 1.125rem; margin-bottom: 0.5rem; }
.thank-you .sub { color: hsl(var(--foreground) / 0.6); margin-bottom: 2.5rem; }

/* 404 */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: hsl(var(--muted)); }
.page-404-inner { text-align: center; }
.page-404 h1 { margin-top: 0; margin-bottom: 1rem; font-size: 2.25rem; font-weight: 700; }
.page-404 p { margin-bottom: 1rem; font-size: 1.25rem; color: hsl(var(--muted-foreground)); }
.page-404 a { color: hsl(var(--primary)); text-decoration: underline; }
.page-404 a:hover { color: hsl(var(--primary) / 0.9); }

/* Scroll to top (matches React: focus-visible:ring-2 ring-ring ring-offset-2 ring-offset-background) */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--gold-dark)), hsl(var(--gold)), hsl(var(--gold-light)));
  color: hsl(var(--primary-foreground));
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transition: opacity 0.2s;
}
.scroll-top:hover { opacity: 0.9; }
.scroll-top:focus { outline: none; }
.scroll-top:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
}
.scroll-top.hidden { display: none; }
.scroll-top svg { width: 1.5rem; height: 1.5rem; }

/* Tailwind-style opacity modifiers (e.g. foreground/70, background/80) */
.text-foreground\/70 { color: hsl(var(--foreground) / 0.7); }
.text-foreground\/80 { color: hsl(var(--foreground) / 0.8); }
.text-foreground\/60 { color: hsl(var(--foreground) / 0.6); }
.text-foreground\/50 { color: hsl(var(--foreground) / 0.5); }
.bg-background\/50 { background-color: hsl(var(--background) / 0.5); }
.bg-background\/80 { background-color: hsl(var(--background) / 0.8); }
.border-gold\/50 { border-color: hsl(var(--gold) / 0.5); }
.border-gold\/60 { border-color: hsl(var(--gold) / 0.6); }
.border-gold\/40 { border-color: hsl(var(--gold) / 0.4); }
.opacity-10 { opacity: 0.1; }
.hover\:opacity-90:hover { opacity: 0.9; }

/* Animation: tailwind.config.js (scroll-left in builders; spin used by loading spinner) */
.animate-spin {
  animation: spin 1s linear infinite;
}

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-foreground-70 { color: hsl(var(--foreground) / 0.7); }
.text-foreground-60 { color: hsl(var(--foreground) / 0.6); }
