/* ============================================================
   ALLENCREST GROUP — Design System
   www.allencrestgroup.com
   Premium hospitality investment & operations platform
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (BRAND PALETTE)
   ============================================================ */

:root {
  --ag-navy:       #0f1f3d;
  --ag-navy-mid:   #142a52;
  --ag-gold:       #B8924B;
  --ag-gold-light: #d4a85c;
  --ag-teal:       #0E7D7F;
  --ag-cream:      #faf8f3;
  --ag-stone:      #f4f1ec;
  --ag-ink:        #1e293b;
  --ag-slate:      #475569;
  --ag-muted:      #94a3b8;
  --ag-border:     #e2e8f0;
  --ag-white:      #ffffff;

  --ag-serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --ag-sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --ag-shadow-sm: 0 1px 3px rgba(15, 31, 61, 0.06);
  --ag-shadow:    0 4px 24px rgba(15, 31, 61, 0.09);
  --ag-shadow-lg: 0 20px 60px rgba(15, 31, 61, 0.13);

  --ag-radius: 2px;
  --ag-transition: all 0.2s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ag-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ag-ink);
  background: var(--ag-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Headings */

h1,
h2,
h3,
h4 {
  font-family: var(--ag-serif);
  font-weight: 500;
  color: var(--ag-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

p {
  margin: 0 0 1em;
  color: var(--ag-slate);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--ag-teal);
  text-decoration: none;
  transition: var(--ag-transition);
}

a:hover {
  color: var(--ag-navy);
}


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-wide {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.section--cream {
  background: var(--ag-cream);
}

.section--stone {
  background: var(--ag-stone);
}

.section--navy {
  background: var(--ag-navy);
  color: var(--ag-white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--ag-white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.72);
}

.section--navy a {
  color: var(--ag-gold-light);
}

.section--navy a:hover {
  color: var(--ag-white);
}

.section--navy .eyebrow {
  color: var(--ag-gold);
}


/* ============================================================
   4. EYEBROW LABELS
   ============================================================ */

.eyebrow {
  font-family: var(--ag-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ag-teal);
  display: block;
  margin-bottom: 12px;
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */

.nav {
  background: var(--ag-white);
  border-bottom: 1px solid var(--ag-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ag-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ag-navy);
  text-decoration: none;
}

.nav-brand:hover {
  color: var(--ag-navy);
}

.nav-brand img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  font-family: var(--ag-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ag-slate);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--ag-navy);
}

.nav-link.active {
  color: var(--ag-navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--ag-navy);
  color: var(--ag-white);
  font-family: var(--ag-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--ag-radius);
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--ag-navy-mid);
  color: var(--ag-white);
}

/* Hamburger toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ag-navy);
  border-radius: 1px;
  transition: var(--ag-transition);
}

/* Mobile nav open state */

.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--ag-white);
  border-bottom: 1px solid var(--ag-border);
  padding: 16px 24px 24px;
  box-shadow: var(--ag-shadow);
}

.nav-open .nav-links li {
  width: 100%;
}

.nav-open .nav-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--ag-border);
}

.nav-open .nav-links li:last-child .nav-link,
.nav-open .nav-links li:last-child .nav-cta {
  border-bottom: none;
}

.nav-open .nav-cta {
  display: inline-flex;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

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

  .nav {
    position: sticky;
  }
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 31, 61, 0.88) 0%,
    rgba(15, 31, 61, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 24px;
}

.hero h1 {
  color: var(--ag-white);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 0.5em;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero .eyebrow {
  color: var(--ag-gold-light);
}

/* Hero size variants */

.hero--medium {
  min-height: 60vh;
}

.hero--short {
  min-height: 40vh;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ag-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--ag-radius);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--ag-gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ag-navy);
  color: var(--ag-white);
}

.btn-primary:hover {
  background: var(--ag-navy-mid);
  color: var(--ag-white);
}

.btn-gold {
  background: var(--ag-gold);
  color: var(--ag-white);
}

.btn-gold:hover {
  background: var(--ag-gold-light);
  color: var(--ag-white);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ag-white);
  color: var(--ag-white);
}

.btn-outline:hover {
  background: var(--ag-white);
  color: var(--ag-navy);
}

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--ag-navy);
  color: var(--ag-navy);
}

.btn-outline-dark:hover {
  background: var(--ag-navy);
  color: var(--ag-white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}


/* ============================================================
   8. EDITORIAL TWO-COLUMN SECTIONS
   ============================================================ */

.editorial {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

.editorial--reverse {
  grid-template-columns: 45% 55%;
}

.editorial--reverse .editorial-image {
  order: 2;
}

.editorial--reverse .editorial-body {
  order: 1;
}

.editorial-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.editorial-image-wrap {
  overflow: hidden;
  min-height: 420px;
}

.editorial-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.editorial-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.editorial-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 0.6em;
}

.editorial-body p {
  color: var(--ag-slate);
  font-size: 1.1rem;
  line-height: 1.75;
}

.editorial-body .btn {
  align-self: flex-start;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .editorial,
  .editorial--reverse {
    grid-template-columns: 1fr;
  }

  .editorial--reverse .editorial-image,
  .editorial--reverse .editorial-body {
    order: unset;
  }

  .editorial-body {
    padding: 48px 32px;
  }

  .editorial-image-wrap,
  .editorial-image-wrap img {
    min-height: 300px;
  }
}


/* ============================================================
   9. CARDS
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--ag-white);
  border: 1px solid var(--ag-border);
  padding: 40px 32px;
  border-radius: var(--ag-radius);
  box-shadow: var(--ag-shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--ag-teal);
  box-shadow: var(--ag-shadow);
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--ag-gold);
  margin-bottom: 16px;
}

.card-title {
  font-family: var(--ag-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ag-navy);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.card-body {
  color: var(--ag-slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Card with top border accent */

.card--accent {
  border-top: 3px solid var(--ag-gold);
}

/* Stone background variant */

.card--stone {
  background: var(--ag-stone);
  border-color: transparent;
}


/* ============================================================
   10. STATS ROW
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--ag-border);
  border-bottom: 1px solid var(--ag-border);
}

.section--navy .stats-row {
  border-top-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--ag-border);
}

.section--navy .stat-item {
  border-right-color: rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--ag-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  color: var(--ag-navy);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.section--navy .stat-number {
  color: var(--ag-gold);
}

.stat-label {
  font-family: var(--ag-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ag-muted);
  display: block;
}

.section--navy .stat-label {
  color: rgba(255, 255, 255, 0.5);
}

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

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-child(n+3) {
    border-top: 1px solid var(--ag-border);
  }
}

@media (max-width: 400px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--ag-border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}


/* ============================================================
   11. QUOTE / CALLOUT BLOCK
   ============================================================ */

.quote-block {
  padding: 80px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.quote-text {
  font-family: var(--ag-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ag-navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}

.section--navy .quote-text {
  color: var(--ag-white);
}

.quote-attr {
  font-family: var(--ag-sans);
  font-size: 0.875rem;
  color: var(--ag-muted);
  margin-top: 24px;
  display: block;
}

.section--navy .quote-attr {
  color: rgba(255, 255, 255, 0.5);
}

.quote-rule {
  width: 48px;
  height: 2px;
  background: var(--ag-gold);
  margin: 24px auto 0;
  display: block;
}

@media (max-width: 600px) {
  .quote-block {
    padding: 48px 24px;
  }
}


/* ============================================================
   12. FEATURE LIST (NUMBERED OR ICON)
   ============================================================ */

.feat-list {
  display: grid;
  gap: 40px;
}

.feat-list--two-col {
  grid-template-columns: repeat(2, 1fr);
}

.feat {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}

.feat-num {
  font-family: var(--ag-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ag-gold);
  line-height: 1;
}

.feat-icon {
  width: 40px;
  height: 40px;
  color: var(--ag-gold);
}

.feat-content {
  display: flex;
  flex-direction: column;
}

.feat-title {
  font-family: var(--ag-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ag-navy);
  margin: 0 0 8px;
}

.feat-body {
  color: var(--ag-slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .feat-list--two-col {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   13. SECTION HEADER (CENTERED / LEFT-ALIGNED)
   ============================================================ */

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header h2 {
  margin-bottom: 0.4em;
}

.section-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}


/* ============================================================
   14. DIVIDER / RULE UTILITIES
   ============================================================ */

.rule {
  border: none;
  border-top: 1px solid var(--ag-border);
  margin: 0;
}

.rule--gold {
  border-top-color: var(--ag-gold);
  width: 48px;
  margin-bottom: 32px;
}


/* ============================================================
   15. FOOTER
   ============================================================ */

.footer {
  background: var(--ag-navy);
  color: var(--ag-white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--ag-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ag-gold-light);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 0.75em;
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer h5 {
  font-family: var(--ag-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ag-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
}

/* Footer responsive */

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================================
   16. RESPONSIVE UTILITIES
   ============================================================ */

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero .lede {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .editorial-body {
    padding: 40px 24px;
  }
}


/* ============================================================
   17. ACCESSIBILITY
   ============================================================ */

/* Screen reader only */
.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;
}

/* Focus styles for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--ag-gold);
  outline-offset: 3px;
  border-radius: var(--ag-radius);
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--ag-navy);
  color: var(--ag-white);
  padding: 8px 16px;
  border-radius: var(--ag-radius);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
  color: var(--ag-white);
}


/* ============================================================
   18. UTILITY CLASSES
   ============================================================ */

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

.text-navy   { color: var(--ag-navy); }
.text-gold   { color: var(--ag-gold); }
.text-teal   { color: var(--ag-teal); }
.text-slate  { color: var(--ag-slate); }
.text-muted  { color: var(--ag-muted); }
.text-white  { color: var(--ag-white); }

.bg-navy   { background: var(--ag-navy); }
.bg-cream  { background: var(--ag-cream); }
.bg-stone  { background: var(--ag-stone); }
.bg-white  { background: var(--ag-white); }

.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mt-8  { margin-top: 8px; }
.mb-8  { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

.font-serif { font-family: var(--ag-serif); }
.font-sans  { font-family: var(--ag-sans); }

.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }

.italic { font-style: italic; }

.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.items-center  { align-items: center; }
.justify-center { justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.w-full  { width: 100%; }
.h-full  { height: 100%; }

.max-w-prose { max-width: 65ch; }
.max-w-sm    { max-width: 480px; }
.max-w-md    { max-width: 640px; }
.max-w-lg    { max-width: 800px; }

.border-top    { border-top: 1px solid var(--ag-border); }
.border-bottom { border-bottom: 1px solid var(--ag-border); }

.rounded { border-radius: var(--ag-radius); }

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

.opacity-70 { opacity: 0.7; }
.opacity-50 { opacity: 0.5; }


/* ============================================================
   19. PRINT UTILITIES
   ============================================================ */

@media print {
  .nav,
  .hero-overlay,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  h1, h2, h3, h4 {
    color: #000;
    page-break-after: avoid;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}


/* ============================================================
   20. LOGO IN NAV
   ============================================================ */

.nav-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}


/* ============================================================
   21. SOCIAL ICON LINKS IN FOOTER
   ============================================================ */

.social-icon-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity .2s;
}

.social-icon-link:hover { opacity: 1; }
