/* ==========================================================
   Indiana Anesthesia Services — indiana-styles.css
   Design: Centered editorial hero on cream; steel-blue accent
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ========================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --navy:       #0C1D30;
  --navy-600:   #122540;
  --navy-400:   #1C3858;
  --blue:       #1D6FA8;
  --blue-hover: #165D8C;
  --blue-100:   #E6F2FA;
  --sky:        #EBF4FB;
  --cream:      #F5F0E6;
  --cream-200:  #EDE7D8;
  --white:      #FFFFFF;
  --ink:        #0D1B28;
  --slate:      #3D5268;
  --mist:       #6A8099;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --max-w:      1200px;
  --nav-h:      70px;
  --r:          5px;
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--blue); color: #fff;
  padding: 0.5rem 1rem; border-radius: var(--r);
  z-index: 1000; font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 500;
  border-radius: var(--r); border: 2px solid transparent;
  letter-spacing: 0.025em; cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.15s;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--navy  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover  { background: var(--navy-600); border-color: var(--navy-600); }

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

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }

.btn--ghost-w { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost-w:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--cream-200);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(245, 240, 230, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 14px rgba(12, 29, 48, 0.08);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
}

/* Logo */
.nav__logo {
  display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0;
}
.nav__logo-badge {
  width: 46px; height: 46px;
  border-radius: 6px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.05em; flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.01em;
  line-height: 1;
}

/* Desktop links */
.nav__links {
  display: flex; align-items: center; gap: 0.15rem;
}
.nav__link {
  font-size: 0.875rem; font-weight: 500; color: var(--slate);
  padding: 0.4rem 0.85rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--navy); background: var(--cream-200); }
.nav__link.active { color: var(--navy); background: var(--cream-200); }
.nav__cta {
  background: var(--blue); color: var(--white) !important;
  margin-left: 0.5rem; border-radius: var(--r);
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--blue-hover) !important; }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 30px; height: 30px; background: none; border: none; padding: 2px;
}
.nav__burger span {
  display: block; height: 2px; width: 100%;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav__overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.45); z-index: 850;
  opacity: 0; transition: opacity 0.3s;
}
.nav__overlay.open { opacity: 1; }

/* Drawer */
.nav__drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 285px;
  background: var(--white); z-index: 860;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column; padding: 1.5rem;
  border-left: 1px solid var(--cream-200); overflow-y: auto;
}
.nav__drawer.open { transform: none; }
.nav__drawer-close {
  align-self: flex-end; font-size: 1.3rem; color: var(--slate);
  margin-bottom: 2rem; background: none; border: none;
  cursor: pointer; line-height: 1;
}
.nav__drawer-link {
  font-size: 1rem; font-weight: 500; color: var(--slate);
  padding: 0.8rem 0; border-bottom: 1px solid var(--cream-200);
  transition: color 0.2s;
}
.nav__drawer-link:hover { color: var(--navy); }
.nav__drawer-cta {
  display: block; text-align: center; margin-top: 1.5rem;
  background: var(--blue); color: var(--white);
  padding: 0.85rem 1rem; border-radius: var(--r);
  font-weight: 500; font-size: 0.95rem;
  transition: background 0.2s;
}
.nav__drawer-cta:hover { background: var(--blue-hover); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--cream);
  display: flex; align-items: center;
  padding-block: calc(var(--nav-h) + 5rem) 5rem;
  overflow: hidden;
}

/* Dot-grid decorative pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(29,112,168,0.13) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: 2rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.5rem;
}

.hero__rule {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-block: 1.5rem;
}
.hero__rule-line { width: 72px; height: 1px; background: rgba(12,29,48,0.22); }
.hero__rule-dot  {
  width: 7px; height: 7px; border-radius: 50%;
  border: 2px solid var(--blue); background: transparent;
}

.hero__heading {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.08;
  color: var(--navy); letter-spacing: -0.02em;
  max-width: 860px;
}
.hero__heading em { font-style: italic; color: var(--blue); }

.hero__sub {
  margin-top: 1.75rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--slate); line-height: 1.75;
  max-width: 560px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-top: 2.5rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mist);
}
.hero__scroll-bar {
  width: 1px; height: 40px; background: var(--mist); overflow: hidden; position: relative;
}
.hero__scroll-bar::after {
  content: '';
  position: absolute; inset-inline: 0; top: -100%;
  height: 100%; background: var(--blue);
  animation: scrollDrop 1.9s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}

/* =====================================================
   INFO BAR
   ===================================================== */
.info-bar {
  background: var(--navy);
  padding-block: 0;
}
.info-bar__grid {
  display: flex; flex-wrap: wrap;
  max-width: var(--max-w); margin-inline: auto;
}
.info-bar__item {
  flex: 1; min-width: 220px;
  padding: 1.75rem 2rem;
  display: flex; align-items: flex-start; gap: 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.info-bar__item:last-child { border-right: none; }
.info-bar__icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.info-bar__label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 0.25rem;
}
.info-bar__value {
  font-size: 0.9rem; color: rgba(255,255,255,0.88); line-height: 1.5;
}
.info-bar__value a { color: var(--blue-100); transition: color 0.2s; }
.info-bar__value a:hover { color: var(--white); }

/* =====================================================
   SECTION HEADER PATTERN (shared)
   ===================================================== */
.sec-header {
  display: flex; align-items: flex-start; gap: 2rem;
  margin-bottom: 4rem;
}
.sec-header__num {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.85; color: var(--cream-200);
  user-select: none; flex-shrink: 0;
}
.sec-header__text { display: flex; flex-direction: column; gap: 0.3rem; padding-top: 0.6rem; }
.sec-header__label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue);
}
.sec-header__title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.5vw, 2.75rem);
  font-weight: 400; color: var(--navy); line-height: 1.2;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  background: var(--cream);
  padding-block: 6rem;
}
.about__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
}

.about__body {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 3rem; align-items: start;
}
.about__col p {
  font-size: 1rem; color: var(--slate); line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about__col p:last-child { margin-bottom: 0; }

.about__pull {
  background: var(--navy);
  border-radius: var(--r); padding: 2.25rem;
  position: relative; overflow: hidden;
}
.about__pull::before {
  content: '\201C';
  position: absolute; top: -1.5rem; left: 1.25rem;
  font-family: var(--ff-display); font-size: 10rem; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none; user-select: none;
}
.about__pull-text {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.25rem; line-height: 1.6; color: var(--white);
  position: relative; z-index: 1;
}
.about__pull-rule {
  width: 36px; height: 2px; background: var(--blue);
  margin-block: 1.25rem;
}
.about__pull-source {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist);
}

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  background: var(--white);
  padding-block: 6rem;
}
.services__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
}
/* Override sec-header num color for white bg */
.services .sec-header__num { color: #F0EDE8; }

.services__list { list-style: none; }
.services__item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0 2.5rem; align-items: start;
  padding-block: 2.25rem;
  border-top: 1px solid var(--cream-200);
}
.services__item:last-child { border-bottom: 1px solid var(--cream-200); }

.services__item-num {
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600;
  color: var(--blue); opacity: 0.45; line-height: 1;
  padding-top: 0.2rem;
}
.services__item-name {
  font-family: var(--ff-display); font-size: 1.45rem;
  font-weight: 400; color: var(--navy); line-height: 1.25;
  margin-bottom: 0.6rem;
}
.services__item-desc {
  font-size: 0.975rem; color: var(--slate); line-height: 1.75;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why {
  background: var(--navy);
  padding-block: 6rem;
}
.why__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
}
.why__header {
  text-align: center; margin-bottom: 3.5rem;
}
.why__label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem;
}
.why__title {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--white);
}

.why__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r); overflow: hidden;
}
.why__card {
  background: var(--navy-600);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.2s;
}
.why__card:hover { background: var(--navy-400); }
.why__card-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(29, 112, 168, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.why__card-title {
  font-family: var(--ff-display); font-size: 1.45rem;
  font-weight: 400; color: var(--white);
}
.why__card-desc {
  font-size: 0.9rem; color: var(--mist); line-height: 1.7;
}

/* =====================================================
   BLOG PREVIEW
   ===================================================== */
.blog-preview {
  background: var(--sky);
  padding-block: 6rem;
}
.blog-preview__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
}
.blog-preview__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.blog-preview__label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.3rem;
}
.blog-preview__title {
  font-family: var(--ff-display); font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 300; color: var(--navy);
}
.blog-preview__more {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.875rem; font-weight: 500; color: var(--blue);
  white-space: nowrap; transition: gap 0.2s;
}
.blog-preview__more:hover { gap: 0.6rem; }

.blog-preview__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.blog-card {
  background: var(--white); border-radius: var(--r);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  border: 1px solid rgba(29, 112, 168, 0.1);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  color: inherit; overflow: hidden;
}
.blog-card__img {
  height: 190px;
  background-size: cover; background-position: center;
  margin: -2rem -1.75rem 0.5rem;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(12, 29, 48, 0.1);
}
.blog-card__date {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
}
.blog-card__title {
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400;
  color: var(--navy); line-height: 1.35; flex: 1;
}
.blog-card__arrow {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 500; color: var(--blue);
  margin-top: 0.25rem;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card__arrow { gap: 0.6rem; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  background: var(--blue);
  padding-block: 5rem;
}
.contact__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: start;
}
.contact__label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}
.contact__heading {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--white); line-height: 1.2;
  margin-bottom: 1.5rem;
}
.contact__details { display: flex; flex-direction: column; gap: 0.5rem; }
.contact__detail {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.925rem; color: rgba(255,255,255,0.8);
}
.contact__detail a { color: rgba(255,255,255,0.9); transition: color 0.2s; }
.contact__detail a:hover { color: var(--white); }
.contact__actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }

/* Form tabs */
.form-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem;
}
.form-tab {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent; color: rgba(255,255,255,0.65);
  border-radius: var(--r); cursor: pointer;
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.form-tab:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.form-tab.active {
  background: var(--white); color: var(--blue);
  border-color: var(--white); font-weight: 600;
}

/* Contact forms */
.contact-form { display: none; }
.contact-form.active { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 0.4rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; box-sizing: border-box;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: var(--r);
  font-family: var(--ff-body); font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.15);
}
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--blue-hover); color: var(--white); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-file { padding: 0.55rem 0.9rem; cursor: pointer; }
.form-file::file-selector-button {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 3px;
  padding: 0.3rem 0.75rem; font-size: 0.8rem; cursor: pointer; margin-right: 0.75rem;
}
.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 1.5rem;
}
.form-checkbox input[type="checkbox"] {
  width: 17px; height: 17px; flex-shrink: 0;
  margin-top: 0.15rem; cursor: pointer; accent-color: var(--white);
}
.form-checkbox label {
  font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.5; cursor: pointer;
}
.form-checkbox a { color: var(--white); text-decoration: underline; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  padding-block: 3.5rem 2rem;
}
.footer__grid {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 600; color: var(--white);
  line-height: 1.2; margin-bottom: 0.85rem;
}
.footer__desc {
  font-size: 0.875rem; color: var(--mist); line-height: 1.7; max-width: 280px;
}
.footer__col-title {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 1.25rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  line-height: 1.6; margin-bottom: 0.6rem;
}
.footer__contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer__copy { font-size: 0.78rem; color: var(--mist); }
.footer__privacy { font-size: 0.78rem; color: var(--mist); transition: color 0.2s; }
.footer__privacy:hover { color: var(--white); }
.footer__social {
  display: flex; gap: 0.75rem; margin-top: 1.25rem;
}
.footer__social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.22s;
}
.footer__social-link:hover {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}

/* =====================================================
   BLOG PAGE — PAGE HERO
   ===================================================== */
.page-hero {
  background: var(--navy);
  padding-block: calc(var(--nav-h) + 4.5rem) 4.5rem;
  text-align: center;
}
.page-hero__label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
}
.page-hero__title {
  font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 300; color: var(--white); line-height: 1.12;
}
.page-hero__title em { color: var(--blue); font-style: italic; }
.page-hero__sub {
  margin-top: 1rem; font-size: 1rem; color: var(--mist); line-height: 1.7;
  max-width: 520px; margin-inline: auto;
}

/* =====================================================
   BLOG POST / ARTICLE PAGE
   ===================================================== */
.post-hero {
  position: relative;
  min-height: 460px;
  display: flex; align-items: flex-end;
  padding-block: calc(var(--nav-h) + 4rem) 3.5rem;
  overflow: hidden;
  background: var(--navy);
}
.post-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.post-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 29, 48, 0.88) 0%,
    rgba(12, 29, 48, 0.55) 50%,
    rgba(12, 29, 48, 0.3) 100%
  );
}
.post-hero__content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: 2rem; width: 100%;
}
.post-hero__back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.post-hero__back:hover { color: var(--white); }
.post-hero__date {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.6rem;
}
.post-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 5vw, 3.75rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
  max-width: 780px;
}

.post-body {
  background: var(--white);
  padding-block: 4.5rem;
}
.post-body__inner {
  max-width: 720px; margin-inline: auto; padding-inline: 2rem;
}
.post-body__inner p {
  font-size: 1.05rem; color: var(--slate); line-height: 1.85;
  margin-bottom: 1.5rem;
}
.post-body__inner p:last-child { margin-bottom: 0; }
.post-body__inner h2 {
  font-family: var(--ff-display); font-size: 1.8rem; font-weight: 400;
  color: var(--navy); line-height: 1.25;
  margin-top: 2.5rem; margin-bottom: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--cream-200);
}
.post-body__inner h3 {
  font-family: var(--ff-display); font-size: 1.35rem; font-weight: 400;
  color: var(--navy); margin-top: 1.75rem; margin-bottom: 0.75rem;
}
.post-body__inner ul, .post-body__inner ol {
  margin-left: 1.5rem; margin-bottom: 1.5rem;
}
.post-body__inner li {
  font-size: 1.05rem; color: var(--slate); line-height: 1.75; margin-bottom: 0.4rem;
}
.post-body__inner strong { font-weight: 600; color: var(--ink); }
.post-body__inner em { font-style: italic; }
.post-body__inner a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.post-body__inner a:hover { color: var(--blue-hover); }
.post-body__inner blockquote {
  border-left: 3px solid var(--blue); padding-left: 1.5rem;
  margin-block: 2rem;
  font-family: var(--ff-display); font-style: italic; font-size: 1.2rem;
  color: var(--navy);
}
.post-body__inner sup { font-size: 0.65em; vertical-align: super; color: var(--mist); }
.post-body__inner ol.references {
  font-size: 0.875rem; color: var(--mist); margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--cream-200);
}
.post-body__inner ol.references li { color: var(--mist); }

.post-disclaimer {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-left: 3px solid var(--navy);
  border-radius: 4px;
}
.post-disclaimer p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

.post-nav {
  background: var(--sky);
  border-top: 1px solid var(--cream-200);
  padding-block: 0;
}
.post-nav__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
  padding-block: 2.25rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.post-nav__link {
  display: flex; flex-direction: column; gap: 0.3rem;
  transition: opacity 0.2s;
}
.post-nav__link:hover { opacity: 0.8; }
.post-nav__link--next { text-align: right; }
.post-nav__direction {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue);
}
.post-nav__title {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 400;
  color: var(--navy); line-height: 1.3;
  transition: color 0.2s;
}
.post-nav__link:hover .post-nav__title { color: var(--blue); }
.post-nav__empty { visibility: hidden; }

@media (max-width: 600px) {
  .post-hero { min-height: 320px; }
  .post-nav__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .post-nav__link--next { text-align: left; }
}

/* =====================================================
   BLOG LISTING PAGE
   ===================================================== */
.blog-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: var(--white);
  border: 1px solid rgba(29, 112, 168, 0.1);
  border-left: 3px solid var(--blue);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.blog-disclaimer__icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.blog-disclaimer__text {
  flex: 1;
  min-width: 0;
  max-width: none;
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--mist);
  text-align: justify;
  text-align-last: left;
}
.blog-disclaimer__text a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.blog-listing {
  background: var(--sky);
  padding-block: 5rem;
}
.blog-listing__inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem;
}
.blog-listing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

/* =====================================================
   PRIVACY POLICY
   ===================================================== */
.policy-body {
  background: var(--white);
  padding-block: 5rem 6rem;
}
.policy-body__inner {
  max-width: 800px; margin-inline: auto; padding-inline: 2rem;
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink); line-height: 1.8;
}
.policy-body__inner p { margin-bottom: 1.1rem; }
.policy-body__inner h2 {
  font-family: var(--ff-display); font-size: 1.65rem; font-weight: 600;
  color: var(--navy); margin-top: 3rem; margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--cream-200);
}
.policy-body__inner h3 {
  font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
  color: var(--navy); margin-top: 2rem; margin-bottom: 0.5rem; letter-spacing: 0.01em;
}
.policy-body__inner h4 {
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600;
  color: var(--slate); margin-top: 1.5rem; margin-bottom: 0.35rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.policy-body__inner ul,
.policy-body__inner ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.policy-body__inner li { margin-bottom: 0.5rem; }
.policy-body__inner a { color: var(--blue); text-decoration: underline; }
.policy-body__inner a:hover { color: var(--blue-hover); }
.policy-body__meta {
  font-size: 0.8rem; color: var(--mist);
  padding-bottom: 2rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--cream-200);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  .about__body    { grid-template-columns: 1fr; }
  .why__grid      { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-listing__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --nav-h: 62px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-tagline { display: none; }

  .hero { min-height: auto; padding-block: calc(var(--nav-h) + 4rem) 4rem; }
  .hero__scroll { display: none; }
  .hero__heading { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  .sec-header { flex-direction: column; gap: 0.5rem; }
  .sec-header__num { font-size: 4rem; line-height: 1; }

  .services__item { grid-template-columns: 1fr; gap: 0.5rem; padding-block: 1.75rem; }
  .services__item-num { font-size: 1rem; }

  .blog-preview__grid { grid-template-columns: 1fr; }
  .blog-listing__grid { grid-template-columns: 1fr; }

  .info-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .info-bar__item:last-child { border-bottom: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .contact__actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}
