:root {
  --ink: #1b2428;
  --soft-ink: #364347;
  --muted: #748084;
  --line: #e2e0db;
  --paper: #f6f4ef;
  --surface: rgba(255, 255, 255, .78);
  --white: #fff;
  --sage: #6f8d83;
  --deep-green: #183833;
  --wine: #8f4f54;
  --amber: #c59655;
  --shadow: 0 22px 60px rgba(28, 36, 38, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(111, 141, 131, .16), transparent 34rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 38%, #f7f8f6 100%);
  font-family: Poppins, Aptos, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  min-height: 60vh;
}

.container,
.header-inner,
.footer-container,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(246, 244, 239, .78);
  border-bottom: 1px solid rgba(226, 224, 219, .72);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(27, 36, 40, .08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.logo-svg {
  width: 132px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 18px rgba(27, 36, 40, .08);
  flex: 0 0 auto;
}

.brand-name,
.brand-name:visited {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 13px;
  font-weight: 800;
  color: var(--soft-ink);
}

.nav a {
  opacity: .8;
  transition: color .18s ease, opacity .18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--deep-green);
  opacity: 1;
}

.search-form {
  display: flex;
  align-items: center;
  width: min(230px, 22vw);
  height: 40px;
  padding: 0 7px 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
}

.search-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.search-form input::placeholder {
  color: var(--muted);
}

.search-btn,
.hamburger,
.cat-scroll-btn,
.scroll-top-btn {
  display: grid;
  place-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.search-btn svg,
.cat-scroll-btn svg,
.scroll-top-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

h1,
h2,
h3,
.hero-title,
.section-title,
.post-title,
.featured-title,
.blog-list-title,
.newsletter-title,
.footer-title,
.about-subtitle,
.now-title,
.timeline-header h1,
.search-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section,
.story,
.newsletter-section,
.post-page,
.about,
.contact-wrap,
.search-page {
  padding: clamp(42px, 5vw, 72px) 0;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-header h2,
.section-title,
.mb-20,
.search-title {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: Poppins, Aptos, system-ui, sans-serif;
  font-size: clamp(27px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 1.08;
}

.section-header h2 {
  margin-bottom: 0;
}

.btn-primary,
.btn-outline,
.read-more,
.timeline-link,
.newsletter-form button,
.form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary,
.newsletter-form button,
.form button {
  border: 0;
  color: #fff;
  background: var(--deep-green);
}

.btn-outline {
  border: 1px solid rgba(111, 141, 131, .42);
  color: var(--deep-green);
  background: rgba(255, 255, 255, .6);
}

.btn-primary:hover,
.btn-outline:hover,
.read-more:hover,
.timeline-link:hover,
.newsletter-form button:hover,
.form button:hover {
  transform: translateY(-1px);
}

.hero {
  padding: clamp(22px, 4vw, 44px) 0 clamp(26px, 4vw, 46px);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  width: min(1180px, calc(100% - 40px));
  min-height: 520px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 58px);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(24, 56, 51, .68), rgba(24, 56, 51, .34) 56%, rgba(143, 79, 84, .14)),
    url("../img/a320.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-badge,
.newsletter-badge,
.post-category-badge,
.category-badge {
  width: fit-content;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge,
.newsletter-badge {
  margin-bottom: 16px;
  color: #ead3a7;
}

.hero-title {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(52px, 6.3vw, 88px);
  font-weight: 600;
  line-height: .98;
}

.hero-title span {
  color: #ead3a7;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-buttons .btn-primary {
  color: var(--deep-green);
  border: 2px solid rgba(255, 255, 255, .94);
  background: #ead3a7;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.hero-buttons .btn-primary:hover {
  background: #fff4d7;
}

.hero-right {
  align-self: stretch;
  display: flex;
  justify-content: end;
}

.hero-image {
  width: min(420px, 100%);
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .2);
}

.fancy-separator,
.section::after {
  display: none;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.post-card,
.blog-featured,
.blog-list-card,
.category-box,
.contact-card,
.about-info-card,
.now-card,
.sidebar-item,
.timeline-card {
  border: 1px solid rgba(226, 224, 219, .86);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(27, 36, 40, .06);
}

.post-card,
.blog-list-card,
.category-card,
.category-box,
.sidebar-item,
.route-card {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.post-card:hover,
.blog-list-card:hover,
.category-card:hover,
.category-box:hover,
.sidebar-item:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 40px rgba(27, 36, 40, .1);
}

.post-card {
  display: grid;
  min-height: 100%;
}

.post-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.post-card-image,
.featured-image {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.post-category-badge,
.category-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 6px 9px;
  color: #fff;
  background: rgba(24, 56, 51, .86);
  backdrop-filter: blur(10px);
}

.post-body,
.featured-content,
.blog-list-content {
  padding: 18px;
}

.post-title,
.featured-title,
.blog-list-title,
.post-card-title {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(27px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.02;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.meta-item svg {
  width: 15px;
  height: 15px;
}

.meta-dot {
  color: rgba(116, 128, 132, .65);
}

.post-excerpt,
.featured-excerpt,
.blog-list-excerpt,
.post-card-date {
  color: var(--soft-ink);
  font-size: 14px;
}

.read-more-wrap {
  margin-top: 16px;
}

.read-more {
  min-height: auto;
  padding: 0;
  color: var(--deep-green);
  background: transparent;
}

.story-container,
.about-container,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.story-text h2,
.about-content h1,
.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 600;
  line-height: .98;
}

.story-text p,
.about-text,
.about-content p,
.page-hero p {
  color: var(--soft-ink);
  font-size: 18px;
}

.story-image-wrapper {
  position: relative;
}

.story-image,
.about-photo-float {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  color: #fff;
  border-radius: 8px;
  background: rgba(24, 56, 51, .86);
  backdrop-filter: blur(12px);
}

.story-badge-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.story-badge-text {
  font-size: 12px;
}

/* Refine 06: story image with overlapping text card */
.story {
  padding: clamp(56px, 7vw, 92px) 0;
}

.story-container {
  position: relative;
  display: block;
  min-height: clamp(520px, 62vw, 760px);
}

.story-image-wrapper {
  width: min(820px, 72%);
  margin-left: auto;
}

.story-image {
  width: 100%;
  min-height: clamp(520px, 58vw, 760px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(27, 36, 40, .14);
}

.story-text {
  position: absolute;
  left: 0;
  bottom: clamp(34px, 5vw, 70px);
  z-index: 2;
  width: min(560px, 54%);
  padding: clamp(24px, 3.6vw, 42px);
  border: 1px solid rgba(226, 224, 219, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 62px rgba(27, 36, 40, .12);
  backdrop-filter: blur(16px);
}

.story-text h2 {
  font-size: clamp(38px, 4.6vw, 62px);
}

.story-text p {
  font-size: 16px;
}

.story-badge {
  left: -34px;
  right: auto;
  bottom: 32px;
  min-width: 148px;
}

.categories,
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-card,
.category-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 15px 44px 15px 22px;
  border: 1px solid rgba(24, 56, 51, .12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(247, 244, 236, .72)),
    rgba(255, 255, 255, .72);
  box-shadow: 0 14px 32px rgba(27, 36, 40, .055);
  overflow: hidden;
}

.category-card::before,
.category-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #006b5b 0%, #00a58c 48%, #c59655 100%);
}

.category-card::after,
.category-box::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 28px;
  height: 1px;
  background: rgba(24, 56, 51, .22);
}

.category-card span,
.category-name {
  position: relative;
  z-index: 1;
  font-family: Poppins, Aptos, system-ui, sans-serif;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.category-count {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 1;
  color: rgba(24, 56, 51, .72);
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}

.newsletter-section {
  padding-top: 0;
}

.newsletter-container {
  width: min(1180px, calc(100% - 40px));
}

.newsletter-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: 340px;
  padding: clamp(34px, 5vw, 58px);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 31, 42, .78), rgba(15, 64, 83, .52) 45%, rgba(20, 93, 131, .18)),
    linear-gradient(0deg, rgba(11, 31, 42, .32), rgba(11, 31, 42, .08)),
    url("../img/newsletter-bg.png") center / cover no-repeat;
  box-shadow: 0 24px 68px rgba(27, 36, 40, .16);
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(234, 211, 167, .58);
  border-radius: 8px;
  color: #ffe8b5;
  background: rgba(9, 28, 36, .22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  backdrop-filter: blur(10px);
}

.newsletter-badge svg {
  width: 20px;
  height: 20px;
  color: #ffe8b5;
  filter: drop-shadow(0 0 8px rgba(234, 211, 167, .42));
}

.newsletter-badge span {
  font-family: Poppins, Aptos, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.newsletter-title {
  max-width: 520px;
  margin-bottom: 16px;
  color: #fff8ea;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  line-height: .9;
  text-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.newsletter-text {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  font-weight: 500;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-self: end;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.newsletter-form input {
  min-width: 0;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: var(--ink);
  outline: 0;
  background: rgba(255, 255, 255, .94);
}

.newsletter-form button {
  height: 52px;
  min-width: 108px;
  color: var(--deep-green);
  background: #ead3a7;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.blog-layout {
  padding: clamp(54px, 7vw, 86px) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 18px;
  margin-top: 28px;
}

.blog-featured > a {
  display: grid;
  min-height: 100%;
}

.featured-image-wrap,
.blog-list-image {
  position: relative;
  overflow: hidden;
}

.featured-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-list-box {
  display: grid;
  gap: 14px;
}

.blog-list-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 170px;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-slider-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.category-slider {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: none;
}

.category-slider::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, .64);
  font-size: 13px;
  font-weight: 800;
}

.category-pill.active {
  border-color: rgba(111, 141, 131, .28);
  color: #fff;
  background: var(--deep-green);
}

.cat-scroll-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .64);
}

.post-page {
  padding-top: clamp(46px, 6vw, 80px);
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.post-main {
  min-width: 0;
}

.post-page .post-title {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(44px, 6vw, 82px);
}

.post-cover {
  width: 100%;
  max-height: 470px;
  margin: 28px 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.post-content {
  color: var(--soft-ink);
  font-size: 18px;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote,
.post-content iframe {
  margin-bottom: 1.25em;
}

.post-content h2,
.post-content h3 {
  margin: 1.4em 0 .55em;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
}

.post-content img,
.post-content iframe {
  max-width: 100%;
  border-radius: 8px;
}

.post-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-title {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.sidebar-list {
  display: grid;
  gap: 10px;
}

.sidebar-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
}

.sidebar-item img {
  width: 76px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-item-title {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.22;
}

.sidebar-item-date {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.related-posts {
  margin-top: 42px;
}

.about-container {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.about-content h1 {
  margin-bottom: 24px;
}

.about-subtitle {
  margin: 34px 0 12px;
  font-size: 34px;
  line-height: 1;
}

.about-icons-grid,
.now-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.about-info-card,
.now-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.about-info-icon,
.now-icon,
.info-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 8px;
  background: var(--deep-green);
}

.timeline-link-box {
  margin-top: 26px;
}

.contact-wrap {
  padding-top: clamp(46px, 6vw, 80px);
}

.page-hero {
  margin-bottom: 34px;
}

.contact-grid {
  align-items: start;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.contact-info,
.form {
  display: grid;
  gap: 14px;
}

.info-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.info-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-value {
  color: var(--ink);
  font-weight: 800;
}

.contact-info-sub {
  color: var(--soft-ink);
}

.field {
  display: grid;
  gap: 7px;
}

.field input,
.field textarea,
.form input,
.form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: 0;
  background: rgba(255, 255, 255, .74);
}

.field textarea,
.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-success,
.form-error,
.empty {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

.form-success {
  color: var(--deep-green);
}

.form-error {
  color: var(--wine);
}

.search-page {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.timeline-container {
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(54px, 7vw, 86px) 0;
}

.timeline-header {
  margin-bottom: 36px;
  text-align: center;
}

.timeline-header h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-date {
  color: var(--muted);
  font-weight: 800;
}

.timeline-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 8px;
  background: var(--deep-green);
}

.timeline-card {
  padding: 18px;
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--soft-ink);
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background:
    linear-gradient(135deg, rgba(24, 56, 51, .98), rgba(61, 74, 72, .94)),
    var(--deep-green);
}

.footer-container {
  padding: clamp(42px, 6vw, 66px) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, .6fr) minmax(260px, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: start;
}

.brand-badge.small {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--deep-green);
  border-radius: 8px;
  background: #ead3a7;
}

.footer-title {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.footer-desc {
  max-width: 360px;
  margin-top: 10px;
}

.footer-links-col,
.footer-contact-col,
.footer-network-links {
  display: grid;
  gap: 10px;
}

.footer-links-col a,
.footer-network-links a,
.admin-link {
  color: rgba(255, 255, 255, .78);
}

.footer-links-col a:hover,
.footer-network-links a:hover,
.admin-link:hover {
  color: #fff;
}

.footer-contact-item,
.footer-network-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-contact-item svg,
.footer-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.footer-mini-divider,
.footer-social-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .16);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 38px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-icon {
  width: 22px;
  height: 22px;
}

.footer-bottom-right {
  justify-self: end;
}

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(226, 224, 219, .9);
  border-radius: 8px;
  color: #fff;
  background: rgba(24, 56, 51, .9);
  box-shadow: 0 16px 38px rgba(27, 36, 40, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(12px);
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }

  .mobile-nav.active {
    display: grid;
  }

  .mobile-nav a {
    padding: 12px 10px;
    color: var(--ink);
    font-weight: 800;
  }

  .search-form {
    justify-self: end;
    width: min(260px, 34vw);
  }

  .hero-inner,
  .story-container,
  .about-container,
  .contact-grid,
  .newsletter-inner,
  .post-layout,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-right {
    justify-content: start;
  }

  .hero-image {
    width: 100%;
    max-height: 300px;
  }

  .post-sidebar {
    position: static;
  }

  .story-container {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }

  .story-image-wrapper {
    width: 100%;
    margin-left: 0;
    order: 1;
  }

  .story-text {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    order: 2;
  }

  .story-image {
    min-height: 460px;
    aspect-ratio: 4 / 4.5;
  }

  .story-badge {
    left: 18px;
    bottom: 18px;
  }

  .post-grid,
  .categories,
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .header-inner,
  .footer-container,
  .footer-bottom,
  .hero-inner,
  .story-container,
  .about-container,
  .contact-grid,
  .search-page,
  .newsletter-container,
  .timeline-container {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .brand-name {
    display: none;
  }

  .logo-svg {
    width: 108px;
  }

  .search-form {
    width: 100%;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-inner {
    padding: 24px;
  }

  .hero-title {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-buttons,
  .newsletter-form,
  .form-row.two {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .post-grid,
  .categories,
  .categories-grid,
  .about-icons-grid,
  .now-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .blog-list-image img {
    aspect-ratio: 16 / 8.8;
  }

  .category-slider-wrap {
    grid-template-columns: 1fr;
  }

  .cat-scroll-btn {
    display: none;
  }

  .newsletter-inner {
    min-height: 360px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    padding-bottom: 86px;
  }

  .footer-socials,
  .footer-bottom-right {
    justify-self: start;
  }
}

/* Refine 03: standard article cards */
.post-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-list-box {
  display: contents;
}

.post-card,
.blog-featured,
.blog-list-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  max-height: 640px;
  border-radius: 8px;
  overflow: hidden;
}

.post-card,
.post-card > a,
.blog-featured > a,
.blog-list-card {
  height: 100%;
}

.post-card > a,
.blog-featured > a,
.blog-list-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
}

.post-card-image-wrap,
.featured-image-wrap,
.blog-list-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(24, 56, 51, .08);
}

.post-card-image,
.featured-image,
.featured-image-wrap img,
.blog-list-image img,
.post-card > .post-card-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-category-badge,
.category-badge {
  left: 12px;
  top: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  font-family: Poppins, Aptos, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
}

.post-body,
.featured-content,
.blog-list-content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 16px 16px 15px;
}

.post-card .post-title,
.featured-title,
.blog-list-title,
.post-card-title {
  margin-bottom: 8px;
  font-family: Poppins, Aptos, system-ui, sans-serif;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 800;
  line-height: 1.2;
}

.post-card .post-meta,
.post-card > .post-body .post-meta,
.featured-content .post-meta,
.blog-list-content .post-meta {
  margin-bottom: 10px;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(54, 67, 71, .72);
}

.post-card .post-meta .meta-item,
.post-card > .post-body .post-meta .meta-item,
.featured-content .post-meta .meta-item,
.blog-list-content .post-meta .meta-item {
  font-weight: 300;
}

.date-badge {
  display: none;
}

.post-excerpt,
.featured-excerpt,
.blog-list-excerpt {
  position: relative;
  max-height: 4.8em;
  margin-bottom: 14px;
  overflow: hidden;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.6;
}

.post-excerpt::after,
.featured-excerpt::after,
.blog-list-excerpt::after {
  content: ".....";
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 22px;
  color: var(--soft-ink);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .94) 34%);
}

.read-more-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.read-more {
  font-family: Poppins, Aptos, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .post-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .post-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .post-card,
  .blog-featured,
  .blog-list-card {
    max-height: none;
  }
}

/* Refine 09: layered header */
.site-header {
  padding: 0;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(135deg, rgba(24, 56, 51, .98), rgba(61, 74, 72, .94)),
    var(--deep-green);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-header.scrolled {
  box-shadow: 0 18px 42px rgba(27, 36, 40, .18);
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(210px, 260px) auto;
  grid-template-areas:
    "top top top top"
    "mid mid mid mid"
    "brand nav search hamburger"
    "mobile mobile mobile mobile";
  align-items: center;
  gap: 0 clamp(22px, 4vw, 52px);
  min-height: 0;
  padding: 10px 0 14px;
}

.header-top {
  grid-area: top;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 34px;
}

.weather-widget {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 600;
}

.weather-city {
  color: #ead3a7;
  font-weight: 800;
}

.weather-temp {
  color: #fff;
  font-weight: 800;
}

.weather-desc {
  color: rgba(255, 255, 255, .62);
}

.header-socials {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  transition: transform .18s ease, opacity .18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  opacity: .86;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link.instagram,
.social-link.x-twitter,
.social-link.facebook,
.social-link.youtube,
.social-link.mail {
  color: #ead3a7;
}

.social-link.youtube path {
  fill: currentColor;
  stroke: none;
}

.header-mid {
  grid-area: mid;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.header-bottom {
  display: contents;
}

.brand {
  grid-area: brand;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-right: clamp(26px, 4.4vw, 64px);
  color: #fff;
}

.logo-svg {
  width: 94px;
  height: 94px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.brand-name,
.brand-name:visited {
  display: none;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.nav {
  grid-area: nav;
  justify-self: start;
  gap: clamp(18px, 2.7vw, 34px);
  color: rgba(255, 255, 255, .78);
}

.nav a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  opacity: 1;
}

.nav-home {
  justify-content: center;
  width: 28px;
  height: 28px;
}

.nav-home svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav a:hover,
.nav a.active {
  color: #ead3a7;
}

.search-form {
  grid-area: search;
  justify-self: end;
  width: min(250px, 100%);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .95);
}

.search-form input {
  color: var(--ink);
}

.hamburger {
  grid-area: hamburger;
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
}

.hamburger span {
  background: #fff;
}

.mobile-nav {
  grid-area: mobile;
}

.mobile-home {
  display: inline-flex;
  align-items: center;
}

.mobile-home svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "top top"
      "mid mid"
      "brand hamburger"
      "search search"
      "mobile mobile";
    gap: 10px 14px;
  }

  .header-top {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-socials,
  .weather-widget {
    justify-self: center;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .search-form {
    width: min(100%, 360px);
    justify-self: stretch;
  }

  .mobile-nav {
    position: static;
    margin-top: 10px;
    color: var(--ink);
  }
}

@media (max-width: 640px) {
  .header-shell {
    width: min(100% - 30px, 1180px);
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "top top"
      "mid mid"
      "brand hamburger"
      "search search"
      "mobile mobile";
  }

  .brand {
    justify-self: start;
    margin-right: 0;
  }

  .brand-name {
    display: block;
  }

  .logo-svg {
    width: 82px;
    height: 82px;
  }

  .search-form {
    width: 100%;
  }
}

/* Refine 12: about page balance */
.about {
  padding: clamp(44px, 5vw, 66px) 0;
}

.about-container {
  display: block;
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
}

.about-content {
  max-width: 880px;
  margin-inline: auto;
}

.about-content h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.about-subtitle {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--soft-ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.35;
}

.about-photo-float {
  float: none;
  width: min(350px, 100%);
  aspect-ratio: auto;
  margin: 14px auto 18px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(27, 36, 40, .08);
}

.about-photo-float img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.about-icons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px auto 26px;
}

.about-info-card {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
}

.about-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.about-info-icon svg {
  width: 21px;
  height: 21px;
}

.about-info-text {
  color: var(--ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.about-text {
  color: var(--soft-ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

.about-text p,
.about-content p {
  color: var(--soft-ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

.about-text h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-text h4 {
  margin: 30px 0 0;
  color: var(--deep-green);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.18;
}

.timeline-link-box {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.timeline-link {
  font-size: 13px;
}

.about-now-section {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  padding-top: 18px;
}

.about-now-section .section-title {
  margin-bottom: 16px;
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.now-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.now-card {
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 3px 9px;
  min-height: 70px;
  padding: 10px;
}

.now-icon {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.now-icon svg {
  width: 19px;
  height: 19px;
}

.now-title {
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.now-text {
  min-width: 0;
  color: var(--soft-ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 980px) {
  .about-container,
  .about-now-section {
    width: min(100% - 36px, 820px);
  }

  .now-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-container,
  .about-now-section {
    width: min(100% - 24px, 820px);
  }

  .about-icons-grid {
    grid-template-columns: 1fr;
  }

  .about-info-card {
    min-height: 54px;
  }

  .about-photo-float {
    width: 100%;
    margin-top: 12px;
  }

  .about-photo-float img {
    max-height: none;
  }

  .timeline-link-box {
    justify-content: flex-start;
  }

  .now-grid {
    grid-template-columns: 1fr;
  }
}

/* Refine 13: timeline page */
.timeline-page {
  padding: clamp(48px, 6vw, 82px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .66), rgba(247, 244, 236, .54)),
    var(--paper);
}

.timeline-shell {
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
}

.timeline-hero {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}

.timeline-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline-kicker::before,
.timeline-kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .58;
}

.timeline-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: clamp(40px, 5.8vw, 70px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.timeline-hero p {
  max-width: 660px;
  margin: 14px auto 0;
  color: var(--soft-ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

.journey-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(24, 56, 51, .34), rgba(197, 150, 85, .58), rgba(24, 56, 51, .22), transparent);
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.journey-item.is-left .journey-year {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.journey-item.is-left .journey-node {
  grid-column: 2;
}

.journey-item.is-left .journey-card {
  grid-column: 3;
}

.journey-item.is-right .journey-card {
  grid-column: 1;
  justify-self: end;
}

.journey-item.is-right .journey-node {
  grid-column: 2;
}

.journey-item.is-right .journey-year {
  grid-column: 3;
  justify-self: start;
}

.journey-year {
  color: var(--deep-green);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.journey-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.journey-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(226, 224, 219, .9);
  border-radius: 14px;
  color: var(--deep-green);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(27, 36, 40, .08);
}

.journey-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-icon.plane {
  color: #2f6f8f;
  background: #e9f4f7;
}

.journey-icon.coffee {
  color: #8f4f54;
  background: #f8ece8;
}

.journey-icon.education {
  color: #54756b;
  background: #edf6ef;
}

.journey-icon.world {
  color: #516d9a;
  background: #edf2fb;
}

.journey-icon.military {
  color: #5d645f;
  background: #f0f2ee;
}

.journey-icon.crisis {
  color: #9b4f4f;
  background: #faeaea;
}

.journey-icon.rest {
  color: #6f8d83;
  background: #eef7f4;
}

.journey-card {
  width: min(100%, 360px);
  padding: 18px 18px 16px;
  border: 1px solid rgba(226, 224, 219, .9);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 42px rgba(27, 36, 40, .07);
}

.journey-tag {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.journey-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.18;
}

.journey-card p {
  margin: 9px 0 0;
  color: var(--soft-ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .timeline-shell {
    width: min(100% - 28px, 620px);
  }

  .timeline-hero {
    text-align: left;
  }

  .timeline-kicker::before {
    display: none;
  }

  .timeline-hero p {
    margin-left: 0;
  }

  .journey-timeline {
    gap: 14px;
  }

  .journey-timeline::before {
    left: 23px;
    transform: none;
  }

  .journey-item,
  .journey-item.is-left,
  .journey-item.is-right {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .journey-item.is-left .journey-node,
  .journey-item.is-right .journey-node {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .journey-item.is-left .journey-year,
  .journey-item.is-right .journey-year {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    text-align: left;
    padding-top: 2px;
  }

  .journey-item.is-left .journey-card,
  .journey-item.is-right .journey-card {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
  }

  .journey-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
}

/* Refine 14: posts archive pages */
.posts-page {
  width: min(1180px, calc(100% - 48px));
  padding: clamp(38px, 5vw, 62px) 0 clamp(58px, 7vw, 86px);
}

.posts-hero {
  position: relative;
  margin-bottom: 18px;
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(226, 224, 219, .88);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(247, 244, 236, .78)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(27, 36, 40, .06);
}

.posts-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--deep-green), var(--gold));
}

.posts-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.posts-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .58;
}

.posts-hero-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.posts-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.posts-hero p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--soft-ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.posts-hero-stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.posts-hero-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(24, 56, 51, .12);
  border-radius: 8px;
  color: var(--deep-green);
  background: rgba(255, 255, 255, .7);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.posts-page .category-slider-wrap {
  margin-top: 0;
  margin-bottom: 26px;
  padding: 10px;
  border: 1px solid rgba(226, 224, 219, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .52);
}

.posts-page .category-pill {
  min-height: 36px;
  padding: 8px 13px;
  font-size: 12px;
}

.posts-page .cat-scroll-btn {
  width: 36px;
  height: 36px;
}

.posts-page .blog-grid {
  margin-top: 0;
}

.posts-page .blog-featured,
.posts-page .blog-list-card,
.posts-page .post-card {
  border-color: rgba(226, 224, 219, .92);
  background: rgba(255, 255, 255, .76);
}

.posts-page .blog-featured:hover,
.posts-page .blog-list-card:hover,
.posts-page .post-card:hover {
  box-shadow: 0 18px 42px rgba(27, 36, 40, .09);
}

.posts-page .read-more {
  color: var(--deep-green);
}

.posts-page .empty {
  padding: 24px;
  border: 1px solid rgba(226, 224, 219, .86);
  border-radius: 8px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, .72);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
}

@media (max-width: 980px) {
  .posts-page {
    width: min(100% - 36px, 1180px);
  }

  .posts-hero-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .posts-hero-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .posts-page {
    width: min(100% - 24px, 1180px);
    padding-top: 28px;
  }

  .posts-hero {
    padding: 20px 18px;
  }

  .posts-hero h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .posts-page .category-slider-wrap {
    padding: 8px;
  }
}

/* Refine 15: contact page */
.contact-page-container {
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
}

.contact-hero {
  margin: 0;
  padding: clamp(42px, 5vw, 64px) 0 0;
}

.contact-hero .contact-page-container {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(226, 224, 219, .88);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(247, 244, 236, .78)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(27, 36, 40, .06);
}

.contact-hero .contact-page-container::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--deep-green), var(--gold));
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .58;
}

.contact-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.contact-hero p {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--soft-ink);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.contact-wrap {
  padding: 22px 0 clamp(58px, 7vw, 86px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.contact-info,
.contact-card {
  border: 1px solid rgba(226, 224, 219, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 42px rgba(27, 36, 40, .06);
}

.contact-info {
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.contact-info h3,
.contact-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-info-sub {
  margin: 0 0 6px;
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.info-row {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  min-height: 48px;
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.info-icon svg {
  width: 19px;
  height: 19px;
}

.info-label {
  margin-bottom: 3px;
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 11px;
  letter-spacing: .04em;
}

.info-value {
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.contact-card {
  padding: 22px;
}

.contact-card-head {
  margin-bottom: 18px;
}

.contact-card-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card .form {
  gap: 13px;
}

.contact-card .form-row.two {
  gap: 12px;
}

.contact-card .field {
  gap: 6px;
}

.contact-card label {
  color: var(--ink);
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.contact-card .field input,
.contact-card .field textarea,
.contact-card .form input,
.contact-card .form textarea {
  min-height: 46px;
  padding: 12px 13px;
  border-color: rgba(209, 204, 195, .94);
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.contact-card .field input:focus,
.contact-card .field textarea:focus,
.contact-card .form input:focus,
.contact-card .form textarea:focus {
  border-color: rgba(24, 56, 51, .46);
  box-shadow: 0 0 0 3px rgba(24, 56, 51, .08);
}

.contact-card .field textarea,
.contact-card .form textarea {
  min-height: 128px;
}

.contact-card .form button {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  border-radius: 8px;
  font-family: "Poppins", Aptos, Calibri, sans-serif;
}

.contact-card .form-success {
  display: grid;
  gap: 16px;
  padding: 18px;
}

@media (max-width: 840px) {
  .contact-page-container {
    width: min(100% - 36px, 980px);
  }

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

@media (max-width: 640px) {
  .contact-page-container {
    width: min(100% - 24px, 980px);
  }

  .contact-hero {
    padding-top: 28px;
  }

  .contact-hero .contact-page-container,
  .contact-info,
  .contact-card {
    padding: 18px;
  }

  .contact-hero h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

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

/* Refine 16: simplified footer */
.refined-footer {
  color: rgba(255, 255, 255, .76);
  background:
    linear-gradient(135deg, rgba(24, 56, 51, .99), rgba(47, 65, 61, .96)),
    var(--deep-green);
}

.refined-footer .footer-container {
  padding: clamp(30px, 4.6vw, 48px) 0 0;
}

.refined-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(140px, .45fr) minmax(260px, .9fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
}

.refined-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.refined-footer .brand-badge.small {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--deep-green);
  background: #ead3a7;
}

.refined-footer .brand-badge.small svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refined-footer .footer-title {
  color: #fff;
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1;
}

.refined-footer .footer-desc {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.footer-col-title {
  margin-bottom: 2px;
  color: #ead3a7;
  font-family: "Poppins", Aptos, Calibri, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.refined-footer .footer-links-col,
.refined-footer .footer-contact-col {
  display: grid;
  gap: 9px;
}

.refined-footer .footer-links-col a,
.refined-footer .footer-contact-item,
.refined-footer .footer-network-links a,
.refined-footer .admin-link {
  color: rgba(255, 255, 255, .72);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.25;
}

.refined-footer .footer-links-col a:hover,
.refined-footer .footer-contact-item:hover,
.refined-footer .footer-network-links a:hover,
.refined-footer .admin-link:hover {
  color: #fff;
}

.refined-footer .footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
}

.refined-footer .footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #ead3a7;
}

.refined-footer .footer-network-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.refined-footer .footer-network-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(234, 211, 167, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.refined-footer .footer-network-links a:hover {
  border-color: rgba(234, 211, 167, .34);
  background: rgba(255, 255, 255, .08);
}

.refined-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin-top: clamp(24px, 4vw, 38px);
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.refined-footer .footer-bottom-left,
.refined-footer .footer-bottom-right {
  color: rgba(255, 255, 255, .56);
  font-family: Aptos, Calibri, "Segoe UI", sans-serif;
  font-size: 13px;
}

.refined-footer .footer-bottom-right {
  justify-self: end;
}

.refined-footer .admin-link {
  color: rgba(255, 255, 255, .44);
  font-size: 13px;
}

.refined-footer .footer-socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.refined-footer .footer-socials .social {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #ead3a7;
}

.refined-footer .footer-social-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refined-footer .footer-socials .social:hover {
  color: #fff;
}

.refined-footer .footer-socials .social:nth-child(4) path:last-child {
  fill: currentColor;
  stroke: none;
}

.refined-footer .footer-mini-divider,
.refined-footer .footer-social-divider {
  display: none;
}

@media (max-width: 900px) {
  .refined-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .refined-footer .footer-container {
    width: min(100% - 30px, 1180px);
  }

  .refined-footer .footer-inner,
  .refined-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .refined-footer .footer-bottom {
    gap: 12px;
    padding-bottom: 86px;
  }

  .refined-footer .footer-socials,
  .refined-footer .footer-bottom-right {
    justify-self: start;
  }
}

/* Refine 11: compact two-level header */
.header-shell {
  grid-template-columns: 132px minmax(0, 1fr) minmax(210px, 250px) auto;
  grid-template-rows: 42px 78px;
  grid-template-areas:
    "brand top top top"
    "brand nav search hamburger"
    "mobile mobile mobile mobile";
  align-items: stretch;
  gap: 0 clamp(18px, 3.2vw, 36px);
  min-height: 128px;
  padding: 4px 0;
}

.header-top {
  grid-area: top;
  grid-template-columns: minmax(120px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  min-height: 0;
  padding-left: 16px;
  border-bottom: 1px solid rgba(234, 211, 167, .22);
}

.header-mid {
  display: none;
}

.brand {
  grid-area: brand;
  align-self: stretch;
  justify-self: start;
  align-items: stretch;
  justify-content: center;
  width: 132px;
  margin-right: 0;
}

.logo-svg {
  width: 120px;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 18px;
}

.weather-widget {
  align-self: center;
}

.header-socials {
  align-self: center;
  justify-self: end;
}

.nav {
  align-self: end;
  padding-bottom: 8px;
}

.search-form {
  align-self: end;
  width: min(230px, 100%);
  height: 40px;
  margin-bottom: 4px;
}

.hamburger {
  align-self: end;
  margin-bottom: 4px;
}

.mobile-search-form {
  display: none;
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: 104px 1fr auto;
    grid-template-rows: 36px 68px;
    grid-template-areas:
      "brand top top"
      "brand nav hamburger"
      "mobile mobile mobile";
    min-height: 112px;
    gap: 0 14px;
  }

  .brand {
    width: 104px;
  }

  .logo-svg {
    width: 98px;
    min-height: 104px;
  }

  .header-top {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-left: 12px;
  }

  .header-top > div:first-child {
    display: none;
  }

  .search-form {
    display: none;
  }

  .mobile-nav {
    margin-top: 10px;
  }

  .mobile-search-form {
    display: flex;
    align-items: center;
    height: 40px;
    margin-top: 8px;
    padding: 0 7px 0 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
  }

  .mobile-search-form input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
  }
}

@media (max-width: 640px) {
  .header-shell {
    width: min(100% - 24px, 1180px);
    grid-template-columns: 92px 1fr auto;
    grid-template-rows: 34px 62px;
    grid-template-areas:
      "brand top top"
      "brand nav hamburger"
      "mobile mobile mobile";
    min-height: 104px;
  }

  .brand {
    width: 92px;
  }

  .logo-svg {
    width: 88px;
    height: 100%;
    min-height: 96px;
  }

  .weather-widget {
    font-size: 11px;
    gap: 6px;
  }

  .header-socials {
    gap: 9px;
  }

  .social-link,
  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Theme update: header/footer palette */
.site-header,
.site-header.scrolled {
  background: #052a4c;
  border-bottom-color: rgba(255, 255, 255, .14);
}

.site-footer,
.refined-footer {
  background: #052a4c;
}

.nav,
.nav a,
.mobile-nav a,
.refined-footer .footer-links-col a {
  color: #ffffff;
  font-family: "Poppins", Aptos, Calibri, sans-serif;
}

.nav a:hover,
.nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active,
.refined-footer .footer-links-col a:hover {
  color: #ead3a7;
}

.mobile-nav,
.mobile-nav.active {
  background: #052a4c;
}

.logo-svg {
  background: transparent;
  box-shadow: none;
}

.story-container {
  min-height: auto;
}

.story-image-wrapper {
  width: min(480px, 50%);
  margin-left: auto;
  margin-right: 0;
}

.story-image {
  width: 100%;
  min-height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-text {
  width: min(500px, 50%);
}

@media (max-width: 760px) {
  .story-image-wrapper {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .story-text {
    width: 100%;
  }
}

.brand {
  transform: translateX(-12px);
}

@media (max-width: 640px) {
  .brand {
    transform: translateX(0);
  }
}