/* IronGate Hospitality — Premium UI */
:root {
  --navy: #0c1222;
  --navy-light: #1a2332;
  --navy-mid: #243044;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --stone: #e8e2d9;
  --gold: #a67c2d;
  --gold-light: #c49a3c;
  --gold-muted: rgba(166, 124, 45, 0.15);
  --text: #3d4556;
  --text-muted: #5c6578;
  --white: #fff;
  --border: rgba(12, 18, 34, 0.08);
  --shadow: 0 4px 24px rgba(12, 18, 34, 0.07);
  --shadow-lg: 0 20px 50px rgba(12, 18, 34, 0.1);
  --radius: 10px;
  --radius-sm: 6px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--cream);
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 0.75rem;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

::selection {
  background: var(--gold-muted);
  color: var(--navy);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.35rem, 5vw, 3.65rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.65rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--gold-light); }
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.container--narrow { max-width: 720px; }

.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.section--dark {
  background: var(--navy);
  color: var(--cream);
  position: relative;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark a:not(.btn) { color: var(--gold-light); }
.section--dark .text-muted { color: rgba(250, 248, 245, 0.78); }
.section--muted { background: linear-gradient(180deg, var(--cream-dark) 0%, var(--stone) 35%, var(--cream-dark) 100%); }

.text-muted { color: var(--text-muted); }
.text-gold { color: var(--gold); }
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 38rem;
}
.lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.section-head h2 { margin-bottom: 0.75rem; }
.section-head .lead { max-width: none; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
}
.brand:focus-visible { outline-offset: 4px; }
.site-logo { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 600; color: var(--navy); line-height: 1; }
.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav { display: flex; align-items: center; gap: 0.35rem 1.35rem; flex-wrap: wrap; justify-content: flex-end; }
.site-nav > a:not(.btn) {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
}
.site-nav > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.site-nav > a:not(.btn):hover::after,
.site-nav > a:not(.btn):focus-visible::after { width: 100%; }
.site-nav > a:not(.btn):hover { color: var(--navy); }

.site-nav .btn {
  padding: 0.55rem 1.2rem;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  margin-left: 0.25rem;
}
.site-nav .btn::after { display: none; }
.site-nav .btn:hover { background: var(--navy-light); color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy);
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible { outline: 2px solid var(--gold); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 4.25rem;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.btn) { padding: 0.65rem 0; border-bottom: 1px solid var(--border); }
  .site-nav > a:not(.btn)::after { display: none; }
  .site-nav .btn { margin-left: 0; margin-top: 0.5rem; text-align: center; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  border-radius: var(--radius-sm);
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-light); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-light); }
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(250, 248, 245, 0.45);
}
.btn--ghost-light:hover {
  background: rgba(250, 248, 245, 0.1);
  border-color: rgba(250, 248, 245, 0.75);
  color: var(--cream);
}

/* Hero */
.hero {
  min-height: min(88vh, 52rem);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 10vw, 5rem) 0;
  background: linear-gradient(165deg, var(--cream) 0%, var(--cream-dark) 55%, var(--stone) 100%);
  position: relative;
}
.hero--with-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero--with-image .container { position: relative; z-index: 1; max-width: 52rem; }
.hero--with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 18, 34, 0.88) 0%, rgba(12, 18, 34, 0.55) 45%, rgba(12, 18, 34, 0.25) 100%);
}
.hero--with-image .hero__title,
.hero--with-image .hero__subtitle,
.hero--with-image .uppercase { color: var(--cream); }
.hero--with-image .hero__subtitle { color: rgba(250, 248, 245, 0.92); }
.hero--with-image .text-gold { color: var(--gold-light); }

.hero__title { margin-bottom: 1rem; }
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 32ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero--with-image .hero__subtitle,
.page-hero .hero__subtitle {
  max-width: min(38rem, 100%);
}
.hero__cta { display: flex; gap: 0.75rem 1rem; flex-wrap: wrap; align-items: center; }

/* Page hero */
.page-hero {
  min-height: clamp(22rem, 42vh, 28rem);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 4.5rem) 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12, 18, 34, 0.9) 0%, rgba(12, 18, 34, 0.55) 100%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 48rem; }
.page-hero .hero__title,
.page-hero .hero__subtitle,
.page-hero .uppercase { color: var(--cream); }
.page-hero .hero__subtitle { color: rgba(250, 248, 245, 0.9); }
.page-hero .text-gold { color: var(--gold-light); }

/* Image band inside dark section */
.band-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
}
.band-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, transparent 40%, var(--navy) 100%);
}

/* Cards */
.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.card:hover .card-img-wrap img { transform: scale(1.04); }

.img-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.img-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-block--tall { aspect-ratio: 3/4; max-height: 420px; }
.img-block--wide { aspect-ratio: 16/10; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(166, 124, 45, 0.2);
}
.card__body { padding: 1.5rem 1.65rem; }
.card__title { margin-bottom: 0.5rem; color: var(--navy); }
.card__text { color: var(--text-muted); font-size: 0.98rem; line-height: 1.62; }

.card--text-only .card__body { padding: 1.75rem 1.5rem; }
.card--text-only:hover { transform: translateY(-2px); }

/* Pillars (Why us) */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.pillar {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar:hover {
  border-color: rgba(166, 124, 45, 0.35);
  box-shadow: var(--shadow-lg);
}
.pillar__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
}
.pillar h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.pillar p { margin: 0; font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 44rem;
}
.checklist li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.55;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle, var(--gold) 40%, transparent 42%);
}

/* Numbered steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 248, 245, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}
.step-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(166, 124, 45, 0.35);
}
.step-card__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--cream); }
.step-card p { margin: 0; font-size: 0.95rem; color: rgba(250, 248, 245, 0.78); line-height: 1.6; }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.stat-strip__item { text-align: center; }
.stat-strip__value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.stat-strip__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 0.35rem; }

/* Empty / placeholder */
.empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 2px dashed rgba(12, 18, 34, 0.12);
  border-radius: var(--radius);
  background: var(--cream-dark);
  max-width: 36rem;
  margin: 0 auto;
}
.empty-state p { margin: 0; color: var(--text-muted); }

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem 3rem;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-aside {
  padding: 1.75rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  position: sticky;
  top: 5.5rem;
}
.contact-aside h2 {
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.contact-aside ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(250, 248, 245, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
}
.contact-aside .btn { margin-top: 1.25rem; width: 100%; }

.form-card {
  padding: clamp(1.75rem, 4vw, 2.25rem);
}

/* Grid */
.grid { display: grid; gap: clamp(1.25rem, 3vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}
textarea.form-control { min-height: 150px; resize: vertical; }
.form-error {
  padding: 1rem;
  background: #fef2f2;
  color: #991b1b;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-success {
  padding: 1rem 1.25rem;
  background: #ecfdf5;
  color: #065f46;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: 1px solid #a7f3d0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
}
.site-footer a:not(.btn) { color: rgba(250, 248, 245, 0.88); }
.site-footer a:not(.btn):hover { color: var(--gold-light); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) repeat(2, minmax(140px, 1fr));
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p { margin: 0.5rem 0 0; font-size: 0.9rem; line-height: 1.55; color: rgba(250, 248, 245, 0.72); max-width: 28rem; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.5);
  margin: 0 0 0.85rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { font-size: 0.95rem; }
.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.5);
}

/* Blog */
.blog-card .card__body { padding: 0; }
.blog-card .card__media {
  aspect-ratio: 16/10;
  background: var(--cream-dark);
  overflow: hidden;
}
.blog-card .card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .card__content { padding: 1.5rem 1.35rem 1.65rem; }
.blog-card .card__meta { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { margin-bottom: 1.25rem; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--radius); }

/* Quote block */
.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
  margin: 0 auto 1rem;
  max-width: 38rem;
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
}
.pagination a:hover { background: var(--cream-dark); border-color: var(--gold); }
.pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Team page — horizontal cards, no clipped content */
.page-hero--compact {
  min-height:0;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}
@media (min-width: 769px) {
  .page-hero--compact {
    min-height: clamp(14rem, 28vh, 20rem);
  }
}

.section--team {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 960px;
  margin: 0 auto;
}

.team-member {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.2s, transform 0.2s var(--ease);
}
.team-member:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(166, 124, 45, 0.22);
}
@media (min-width: 768px) {
  .team-member {
    grid-template-columns: minmax(220px, 280px) 1fr;
    align-items: stretch;
  }
}

.team-member__media {
  position: relative;
  background: var(--cream-dark);
  min-height: 260px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .team-member__media {
    min-height: 0;
  }
}
.team-member__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
@media (max-width: 767px) {
  .team-member__media img {
    position: relative;
    min-height: 280px;
    max-height: 380px;
  }
}

.team-member__body {
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.team-member__body .team-member__name {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.35rem;
  line-height: 1.2;
  text-align: left;
}
.team-member__partner {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}
.team-member__expertise {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
  line-height: 1.45;
}
.team-member__bio {
  flex: 1;
}
.team-member__bio p {
  margin: 0 0 0.85rem;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
}
.team-member__bio p:last-child {
  margin-bottom: 0;
}
.team-member__foot {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.btn--sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1.15rem;
}

.team-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(2rem, 5vw, 2.75rem);
  border-top: 1px solid rgba(12, 18, 34, 0.08);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.team-cta p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.75rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }
