/* =============================================================
   WOYITBA GROUP — Theme Stylesheet
   Editorial-corporate · Navy + Brass + Cream
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Color */
  --navy-900: #07182E;
  --navy-800: #0B2545;
  --navy-700: #133159;
  --navy-600: #1F4068;
  --brass-500: #C9A227;
  --brass-400: #D9B547;
  --brass-300: #E6C669;
  --cream-50: #FAF7EF;
  --cream-100: #F5F0E1;
  --cream-200: #ECE4CF;
  --ink: #14181F;
  --ink-soft: #4A4F58;
  --ink-mute: #767B85;
  --rule: rgba(20, 24, 31, 0.12);
  --rule-strong: rgba(20, 24, 31, 0.24);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --tracking-eyebrow: 0.22em;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 10vw, 8rem);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-800); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brass-500); }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 0.5em; color: var(--navy-800); font-variation-settings: "opsz" 144, "SOFT" 30; }
p { margin: 0 0 1em; }
::selection { background: var(--brass-500); color: var(--cream-50); }

.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--navy-800); color: var(--cream-50); padding: 0.5rem 1rem; z-index: 9999; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--brass-500);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--brass-500);
}

/* ---------- 3. HEADER & NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 239, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding-block: 1.1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.35rem; color: var(--navy-800);
  letter-spacing: -0.01em;
}
.brand__diamond {
  width: 12px; height: 12px; display: inline-block;
  background: var(--brass-500); transform: rotate(45deg);
  position: relative;
}
.brand__diamond::after {
  content: ""; position: absolute; inset: 3px;
  background: var(--cream-50);
}
.brand:hover { color: var(--navy-800); }
.brand:hover .brand__diamond { background: var(--navy-800); }

/* Custom logo (WordPress) — constrain so uploaded files don't blow out the header */
.custom-logo-link {
  display: inline-flex; align-items: center; line-height: 0;
}
.custom-logo {
  max-height: 48px; width: auto; height: auto; display: block;
}
@media (min-width: 720px) {
  .custom-logo { max-height: 56px; }
}

/* Default theme logo (image-based brand mark) */
.brand--image { line-height: 0; }
.brand__img {
  max-height: 44px; width: auto; height: auto; display: block;
  transition: opacity .25s var(--ease);
}
@media (min-width: 720px) {
  .brand__img { max-height: 52px; }
}
.brand--image:hover .brand__img { opacity: 0.85; }
.footer__brand .brand__img { max-height: 64px; }

.primary-nav { display: none; }
@media (min-width: 960px) {
  .primary-nav { display: block; }
}
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 2.4rem;
}
.primary-nav a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; padding-block: 4px;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brass-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover { color: var(--navy-800); }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav .current-menu-item > a::after { transform: scaleX(1); }

.header-cta {
  display: none; align-items: center; gap: 0.5rem;
  background: var(--navy-800); color: var(--cream-50);
  padding: 0.7rem 1.2rem; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; transition: all .3s var(--ease);
  border: 1px solid var(--navy-800);
}
@media (min-width: 720px) { .header-cta { display: inline-flex; } }
.header-cta:hover {
  background: var(--brass-500); border-color: var(--brass-500); color: var(--navy-800);
}
.header-cta__arrow {
  display: inline-block; transition: transform .3s var(--ease);
}
.header-cta:hover .header-cta__arrow { transform: translateX(3px); }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 0.5rem; color: var(--navy-800);
}
@media (min-width: 960px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; transition: transform .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 64px 0 0; z-index: 99;
  background: var(--navy-800); color: var(--cream-50);
  padding: 3rem var(--gutter);
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .45s var(--ease), visibility 0s linear .45s;
  overflow-y: auto;
}
.mobile-nav[data-open="true"] {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .45s var(--ease), visibility 0s linear 0s;
}
/* Hide the mobile-nav entirely on desktop — menu-toggle is also hidden there */
@media (min-width: 960px) {
  .mobile-nav { display: none !important; }
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav a {
  display: block; font-family: var(--font-display);
  font-size: 2rem; color: var(--cream-50);
  padding: 0.6rem 0; border-bottom: 1px solid rgba(245, 240, 225, 0.1);
}
.mobile-nav a:hover { color: var(--brass-400); }

/* ---------- 4. HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-800); color: var(--cream-50);
  padding-block: clamp(5rem, 12vw, 9rem) clamp(4rem, 10vw, 7rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201, 162, 39, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(31, 64, 104, 0.5), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.6; mix-blend-mode: overlay; pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 240, 225, 0.6); font-weight: 500;
}
.hero__top-meta { display: none; }
@media (min-width: 720px) { .hero__top-meta { display: block; } }

.hero__eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: 12px; letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--brass-400);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-display); color: var(--cream-50);
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  font-weight: 300; letter-spacing: -0.025em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin: 0 0 2rem;
  max-width: 18ch;
}
.hero__title .hero__accent {
  font-style: italic; color: var(--brass-400);
  font-weight: 300;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6; max-width: 56ch;
  color: rgba(245, 240, 225, 0.82);
  margin-bottom: 2.6rem;
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.6rem; font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all .3s var(--ease);
  border: 1px solid currentColor;
}
.btn--primary {
  background: var(--brass-500); color: var(--navy-800); border-color: var(--brass-500);
}
.btn--primary:hover { background: var(--brass-400); border-color: var(--brass-400); color: var(--navy-900); }
.btn--ghost {
  background: transparent; color: var(--cream-50); border-color: rgba(245, 240, 225, 0.4);
}
.btn--ghost:hover { background: var(--cream-50); color: var(--navy-800); border-color: var(--cream-50); }
.btn--dark {
  background: var(--navy-800); color: var(--cream-50); border-color: var(--navy-800);
}
.btn--dark:hover { background: var(--brass-500); color: var(--navy-800); border-color: var(--brass-500); }
.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__bottom {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 225, 0.15);
}
@media (min-width: 720px) {
  .hero__bottom { grid-template-columns: repeat(4, 1fr); gap: 3rem; }
}
.hero__stat-num {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--brass-400); line-height: 1;
  margin-bottom: 0.5rem; font-variation-settings: "opsz" 144;
}
.hero__stat-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245, 240, 225, 0.7); font-weight: 500;
}

/* ---------- 5. MARQUEE ---------- */
.marquee {
  background: var(--cream-100);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding-block: 1.6rem;
}
.marquee__track {
  display: flex; gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap; width: max-content;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 400; color: var(--navy-800);
  font-style: italic;
}
.marquee__item::after {
  content: ""; width: 6px; height: 6px; background: var(--brass-500);
  transform: rotate(45deg);
}

/* ---------- 6. SECTION HEADER (shared) ---------- */
.sec-head {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .sec-head { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: end; }
}
.sec-head__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 300;
  letter-spacing: -0.02em; line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin: 0.6rem 0 0;
}
.sec-head__title em {
  font-style: italic; color: var(--brass-500);
}
.sec-head__lede {
  font-size: 1.05rem; color: var(--ink-soft); max-width: 52ch;
  margin: 0;
}

/* ---------- 7. ABOUT ---------- */
.about { background: var(--cream-50); }
.about__grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.05fr 0.95fr; gap: 5rem; }
}
.about__copy p { font-size: 1.05rem; color: var(--ink-soft); }
.about__copy p:first-of-type::first-letter {
  font-family: var(--font-display); font-size: 4.5em;
  float: left; line-height: 0.85; padding: 0.05em 0.12em 0 0;
  color: var(--navy-800); font-weight: 400;
}
.about__pillars {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.about__pillar {
  padding: 1.6rem 1.4rem;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: var(--cream-100);
}
.about__pillar-num {
  font-family: var(--font-display); font-size: 0.9rem;
  color: var(--brass-500); font-style: italic;
}
.about__pillar-title {
  font-family: var(--font-display); font-size: 1.4rem;
  margin: 0.2rem 0 0.5rem; line-height: 1.15;
}
.about__pillar p {
  font-size: 0.92rem; color: var(--ink-soft); margin: 0; line-height: 1.55;
}

/* ---------- 8. SERVICES ---------- */
.services { background: var(--navy-800); color: var(--cream-50); position: relative; }
.services .sec-head__title { color: var(--cream-50); }
.services .eyebrow { color: var(--brass-400); }
.services .eyebrow::before { background: var(--brass-400); }
.services .sec-head__lede { color: rgba(245, 240, 225, 0.7); }

.services__grid {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid rgba(245, 240, 225, 0.12);
}
@media (min-width: 760px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  padding: 2.4rem 2rem 2.6rem;
  border-bottom: 1px solid rgba(245, 240, 225, 0.12);
  border-right: 1px solid rgba(245, 240, 225, 0.12);
  position: relative; overflow: hidden;
  transition: background .4s var(--ease);
}
@media (min-width: 760px) {
  .service-card:nth-child(2n) { border-right: 1px solid rgba(245, 240, 225, 0.12); }
}
.service-card:hover { background: var(--navy-700); }
.service-card::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 0; height: 0; border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--brass-500) transparent transparent;
  opacity: 0; transition: opacity .35s var(--ease);
}
.service-card:hover::before { opacity: 1; }

.service-card__num {
  font-family: var(--font-display); font-size: 0.95rem;
  font-style: italic; color: var(--brass-400);
  letter-spacing: 0.05em;
}
.service-card__tag {
  display: inline-block; margin-left: 1rem;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 240, 225, 0.55); font-weight: 600;
  padding: 3px 8px; border: 1px solid rgba(245, 240, 225, 0.2);
}
.service-card__title {
  font-family: var(--font-display); font-size: 1.7rem;
  font-weight: 400; color: var(--cream-50);
  margin: 1.2rem 0 1rem; line-height: 1.15;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: 0.95rem; color: rgba(245, 240, 225, 0.72);
  line-height: 1.65; margin-bottom: 1.6rem;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--brass-400);
}
.service-card__link svg { transition: transform .3s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ---------- 9. NETWORK / DIRECT ROUTES ---------- */
.network { background: var(--cream-100); position: relative; overflow: hidden; }
.network__grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}
@media (min-width: 720px) { .network__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .network__grid { grid-template-columns: repeat(4, 1fr); } }

.hub-card {
  padding: 2rem 1.6rem 2.2rem;
  border-bottom: 1px solid var(--rule-strong);
  border-right: 1px solid var(--rule-strong);
  background: var(--cream-50);
  position: relative;
  transition: background .35s var(--ease);
}
.hub-card:hover { background: var(--cream-100); }
.hub-card__country {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
}
.hub-card__port {
  font-family: var(--font-display); font-size: 2rem;
  margin: 0.4rem 0 0; line-height: 1.05;
  color: var(--navy-800);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hub-card__arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px dashed var(--rule-strong);
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; color: var(--ink-soft);
}
.hub-card__arrow strong { color: var(--brass-500); font-weight: 700; }
.hub-card__cargo {
  font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55;
  margin: 1rem 0 0;
}
.hub-card__transit {
  position: absolute; top: 1.6rem; right: 1.6rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 0.85rem; color: var(--brass-500);
}

/* ---------- 10. WHY US ---------- */
.why { background: var(--cream-50); }
.why__grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

.reason {
  padding: 2.4rem 2rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.reason:not(:last-child) { border-right: 1px solid var(--rule); }
@media (min-width: 720px) {
  .reason:nth-child(2n) { border-right: none; }
  .reason:nth-child(2n+1) { border-right: 1px solid var(--rule); }
}
@media (min-width: 1100px) {
  .reason:nth-child(2n) { border-right: 1px solid var(--rule); }
  .reason:nth-child(3n) { border-right: none; }
}
.reason__index {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 0.85rem; color: var(--brass-500);
}
.reason__title {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 400; line-height: 1.15;
  margin: 0 0 0.8rem; letter-spacing: -0.01em;
}
.reason__desc {
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6;
  margin: 0;
}

/* ---------- 11. PROCESS ---------- */
.process { background: var(--cream-100); }
.process__list {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule-strong);
}
.process__step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid var(--rule-strong);
  align-items: start;
  transition: background .35s var(--ease);
}
@media (min-width: 720px) {
  .process__step { grid-template-columns: 120px 0.8fr 1fr; gap: 3rem; align-items: baseline; padding: 2.6rem 0; }
}
.process__step:hover .process__num { color: var(--brass-500); }
.process__num {
  font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 300; color: var(--navy-800);
  font-style: italic; line-height: 1;
  transition: color .3s var(--ease);
  font-variation-settings: "opsz" 144;
}
.process__title {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 400; margin: 0;
  letter-spacing: -0.01em;
}
.process__desc {
  font-size: 0.98rem; color: var(--ink-soft);
  line-height: 1.65; margin: 0.6rem 0 0;
}
@media (min-width: 720px) {
  .process__desc { margin: 0; }
}

/* ---------- 12. CONTACT / CTA ---------- */
.contact-cta {
  background: var(--navy-800); color: var(--cream-50);
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ""; position: absolute;
  top: -200px; right: -200px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 70%);
  pointer-events: none;
}
.contact-cta__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 900px) {
  .contact-cta__inner { grid-template-columns: 1.15fr 0.85fr; gap: 5rem; align-items: center; }
}
.contact-cta__title {
  font-size: clamp(2.2rem, 5vw, 4rem); color: var(--cream-50);
  font-weight: 300; letter-spacing: -0.02em; line-height: 1;
  margin: 1rem 0 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.contact-cta__title em { font-style: italic; color: var(--brass-400); }
.contact-cta__lede {
  font-size: 1.05rem; color: rgba(245, 240, 225, 0.78);
  max-width: 50ch; margin: 0 0 2rem;
}
.contact-cta__details {
  background: var(--navy-700);
  padding: 2.4rem 2rem;
  border: 1px solid rgba(245, 240, 225, 0.1);
}
.contact-cta__row {
  display: grid; grid-template-columns: 1fr;
  gap: 0.4rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(245, 240, 225, 0.1);
}
.contact-cta__row:last-child { border-bottom: none; }
.contact-cta__label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 240, 225, 0.55); font-weight: 600;
}
.contact-cta__value {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--cream-50); font-weight: 400;
}
.contact-cta__value a { color: var(--cream-50); }
.contact-cta__value a:hover { color: var(--brass-400); }

/* ---------- 13. FOOTER ---------- */
.site-footer {
  background: var(--navy-900); color: var(--cream-100);
  padding-top: clamp(3rem, 7vw, 5rem);
}
.site-footer a { color: rgba(245, 240, 225, 0.78); }
.site-footer a:hover { color: var(--brass-400); }
.footer__top {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 225, 0.12);
}
@media (min-width: 760px) { .footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer__brand .brand { color: var(--cream-50); font-size: 1.6rem; }
.footer__brand p {
  font-size: 0.95rem; color: rgba(245, 240, 225, 0.6);
  margin-top: 1rem; max-width: 32ch; line-height: 1.6;
}
.footer__col-title {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-400); font-weight: 700;
  margin: 0 0 1.4rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.65rem; font-size: 0.95rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  padding-block: 1.6rem;
  font-size: 0.85rem; color: rgba(245, 240, 225, 0.5);
}

/* ---------- 14. PAGES & POSTS ---------- */
.page-hero {
  background: var(--navy-800); color: var(--cream-50);
  padding-block: clamp(5rem, 10vw, 8rem) clamp(3rem, 7vw, 5rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 60% 80% at 90% 30%, rgba(201, 162, 39, 0.14), transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 300;
  color: var(--cream-50); letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin: 1rem 0 0; max-width: 22ch; line-height: 1;
}
.page-hero__lede {
  font-size: 1.1rem; color: rgba(245, 240, 225, 0.75);
  max-width: 56ch; margin-top: 1.5rem;
}

.entry-content { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.entry-content h2 { font-size: 2.2rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.entry-content h3 { font-size: 1.6rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.4rem; }
.entry-content blockquote {
  border-left: 3px solid var(--brass-500);
  padding-left: 1.4rem; margin: 2rem 0;
  font-family: var(--font-display); font-size: 1.4rem;
  font-style: italic; color: var(--navy-800);
}
.entry-content a { color: var(--navy-800); text-decoration: underline; text-decoration-color: var(--brass-500); text-underline-offset: 4px; }
.entry-content img { margin: 1.5rem 0; }

.post-card {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  padding: 2rem 0; border-bottom: 1px solid var(--rule);
}
.post-card__thumb img { aspect-ratio: 16/10; object-fit: cover; }
.post-card__title {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 400; margin: 0.6rem 0;
}
.post-card__title a { color: var(--navy-800); }
.post-card__title a:hover { color: var(--brass-500); }
.post-card__meta {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
  font-weight: 600;
}

.error-404 { text-align: center; padding: var(--section-y) 0; }
.error-404 h1 {
  font-size: clamp(5rem, 18vw, 12rem); font-weight: 300;
  color: var(--brass-500); font-style: italic; line-height: 1;
}

/* ---------- 15. UTILITIES & MOTION ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1; transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- 16. PRINT ---------- */
@media print {
  .site-header, .site-footer, .menu-toggle, .header-cta, .marquee, .contact-cta { display: none; }
  body { background: white; color: black; }
}
