/* BZ Attorneys - Custom CSS */

/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
  /* Colors - from Figma design tokens */
  --ink: #171f21;
  --ink-soft: #5a6669;
  --navy: #11333a;
  --gold: #c7a870;
  --dark: #171f21;
  --navy-dark: #0a1e23;
  --dark-bg: #16213e;
  --gold-light: #d4b96a;
  --gold-dark: #b8942f;
  --cream: #f5f1eb;
  --white: #ffffff;
  --text-dark: #171f21;
  --text-body: #4a4a4a;
  --text-muted: #8a8a8a;
  --divider: #d9d2c7;

  /* Typography - from Figma */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cta: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --container-width: 1280px;
}

/* ========================================
   Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--gold);
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.405px;
}

.btn-primary:hover {
  background-color: #0d2a30;
  color: var(--gold);
}

.btn-outline {
  background-color: var(--white);
  color: var(--navy);
  border: 1.25px solid var(--navy);
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.405px;
}

.btn-outline:hover {
  background-color: #f0f0f0;
  color: var(--navy);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.405px;
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  color: var(--navy);
}

/* ========================================
   Navigation
   ======================================== */
.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  height: 104px;
}

.site-nav.scrolled {
  position: fixed;
  background-color: var(--white);
  box-shadow: 0px 20px 25px rgba(17,51,58,0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 44px;
}

@media (max-width: 767px) {
  .nav-row {
    padding: 12px 16px;
    gap: 12px;
  }
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 64px;
  width: auto;
  max-width: 248px;
}

.nav-menu-items {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-shrink: 0;
}

.nav-item {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.nav-divider {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background-color: var(--navy);
  color: var(--gold);
  font-family: var(--font-cta);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.66px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background-color: var(--gold-dark);
  color: var(--white);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .nav-menu li {
  margin-bottom: 16px;
}

.mobile-menu .nav-menu li a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu .nav-menu li a:hover {
  color: var(--gold);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 801px;
  overflow: hidden;
  background-color: var(--white);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 244px 0px 140px;
  gap: 28px;
  border-radius: 2px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 92px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  max-width: 703px;
  font-variation-settings: "SOFT" 0, "WONK" 1;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--divider);
  padding: 56px 64px;
  margin: 0 auto;
}

.stats-inner {
  display: flex;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
}

.stats-inner {
  display: flex;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  overflow: hidden;
  flex-shrink: 0;
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.4;
  width: 100%;
  max-width: 200px;
}

/* ========================================
   Practice Areas Section
   ======================================== */
.practice-areas-section {
  background-color: var(--white);
  padding: 100px 0px 50px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.practice-areas-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 30px;
  margin-right: 30px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 400;
  color: #1a1a17;
  line-height: 1.1;
  max-width: 700px;
}

.practice-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 40px;
}

.practice-card {
  background-color: var(--white);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
}

.practice-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--cream);
  border-radius: 16px;
}

.practice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practice-card-image.placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4de 100%);
}

.practice-card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: #1a1a17;
  text-align: center;
  line-height: 1.2;
  padding: 0 8px;
}

.practice-card-desc {
  font-family: var(--font-cta);
  font-size: 15px;
  font-weight: 400;
  color: #4a4843;
  text-align: center;
  line-height: 1.4;
  padding: 0 8px;
}

/* ========================================
   Value Props Section
   ======================================== */
.value-props-section {
  background-color: var(--white);
  padding: 40px 64px 80px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.value-props-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

.value-props-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  white-space: nowrap;
}

.value-props-grid {
  display: flex;
  gap: 64px;
  justify-content: center;
  width: 100%;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 340px;
  flex-shrink: 0;
}

.value-item-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
}

.value-item-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
  width: 340px;
}

/* Client Logos (inside Value Props) */
.client-logos-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.client-logos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-logo-item {
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo-item img:hover {
  opacity: 1;
}

/* ========================================
   Clients Section
   ======================================== */
.clients-section {
  background-color: var(--white);
  padding: 40px 64px;
  overflow: hidden;
}

.clients-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.clients-carousel {
  overflow: hidden;
}

.clients-track {
  display: flex;
  animation: clients-scroll 30s linear infinite;
}

.clients-slide {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.clients-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.clients-slide img:hover {
  opacity: 1;
}

@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   CTA Banner Section
   ======================================== */
.cta-banner-section {
  background-color: var(--navy);
  padding: 100px 64px;
  margin: 0 auto;
}

.cta-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-banner-text {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  text-align: center;
  max-width: 700px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 88px 64px 40px;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 340px;
  flex-shrink: 0;
}

.footer-logo img {
  height: 46px;
  width: auto;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  width: 100%;
  max-width: 300px;
}

.footer-columns {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.72px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  white-space: nowrap;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-divider {
  background-color: var(--divider);
  height: 1px;
  opacity: 0.14;
  width: 100%;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
}

/* ========================================
   Page Hero
   ======================================== */
.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background-color: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-bg) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 64px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ========================================
   About Page
   ======================================== */
.about-hero {
  position: relative;
  height: 812px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 50%), linear-gradient(0deg, rgba(0,0,0,0) 0%, rgb(255,255,255) 100%);
}

@media (max-width: 767px) {
  .about-hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,0.9) 100%);
  }
}

.about-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 224px 64px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  max-width: 820px;
}

.about-hero-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 680px;
}

.about-hero-body p {
  line-height: 1.65;
  margin-bottom: 0;
}

.about-leadership {
  background-color: var(--white);
  padding: 110px 110px 110px 141px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.about-leadership-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.about-leadership-portrait {
  flex-shrink: 0;
  width: 437px;
  border-radius: 32px;
  overflow: hidden;
}

.about-leadership-portrait-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--navy);
  border-radius: 32px;
}

.about-leadership-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

.about-leadership-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.about-leadership-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.about-leadership-name {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
}

.about-leadership-role {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.42px;
  white-space: nowrap;
}

.about-leadership-credentials {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 620px;
}

.about-leadership-bio {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 620px;
  white-space: pre-wrap;
}

.about-leadership-bio p {
  line-height: 1.65;
  margin-bottom: 0;
}

/* ========================================
   Services Page
   ======================================== */
.services-hero {
  position: relative;
  height: 616px;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
}

.services-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  max-width: none;
}

.services-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 224px 64px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.services-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.services-hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  max-width: 880px;
}

.services-hero-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 680px;
}

.services-list {
  background-color: var(--white);
  padding: 68px 64px;
}

.services-list-inner {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.service-row {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 32px 0;
  overflow: hidden;
}

.service-row.reversed {
  background-color: var(--white);
}

.service-visual {
  width: 50%;
  min-width: 0;
  height: 300px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.service-row:not(.reversed) .service-visual {
  border-radius: 32px 0 0 32px;
}

.service-row.reversed .service-visual {
  border-radius: 0 32px 32px 0;
}

.service-visual img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  display: block;
}

.service-row:not(.reversed) .service-visual img {
  margin-left: -1px;
}

.service-row.reversed .service-visual img {
  margin-left: 1px;
}

.service-visual-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.service-row:not(.reversed) .service-visual-overlay {
  background: linear-gradient(to right, transparent 50%, white 100%);
}

.service-row.reversed .service-visual-overlay {
  background: linear-gradient(to right, white 0%, transparent 50%);
}

.service-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.service-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  white-space: normal;
  line-height: 1.2;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ========================================
   Announcements Page
   ======================================== */
.announcements-hero {
  position: relative;
  height: 423px;
  overflow: hidden;
}

.announcements-hero-bg {
  position: absolute;
  inset: 0;
}

.announcements-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  max-width: none;
}

.announcements-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 224px 64px 90px;
  max-width: 1440px;
  margin: 0 auto;
}

.announcements-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.announcements-hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  white-space: nowrap;
}

.announcements-list {
  background-color: var(--white);
  padding: 40px 64px 120px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.announcements-list-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.announcement-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--divider);
}

.announcement-date {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.39px;
  width: 140px;
  flex-shrink: 0;
}

.announcement-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.announcement-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.announcement-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 720px;
}

.announcements-cta {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  width: 100%;
}

.btn-navy {
  background-color: var(--navy);
  color: var(--gold);
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.66px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cta);
}

.btn-navy:hover {
  background-color: #0d2a30;
  color: var(--gold);
}

/* ========================================
   Alliances Page
   ======================================== */
.alliances-hero {
  position: relative;
  height: 672px;
  overflow: hidden;
}

.alliances-hero-bg {
  position: absolute;
  inset: 0;
}

.alliances-hero-white {
  position: absolute;
  inset: 0;
  background-color: var(--white);
}

.alliances-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.alliances-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 224px 64px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.alliances-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.alliances-hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  max-width: 780px;
}

.alliances-hero-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 680px;
}

.alliances-list {
  background-color: var(--white);
  margin: 0 auto;
}

.alliance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.alliance-row-bordered {
  background-color: var(--white);
}

.alliance-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}

.alliance-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.alliance-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 680px;
}

.alliance-desc p {
  line-height: 1.65;
  margin-bottom: 0;
}

.alliance-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 506px;
  height: 400px;
  flex-shrink: 0;
  padding: 10px;
}

.alliance-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.btn-alliance-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background-color: var(--navy);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  width: fit-content;
}

.btn-alliance-more:hover {
  background-color: #0d2a30;
  color: var(--gold);
}

/* ========================================
   Media Page
   ======================================== */
.media-hero {
  position: relative;
  height: 423px;
  overflow: hidden;
}

.media-hero-bg {
  position: absolute;
  inset: 0;
}

.media-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  max-width: none;
}

.media-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 224px 64px 90px;
  max-width: 1440px;
  margin: 0 auto;
}

.media-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.media-hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  white-space: nowrap;
}

.media-grid-wrap {
  background-color: var(--white);
  padding: 90px 64px 120px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-card-thumb {
  width: 100%;
  height: 220px;
  background-color: var(--navy);
  border-radius: 16px;
  overflow: hidden;
}

.media-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card-category {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.36px;
  white-space: nowrap;
}

.media-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
  max-width: 340px;
}

.media-card-source {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ========================================
   Our Clients Page
   ======================================== */
.clients-hero {
  position: relative;
  height: 616px;
  overflow: hidden;
}

.clients-hero-bg {
  position: absolute;
  inset: 0;
}

.clients-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  max-width: none;
}

.clients-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 224px 64px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.clients-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.clients-hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  max-width: 820px;
}

.clients-hero-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 680px;
}

.clients-sectors {
  background-color: var(--white);
  padding: 110px 64px 80px;
}

.clients-sectors-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.clients-sectors-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
}

.clients-sectors-grid {
  display: flex;
  gap: 16px;
  width: 100%;
}

.clients-sector-card {
  flex: 1;
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clients-sector-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
}

.clients-sector-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
  width: 300px;
}

.clients-logos-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.clients-logos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clients-logo-item {
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.clients-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.clients-logo-item img:hover {
  opacity: 1;
}

.clients-testimonial {
  background-color: var(--navy);
  padding: 100px 64px;
}

.clients-testimonial-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.clients-testimonial-quote {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
  max-width: 820px;
}

.clients-testimonial-attribution {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.39px;
  white-space: nowrap;
}

/* ========================================
   Articles Page
   ======================================== */
.articles-hero {
  position: relative;
  height: 423px;
  overflow: hidden;
}

.articles-hero-bg {
  position: absolute;
  inset: 0;
}

.articles-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  max-width: none;
}

.articles-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 224px 64px 90px;
  max-width: 1440px;
  margin: 0 auto;
}

.articles-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.articles-hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  white-space: nowrap;
}

.articles-featured {
  background-color: var(--white);
  padding: 80px 64px 56px;
}

.articles-featured-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.articles-featured-visual {
  width: 560px;
  height: 360px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.articles-featured-visual-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--navy);
  border-radius: 16px;
}

.articles-featured-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.articles-featured-category {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.36px;
  white-space: nowrap;
}

.articles-featured-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.articles-featured-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 560px;
}

.articles-featured-date {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.36px;
  white-space: nowrap;
}

.articles-grid {
  background-color: var(--white);
  padding: 40px 64px 120px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.articles-grid-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.article-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--divider);
}

.article-thumb {
  width: 215px;
  height: 141px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.article-thumb-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--navy);
  border-radius: 16px;
}

.article-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-copy-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-row .article-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}

.article-row .article-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 720px;
}

.article-meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.36px;
  white-space: nowrap;
  padding: 10px 0;
}

.articles-cta {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-hero {
  position: relative;
  height: 493px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
}

.contact-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  max-width: none;
}

.contact-hero-content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 224px 0px 90px;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.contact-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.04px;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  max-width: 760px;
}

.contact-hero-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 620px;
}

.contact-content {
  background-color: var(--white);
  padding: 80px 64px 120px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.contact-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 88px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.72px;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-office {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-office-city {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
}

.contact-office-detail {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 360px;
}

.contact-divider {
  background-color: var(--divider);
  height: 1px;
  opacity: 0.5;
  width: 100%;
}

/* Contact form fallback (no email config) */
.form-fallback {
  padding: 48px 40px;
  border: 1px solid var(--divider);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.form-fallback-label {
  font-family: var(--font-cta);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.form-fallback-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 420px;
}

.form-fallback-detail {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
}

.form-fallback-detail a {
  color: var(--navy);
  font-weight: 500;
}

.form-fallback-detail a:hover {
  color: var(--gold-dark);
}

.contact-enquiries {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-enquiries-detail {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-form-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.72px;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}

.contact-form .form-row {
  display: flex;
  gap: 24px;
}

.contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0 0 14px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--divider);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.35;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--navy);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6669' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 108px;
  padding-bottom: 14px;
}

.form-submit {
  padding-top: 8px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background-color: var(--navy);
  color: var(--gold);
  font-family: var(--font-cta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.66px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-submit-btn:hover {
  background-color: #0d2a30;
}

.contact-block {
  margin-bottom: 28px;
}

.contact-block h3 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-block a,
.contact-block p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-body);
  text-decoration: none;
}

.contact-block a:hover {
  color: var(--gold-dark);
}

/* Contact Form */
.contact-form-wrapper h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  background-color: var(--white);
  border: 1px solid var(--divider);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold-dark);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23adadad' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 52px;
  background-color: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-submit-btn:hover {
  background-color: var(--gold-dark);
}

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

.form-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.btn-loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-success {
  background-color: #f0f9f0;
  border: 1px solid #4caf50;
  padding: 20px;
  margin-bottom: 24px;
}

.form-success p {
  font-size: 14px;
  color: #2e7d32;
  margin: 0;
}

.form-error {
  background-color: #fdf0f0;
  border: 1px solid #f44336;
  padding: 20px;
  margin-bottom: 24px;
}

.form-error p {
  font-size: 14px;
  color: #c62828;
  margin: 0;
}

/* ========================================
   Article Page
   ======================================== */
.article-content {
  background-color: var(--white);
  padding: var(--section-padding) 64px;
}

.article-inner {
  max-width: 780px;
  margin: 0 auto;
}

.article-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.article-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

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

.article-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.article-body {
  font-size: 16px;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 24px;
  margin: 32px 0 16px;
}

.article-body p {
  margin-bottom: 16px;
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 767px) {
  /* --- Navigation --- */
  .site-nav {
    height: auto !important;
    min-height: 56px;
  }

  .site-nav.scrolled {
    height: auto !important;
  }

  .nav-row {
    padding: 10px 16px;
    gap: 12px;
  }

  .nav-logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-logo img {
    height: 40px;
    width: auto;
    max-width: 160px;
  }

  .nav-menu-items {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
  }

  .mobile-menu {
    top: 64px;
    padding: 16px;
  }

  /* --- Hero Section --- */
  .hero-section {
    height: auto !important;
    min-height: 380px;
    max-height: none;
    overflow: visible !important;
  }

  .hero-bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .hero-content {
    padding: 112px 20px 48px !important;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.1;
    max-width: 100%;
    text-shadow: 0 1px 3px rgba(255,255,255,0.6);
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
    color: var(--ink-soft);
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Hero overlay for readability */
  .hero-section::after,
  .about-hero::after,
  .services-hero::after,
  .announcements-hero::after,
  .articles-hero::after,
  .contact-hero::after,
  .album-hero::after,
  .announcement-single-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.6) 100%);
    z-index: 0;
    pointer-events: none;
  }

  .hero-content,
  .about-hero-content,
  .services-hero-content,
  .announcements-hero-content,
  .articles-hero-content,
  .contact-hero-content,
  .album-hero-content,
  .announcement-single-hero-content {
    position: relative;
    z-index: 1;
  }

  /* --- Stats Section --- */
  .stats-section {
    padding: 32px 20px;
    border-bottom: none;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 24px 16px;
    justify-content: center;
  }

  .stat-item {
    width: calc(50% - 8px);
    align-items: center;
    text-align: center;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
    max-width: 100%;
    width: auto;
  }

  /* --- Practice Areas Section --- */
  .practice-areas-section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .practice-areas-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .practice-card-image {
    height: 180px;
    border-radius: 12px;
  }

  .practice-card-title {
    font-size: 22px;
  }

  .practice-card-desc {
    font-size: 14px;
  }

  /* --- Value Props Section --- */
  .value-props-section {
    padding: 40px 20px;
  }

  .value-props-title {
    font-size: 22px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .value-props-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .value-item {
    width: 100%;
    max-width: 100%;
  }

  .value-item-title {
    white-space: normal;
    font-size: 18px;
  }

  .value-item-desc {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
  }

  /* --- Client Logos --- */
  .client-logos-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }

  .client-logo-item {
    width: calc(33.33% - 2px);
    min-width: 60px;
    height: 50px;
    padding: 4px;
  }

  .client-logo-item img {
    opacity: 1;
  }

  .client-logo-item img:hover {
    opacity: 1;
  }

  .client-logos-wrap {
    gap: 0;
  }

  /* --- CTA Banner --- */
  .cta-banner-section {
    padding: 40px 20px;
  }

  .cta-banner-text {
    font-size: 22px;
    max-width: 100%;
    line-height: 1.3;
  }

  /* --- Page Hero --- */
  .page-hero {
    height: 260px;
  }

  .page-hero-content {
    padding: 0 20px;
  }

  .page-hero-title {
    font-size: 28px;
  }

  .page-hero-subtitle {
    font-size: 15px;
  }

  /* --- Services Page --- */
  .services-hero {
    height: auto !important;
    min-height: 280px;
    max-height: none;
    overflow: visible !important;
  }

  .services-hero-bg {
    height: 100%;
  }

  .services-hero-content {
    padding: 112px 20px 36px !important;
  }

  .services-hero-title {
    font-size: 28px;
    max-width: 100%;
    white-space: normal;
  }

  .services-hero-body {
    font-size: 15px;
    max-width: 100%;
  }

  .services-list {
    padding: 40px 20px !important;
  }

  .services-list-inner {
    width: 100% !important;
    overflow: hidden;
  }

  .service-row {
    flex-direction: column !important;
    gap: 20px;
    padding: 24px 0;
  }

  .service-row.reversed {
    direction: ltr;
  }

  .service-row.reversed .service-visual {
    order: -1;
  }

  .service-visual {
    width: 100%;
    height: 200px;
    border-radius: 16px;
  }

  .service-row:not(.reversed) .service-visual,
  .service-row.reversed .service-visual {
    border-radius: 16px;
  }

  .service-visual-overlay {
    display: none;
  }

  .service-copy {
    width: 100%;
  }

  .service-title {
    font-size: 24px;
    white-space: normal !important;
    max-width: 100%;
  }

  .service-desc {
    font-size: 15px;
    max-width: 100%;
  }

  /* --- Our Clients Page --- */
  .clients-hero {
    height: auto !important;
    min-height: 280px;
    max-height: none;
    overflow: visible !important;
  }

  .clients-hero-bg {
    height: 100%;
  }

  .clients-hero-content {
    padding: 112px 20px 36px !important;
  }

  .clients-hero-title {
    font-size: 28px;
    max-width: 100%;
    white-space: normal;
  }

  .clients-hero-body {
    font-size: 15px;
    max-width: 100%;
  }

  .clients-sectors {
    padding: 40px 20px;
  }

  .clients-sectors-title {
    font-size: 26px;
    white-space: normal;
  }

  .clients-sectors-grid {
    flex-direction: column;
    gap: 12px;
  }

  .clients-sector-card {
    padding: 16px;
  }

  .clients-sector-card-title {
    font-size: 18px;
    white-space: normal;
  }

  .clients-sector-card-desc {
    width: 100%;
    font-size: 14px;
  }

  .clients-logos-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .clients-logo-item {
    width: calc(33.33% - 3px);
    min-width: 70px;
    height: 56px;
    padding: 6px;
  }

  .clients-logo-item img {
    opacity: 1;
  }

  .clients-logo-item img:hover {
    opacity: 1;
  }

  .clients-testimonial {
    padding: 40px 20px;
  }

  .clients-testimonial-quote {
    font-size: 22px;
    max-width: 100%;
  }

  .clients-testimonial-attribution {
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  /* --- Announcements Page --- */
  .announcements-hero {
    height: auto !important;
    min-height: 240px;
    max-height: none;
    overflow: visible !important;
  }

  .announcements-hero-bg {
    height: 100%;
  }

  .announcements-hero-content {
    padding: 112px 20px 36px !important;
  }

  .announcements-hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .announcements-list {
    padding: 40px 20px 60px;
  }

  .announcement-row {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 20px 0 !important;
  }

  .announcement-date {
    width: auto;
  }

  .announcement-title {
    font-size: 20px;
  }

  .announcement-desc {
    font-size: 14px;
    max-width: 100%;
  }

  /* --- Alliances Page --- */
  .alliances-hero {
    height: auto !important;
    min-height: 280px;
    max-height: none;
    overflow: visible !important;
  }

  .alliances-hero-bg {
    height: 100%;
  }

  .alliances-hero-content {
    padding: 112px 20px 36px !important;
  }

  .alliances-hero-title {
    font-size: 28px;
    max-width: 100%;
    white-space: normal;
  }

  .alliances-hero-body {
    font-size: 15px;
    max-width: 100%;
  }

  .alliance-row {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }


  .alliance-logo-wrap {
    order: -1;
    width: 100%;
    height: auto;
    max-height: 200px;
    padding: 16px;
  }

  .alliance-logo {
    max-height: 160px;
  }

  .alliance-row {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }

  .alliance-copy {
    max-width: 100%;
  }

  .alliance-title {
    font-size: 22px;
    white-space: normal;
  }

  .alliance-desc {
    max-width: 100%;
    font-size: 15px;
  }

  .alliance-logo-wrap {
    width: 100%;
    height: auto;
    max-height: 200px;
    padding: 16px;
  }

  .alliance-logo {
    max-height: 160px;
  }

  /* --- Media Page --- */
  .media-hero {
    height: auto !important;
    min-height: 240px;
    max-height: none;
    overflow: visible !important;
  }

  .media-hero-bg {
    height: 100%;
  }

  .media-hero-content {
    padding: 112px 20px 36px !important;
  }

  .media-hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .media-grid-wrap {
    padding: 40px 20px 60px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-card-thumb {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
  }

  .media-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .media-card-category {
    margin-top: 4px;
  }

  .media-card-title {
    font-size: 18px;
    max-width: 100%;
  }

  /* --- Articles Page --- */
  .articles-hero {
    height: auto !important;
    min-height: 240px;
    max-height: none;
    overflow: visible !important;
  }

  .articles-hero-bg {
    height: 100%;
  }

  .articles-hero-content {
    padding: 112px 20px 36px !important;
  }

  .articles-hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .articles-featured {
    padding: 40px 20px 32px;
  }

  .articles-featured-inner {
    flex-direction: column;
    gap: 24px;
  }

  .articles-featured-visual {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }

  .articles-featured-title {
    font-size: 24px;
  }

  .articles-featured-desc {
    font-size: 15px;
    max-width: 100%;
  }

  .articles-filters {
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .articles-filters::-webkit-scrollbar {
    display: none;
  }

  .articles-filters-inner {
    display: flex;
    gap: 8px;
    min-width: max-content;
    padding: 4px 0;
  }

  .articles-filter-btn {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .articles-grid {
    padding: 24px 20px 60px;
  }

  .article-row {
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
  }

  .article-thumb {
    width: 100%;
    height: 180px;
    border-radius: 12px;
  }

  .article-row .article-title {
    font-size: 20px;
  }

  .article-row .article-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .articles-cta-section {
    padding: 40px 20px;
  }

  .articles-cta-text {
    font-size: 22px;
  }

  /* --- Contact Page --- */
  .contact-hero {
    height: auto !important;
    min-height: 280px;
    max-height: none;
    overflow: visible !important;
  }

  .contact-hero-bg {
    height: 100%;
  }

  .contact-hero-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 112px 20px 36px !important;
  }

  .contact-hero-title {
    font-size: 28px;
    max-width: 100%;
  }

  .contact-hero-body {
    font-size: 15px;
    max-width: 100%;
  }

  .contact-content {
    padding: 40px 20px 60px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-office-city {
    font-size: 20px;
  }

  .contact-office-detail {
    font-size: 14px;
    max-width: 100%;
  }

  .contact-enquiries-detail {
    font-size: 14px;
  }

  .form-fallback {
    padding: 24px 20px;
  }

  .form-fallback-text {
    font-size: 15px;
    max-width: 100%;
  }

  /* --- Single Post Pages --- */
  .article-header {
    padding: 112px 20px 36px !important;
  }

  .article-header-inner {
    max-width: 100%;
  }

  .article-header .article-title {
    font-size: 28px;
    white-space: normal;
  }

  .article-content-section {
    padding: 24px 20px 60px;
  }

  .article-content-inner {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    grid-template-columns: none !important;
  }

  .article-main {
    width: 100%;
  }

  .article-featured-image {
    margin-bottom: 24px;
  }

  .article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .article-body {
    font-size: 15px;
    line-height: 1.7;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .article-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .article-share {
    flex-direction: column;
    gap: 12px;
  }

  .share-links {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* --- Announcement Single --- */
  .announcement-single-hero {
    height: auto !important;
    min-height: 240px;
    max-height: none;
    overflow: visible !important;
    padding: 0;
  }

  .announcement-single-hero-content {
    padding: 112px 20px 36px !important;
  }

  .announcement-single-hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .announcement-single-hero-date {
    white-space: normal;
  }

  .announcement-single-body {
    padding: 24px 20px 40px;
  }

  .announcement-single-body-inner {
    font-size: 15px;
    line-height: 1.7;
  }

  .announcement-single-cta {
    padding: 0 20px 40px;
  }

  /* --- Album Single --- */
  .album-hero {
    height: auto !important;
    min-height: 200px;
    max-height: none;
    overflow: visible !important;
    padding: 0;
  }

  .album-hero-bg {
    height: 100%;
  }

  .album-hero-content {
    padding: 112px 20px 36px !important;
  }

  .album-hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .album-viewer {
    padding: 24px 20px 60px;
  }

  /* --- Articles CTA Section --- */
  .articles-cta-section {
    padding: 40px 20px;
  }

  .articles-cta-inner {
    text-align: center;
  }

  .articles-cta-text {
    font-size: 22px;
    max-width: 100%;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 48px 20px 24px;
  }

  .footer-inner {
    gap: 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-brand-desc {
    width: 100%;
    max-width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 28px;
  }

  .footer-col ul li {
    white-space: normal;
    word-break: break-word;
  }

  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom p {
    white-space: normal;
    text-align: center;
    font-size: 12px;
  }

  /* --- About Page --- */
  .about-hero {
    height: auto !important;
    min-height: 360px;
    max-height: none;
    overflow: visible !important;
  }

  .about-hero-bg {
    height: 100%;
  }

  .about-hero-content {
    padding: 112px 20px 40px !important;
  }

  .about-hero-title {
    font-size: 28px;
    max-width: 100%;
  }

  .about-hero-body {
    font-size: 15px;
    max-width: 100%;
  }

  .about-hero-body p {
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .about-leadership {
    padding: 40px 20px;
  }

  .about-leadership-inner {
    flex-direction: column;
    gap: 32px;
  }

  .about-leadership-portrait {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    margin: 0 auto;
  }

  .about-leadership-copy {
    max-width: 100%;
  }

  .about-leadership-name {
    font-size: 26px;
    white-space: normal;
  }

  .about-leadership-role {
    white-space: normal;
  }

  .about-leadership-credentials {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }

  .about-leadership-bio {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .about-leadership-bio p {
    margin-bottom: 16px;
  }

  /* --- Services Page --- */
  .services-hero {
    height: auto !important;
    min-height: 280px;
    max-height: none;
    overflow: visible !important;
  }

  .services-hero-content {
    padding: 112px 20px 36px !important;
  }

  .services-hero-title {
    font-size: 28px;
  }

  /* --- 404 Page --- */
  .error-hero {
    height: auto !important;
    min-height: 300px;
    max-height: none;
    overflow: visible !important;
    padding: 60px 20px 40px;
  }

  .error-hero-content {
    padding: 0 20px !important;
    max-width: 100%;
  }

  .error-hero-code {
    font-size: 80px;
    margin-bottom: -16px;
  }

  .error-hero-title {
    font-size: 28px;
  }

  .error-hero-body {
    font-size: 15px;
    max-width: 100%;
  }

  .error-hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .error-hero-cta .btn {
    width: 100%;
  }
}

/* ========================================
   Tablet Responsive
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  /* --- Navbar Tablet --- */
  .site-nav {
    height: auto !important;
    min-height: 56px;
  }

  .site-nav.scrolled {
    height: auto !important;
  }

  .nav-row {
    padding: 10px 20px;
    gap: 12px;
  }

  .nav-logo img {
    height: 44px;
    max-width: 180px;
  }

  .nav-menu-items {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
  }

  .mobile-menu {
    top: 64px;
    padding: 16px;
  }

  /* --- Practice Areas --- */
  .practice-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 32px 24px;
  }

  .stat-item {
    width: calc(50% - 12px);
  }

  .alliance-row {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }

  .alliance-logo-wrap {
    order: -1;
    width: 100%;
    height: auto;
    max-height: 200px;
    padding: 16px;
  }

  .alliance-logo {
    max-height: 160px;
  }
}

/* ========================================
   Empty State
   ======================================== */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 32px;
  text-align: center;
}

.empty-state-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}

.empty-state-text::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* ========================================
   Articles — Featured Image
   ======================================== */
.articles-featured-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.articles-featured-link:hover {
  color: inherit;
}

.articles-featured-visual img,
.articles-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* ========================================
   Article Single Post
   ======================================== */
.article-single-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.article-single-hero .site-nav,
.article-single-hero ~ .site-nav {
  position: absolute;
  z-index: 1000;
}

.article-single-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4de 100%);
}

.article-single-hero-bg img,
.article-single-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: 0.15;
}

.article-single-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 160px 64px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.article-single-hero-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.article-single-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  max-width: 780px;
}

.article-single-hero-date {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.39px;
  white-space: nowrap;
}

.article-single-body {
  background-color: var(--white);
  padding: 80px 64px;
}

.article-single-body-inner {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}

.article-single-body-inner h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin: 48px 0 20px;
  line-height: 1.2;
}

.article-single-body-inner h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin: 36px 0 16px;
  line-height: 1.3;
}

.article-single-body-inner p {
  margin-bottom: 1em;
  line-height: 1.7;
}

.article-single-body-inner blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background-color: var(--cream);
  font-style: italic;
  color: var(--ink-soft);
}

.article-single-body-inner ul,
.article-single-body-inner ol {
  padding-left: 24px;
  margin-bottom: 1em;
}

.article-single-body-inner li {
  margin-bottom: 0.5em;
  line-height: 1.65;
}

.article-single-cta {
  display: flex;
  justify-content: center;
  padding: 40px 64px 80px;
}

/* ========================================
   Announcement Single Post
   ======================================== */
.announcement-single-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.announcement-single-hero .site-nav,
.announcement-single-hero ~ .site-nav {
  position: absolute;
  z-index: 1000;
}

.announcement-single-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4de 100%);
}

.announcement-single-hero-bg img,
.announcement-single-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: 0.15;
}

.announcement-single-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 160px 64px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.announcement-single-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement-single-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  max-width: 780px;
}

.announcement-single-hero-date {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.39px;
  white-space: nowrap;
}

.announcement-single-body {
  background-color: var(--white);
  padding: 80px 64px;
}

.announcement-single-body-inner {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}

.announcement-single-body-inner h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin: 48px 0 20px;
  line-height: 1.2;
}

.announcement-single-body-inner p {
  margin-bottom: 1em;
  line-height: 1.7;
}

.announcement-single-cta {
  display: flex;
  justify-content: center;
  padding: 40px 64px 80px;
}

/* ========================================
   Photo Album Viewer
   ======================================== */
.album-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.album-hero .site-nav,
.album-hero ~ .site-nav {
  position: absolute;
  z-index: 1000;
}

.album-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4de 100%);
}

.album-hero-bg img,
.album-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: 0.15;
}

.album-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 120px 64px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.album-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.album-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  max-width: 780px;
}

/* Album Viewer Grid */
/* Pinterest-style Masonry Grid */
.album-viewer {
  background-color: var(--white);
  padding: 40px 24px;
}

.album-media-masonry {
  column-count: 5;
  column-gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #000;
  width: 100%;
}

.masonry-image {
  cursor: pointer;
}

.masonry-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.masonry-image:hover img {
  transform: scale(1.03);
}

.masonry-video {
  cursor: pointer;
  position: relative;
}

.masonry-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.masonry-video:hover video {
  transform: scale(1.03);
}

.masonry-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.masonry-video:hover .masonry-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.masonry-caption {
  padding: 10px 14px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  margin: 0;
}

/* Lightbox */
.album-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.album-lightbox.active {
  display: flex;
}

.album-lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 80vh;
}

.album-lightbox-content img,
.album-lightbox-content video {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.album-lightbox-close {
  position: absolute;
  top: 20px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 8px;
}

.album-lightbox-close:hover {
  color: var(--gold);
}

.album-lightbox-prev,
.album-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 48px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.album-lightbox-prev:hover,
.album-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.album-lightbox-prev {
  left: 24px;
}

.album-lightbox-next {
  right: 24px;
}

.album-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* Album Videos */


.album-back {
  display: flex;
  justify-content: center;
  padding: 40px 64px 80px;
}

/* ========================================
   Media Page — Card Link
   ======================================== */
.media-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.media-card-link:hover {
  color: inherit;
}

.media-card-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.media-card-thumb-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 16px;
}

.media-grid-cta {
  display: flex;
  justify-content: center;
  padding: 40px 64px 120px;
}

/* ========================================
   404 Error Page
   ======================================== */
.error-hero {
  position: relative;
  height: 801px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.error-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 35, 0.82);
}

.error-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 0 64px;
}

.error-hero-code {
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -24px;
}

.error-hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.error-hero-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
}

.error-hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
}

/* ========================================
   Article Rows — Link Reset
   ======================================== */
.article-row {
  text-decoration: none;
  color: inherit;
}

.article-row:hover {
  color: inherit;
}

.article-row .article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ========================================
   Announcement Rows — Link Reset
   ======================================== */
.announcement-row {
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--divider);
}

.announcement-row:hover {
  color: inherit;
}

/* ========================================
   Articles — Filter Tabs
   ======================================== */
.articles-filters {
  background-color: var(--white);
  padding: 0 64px;
  border-bottom: 1px solid var(--divider);
}

.articles-filters-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  gap: 0;
}

.articles-filter-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.39px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.articles-filter-btn:hover {
  color: var(--navy);
}

.articles-filter-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* ========================================
   Articles — CTA Section
   ======================================== */
.articles-cta-section {
  background-color: var(--navy);
  padding: 80px 64px;
}

.articles-cta-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.articles-cta-text {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

/* ========================================
   Article Single — Header
   ======================================== */
.article-header {
  background-color: var(--white);
  padding: 140px 64px 48px;
  border-bottom: 1px solid var(--divider);
}

.article-header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.article-breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.article-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: var(--gold-dark);
}

.breadcrumb-sep {
  margin: 0 6px;
  color: var(--text-muted);
}

.article-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-header .article-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 20px;
}

.article-meta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

.meta-sep {
  margin: 0 8px;
}

/* ========================================
   Article Single — Content Section
   ======================================== */
.article-content-section {
  background-color: var(--white);
  padding: 80px 64px 60px;
}

.article-content-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
  max-width: var(--container-width);
  margin: 0 auto;
}

.article-main {
  max-width: 780px;
}

.article-featured-image {
  margin-bottom: 40px;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.article-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin: 48px 0 12px;
  line-height: 1.3;
}

.article-body h2 + p {
  margin-top: 0;
}

.article-body h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
  margin-top: 12px;
  margin-bottom: 16px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin: 36px 0 12px;
  line-height: 1.3;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 32px;
  margin: 40px 0;
}

.article-body blockquote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0;
}

.article-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ========================================
   Article Single — Share
   ======================================== */
.article-share {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.share-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.share-links {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.share-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.share-links a:hover {
  color: var(--gold-dark);
}

.copy-link-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.copy-link-btn:hover {
  color: var(--gold-dark);
}

.share-sep {
  margin: 0 10px;
}

/* ========================================
   Article Single — Sidebar
   ======================================== */
.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-section {
  margin-bottom: 40px;
}

.sidebar-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sidebar-divider {
  width: 40px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 16px;
}

.sidebar-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.sidebar-cta {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  background-color: var(--cream);
  padding: 14px 24px;
  transition: all 0.2s ease;
  text-align: left;
}

.sidebar-cta:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* ========================================
   Article Single — Related
   ======================================== */
.article-related-section {
  background-color: var(--cream);
  padding: 60px 64px;
}

.article-related-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.related-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.related-divider {
  width: 80px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 16px;
}

.related-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.related-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease;
}

.related-card:hover {
  color: inherit;
  transform: translateY(-4px);
}

.related-card-thumb {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.related-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-thumb-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 8px;
}

.related-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-card-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.related-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.related-card-date {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ========================================
   Responsive — Masonry Layouts (Pinterest-style)
   ======================================== */
@media (max-width: 767px) {
  .album-media-masonry {
    column-count: 2;
    column-gap: 10px;
    padding: 0;
  }

  .masonry-item {
    margin-bottom: 10px;
    border-radius: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .album-media-masonry {
    column-count: 3;
    column-gap: 14px;
  }

  .services-list {
    padding: 48px 40px;
  }

  .service-row {
    gap: 40px;
  }

  .service-visual {
    width: 45%;
    height: 260px;
  }

  .service-title {
    font-size: 28px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .album-media-masonry {
    column-count: 4;
    column-gap: 16px;
  }
}
