:root {
  --color-navy: #092b50;
  --color-petrol: #174f5d;
  --color-gold: #c78a27;
  --color-terracotta: #c95432;
  --color-cream: #fdfaf4;
  --color-sand: #f4f0e7;
  --color-text: #0d2946;
  --color-muted: #5d6570;
  --color-border: #e3dacb;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;
  --container: 1312px;
  --radius: 16px;
  --shadow: 0 5px 18px rgb(26 42 55 / 8%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--color-text); background: var(--color-cream); font-family: var(--font-sans); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 128px), var(--container)); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; transform: translateY(-160%); padding: 10px 16px; background: white; color: var(--color-navy); border-radius: 4px; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #e6a43b; outline-offset: 3px; }
h1, h2 { margin: 0; font-family: var(--font-serif); font-weight: 700; letter-spacing: -.035em; }

.topbar { height: 46px; background: #f3ecdf; color: #233d56; font-size: 12px; }
.topbar__inner { height: 100%; display: flex; align-items: center; gap: 18px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar a span { color: var(--color-gold); font-size: 15px; }
.topbar__divider { height: 16px; width: 1px; background: #d0c5b5; }

.site-header { height: 125px; background: rgb(255 255 255 / 86%); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.brand__mark { width: 58px; height: 58px; color: #cf983b; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__mark circle, .brand__mark path { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font: 700 23px/1.2 var(--font-serif); letter-spacing: -.035em; }
.brand small { display: block; margin-top: 4px; color: #b67920; font-size: 13px; }
.site-nav ul { display: flex; align-items: center; gap: clamp(20px, 2.1vw, 38px); margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; display: block; padding: 19px 0; font-size: 12px; font-weight: 600; white-space: nowrap; }
.site-nav a.is-active::after, .site-nav .current-menu-item > a::after { position: absolute; right: 0; bottom: 8px; left: 0; height: 2px; background: var(--color-gold); content: ""; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 6px; background: transparent; }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--color-navy); }

.hero { overflow: hidden; background: #fff; }
.hero__grid { min-height: 433px; display: grid; grid-template-columns: 41% 59%; align-items: stretch; }
.hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 52px 34px 56px 8px; }
.hero h1 { font-size: clamp(40px, 3.05vw, 59px); line-height: 1.12; }
.hero p { max-width: 520px; margin: 28px 0 38px; font-size: 21px; line-height: 1.68; }
.hero__media { position: relative; margin: 0; min-width: calc(100% + (100vw - min(100vw - 128px, var(--container))) / 2); }
.hero__media::before { position: absolute; z-index: 1; top: 0; bottom: 0; left: -1px; width: 85px; background: linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 80%) 25%, transparent 100%); content: ""; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.button-row { display: flex; gap: 30px; }
.button { min-height: 60px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 36px; border: 1px solid transparent; border-radius: 8px; font-size: 15px; font-weight: 500; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--color-navy); color: #fff; box-shadow: 0 4px 12px rgb(5 37 70 / 12%); }
.button--secondary { border-color: #d39b43; background: #fffdfa; color: #8f5b10; }
.button--small { min-height: 44px; padding: 9px 28px; font-size: 13px; }
.button--tiny { min-height: 37px; padding: 6px 21px; border-radius: 6px; font-size: 11px; }

.section { padding: 52px 0 35px; }
.section--tight { padding-top: 0; padding-bottom: 35px; }
.section-title { margin-bottom: 25px; text-align: center; font-size: 32px; line-height: 1.25; }
.offer-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.offer-card { position: relative; min-width: 0; height: 348px; overflow: hidden; border: 1px solid var(--color-border); border-radius: 15px; background: #fffdfa; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgb(26 42 55 / 12%); }
.offer-card > img { width: 100%; height: 225px; object-fit: cover; }
.offer-card__icon { position: absolute; top: 189px; left: 50%; width: 64px; height: 62px; display: grid; place-items: center; transform: translateX(-50%); border: 1px solid #e5d6bf; border-radius: 12px; background: #fffdf8; color: var(--color-gold); font: 34px/1 Georgia, serif; }
.offer-card__title { height: 122px; display: grid; place-items: center; padding: 35px 14px 16px; text-align: center; font-size: 15px; font-weight: 600; line-height: 1.25; }

.profile-card { position: relative; min-height: 378px; overflow: hidden; display: grid; grid-template-columns: 337px 1fr; align-items: center; gap: 48px; padding: 18px 30px; border-radius: var(--radius); background: #f7f3eb; }
.profile-card__photo { width: 337px; height: 335px; object-fit: cover; border-radius: 14px; }
.profile-card__copy { position: relative; z-index: 1; max-width: 700px; }
.profile-card h2, .symbols-card h2 { margin-bottom: 22px; font-size: 34px; line-height: 1.2; }
.profile-card p { margin: 0 0 17px; line-height: 1.7; }
.profile-card__botanical { position: absolute; right: 20px; bottom: -10px; width: 175px; color: #e9bd73; opacity: .8; }

.events { padding-top: 3px; }
.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.event-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--color-border); border-radius: 14px; background: #fffdf9; box-shadow: var(--shadow); }
.event-card__media { position: relative; height: 193px; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.date-badge { position: absolute; top: 15px; left: 16px; width: 61px; height: 68px; display: grid; align-content: center; justify-items: center; border-radius: 8px; background: #b87812; color: #fff; box-shadow: 0 2px 7px rgb(0 0 0 / 18%); line-height: 1; }
.date-badge strong { font-size: 22px; }
.date-badge span { margin-top: 5px; font-size: 12px; font-weight: 700; }
.event-card__body { min-height: 190px; display: flex; flex-direction: column; padding: 14px 24px 18px; }
.event-card h3 { min-height: 58px; margin: 0 0 9px; font-size: 15px; line-height: 1.25; }
.location { margin: 0 0 16px; color: var(--color-muted); font-size: 12px; }
.location span { color: var(--color-gold); font-size: 17px; }
.event-card .button { align-self: center; margin-top: auto; }
.text-link { width: max-content; display: block; margin: 25px auto 0; font-size: 14px; font-weight: 500; }
.text-link span { padding-left: 8px; font-size: 25px; vertical-align: -2px; }

.symbols-card { height: 306px; overflow: hidden; display: grid; grid-template-columns: 35% 65%; align-items: center; border: 1px solid #dee2d2; border-radius: var(--radius); background: #f0f2e5; }
.symbols-card__copy { padding: 34px 20px 32px 60px; }
.symbols-card p { max-width: 355px; margin: 0 0 20px; line-height: 1.55; }
.symbols-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: multiply; }

.publications { padding-top: 0; }
.publications .section-title { margin-bottom: 16px; }
.book-grid { display: grid; grid-template-columns: repeat(7, 1fr); align-items: end; gap: 45px; padding: 0 13px; }
.book img { width: 100%; aspect-ratio: .705; object-fit: cover; border-radius: 3px; box-shadow: 4px 7px 11px rgb(26 32 30 / 22%); transition: transform .2s ease; }
.book:hover img { transform: translateY(-4px); }
.publications .text-link { margin-top: 27px; }

.cta-section { padding-top: 0; padding-bottom: 14px; }
.cta { min-height: 119px; display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 25px; padding: 16px 90px 16px 58px; border-radius: 13px; background: var(--color-terracotta); color: white; }
.cta__icon { font: 65px/1 Georgia, serif; text-align: center; }
.cta h2 { max-width: 760px; font-size: 30px; line-height: 1.4; }
.button--light { min-width: 230px; min-height: 58px; background: #fff; color: var(--color-navy); }

.site-footer { padding: 30px 0 12px; background: var(--color-navy); color: white; font-size: 12px; }
.footer-grid { display: grid; grid-template-columns: 240px repeat(3, 1fr) 245px; gap: 38px; align-items: start; }
.brand--footer { display: block; }
.brand--footer .brand__mark { width: 70px; height: 70px; display: block; margin-bottom: 12px; }
.brand--footer strong { font-size: 17px; }
.brand--footer small { color: #fff; font-size: 11px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 7px; }
.site-footer a:hover { text-decoration: underline; }
.site-footer address { display: grid; gap: 8px; font-style: normal; }
.socials { display: flex; gap: 23px; margin-top: 8px; font-size: 20px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; padding-top: 13px; border-top: 1px solid rgb(255 255 255 / 20%); font-size: 10px; }
.footer-bottom div { display: flex; align-items: center; gap: 16px; }
.footer-bottom div span { width: 1px; height: 14px; background: rgb(255 255 255 / 45%); }
.footer-bottom button { padding: 0; border: 0; background: none; color: inherit; font-size: inherit; }
.footer-bottom p { margin: 0; }
.narrow-copy { max-width: 850px; }

@media (max-width: 1279px) {
  .container { width: min(calc(100% - 64px), var(--container)); }
  .site-header { height: 105px; }
  .site-nav ul { gap: 16px; }
  .site-nav a { font-size: 10px; }
  .brand strong { font-size: 19px; }
  .brand__mark { width: 50px; height: 50px; }
  .hero__grid { min-height: 375px; }
  .hero p { font-size: 18px; }
  .offer-card { height: 300px; }
  .offer-card > img { height: 190px; }
  .offer-card__icon { top: 158px; }
  .profile-card { grid-template-columns: 290px 1fr; }
  .profile-card__photo { width: 290px; height: 290px; }
  .event-card__media { height: 160px; }
  .book-grid { gap: 28px; }
}

@media (max-width: 1023px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; z-index: 20; top: 0; right: 0; bottom: 0; width: min(380px, 88vw); padding: 100px 36px 36px; transform: translateX(105%); background: #fffdf9; box-shadow: -10px 0 25px rgb(0 0 0 / 12%); transition: transform .25s ease; }
  .site-nav.is-open { transform: none; }
  .site-nav ul { display: block; }
  .site-nav a { padding: 12px 0; font-size: 15px; }
  .menu-toggle { position: relative; z-index: 21; }
  .hero__grid { grid-template-columns: 48% 52%; }
  .hero__copy { padding-left: 0; }
  .hero p { font-size: 16px; }
  .button-row { gap: 12px; }
  .button { padding-inline: 22px; }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-card { height: 330px; }
  .offer-card > img { height: 215px; }
  .offer-card__icon { top: 183px; }
  .profile-card { grid-template-columns: 260px 1fr; gap: 30px; }
  .profile-card__photo { width: 260px; height: 280px; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card__media { height: 210px; }
  .symbols-card { grid-template-columns: 42% 58%; }
  .symbols-card__copy { padding-left: 36px; }
  .book-grid { gap: 18px; }
  .cta { grid-template-columns: 70px 1fr auto; padding-inline: 30px; }
  .cta h2 { font-size: 22px; }
  .button--light { min-width: 180px; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  body { font-size: 14px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .topbar { height: auto; padding: 8px 0; }
  .topbar__inner { gap: 8px 13px; flex-wrap: wrap; }
  .topbar__divider { display: none; }
  .site-header { height: 88px; }
  .brand__mark { width: 44px; height: 44px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 11px; }
  .hero__grid { width: 100%; display: flex; flex-direction: column; }
  .hero__copy { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; padding: 48px 0 42px; }
  .hero h1 { font-size: 39px; }
  .hero p { margin: 21px 0 28px; font-size: 17px; }
  .hero__media { min-width: 0; height: 290px; }
  .hero__media::before { display: none; }
  .button-row { flex-wrap: wrap; }
  .button { min-height: 52px; }
  .section { padding: 43px 0 28px; }
  .section--tight { padding-top: 0; }
  .section-title { font-size: 27px; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .offer-card { height: 260px; }
  .offer-card > img { height: 157px; }
  .offer-card__icon { top: 129px; width: 56px; height: 54px; }
  .offer-card__title { height: 103px; padding-top: 34px; font-size: 13px; }
  .profile-card { display: block; padding: 18px; }
  .profile-card__photo { width: 100%; height: auto; aspect-ratio: 1.05; }
  .profile-card__copy { padding: 28px 4px 12px; }
  .profile-card h2, .symbols-card h2 { font-size: 28px; }
  .profile-card__botanical { display: none; }
  .event-grid { grid-template-columns: 1fr; gap: 18px; }
  .event-card__media { height: 215px; }
  .event-card__body { min-height: 175px; }
  .event-card h3 { min-height: auto; font-size: 17px; }
  .symbols-card { height: auto; display: flex; flex-direction: column; }
  .symbols-card__copy { padding: 30px 25px 10px; }
  .symbols-card img { height: 210px; }
  .book-grid { grid-template-columns: repeat(4, 1fr); gap: 22px 14px; padding: 0; }
  .cta { display: flex; flex-wrap: wrap; padding: 27px 24px; }
  .cta__icon { display: none; }
  .cta h2 { width: 100%; font-size: 23px; }
  .button--light { min-width: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer address { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
}

@media (max-width: 420px) {
  .topbar__inner { font-size: 10px; }
  .book-grid { grid-template-columns: repeat(2, 1fr); padding-inline: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
