:root {
  --navy: #0a1f44;
  --slate: #4a5b78;
  --white: #ffffff;
  --cream: #f6f1e8;
  --gold: #c7a35a;
  /* --gold is 2.1:1 on cream — fine on navy, fails WCAG on light
     grounds. Use --gold-ink for gold-coloured text on cream/white. */
  --gold-ink: #866620;
  --surface: #ffffff;
  --text: #15233b;
  --shadow: 0 16px 40px rgba(10, 31, 68, 0.16);
}

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

html {
  overflow-x: hidden;
  /* Offsets in-page anchor jumps so the sticky header never covers the
     heading that was jumped to. */
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  font-family: "Inter", "System-ui", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--navy) 95%, black 5%);
  box-shadow: 0 4px 12px rgba(10, 31, 68, 0.25);
}

.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}

.nav-wrap {
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.brand {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0.4rem;
}

#primary-nav {
  margin-left: auto;
}

#primary-nav ul {
  display: flex;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#primary-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
}

#primary-nav a:hover,
#primary-nav a:focus {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
  border-radius: 0.55rem;
  padding: 0.5rem 0.85rem;
  font: inherit;
}

.skip-link {
  position: absolute;
  z-index: 100;
  left: -9999px;
  top: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 0.8rem;
  border-radius: 0.4rem;
}

.skip-link:focus {
  left: 1rem;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero {
  position: relative;
  padding-top: 0;
  color: var(--white);
  min-height: 80svh;
  display: grid;
  align-items: stretch;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 31, 68, 0.84), rgba(10, 31, 68, 0.5));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 80svh;
  display: grid;
  align-content: center;
  padding-bottom: 2rem;
}

h1,
h2,
h3,
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.7rem);
}

h2 {
  font-size: clamp(1.65rem, 3.9vw, 2.5rem);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.section-intro {
  max-width: 65ch;
  margin: 1rem 0 0;
}

/* Default eyebrow sits on cream/white, so it uses the darker ink. The
   hero and other navy panels override it back to the bright gold. */
.eyebrow {
  color: var(--gold-ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero .eyebrow,
.menus-outro .eyebrow,
.contact-card .eyebrow,
.proof-box .eyebrow {
  color: var(--gold);
}

.hero-subline {
  margin: 1rem 0 2rem;
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  text-decoration: none;
  border: 0;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: var(--navy);
}

.button.secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.alt {
  background: rgba(255, 255, 255, 0.95);
}

.services-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.menu-card {
  background: var(--surface);
  border-radius: 0.85rem;
  border: 1px solid rgba(10, 31, 68, 0.09);
  padding: 1.1rem;
  box-shadow: 0 12px 24px rgba(10, 31, 68, 0.1);
}

.service-card p {
  margin: 0;
}

.menus-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.menu-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.menu-note {
  margin: 0 0 0.8rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.about-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.4fr 0.9fr;
}

.proof-box {
  background: rgba(255, 255, 255, 0.62);
  border: 1px dashed rgba(10, 31, 68, 0.2);
  border-radius: 0.85rem;
  padding: 1.1rem;
}

.proof-list,
.fact-list {
  padding-left: 1.2rem;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.inquiry-layout {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 0.7fr;
}

.inquiry-form {
  display: grid;
  gap: 0.55rem;
  background: #fcfbf8;
  border: 1px solid rgba(10, 31, 68, 0.12);
  border-radius: 0.9rem;
  padding: 1.1rem;
}

.inquiry-form label {
  font-weight: 700;
  font-size: 0.94rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.inquiry-form button {
  font: inherit;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.62rem 0.75rem;
  border-radius: 0.45rem;
  border: 1px solid #aeb3bc;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-card {
  font-style: normal;
  background: var(--navy);
  color: var(--white);
  border-radius: 0.9rem;
  padding: 1.1rem;
}

.contact-card a {
  display: block;
  color: var(--cream);
  margin-top: 0.45rem;
}

.form-status {
  margin: 0.25rem 0 0;
  color: #1f5d17;
  font-weight: 700;
}

.form-mode-note {
  margin: 0.1rem 0 0;
  max-width: 58ch;
  color: var(--slate);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Two-tone ring: navy carries the contrast on light grounds, the gold
   halo carries it on navy ones, so one rule works everywhere. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(199, 163, 90, 0.7);
}

.site-header a:focus-visible,
.site-footer a:focus-visible,
.contact-card a:focus-visible,
.menus-outro a:focus-visible,
.hero a:focus-visible {
  outline-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(10, 31, 68, 0.6);
}

@media (max-width: 1200px) {
  .menu-toggle {
    display: inline-flex;
  }

  #primary-nav {
    position: absolute;
    top: 5.3rem;
    right: 1rem;
    left: 1rem;
    background: var(--navy);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    /* visibility (not just opacity) keeps the closed menu out of the tab
       order and the accessibility tree, matching aria-expanded="false". */
    visibility: hidden;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      max-height 0.2s ease,
      visibility 0.2s ease;
  }

  #primary-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 320px;
    visibility: visible;
  }

  #primary-nav ul {
    flex-direction: column;
    gap: 0;
  }

  #primary-nav li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  #primary-nav a {
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .menus-grid,
  .about-grid,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-content {
    min-height: 68svh;
  }
}

@media (max-width: 390px) {
  .nav-wrap {
    min-height: 5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-card .card-copy {
  padding: 1.15rem;
}

.menu-request,
.text-link {
  color: var(--navy);
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  text-underline-offset: 0.2rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 150px);
  gap: 0.65rem;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

.about-gallery img:first-child {
  grid-row: 1 / 3;
}

.site-footer a {
  color: var(--white);
}

@media (min-width: 901px) {
  .about-grid {
    grid-template-columns: 1.25fr 0.85fr;
  }

  .about-gallery {
    grid-column: 1 / 2;
  }

  .proof-box {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
}

@media (max-width: 600px) {
  .brand span { display: none; }
  .section { padding: 3.25rem 0; }
  .services-grid, .menus-grid { grid-template-columns: 1fr; }
  .about-gallery { grid-template-rows: repeat(2, 120px); }
}

/* ---------------------------------------------------------------
   Social icons (header + footer)
   The sprite lives once in the DOM; both sets reference it by <use>.
   --------------------------------------------------------------- */

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.social-links svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.footer-social {
  gap: 0.25rem;
}

/* ---------------------------------------------------------------
   Career highlights panel
   --------------------------------------------------------------- */

.proof-box {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(199, 163, 90, 0.32);
  border-radius: 0.85rem;
  padding: 1.5rem 1.35rem;
  align-self: start;
  box-shadow: var(--shadow);
}

.proof-box h3 {
  color: var(--white);
}

.stat-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.stat-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.stat-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  min-width: 2.7rem;
}

.stat-label {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.86);
}

.proof-subhead {
  margin: 1.6rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
}

.proof-box .proof-list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.35rem;
}

.proof-box .proof-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
}

.proof-box .proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.proof-footnote {
  margin: 1.5rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------------------------------------------------------------
   Inquiry form
   --------------------------------------------------------------- */

/* Bots fill this; people never see it. Absolutely positioned so it
   takes no space in the form grid. */
.inquiry-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.inquiry-form .button.primary {
  margin-top: 0.4rem;
  justify-self: start;
  padding-inline: 1.6rem;
}

.button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

.form-status.is-pending {
  color: var(--slate);
}

.form-status.is-error {
  color: #a3271b;
}

.form-privacy {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--slate);
}

@media (max-width: 600px) {
  .inquiry-form .button.primary {
    justify-self: stretch;
    width: 100%;
  }

  .proof-box {
    padding: 1.25rem 1.1rem;
  }
}

@media (max-width: 390px) {
  .footer-inner {
    align-items: flex-start;
  }
}

/* ---------------------------------------------------------------
   Confirmation page (thank-you.html)
   --------------------------------------------------------------- */

.thanks {
  display: grid;
  align-content: center;
  min-height: calc(100svh - 5.4rem - 5.2rem);
}

.thanks-inner {
  max-width: 44rem;
}

.thanks h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.thanks-lede {
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
  max-width: 52ch;
}

.thanks-note {
  margin: 1.1rem 0 1.8rem;
  color: var(--slate);
}

.thanks-note a {
  color: var(--navy);
  font-weight: 700;
}

/* ---------------------------------------------------------------
   Sample menu cards (homepage teaser grid)
   --------------------------------------------------------------- */

.menu-card {
  display: flex;
  flex-direction: column;
}

.menu-card .menu-teaser {
  margin: 0 0 0.9rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.menu-card .menu-courses {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.menu-card .menu-courses li {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  background: rgba(199, 163, 90, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.menu-card .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

/* ---------------------------------------------------------------
   Menus page
   --------------------------------------------------------------- */

.menu-toc {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-toc a {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(10, 31, 68, 0.14);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.menu-toc a:hover,
.menu-toc a:focus-visible {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.menu-block {
  /* Sticky header is ~5.4rem; keep anchored headings clear of it. */
  scroll-margin-top: 6.5rem;
  background: var(--surface);
  border: 1px solid rgba(10, 31, 68, 0.09);
  border-radius: 0.85rem;
  box-shadow: 0 12px 24px rgba(10, 31, 68, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: 1.5rem;
}

.menu-block-head {
  border-bottom: 1px solid rgba(10, 31, 68, 0.12);
  padding-bottom: 1rem;
  margin-bottom: 1.4rem;
}

.menu-block-head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
}

.menu-block-head .menu-blurb {
  margin: 0.6rem 0 0;
  max-width: 62ch;
}

.menu-selection-note {
  margin: 0.9rem 0 0;
  padding: 0.7rem 0.9rem;
  background: rgba(199, 163, 90, 0.14);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.4rem 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text);
}

.course {
  margin-top: 1.6rem;
}

.course:first-of-type {
  margin-top: 0;
}

.course-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.course-head h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.course-note {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--gold-ink);
}

.dish-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.dish-list li {
  padding-left: 0.9rem;
  border-left: 2px solid rgba(199, 163, 90, 0.45);
}

.dish-name {
  display: block;
  font-weight: 600;
}

.dish-desc {
  display: block;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 0.1rem;
}

.menu-block-cta {
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(10, 31, 68, 0.12);
}

.menus-outro {
  margin-top: 2.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--navy);
  color: var(--white);
  border-radius: 0.85rem;
}

.menus-outro h2 {
  color: var(--white);
}

.menus-outro p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
}

.menus-outro .button {
  margin-top: 0.6rem;
}

@media (max-width: 600px) {
  .dish-list {
    grid-template-columns: 1fr;
  }
}

.label-optional {
  font-weight: 400;
  color: var(--slate);
  font-size: 0.86rem;
}

.menus-cta {
  margin: 2rem 0 0;
  text-align: center;
}

/* ---------------------------------------------------------------
   Tap-to-call in the sticky header
   The number stays reachable at every breakpoint; on narrow screens
   the digits collapse to the handset glyph so the brand still fits.
   --------------------------------------------------------------- */

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(199, 163, 90, 0.55);
  border-radius: 999px;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.hero-tertiary {
  color: var(--white);
  align-self: center;
  margin-top: 0;
}

@media (max-width: 900px) {
  .header-call-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .header-call {
    padding: 0.5rem 0.7rem;
    font-size: 1.05rem;
  }
}

.dietary-head {
  margin-top: 2.4rem;
  font-size: 1.35rem;
}

.dietary-copy {
  max-width: 65ch;
  margin: 0.7rem 0 0;
}

.form-next {
  margin-top: 0.6rem;
  padding: 0.9rem 1.1rem;
  background: rgba(199, 163, 90, 0.12);
  border-radius: 0.6rem;
}

.form-next h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.form-next ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.thanks-next {
  margin: 1.6rem 0;
  max-width: 46rem;
}

.thanks-next h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.thanks-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* The secondary button is light-on-dark by default; on the cream
   confirmation page it needs the navy treatment to stay legible. */
.thanks-back {
  color: var(--navy);
  border-color: rgba(10, 31, 68, 0.45);
}

/* Journal: real HTML articles, shared brand, readable without JavaScript. */
#primary-nav a[aria-current="page"] { color: var(--gold); }
.journal-intro { padding-bottom: 2rem; }
.journal-intro h1, .article-heading h1 { max-width: 24ch; text-wrap: balance; }
.article-lede { max-width: 65ch; font-size: 1.16rem; color: var(--slate); }
.journal-list { padding-top: 0; }
.journal-card { display: grid; grid-template-columns: 0.85fr 1.15fr; background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 6px 24px rgba(10,31,68,.07); margin-bottom: 2rem; }
.journal-card-image img { display: block; width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.journal-card-copy { padding: clamp(1.4rem, 3vw, 2.5rem); }
.journal-card h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.journal-card h2 a, .journal-card h3 a { color: var(--navy); text-decoration: none; }
.journal-card h2 a:hover, .journal-card h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .15em; }
.journal-meta { font-size: .87rem; color: var(--slate); }
.journal-meta a { color: inherit; }
.text-link { display: inline-block; color: var(--navy); font-weight: 700; text-underline-offset: .22em; }
.home-journal { margin-top: 1.5rem; }
.home-journal h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .65rem; font-size: .85rem; color: var(--slate); margin-bottom: 2rem; }
.breadcrumbs a { color: var(--navy); }
.article-heading { margin-bottom: 2.5rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(230px, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.article-body { min-width: 0; font-size: 1.04rem; line-height: 1.8; }
.article-body p { margin: 1.15rem 0; }
.article-body h2 { font-size: clamp(1.7rem, 3vw, 2.15rem); margin: 2.7rem 0 1rem; scroll-margin-top: 1rem; }
.article-body h3 { font-size: 1.4rem; margin: 1.6rem 0 .6rem; }
.article-body li { margin: .65rem 0; }
.article-body a, .article-contents a { color: var(--navy); text-underline-offset: .2em; }
.article-image { margin: 0 0 2rem; }
.article-image img { display: block; width: 100%; height: auto; border-radius: .9rem; }
.article-image figcaption { margin-top: .5rem; font-size: .8rem; color: var(--slate); }
.article-contents { border-top: 3px solid var(--gold); padding: 1.25rem 0; }
.article-contents h2, .article-aside-cta h2 { font-size: 1.55rem; }
.article-contents ul { padding-left: 1.2rem; }
.article-contents li { margin: .8rem 0; font-size: .92rem; }
.article-aside-cta { background: white; border-radius: .8rem; padding: 1.3rem; margin-top: 1rem; }
.article-aside-cta .text-link { margin-top: 1rem; }
.article-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(10,31,68,.15); }
@media (max-width: 750px) {
  .journal-card, .article-layout { grid-template-columns: minmax(0, 1fr); }
  .journal-card-image img { height: 230px; min-height: 0; }
  .journal-article { padding-top: 2rem; }
  .article-layout aside { grid-row: 1; }
  .article-aside-cta { display: none; }
  .article-contents { padding-bottom: 0; }
}
