/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: 58px;
  display: grid; grid-template-rows: 1fr auto;
  background: var(--deep);
  position: relative; overflow: hidden;
}

/* Layered radial atmosphere */
.hero-atm {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(61,110,104,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(61,110,104,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 90%, rgba(37,72,67,0.3) 0%, transparent 65%);
}

/* Decorative rings */
.hero-rings {
  position: absolute; top: 50%; right: 6%;
  transform: translateY(-50%);
  width: 440px; height: 440px;
  pointer-events: none;
}
.hero-rings span {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hero-rings span:nth-child(1) { width: 100%; height: 100%; }
.hero-rings span:nth-child(2) { width: 74%; height: 74%; border-color: rgba(var(--accent3-rgb), 0.08); }
.hero-rings span:nth-child(3) { width: 48%; height: 48%; border-color: rgba(255,255,255,0.06); }

/* Photo — soft-edged, not split screen */
.hero-photo {
  position: absolute; right: 0; top: 58px; bottom: 52px;
  width: 40%;
  overflow: hidden;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(18, 59, 54, 0.72) 0%,
    rgba(18, 59, 54, 0.46) 32%,
    rgba(18, 59, 54, 0.18) 58%,
    rgba(18, 59, 54, 0.04) 78%,
    rgba(18, 59, 54, 0) 100%
  );
}

.hero-photo::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--deep) 0%,
    rgba(24, 48, 45, 0.76) 22%,
    rgba(24, 48, 45, 0.32) 58%,
    rgba(24, 48, 45, 0) 100%
  );
}

/* Content */
.hero-content {
  position: relative; z-index: 2;
  padding: 72px 88px 64px;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: 68%;
}

.hero-label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.hero-label-rule { width: 36px; height: 1px; background: var(--accent3); }
.hero-label h1 {
  font-size: 9.5px; font-weight: 300; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.46);
  margin: 0;
}

.hero-h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(62px, 7.5vw, 108px);
  font-weight: 300; line-height: 1.01;
  color: var(--parchment);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.hero-h1 em {
  font-style: italic; font-weight: 300;
  color: var(--accent3);
}
.hero-h1 .muted {
  display: block;
  font-size: 0.62em; font-weight: 300;
  color: rgba(246,241,233,0.25); font-style: italic;
  margin-top: 6px;
}

.hero-desc {
  font-size: 15px; font-weight: 200; line-height: 2;
  color: rgba(246,241,233,0.42); max-width: 480px;
  margin-bottom: 52px; letter-spacing: 0.01em;
}

.hero-btns {
  display: flex; align-items: center; gap: 36px;
}
.btn-primary {
  position: relative; overflow: hidden;
  background: var(--accent3); color: #fff;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 17px 48px;
  text-decoration: none; cursor: none;
  transition: transform 0.3s var(--transition);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--deep);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--transition);
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); }
.btn-primary:hover::before { transform: scaleY(1); }

/* Ticker */
.hero-ticker {
  position: relative; z-index: 2;
  height: 50px; overflow: hidden;
  display: flex; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.018);
}
.hero-ticker::before,
.hero-ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0; z-index: 2;
  width: 78px; pointer-events: none;
}
.hero-ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(24,48,45,0.98) 0%, rgba(24,48,45,0.72) 42%, transparent 100%);
}
.hero-ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(24,48,45,0.98) 0%, rgba(24,48,45,0.72) 42%, transparent 100%);
}
.hero-ticker:focus-visible {
  outline: 1px solid rgba(var(--accent3-rgb), 0.28);
  outline-offset: -1px;
}
.ticker-track {
  position: relative; z-index: 1;
  display: flex; white-space: nowrap;
  animation: ticker 75s linear infinite;
  will-change: transform;
}
.hero-ticker:hover .ticker-track,
.hero-ticker:focus .ticker-track,
.hero-ticker:focus-within .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.t-item {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 0 20px;
  font-size: 9px; font-weight: 300; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(255,255,255,0.18);
}
.t-gem { color: var(--accent3); opacity: 0.5; font-size: 8px; }

@media (prefers-reduced-motion: reduce) {
  .hero-ticker {
    height: auto;
    min-height: 50px;
    padding: 10px 0;
  }
  .hero-ticker::before,
  .hero-ticker::after { display: none; }
  .ticker-track {
    animation: none;
    transform: none;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
    padding: 0 24px;
  }
  .t-item { padding: 0 12px; }
}

/* ─────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--parchment2);
  border-bottom: 1px solid var(--parchment3);
}
.stat-cell {
  padding: 44px 40px;
  border-right: 1px solid var(--parchment3);
  position: relative; overflow: hidden;
  transition: background 0.35s;
  cursor: none;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--parchment3); }
.stat-bar {
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent3);
  transition: width 0.5s var(--transition);
}
.stat-cell:hover .stat-bar { width: 100%; }
.stat-n {
  font-family: 'Cormorant', serif;
  font-size: 52px; font-weight: 300; color: var(--deep);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-l {
  font-size: 10.5px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lt);
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  padding: clamp(34px, 5vw, 58px) clamp(46px, 6vw, 78px) clamp(46px, 6vw, 78px);
  background:
    radial-gradient(circle at 14% 16%, rgba(61,110,104,0.08) 0%, transparent 30%),
    linear-gradient(180deg, rgba(246,241,233,0.98) 0%, rgba(241,233,221,0.98) 100%);
  border-top: 1px solid rgba(24,48,45,0.07);
  border-bottom: 1px solid rgba(24,48,45,0.07);
}

.about-side {
  display: flex;
  justify-content: flex-end;
}

.about-media {
  width: min(100%, 390px);
  display: flex; flex-direction: column;
  gap: 0;
}

.about-img {
  position: relative; overflow: hidden; min-height: 380px;
  background: linear-gradient(145deg, #ebe2d4 0%, #b8cac4 42%, #335955 100%);
  border: 0.7px solid rgba(24,48,45,0.08);
  box-shadow:
    inset 0 1px 0 rgba(247,241,231,0.08),
    0 10px 20px rgba(12,24,23,0.06);
}

.about-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  filter: saturate(0.84) contrast(1.02) sepia(0.06) brightness(1.01);
}

.about-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(247,241,231,0.08) 0%, rgba(247,241,231,0.03) 34%, rgba(10,20,18,0) 46%, rgba(10,20,18,0.64) 100%),
    linear-gradient(132deg, rgba(51,89,85,0.12) 0%, rgba(51,89,85,0) 42%),
    radial-gradient(circle at 78% 16%, rgba(247,241,231,0.18) 0%, transparent 24%);
}

.about-badge {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  margin: 0;
  padding: 12px 20px 12px 18px;
  border-radius: 0;
  border-left: 1px solid rgba(var(--accent3-rgb), 0.9);
  border-top: 0.7px solid rgba(247,241,231,0.05);
  background: linear-gradient(180deg, rgba(29,55,52,0.9) 0%, rgba(22,43,41,0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(247,241,231,0.035);
}

.ab-name {
  font-family: 'Cormorant', serif;
  font-size: 18px; font-weight: 500; color: var(--parchment);
  margin-bottom: 0;
}

.ab-role {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(246,241,233,0.74);
  white-space: nowrap;
}

.about-facts {
  display: block;
  width: 100%;
  margin-top: 16px;
}

.about-trait {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.065em;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(24,48,45,0.58);
}

.about-text {
  background: transparent;
  padding: 0;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-drop-letter {
  position: absolute; top: -18px; right: 18px;
  font-family: 'Cormorant', serif;
  font-size: clamp(140px, 14vw, 220px); font-weight: 600; font-style: italic;
  color: rgba(24,48,45,0.034);
  line-height: 1; user-select: none; pointer-events: none;
}

.section-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.section-label-rule { width: 30px; height: 1px; background: var(--accent3); }
.section-label span {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent3);
}

.about-text .section-label { margin-bottom: 20px; }

.about-text .section-label span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(var(--accent3-rgb), 0.92);
}

.about-text h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 300; line-height: 1.15; color: var(--ink);
  margin-bottom: 20px;
  max-width: 10.5em;
}
.about-text h2 em { font-style: italic; color: var(--deep2); font-weight: 400; }
.about-text p {
  max-width: 62ch;
  font-size: 17px; font-weight: 300; color: var(--mid);
  line-height: 1.75; margin-bottom: 14px;
}
.about-text p em {
  font-style: italic;
  color: var(--deep2);
}
.about-pull {
  max-width: none;
  font-family: 'Cormorant', serif;
  font-size: 15.5px; font-style: italic; font-weight: 600;
  color: var(--deep); line-height: 1.64;
  padding: 18px 22px 18px 18px; margin: 22px 0;
  border-left: 2px solid var(--accent3);
  background: transparent;
}
.about-pull-text {
  display: block;
  white-space: nowrap;
}
.about-pull-sign {
  display: block;
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-style: normal; font-weight: 530;
  letter-spacing: 0.09em;
  color: rgba(24,48,45,0.72);
}
.read-more {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  margin-top: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(24,48,45,0.9);
  cursor: none;
  padding-bottom: 3px;
}
.read-more:hover,
.read-more:focus-visible {
  color: var(--accent3);
}

/* ─────────────────────────────────────────
   SERVICES — accordion
───────────────────────────────────────── */
.services { background: var(--parchment2); padding: 100px 0; }

.svc-hd {
  padding: 0 88px; margin-bottom: 64px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.svc-hd h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 300; line-height: 1.08;
}
.svc-hd h2 em { font-style: italic; color: var(--accent3); font-weight: 400; }
.svc-hd p {
  font-size: 13.5px; font-weight: 200; color: var(--mid);
  max-width: 260px; line-height: 1.85; text-align: right;
}

.svc-list { border-top: 1px solid var(--parchment3); }

.svc-row {
  border-bottom: 1px solid var(--parchment3);
  overflow: hidden; cursor: none;
}
.svc-head {
  display: grid;
  grid-template-columns: 88px 1fr auto 100px;
  align-items: center; gap: 24px;
  padding: 28px 88px;
  transition: background 0.4s var(--transition);
  position: relative;
}
/* Copper strip on left */
.svc-head::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent3);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--transition);
}
.svc-row:hover .svc-head { background: var(--deep); }
.svc-row:hover .svc-head::before { transform: scaleY(1); }

.svc-num {
  font-family: 'Cormorant', serif;
  font-size: 13px; font-weight: 400;
  color: var(--lt); letter-spacing: 0.08em;
  transition: color 0.3s;
}
.svc-row:hover .svc-num { color: rgba(246,241,233,0.2); }

.svc-name {
  font-family: 'Cormorant', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400; color: var(--ink);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}
.svc-row:hover .svc-name { color: var(--parchment); }

.svc-pill {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent3); background: rgba(var(--accent3-rgb), 0.1);
  padding: 5px 14px; white-space: nowrap;
  border: 1px solid rgba(var(--accent3-rgb), 0.18);
  transition: background 0.3s, border-color 0.3s;
}
.svc-row:hover .svc-pill {
  background: rgba(var(--accent3-rgb), 0.18); border-color: rgba(var(--accent3-rgb), 0.3);
}

.svc-plus {
  justify-self: end;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(24,48,45,0.15); border-radius: 50%;
  font-size: 18px; font-weight: 200; color: var(--mid);
  transition: all 0.35s var(--transition);
}
.svc-row:hover .svc-plus { border-color: rgba(246,241,233,0.15); color: rgba(246,241,233,0.5); }
.svc-row.open .svc-plus { transform: rotate(45deg); background: var(--accent3); border-color: var(--accent3); color: #fff; }

.svc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--deep);
}
.svc-row.open .svc-body { max-height: 280px; }

.svc-body-inner {
  display: grid; grid-template-columns: 88px 1fr 1fr;
  gap: 32px; padding: 36px 88px 48px;
}
.svc-body-inner p {
  font-size: 13.5px; font-weight: 200;
  color: rgba(246,241,233,0.58); line-height: 1.9;
}
.svc-body-inner a {
  margin-top: 20px;
  padding-bottom: 2px;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent3); cursor: none;
}
.svc-body-inner a:hover,
.svc-body-inner a:focus-visible {
  color: var(--parchment);
}

.svc-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc-features li {
  font-size: 12.5px; font-weight: 300;
  color: rgba(246,241,233,0.44);
  padding-left: 20px; position: relative;
  letter-spacing: 0.02em;
}
.svc-features li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent3); opacity: 0.8;
}

/* ─────────────────────────────────────────
   EVENTS — dark diagonal
───────────────────────────────────────── */
.events {
  background: var(--deep);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 160px 88px;
  margin-top: -40px;
}
.blog-home {
  background: var(--parchment);
  margin-top: 0;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}
.blog-home .events-headline {
  color: var(--ink);
}
.blog-home .see-all {
  color: rgba(24,48,45,0.78);
  font-weight: 400;
}
.blog-home .see-all:hover {
  color: var(--accent3);
}
.blog-home .ev {
  background: var(--deep);
}
.blog-home .ev:hover {
  background: var(--deep2);
}
.events-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px;
}
.events-headline {
  font-family: 'Cormorant', serif;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.08;
}
.see-all {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(246,241,233,0.28); cursor: none;
}
.see-all:hover {
  color: var(--accent3);
}

.events-mosaic {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.ev {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.03);
  overflow: hidden; cursor: none; position: relative;
  transition: background 0.35s;
}
.ev:hover { background: rgba(255,255,255,0.06); }
.ev:first-child { grid-row: span 2; }

.ev-img {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: rgba(255,255,255,0.1);
}
.ev-img--photo {
  background: #10221f;
}
.ev-cover-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--transition), filter 0.3s ease;
}
.ev:hover .ev-cover-photo {
  transform: scale(1.04);
  filter: saturate(1.03);
}
.ev:first-child .ev-img { height: 330px; }
.ev:not(:first-child) .ev-img { height: 190px; }

.events-mosaic[data-home-training-feed] .ev:first-child .ev-img {
  height: 530px;
  background: transparent;
}

.events-mosaic[data-home-training-feed] .ev:first-child {
  background: transparent;
}

.events-mosaic[data-home-training-feed] .ev:first-child:hover {
  background: transparent;
}

.events-mosaic[data-home-training-feed] .ev:first-child .ev-cover-photo {
  object-fit: contain;
}

.events-mosaic[data-home-training-feed] .ev:first-child:hover .ev-cover-photo {
  transform: none;
  filter: none;
}

/* Homepage articles feed pattern:
   1 featured (latest) + 2 medium + 2 compact cards. */
.events-mosaic[data-home-article-feed] {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: row dense;
}

.events-mosaic[data-home-article-feed].events-mosaic--single {
  grid-template-columns: minmax(0, 640px);
}

.events-mosaic[data-home-article-feed].events-mosaic--triple {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.62fr) minmax(0, 0.62fr);
  grid-template-rows: auto auto;
  gap: 10px;
}

.events-mosaic[data-home-article-feed] .ev {
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.events-mosaic[data-home-article-feed] .ev:first-child {
  grid-row: auto;
}

.events-mosaic[data-home-article-feed] .ev--article-featured {
  grid-column: span 7;
  grid-row: span 2;
}

.events-mosaic[data-home-article-feed].events-mosaic--single .ev--article-featured {
  grid-column: 1;
  grid-row: auto;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-featured {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.events-mosaic[data-home-article-feed] .ev--article-medium {
  grid-column: span 5;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium {
  grid-column: auto;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple > .ev--article-medium:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple > .ev--article-medium:nth-of-type(3) {
  grid-column: 3;
  grid-row: 1;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple > .ev--article-small:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple > .ev--article-small:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
}

.events-mosaic[data-home-article-feed] .ev--article-small {
  grid-column: span 3;
}

.events-mosaic[data-home-article-feed] .ev-img,
.events-mosaic[data-home-article-feed] .ev--article-featured .ev-img,
.events-mosaic[data-home-article-feed] .ev--article-medium .ev-img,
.events-mosaic[data-home-article-feed] .ev--article-small .ev-img {
  height: auto;
  background: transparent;
}

.events-mosaic[data-home-article-feed] .ev-cover-photo {
  object-fit: contain;
}

.events-mosaic[data-home-article-feed] .ev:hover .ev-cover-photo {
  transform: none;
  filter: none;
}

.events-mosaic[data-home-article-feed] .ev:hover {
  background: var(--deep2);
  border-color: rgba(var(--accent3-rgb), 0.32);
  box-shadow: 0 18px 34px rgba(15, 28, 26, 0.16);
}

.events-mosaic[data-home-article-feed] .ev:hover .ev-title {
  color: rgba(246, 241, 233, 0.98);
}

.events-mosaic[data-home-article-feed] .ev:hover .ev-date {
  color: rgba(var(--accent3-rgb), 0.96);
}

.events-mosaic[data-home-article-feed] .ev:hover .ev-place {
  color: rgba(246, 241, 233, 0.42);
}

.events-mosaic[data-home-article-feed] .ev-body {
  padding: 28px 30px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev-body {
  padding: 18px 20px;
}

.events-mosaic[data-home-article-feed] .ev:first-child .ev-title {
  font-size: 28px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev:first-child .ev-title {
  font-size: 21px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-img {
  aspect-ratio: 1.78 / 1;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-body {
  padding: 14px 15px 16px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-meta {
  gap: 8px;
  margin-bottom: 8px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-date,
.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-place {
  font-size: 8px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-title {
  font-size: 14px;
  line-height: 1.24;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-img {
  aspect-ratio: 2.4 / 1;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-body {
  padding: 12px 14px 14px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-meta {
  gap: 8px;
  margin-bottom: 8px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-date,
.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-place {
  font-size: 8px;
}

.events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-title {
  font-size: 12px;
  line-height: 1.28;
}

.events-mosaic[data-home-article-feed].events-mosaic--single .ev-body {
  padding: 20px 22px;
}

.events-mosaic[data-home-article-feed].events-mosaic--single .ev:first-child .ev-title {
  font-size: 21px;
}
.ev-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,24,22,0.92) 0%, transparent 55%);
}
.ev-flag {
  position: absolute; top: 20px; left: 20px;
  background: var(--accent3); color: #fff;
  font-size: 8.5px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 5px 12px;
}
.ev-body { padding: 26px 32px; }
.ev-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ev-date {
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent3);
}
.ev-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.ev-place {
  font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(246,241,233,0.25);
}
.ev-title {
  font-family: 'Cormorant', serif;
  font-size: 19px; font-weight: 400; color: var(--parchment);
  line-height: 1.3;
}
.ev:first-child .ev-title { font-size: 26px; }

/* Text-only event cards (no image) */
.ev.text-ev .ev-body { padding: 32px; }

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: var(--parchment2);
  padding: 120px 88px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
/* Concentric rings bg */
.cta-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%; border: 1px solid rgba(24,48,45,0.05);
  pointer-events: none;
}
.cta-ring:nth-child(1) { width: 700px; height: 700px; }
.cta-ring:nth-child(2) { width: 480px; height: 480px; border-color: rgba(var(--accent3-rgb), 0.07); }
.cta-ring:nth-child(3) { width: 280px; height: 280px; }

.cta-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--accent3);
}
.cta-eyebrow span { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent3); }

.cta-band h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 300; line-height: 1.08; color: var(--ink);
  margin-bottom: 20px; position: relative; z-index: 1;
  max-width: 760px;
}
.cta-band h2 em { font-style: italic; color: var(--deep); font-weight: 400; }
.cta-band p {
  font-size: 14.5px; font-weight: 200; color: var(--mid);
  margin-bottom: 52px; position: relative; z-index: 1;
}
.btn-cta {
  position: relative; z-index: 1; overflow: hidden;
  background: var(--deep); color: var(--parchment);
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 23px 64px;
  text-decoration: none; cursor: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 22px rgba(24,48,45,0.08);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn-cta span { position: relative; z-index: 1; }
.btn-cta:hover {
  background: #21413d;
  color: rgba(246,241,233,0.98);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 24px rgba(24,48,45,0.1);
}
.btn-cta:hover::before { opacity: 1; }

.cta-band-micro {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(24,48,45,0.56);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: color 0.22s ease, background-size 0.22s ease;
  cursor: none;
}
.cta-band-micro:hover {
  color: var(--deep);
  background-size: 100% 1px;
}

/* ─────────────────────────────────────────
   BOOKS
───────────────────────────────────────── */
.books { background: var(--ink); padding: 100px 88px; }
.books-hd {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.books-hd h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(34px, 3.5vw, 52px); font-weight: 300;
  color: var(--parchment); line-height: 1.08;
}
.books-hd h2 em { font-style: italic; color: var(--accent3); font-weight: 400; }
.books-link {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(246,241,233,0.22); cursor: none;
}
.books-link:hover {
  color: var(--accent3);
}

.shelf-wrap { position: relative; }
.shelf {
  display: flex; gap: 28px; align-items: flex-start;
  overflow-x: hidden; overflow-y: hidden;
  padding: 14px 56px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: none;
}
.shelf::-webkit-scrollbar { display: none; }

.bk { flex: 0 0 182px; transition: transform 0.35s var(--transition); }
.bk:hover { transform: translateY(-10px); }
.bk-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.bk-cover {
  height: 272px; margin-bottom: 18px;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 4px 0 12px rgba(0,0,0,0.35);
}
.bk-cover--image { height: auto; background: #111917; }
.bk-cover--image img {
  display: block;
  width: 100%;
  height: auto;
}
.bk-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.06) 0%, transparent 15%, rgba(0,0,0,0.25) 100%);
}
.bk-name {
  font-size: 13px; font-weight: 300; color: rgba(246,241,233,0.65);
  margin-bottom: 4px; line-height: 1.35;
  transition: color 0.25s ease;
}
.bk-yr { font-size: 10px; color: rgba(246,241,233,0.2); letter-spacing: 0.1em; }
.bk-link:hover .bk-name {
  color: rgba(246,241,233,0.88);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact { background: var(--parchment); }

.contact-top {
  background: var(--deep2);
  padding: 80px 88px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: start;
}
.ct-text h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(38px, 4vw, 58px); font-weight: 300;
  color: var(--parchment); line-height: 1.08; margin-bottom: 18px;
}
.ct-text h2 em { font-style: italic; color: var(--accent3); font-weight: 400; }
.ct-text p {
  font-size: 14.5px; font-weight: 200;
  color: rgba(246,241,233,0.62); line-height: 1.9;
}
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  align-self: start;
  grid-auto-rows: 1fr;
  margin-top: 44px;
  background: transparent;
}
.ci {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 28px;
  background: rgba(255,255,255,0.045);
  border: 0.6px solid rgba(255,255,255,0.055);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.055),
    inset 0 -1px 0 rgba(255,255,255,0.015),
    0 10px 22px rgba(6,14,13,0.05);
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.ci:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.065),
    inset 0 -1px 0 rgba(255,255,255,0.02),
    0 12px 24px rgba(6,14,13,0.06);
}
.ci-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  color: var(--accent3);
}
.ci-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}
.ci-lbl {
  font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(246,241,233,0.36); margin-bottom: 6px;
}
.ci-val {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(246,241,233,0.78);
}
.ci-val a {
  display: inline-block;
  color: rgba(246,241,233,0.9);
  font-weight: 400;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: color 0.22s ease, background-size 0.22s ease;
}
.ci-val a[href^="tel:"] {
  white-space: nowrap;
}
.ci-val a:hover {
  color: rgba(246,241,233,0.98);
  background-size: 100% 1px;
}

.contact-form-zone {
  padding: 80px 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid var(--accent3);
  background: var(--parchment);
  text-align: center;
}
.contact-mail-cta {
  max-width: 760px;
}
.contact-mail-cta h3 {
  font-family: 'Cormorant', serif;
  font-size: 28px; font-weight: 400; color: var(--ink);
  margin-bottom: 14px; line-height: 1.3;
}
.contact-mail-cta p {
  font-size: 13.5px; font-weight: 200;
  color: var(--mid); line-height: 1.9;
  margin: 0 auto 28px;
  max-width: 520px;
}
.btn-send {
  display: inline-flex; align-items: center; gap: 14px;
  position: relative; overflow: hidden;
  background: var(--deep); color: var(--parchment);
  font-family: 'Jost', sans-serif;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 18px 52px;
  border: none; cursor: none;
  text-decoration: none;
  transition: transform 0.3s var(--transition);
}
.btn-send::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent3); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.btn-send span, .btn-send svg { position: relative; z-index: 1; }
.btn-send:hover { transform: translateY(-2px); }
.btn-send:hover::before { transform: scaleX(1); }

.hero-desc--single-line,
.services-intro {
  max-width: none;
  white-space: nowrap;
}

.section-label--services {
  margin-bottom: 16px;
}

.section-label--compact {
  margin-bottom: 14px;
}

.section-label--contact {
  margin-bottom: 28px;
}

.ev-img--blog-featured {
  background: linear-gradient(145deg, #3f615b, #182e2b);
}

.ev-img--blog-secondary {
  background: linear-gradient(145deg, #3a514d, #1a2927);
}

.ev-img--blog-tertiary {
  background: linear-gradient(145deg, #59473c, #261d18);
}

.ev--surface-deep {
  background: rgba(24, 48, 45, 0.96);
}

.stat-n {
  font-variant-numeric: tabular-nums;
}

.hero-btns .btn-primary,
.btn-cta {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-h1 {
  width: fit-content;
  max-width: 100%;
}

.hero-label {
  position: relative;
  top: -35px;
  margin-top: 0;
  margin-bottom: 40px;
}

.hero-midline,
.hero-endline {
  display: flex;
  width: 100%;
  align-items: baseline;
}

.hero-midline {
  justify-content: center;
}

.hero-endline {
  justify-content: flex-end;
  gap: 0;
  padding-right: 0;
  margin-top: 0.02em;
  transform: translateX(0.62em);
}

.hero-midline,
.hero-end-prefix {
  font-size: 0.62em;
  font-weight: 300;
  color: var(--parchment);
}

.hero-h1 .hero-end-accent {
  display: inline;
  margin-top: 0;
  color: var(--parchment);
  font-weight: 500;
  font-style: normal;
}

.hero-desc {
  max-width: 560px;
  width: fit-content;
  margin-bottom: 52px;
  margin-left: 0.12em;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  letter-spacing: 0.012em;
  color: rgba(246, 241, 233, 0.68);
  text-wrap: pretty;
}

.hero-btns .btn-primary {
  background: var(--cta-primary-bg);
  color: var(--parchment);
  border: 1px solid rgba(var(--accent3-rgb), 0.42);
  padding: 15px 44px;
  letter-spacing: 0.1em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 9px 18px rgba(15, 28, 26, 0.16);
  backdrop-filter: none;
}

.hero-btns .btn-primary::before {
  background: rgba(15, 28, 26, 0.12);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-btns .btn-primary:hover {
  color: var(--parchment);
  border-color: rgba(var(--accent3-rgb), 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 11px 21px rgba(15, 28, 26, 0.2);
}

.hero-btns .btn-primary:hover::before {
  transform: scaleX(1);
}

.hero-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 21%;
  background: none;
  filter: none;
}
.contact-map-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.contact-map-shell {
  width: min(100%, 920px);
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-map-note {
  text-align: center;
  margin-bottom: 18px;
}

.contact-map-label {
  margin-bottom: 10px;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,241,233,0.28);
}

.contact-map-note p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 13.5px;
  font-weight: 200;
  line-height: 1.8;
  color: rgba(246,241,233,0.56);
}

.contact-map-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.map-load-btn,
.map-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-family: 'Jost', sans-serif;
  font-size: 10.75px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  cursor: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, background-size 0.22s ease;
}

.map-load-btn {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246,241,233,0.62);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 0.75px;
}

.map-load-btn:hover {
  color: rgba(246,241,233,0.84);
  background-size: 100% 0.75px;
}

.map-open-link {
  min-height: auto;
  padding: 13px 26px;
  border: 0.8px solid rgba(246,241,233,0.18);
  background: rgba(255,255,255,0.02);
  color: rgba(246,241,233,0.86);
}

.map-open-link:hover {
  color: rgba(246,241,233,0.98);
  border-color: rgba(246,241,233,0.28);
  background: rgba(255,255,255,0.035);
}

.map-load-btn:focus-visible,
.map-open-link:focus-visible {
  outline: 1px solid rgba(var(--accent3-rgb), 0.38);
  outline-offset: 3px;
}

.map-load-btn:focus-visible {
  color: rgba(246,241,233,0.9);
  background-size: 100% 0.75px;
}

.map-open-link:focus-visible {
  color: rgba(246,241,233,0.98);
  border-color: rgba(246,241,233,0.3);
  background: rgba(255,255,255,0.05);
}

.contact-map-frame {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,20,18,0.22);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}


@media (max-width: 960px) {
  body::before {
    display: none;
  }

  .stats-strip {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-rings {
    display: none;
  }

  .hero-atm {
    background:
      radial-gradient(ellipse 78% 72% at 18% 26%, rgba(61, 110, 104, 0.18) 0%, transparent 74%),
      radial-gradient(ellipse 56% 48% at 78% 10%, rgba(37, 72, 67, 0.2) 0%, transparent 62%);
  }

  .hero-photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: clamp(300px, 68vw, 440px);
  }

  .hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(18, 59, 54, 0.72) 0%,
      rgba(18, 59, 54, 0.46) 32%,
      rgba(18, 59, 54, 0.18) 58%,
      rgba(18, 59, 54, 0.04) 78%,
      rgba(18, 59, 54, 0) 100%
    );
  }

  .hero-photo::after {
    content: none;
  }

  .hero-photo-img {
    object-position: 52% 18%;
  }

  .hero-content {
    max-width: none;
    width: 100%;
    padding: 34px 22px 32px;
    justify-content: flex-start;
  }

  .hero-label,
  .hero-h1,
  .hero-desc,
  .hero-btns {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-label {
    top: 0;
    margin-bottom: 24px;
  }

  .hero-label h1 {
    font-size: 8.5px;
    letter-spacing: 0.22em;
  }

  .hero-h1 {
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    width: 100%;
    font-size: clamp(42px, 10.5vw, 70px);
    line-height: 1.02;
    margin-bottom: 24px;
  }

  .hero-h1 em,
  .hero-h1 .muted {
    font-style: normal;
  }

  .hero-midline,
  .hero-endline {
    width: auto;
    justify-content: flex-start;
  }

  .hero-endline {
    transform: none;
    margin-top: 0.1em;
  }
  .about {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 34px 22px;
  }

  .about-side {
    justify-content: center;
  }

  .about-media {
    width: 100%;
    max-width: none;
  }

  .about-img {
    min-height: 320px;
  }

  .about-badge {
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px 12px 12px;
  }

  .ab-name {
    font-size: 17px;
  }

  .about-facts {
    display: none;
  }

  .about-trait {
    font-size: 12px;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .about-text {
    padding: 0;
    border-radius: 0;
  }

  .about-drop-letter {
    top: -10px;
    right: 10px;
    font-size: 110px;
  }

  .about-text h2 {
    max-width: none;
    font-size: 32px;
  }

  .about-pull {
    padding: 16px 16px 16px 14px;
    margin: 20px 0;
  }

  .about-pull-text {
    white-space: normal;
  }

  .about-pull-sign {
    font-size: 9.5px;
  }

  .services {
    padding: 72px 0;
  }

  .svc-hd {
    padding: 0 22px;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .svc-hd p {
    max-width: none;
    text-align: left;
  }

  .svc-head {
    grid-template-columns: 42px minmax(0, 1fr) 32px;
    grid-template-areas:
      "num name plus"
      ". pill plus";
    gap: 8px 12px;
    padding: 22px;
    align-items: start;
  }

  .svc-num {
    grid-area: num;
    font-size: 11px;
    padding-top: 6px;
  }

  .svc-name {
    grid-area: name;
    font-size: clamp(20px, 5.6vw, 28px);
  }

  .svc-pill {
    grid-area: pill;
    justify-self: start;
  }

  .svc-plus {
    grid-area: plus;
    width: 28px;
    height: 28px;
    margin-top: 2px;
  }

  .svc-row.open .svc-body {
    max-height: 960px;
  }

  .svc-body-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 22px 22px 28px;
  }

  .svc-body-inner > div:first-child {
    display: none;
  }

  .svc-body-inner p {
    font-size: 13px;
  }

  .svc-features {
    gap: 8px;
  }

  .svc-features li {
    font-size: 12px;
  }

  .events,
  .blog-home {
    clip-path: none;
  }

  .events {
    padding: 88px 22px;
    margin-top: 0;
  }

  .events-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
  }

  .events-mosaic {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 12px;
  }

  .ev:first-child {
    grid-row: auto;
  }

  .ev:first-child .ev-img,
  .ev:not(:first-child) .ev-img {
    height: 220px;
  }

  .events-mosaic[data-home-training-feed] .ev:first-child .ev-img {
    height: 365px;
  }

  .events-mosaic[data-home-article-feed] {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-flow: row;
  }

  .events-mosaic[data-home-article-feed].events-mosaic--triple {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 12px;
  }

  .events-mosaic[data-home-article-feed] .ev--article-featured,
  .events-mosaic[data-home-article-feed] .ev--article-medium,
  .events-mosaic[data-home-article-feed] .ev--article-small {
    grid-column: auto;
    grid-row: auto;
  }

  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-img,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-img {
    aspect-ratio: auto;
  }

  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-body,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev-body {
    padding: 22px;
  }

  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-meta,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-meta {
    gap: 12px;
    margin-bottom: 10px;
  }

  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-date,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-place,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-date,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-place {
    font-size: 9px;
  }

  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-title,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-title,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev:first-child .ev-title {
    font-size: 23px;
    line-height: 1.3;
  }

  .events-mosaic[data-home-article-feed] .ev-body {
    padding: 22px;
  }

  .events-mosaic[data-home-article-feed] .ev.sr {
    opacity: 1;
    transform: none;
  }

  .ev-body,
  .ev.text-ev .ev-body {
    padding: 22px;
  }

  .ev:first-child .ev-title {
    font-size: 23px;
  }

  .cta-band {
    padding: 88px 22px;
  }

  .cta-ring:nth-child(1) {
    display: none;
  }

  .cta-ring:nth-child(2) {
    width: 320px;
    height: 320px;
  }

  .cta-ring:nth-child(3) {
    width: 190px;
    height: 190px;
  }

  .cta-band h2 {
    font-size: clamp(38px, 9vw, 58px);
    margin-bottom: 16px;
  }

  .cta-band p {
    margin-bottom: 32px;
    max-width: 30ch;
  }

  .btn-cta {
    padding: 19px 28px;
  }

  .cta-band-micro {
    margin-top: 16px;
  }

  .books {
    padding: 72px 22px;
  }

  .books-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .shelf {
    gap: 18px;
    padding: 12px 0 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .bk {
    flex: 0 0 170px;
    scroll-snap-align: start;
  }

  .bk-cover {
    height: 248px;
  }

  .contact-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 72px 22px 80px;
  }

  .ct-text p {
    max-width: 34ch;
  }

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

  .ci {
    padding: 24px 22px;
  }

  .contact-map-row {
    margin-top: 14px;
  }

  .contact-map-shell {
    padding: 22px;
  }

  .contact-map-note p {
    max-width: none;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 300px;
    height: 300px;
  }

  .contact-form-zone {
    padding: 64px 22px;
  }

  .contact-mail-cta p {
    max-width: none;
  }

  .hero-desc--single-line,
  .services-intro {
    white-space: normal;
  }

  .hero-desc {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-rings {
    width: 190px;
    height: 190px;
    right: -40px;
    top: 110px;
    opacity: 0.35;
  }

  .hero-photo {
    height: clamp(260px, 82vw, 340px);
  }

  .hero-content {
    padding: 28px 18px 26px;
  }

  .hero-label {
    margin-bottom: 18px;
  }

  .hero-h1 {
    font-size: clamp(36px, 13vw, 52px);
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-btns .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    letter-spacing: 0.095em;
  }

  .hero-ticker {
    min-height: 44px;
    height: auto;
  }

  .hero-ticker::before,
  .hero-ticker::after {
    width: 30px;
  }

  .t-item {
    font-size: 8px;
    padding: 0 10px;
    gap: 14px;
    letter-spacing: 0.16em;
  }

  .about {
    gap: 20px;
    padding: 30px 18px;
  }

  .about-img {
    min-height: 280px;
  }

  .about-badge {
    padding: 10px 12px 10px 10px;
  }

  .ab-name {
    font-size: 16px;
  }

  .ab-role {
    font-size: 9.5px;
    letter-spacing: 0.07em;
  }

  .about-trait {
    font-size: 12px;
    letter-spacing: 0.055em;
    line-height: 1.5;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 13.5px;
  }

  .about-pull {
    font-size: 13.5px;
    padding: 14px 14px 14px 12px;
  }

  .services {
    padding: 64px 0;
  }

  .svc-hd {
    padding: 0 18px;
    margin-bottom: 32px;
  }

  .svc-head {
    padding: 18px 18px 20px;
  }

  .svc-name {
    font-size: 20px;
  }

  .svc-pill {
    font-size: 8px;
    letter-spacing: 0.15em;
    padding: 4px 10px;
  }

  .svc-body-inner {
    padding: 20px 18px 24px;
  }

  .svc-row.open .svc-body {
    max-height: 1200px;
  }

  .events {
    padding: 72px 18px;
  }

  .events-headline {
    font-size: clamp(32px, 9vw, 44px);
  }

  .ev:first-child .ev-img,
  .ev:not(:first-child) .ev-img {
    height: 200px;
  }

  .events-mosaic[data-home-training-feed] .ev:first-child .ev-img {
    height: 315px;
  }

  .events-mosaic[data-home-article-feed] .ev-body {
    padding: 18px;
  }

  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-body,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-body,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev-body {
    padding: 18px;
  }

  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-medium .ev-title,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev--article-small .ev-title,
  .events-mosaic[data-home-article-feed].events-mosaic--triple .ev:first-child .ev-title {
    font-size: 20px;
  }

  .ev-flag {
    top: 14px;
    left: 14px;
  }

  .ev-body,
  .ev.text-ev .ev-body {
    padding: 18px;
  }

  .ev-title,
  .ev:first-child .ev-title {
    font-size: 20px;
  }

  .cta-band {
    padding: 72px 18px;
  }

  .cta-eyebrow {
    gap: 10px;
    margin-bottom: 18px;
  }

  .cta-eyebrow::before,
  .cta-eyebrow::after {
    width: 24px;
  }

  .cta-band h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .cta-band p {
    font-size: 13.5px;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
  }

  .books {
    padding: 64px 18px;
  }

  .bk {
    flex-basis: 70vw;
    max-width: 220px;
  }

  .bk-cover {
    height: auto;
  }

  .contact-top {
    padding: 64px 18px 72px;
  }

  .ct-text h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .ct-text p {
    font-size: 13.5px;
  }

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

  .ci {
    padding: 20px 18px;
  }

  .contact-map-shell {
    padding: 18px;
  }

  .contact-map-actions {
    gap: 12px;
    align-items: stretch;
  }

  .map-open-link {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }

  .map-load-btn {
    align-self: flex-start;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 240px;
    height: 240px;
  }

  .contact-form-zone {
    padding: 56px 18px;
  }

  .contact-mail-cta h3 {
    font-size: 24px;
  }

  .btn-send {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }
}

@media (max-width: 960px) {
  .hero-label h1 {
    color: rgba(255, 255, 255, 0.58);
  }

  .hero-h1 .muted {
    color: rgba(246, 241, 233, 0.44);
  }

  .hero-desc {
    font-weight: 300;
    color: rgba(246, 241, 233, 0.8);
  }

  .about-text p {
    font-weight: 300;
    color: rgba(24, 48, 45, 0.86);
  }

  .about-pull-text {
    color: rgba(24, 48, 45, 0.9);
  }

  .about-pull-sign {
    color: rgba(24, 48, 45, 0.72);
  }

  .services-intro {
    font-weight: 300;
    color: rgba(24, 48, 45, 0.84);
  }

  .svc-body-inner p {
    font-weight: 300;
    color: rgba(246, 241, 233, 0.78);
  }

  .svc-features li {
    color: rgba(246, 241, 233, 0.72);
  }

  .ev-date,
  .ev-place {
    color: rgba(246, 241, 233, 0.76);
  }

  .bk-yr {
    color: rgba(246, 241, 233, 0.42);
  }

  .ct-text p,
  .contact-map-note p,
  .contact-mail-cta p {
    font-weight: 300;
    color: rgba(246, 241, 233, 0.82);
  }

  .ci-lbl {
    color: rgba(246, 241, 233, 0.6);
  }

  .ci-val,
  .ci-val a {
    color: rgba(246, 241, 233, 0.92);
  }
}
