:root {
  --paper: #f7f3ea;
  --paper-soft: #f0ece0;
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #6b6055;
  --line: #e0ddd6;
  --accent: #b91c1c;
  --accent-soft: #d4a017;
  --max-w: 1320px;
}

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

html, body { margin: 0; padding: 0; }

body {
  background: #fafaf7;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.hp-v5 .hp-mast {
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.hp-mast__top {
  padding: 24px 24px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.hp-mast__left {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

.hp-brand {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.hp-brand .dot { color: var(--accent-soft); }
.hp-brand--small { font-size: 24px; }
.hp-brand img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56px;
}
.hp-brand--small img { max-height: 36px; }

.hp-mast__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  border-color: var(--line);
  background: var(--white);
}

.hp-nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  padding: 8px;
}

.hp-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.hp-nav {
  border-top: 1px solid #d8d1c0;
}

.hp-nav__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 16px 24px 14px;
}

.hp-nav a {
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 700;
  text-transform: uppercase;
}

.hp-meta-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.hp-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
}

.hp-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8a7c4f;
}

.hp-kicker--big {
  font-size: 13px;
  color: var(--accent-soft);
}

.hp-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px;
  background: var(--white);
  border: 1px solid #e2dccd;
  border-radius: 2px;
}

.hp-intro__title {
  margin: 12px 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.01em;
}

.hp-intro__lede {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: #2a2a2a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-intro__right {
  background: var(--paper-soft);
  border-radius: 2px;
  padding: 24px;
}

.hp-intro__signup-dek {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.hp-row-1 {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 28%);
  gap: 28px;
  margin-top: 28px;
  align-items: stretch;
}

.hp-row-1__main {
  display: flex;
  width: 100%;
  min-width: 0;
}

.hp-hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.hp-hero__media,
.hp-hero__media img {
  width: 100%;
  height: 100%;
}

.hp-hero__media {
  display: block;
}

.hp-hero__media img {
  object-fit: cover;
}

.hp-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.2));
}

.hp-hero__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 28px;
}

.hp-hero__title {
  margin: 10px 0 12px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

.hp-hero__title a { color: var(--white); }
.hp-hero__title a:hover { color: #ffe7e7; }

.hp-hero__lede {
  margin: 0 0 12px;
  max-width: 64ch;
  color: rgba(255,255,255,.92);
}

.hp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hp-sidebar {
  background: var(--white);
  border: 1px solid #e2dccd;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.hp-sidebar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.hp-trend {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.hp-trend__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hp-trend__item:last-child {
  border-bottom: 0;
}

.hp-trend__num {
  color: var(--accent-soft);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
}

.hp-trend__section {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hp-trend__title {
  margin: 6px 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 1.2;
}

.hp-trend__byline {
  font-size: 12px;
  color: var(--muted);
}

.hp-section { margin-top: 48px; }

.hp-section__rule {
  border-bottom: 3px solid var(--ink);
  margin-bottom: 26px;
  padding-bottom: 14px;
}

.hp-section__label {
  margin: 0;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hp-kg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.hp-kg__media {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e3d4;
}

.hp-kg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-kg__title {
  margin: 8px 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 19px;
  line-height: 1.2;
}

.hp-kg__byline {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
}

.crumbs .sep { color: #b5aea2; }
.crumbs a { color: var(--ink); }

.article-head {
  padding: 28px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.article-head .crumbs,
.article-head .h-long,
.article-head .meta-grid {
  max-width: 84ch;
  margin-left: auto;
  margin-right: auto;
}

.kicker-row {
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  background: #f0ece0;
}

.article-head h1 {
  margin: 0 0 16px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.15;
}

.article-head h1.h-long {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.15;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  overflow: visible;
  text-overflow: clip;
}

.lede {
  margin: 0 0 14px;
  color: #3a3a3a;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.article-head .lede {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 10px;
  padding-bottom: 2px;
  border-top: 1px solid var(--line);
  justify-content: flex-start;
  text-align: left;
}

.meta-grid > div {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.meta-grid .label {
  display: inline;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-grid .value {
  display: inline;
  font-size: 13px;
  color: var(--ink);
}

.article-body {
  display: block;
  padding: 32px 24px;
}

.article-body__rail {
  position: sticky;
  top: 98px;
  align-self: start;
}

.share-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.share-rail { margin-top: 12px; }

.article-body__main {
  width: 100%;
  max-width: 84ch;
  margin: 0 auto;
  font-size: var(--fs-body, 1rem);
  line-height: 1.82;
}

.article-body__main p {
  margin: 0 0 1.2rem;
  text-align: justify;
}

.article-body__main h2 {
  margin: 0em 0 .55em;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  text-align: left;
}

.article-body__main h3 {
  margin: 1.4em 0 .45em;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  text-align: left;
}

.article-body__main a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body__main ul,
.article-body__main ol {
  margin: 0 0 1.2rem;
  padding-left: 1.25rem;
  text-align: left;
}

.article-body__main :is(p, h2, h3, h4, h5, h6, ul, ol, figure, img) {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.article-body__main img {
  display: block;
  max-width: 100%;
  height: auto;
}

.article-body__main :is(table, pre),
.page-content :is(table, pre) {
  max-width: 100%;
  overflow-x: auto;
}

.article-body__main table,
.page-content table {
  display: block;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.article-body__main table {
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95em;
}
.article-body__main table thead {
  background: #1a1a1a;
  color: #f7f3ea;
}
.article-body__main table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-body__main table tbody tr {
  border-bottom: 1px solid #e0ddd6;
}
.article-body__main table tbody tr:nth-child(even) {
  background: #f0ece0;
}
.article-body__main table tbody tr:hover {
  background: rgba(185, 28, 28, 0.06);
}
.article-body__main table td {
  padding: 11px 16px;
  vertical-align: top;
  line-height: 1.55;
}
.article-body__main table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .article-body__main table {
    overflow-x: auto;
  }
}

.article-body__main :is(iframe, video),
.page-content :is(iframe, video) {
  max-width: 100%;
}

.article-head .crumbs {
  max-width: none;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  justify-content: flex-start;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  text-overflow: clip;
}

.wrap.article-body .article-body__main p {
  text-align: justify;
}

.link-arrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 700;
}

.article-tags {
  padding: 8px 24px 32px;
}

.article-tags .list-title,
.article-tags .chips,
.article-foot-list .list-title,
.article-foot-list ul {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chip {
  border: 1px solid #cfc6b5;
  border-radius: 2px;
  padding: 6px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.chip--accent {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.article-foot-list {
  padding: 0 24px 30px;
}

.article-foot-lists {
  display: grid;
  grid-template-columns: 1fr;
}

.article-foot-lists--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  align-items: start;
}

.article-foot-lists .article-foot-list {
  padding: 0;
}

.article-foot-list .list-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 10px;
}

.article-foot-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.article-foot-list li {
  border-bottom: 1px solid var(--line);
}

.article-foot-list li a {
  display: block;
  padding: 12px 0;
  font-family: Fraunces, Georgia, serif;
}

.faq-wrap { margin-top: 30px; }
.faq-item p { margin-top: 0; color: #363636; }

.page-rich {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  padding: 36px 24px;
}

.page-content {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.page-rich h1 {
  margin-top: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.page-content h2 {
  margin: 1.4em 0 .4em;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(24px, 2.6vw, 34px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 700;
  background: var(--ink);
  color: var(--white);
}

.btn:hover { color: var(--white); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn--accent { background: #d4ff00; color: var(--ink); border-color: #d4ff00; }
.btn--accent:hover { color: var(--ink); background: #c3ea00; }

.fourohfour {
  text-align: center;
  padding: 64px 24px;
}

.fourohfour h1 {
  margin: 0 0 12px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(42px, 7vw, 80px);
}

.destinations {
  margin-top: 28px;
}

.destinations__title {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  color: var(--muted);
}

.site-footer {
  margin-top: 64px;
  border-top: 2px solid var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 32px;
  padding: 48px 24px;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li { margin-top: 8px; }
.site-footer a:hover { color: var(--accent); }

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding: 18px 24px 28px;
  text-align: center;
}

.site-footer__bottom small {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 1100px) {
  .hp-kg { grid-template-columns: repeat(2, 1fr); }
  .article-body { padding-top: 28px; }
  .article-body__rail { position: static; }
  .article-head .h-long {
    font-size: clamp(30px, 6.8vw, 40px);
    line-height: 1.15;
  }
  .share-label { writing-mode: horizontal-tb; transform: none; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .article-head .crumbs {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .article-head .crumbs::-webkit-scrollbar { display: none; }
  .hp-mast__top {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .hp-mast__left { display: none; }
  .hp-mast__top .hp-brand { grid-column: 1 / 2; justify-self: start; max-width: 180px; }
  .hp-mast__right { grid-column: 2 / 3; }
  .hp-nav-toggle { display: inline-block; }
  .hp-nav { display: none; }
  .hp-nav.is-open { display: block; }
  .hp-nav__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 18px;
  }
  .hp-nav__inner a { padding: 10px 0; }
  .hp-wrap { padding: 20px; }
  .hp-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .hp-intro__title {
    margin: 10px 0;
    font-size: clamp(28px, 8vw, 38px);
    overflow-wrap: anywhere;
  }
  .hp-intro__lede {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .hp-row-1 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .hp-sidebar { padding: 16px; }
  .hp-hero { min-height: 360px; }
  .hp-hero__overlay { padding: 20px; }
  .hp-hero__title {
    font-size: clamp(24px, 7vw, 34px);
    overflow-wrap: anywhere;
  }
  .hp-section { margin-top: 36px; }
  .hp-kg { gap: 20px; }
  .page-rich { grid-template-columns: 1fr; }
  .article-foot-lists--two {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}

@media (max-width: 560px) {
  .wrap, .hp-wrap, .article-head, .article-body, .article-tags, .article-foot-list, .site-footer__top, .site-footer__bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hp-mast__top .hp-brand { max-width: 160px; }
  .hp-nav__inner { padding: 8px 16px 14px; }
  .hp-intro { padding: 18px; }
  .hp-intro__title { font-size: clamp(24px, 9vw, 32px); }
  .hp-row-1 { margin-top: 16px; }
  .hp-hero {
    min-height: 300px;
    border-radius: 0;
  }
  .hp-hero__overlay { padding: 16px; }
  .hp-hero__lede {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .hp-sidebar { padding: 14px; }
  .hp-trend__item { padding: 12px 0; }
  .hp-section { margin-top: 30px; }
  .article-foot-lists .article-foot-list {
    padding-left: 0;
    padding-right: 0;
  }
  .hp-kg { grid-template-columns: 1fr; }
  .hp-kg__title {
    font-size: 18px;
    overflow-wrap: anywhere;
  }
  .meta-grid { gap: 6px 12px; }
  .meta-grid > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .site-footer__top { grid-template-columns: 1fr; }
}
