@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --ink: #11110f;
  --paper: #ffffff;
  --soft: #f6f5f2;
  --muted: #696965;
  --line: #dedbd4;
  --gold: #B78F62;
  --font: 'Manrope', Arial, sans-serif;
  --wide: 1440px;
  --content: 1280px;
  --reading: 760px;
  --gutter: clamp(20px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { width: 100%; max-width: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.has-overlay { overflow: hidden; }
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.screen-reader-text { position: absolute; left: -9999px; }
.screen-reader-text:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; padding: 12px; }

/* Header */
.announcement {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-align: center;
}
.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  background: #fff;
}
.masthead-row {
  min-height: 176px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 34px var(--gutter) 38px;
}
.masthead {
  min-width: 0;
  justify-self: center;
  text-align: center;
  line-height: .82;
  font-size: clamp(42px, 5.1vw, 74px);
  font-weight: 800;
  letter-spacing: -.075em;
}
.masthead span { display: block; }
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
}
.nav__hamburger { visibility: hidden; pointer-events: none; }
.nav__hamburger svg {
  width: 24px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  shape-rendering: geometricPrecision;
}
.search-button { justify-self: end; }
.search-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* Desktop publication navigation bar */
.desktop-nav {
  min-height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.nav__links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 3.5vw, 58px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links li { min-width: 0; }
.nav__links a {
  position: relative;
  display: block;
  padding: 20px 0 19px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .075em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 13px;
  height: 1px;
  background: var(--gold);
  transition: left .24s ease, right .24s ease;
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after,
.nav__links .current-menu-item > a::after,
.nav__links .current_page_item > a::after { left: 0; right: 0; }

/* Main content canvas */
.site-main { min-height: 55vh; }
.blank-canvas { background: #fff; }
.content-canvas, .content-canvas:empty { min-height: 55vh; }
.content-canvas > * {
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.content-canvas > .alignwide { max-width: var(--wide); }
.content-canvas > .alignfull { max-width: none; padding-left: 0; padding-right: 0; }

/* Mobile menu and search */
.mobile-menu, .search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  overflow-x: hidden;
  overflow-y: auto;
}
.mobile-menu.is-open, .search-overlay.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu { padding: 24px var(--gutter); }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.mobile-menu__brand { min-width: 0; font-size: 15px; font-weight: 800; letter-spacing: -.04em; }
.mobile-menu__close, .search-overlay__close { flex: 0 0 auto; font-size: 36px; line-height: 1; background: transparent; border: 0; }
.mobile-menu__links, .mobile-menu .nav__links { display: block; list-style: none; margin: 42px 0 0; padding: 0; }
.mobile-menu__links > li, .mobile-menu .nav__links > li { border-bottom: 1px solid var(--line); }
.mobile-menu__links a, .mobile-menu .nav__links a {
  display: block;
  padding: 18px 0;
  font-size: clamp(24px, 7vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.04em;
  text-transform: none;
  white-space: normal;
  overflow-wrap: anywhere;
}
.mobile-menu__links a::after, .mobile-menu .nav__links a::after { display: none; }
.search-overlay { display: grid; place-items: center; padding: var(--gutter); }
.search-overlay__close { position: absolute; right: var(--gutter); top: 24px; }
.search-overlay__inner { width: min(760px, 100%); min-width: 0; }
.eyebrow { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.search-form { display: flex; min-width: 0; border-bottom: 1px solid var(--ink); }
.search-field { min-width: 0; width: 100%; border: 0; background: transparent; font-size: clamp(28px, 5vw, 56px); padding: 14px 0; outline: 0; }
.search-submit { flex: 0 0 auto; border: 0; background: transparent; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* Footer */
.site-footer {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 72px var(--gutter) 24px;
}
.footer-grid {
  width: 100%;
  max-width: var(--wide);
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 56px;
}
.footer-grid > * { min-width: 0; }
.footer-brand > a { display: inline-block; max-width: 100%; font-size: clamp(28px, 3.2vw, 46px); font-weight: 800; line-height: .86; letter-spacing: -.07em; }
.footer-brand > a span { display: block; }
.footer-brand p { max-width: 320px; margin: 22px 0 0; color: #b9b9b4; overflow-wrap: anywhere; }
.footer-heading { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 18px; }
.footer-links { width: 100%; max-width: 100%; list-style: none; margin: 0; padding: 0; }
.footer-links li { width: 100%; max-width: 100%; margin: 0 0 10px; }
.footer-links a { display: inline-block; max-width: 100%; font-size: 14px; line-height: 1.45; overflow-wrap: anywhere; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold); }
.footer-bottom {
  width: 100%;
  max-width: var(--wide);
  min-width: 0;
  margin: 64px auto 0;
  padding-top: 22px;
  border-top: 1px solid #373733;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9b9b96;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: none;
}
.footer-bottom p { min-width: 0; margin: 0; overflow-wrap: anywhere; }

/* Editorial content foundations */
.article-shell, .listing-shell, .error-page { max-width: var(--content); margin: auto; padding: 30px var(--gutter) 80px; }
.article-header { max-width: 980px; margin: 0 auto 50px; text-align: center; }
.article-header h1, .listing-header h1, .error-page h1 { font-size: clamp(42px, 7vw, 88px); line-height: 1.02; letter-spacing: -.065em; margin: .25em 0; }
.article-meta { color: var(--muted); }
.article-featured { margin: 0 auto 70px; }
.article-content { max-width: var(--reading); margin: auto; }
.article-content p { margin: 0 0 1.5em; }
.listing-header { text-align: center; margin-bottom: 64px; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px 28px; }
.post-card { min-width: 0; }
.post-card img { aspect-ratio: 4 / 5; object-fit: cover; margin-bottom: 20px; }
.post-card h2 { font-size: 24px; line-height: 1.2; letter-spacing: -.035em; }
.button, .wp-block-button__link { display: inline-block; background: var(--ink); color: #fff; padding: 13px 22px; border: 1px solid var(--ink); border-radius: 0; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.button:hover, .wp-block-button__link:hover { background: transparent; color: var(--ink); }
.error-page { text-align: center; }

@media (max-width: 800px) {
  .announcement { min-height: 26px; padding: 5px 14px; font-size: 8px; }
  .site-header { position: sticky; top: 0; border-bottom: 1px solid var(--line); }
  .masthead-row {
    min-height: 84px;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    padding: 0 16px;
  }
  .masthead { font-size: 32px; }
  .nav__hamburger { visibility: visible; pointer-events: auto; }
  .desktop-nav { display: none; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; margin-top: 46px; }
  .footer-bottom p { margin: 6px 0; }
  .site-footer { padding: 54px 22px 24px; }
  .post-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .masthead { font-size: 28px; }
  .icon-button { width: 40px; height: 40px; }
  .footer-brand > a { font-size: 30px; }
  .search-submit { font-size: 10px; letter-spacing: .06em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ---------------------------------------------------------
   Roaming with Ryn 2.2 brand refinements
   --------------------------------------------------------- */
:root {
  /* One master Roaming with Ryn brand gold. */
  --gold: #B78F62;
  --gold-primary: #B78F62;
  --gold-hover: #B78F62;
  --gold-light: #D8BE9F;
  --gold-dark: #B78F62;
}

/* Make WITH and RYN read as two distinct words without changing the masthead proportions. */
.masthead__line,
.footer-brand__line { display: block; }

.masthead__line--split,
.footer-brand__line--split {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .45em;
}

/* Sharper, warmer champagne-gold interactions. */
.nav__links a::after { background: var(--gold-primary); }
.nav__links a:hover,
.nav__links a:focus-visible,
.nav__links .current-menu-item > a,
.nav__links .current_page_item > a { color: var(--gold-dark); }
.footer-heading,
.eyebrow { color: var(--gold-primary); }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--gold-hover); }

/* Social links with a consistent editorial icon set. */
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.social-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: currentColor;
}
.social-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon rect,
.social-icon circle { fill: none; }
.social-icon .social-icon__fill { fill: currentColor; stroke: none; }
.social-icon .social-icon__cutout { fill: var(--ink); stroke: none; }
.footer-socials a:hover .social-icon,
.footer-socials a:focus-visible .social-icon { color: var(--gold-hover); }

@media (max-width: 800px) {
  .masthead__line--split { gap: .45em; }
  .footer-brand__line--split { justify-content: center; gap: .45em; }
}


/* ---------------------------------------------------------
   Roaming with Ryn 2.3 — restored masthead + dropdown menus
   --------------------------------------------------------- */

/* Preserve the approved TWO-LINE wordmark. The broad descendant rules in
   the original stylesheet made the inner WITH / RYN spans stack vertically. */
.masthead > .masthead__line,
.footer-brand > a > .footer-brand__line {
  display: block;
}
.masthead .masthead__line--split,
.footer-brand .footer-brand__line--split {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: baseline;
  gap: .24em;
  white-space: nowrap;
}
.masthead .masthead__line--split > span,
.footer-brand .footer-brand__line--split > span {
  display: inline-block;
}
.footer-brand .footer-brand__line--split { justify-content: flex-start; }

/* Desktop dropdown navigation. Submenus appear automatically whenever a
   page is nested beneath a parent item in Appearance > Menus. */
.nav__links > li { position: relative; }
.nav__links .sub-menu {
  position: absolute;
  z-index: 250;
  left: 50%;
  top: calc(100% - 1px);
  width: max-content;
  min-width: 230px;
  max-width: min(320px, 90vw);
  margin: 0;
  padding: 14px 0;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(17,17,15,.10);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav__links > li:hover > .sub-menu,
.nav__links > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav__links .sub-menu li { width: 100%; margin: 0; }
.nav__links .sub-menu a {
  width: 100%;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .06em;
  white-space: normal;
  text-align: left;
  color: var(--ink);
}
.nav__links .sub-menu a::after { display: none; }
.nav__links .sub-menu a:hover,
.nav__links .sub-menu a:focus-visible,
.nav__links .sub-menu .current-menu-item > a {
  color: var(--gold-dark);
  background: color-mix(in srgb, var(--gold-light) 18%, white);
}
.nav__links > .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav__links > .menu-item-has-children > a::before {
  content: '';
  order: 2;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

/* Mobile nested menus: compact editorial accordions. */
.mobile-menu__links .sub-menu,
.mobile-menu .nav__links .sub-menu {
  display: none;
  list-style: none;
  margin: 0 0 12px;
  padding: 0 0 0 18px;
  border-left: 1px solid var(--gold-light);
}
.mobile-menu__links .menu-item-has-children.is-submenu-open > .sub-menu,
.mobile-menu .nav__links .menu-item-has-children.is-submenu-open > .sub-menu {
  display: block;
}
.mobile-menu__links .sub-menu li,
.mobile-menu .nav__links .sub-menu li { border: 0; }
.mobile-menu__links .sub-menu a,
.mobile-menu .nav__links .sub-menu a {
  padding: 11px 0;
  font-size: clamp(17px, 4.8vw, 23px);
  font-weight: 400;
  letter-spacing: -.02em;
}
.mobile-menu__links .menu-item-has-children,
.mobile-menu .nav__links .menu-item-has-children { position: relative; }
.submenu-toggle {
  position: absolute;
  top: 8px;
  right: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0;
}
.submenu-toggle::before,
.submenu-toggle::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 1.25px;
  background: currentColor;
  transition: transform .2s ease;
}
.submenu-toggle::after { transform: rotate(90deg); }
.menu-item-has-children.is-submenu-open > .submenu-toggle::after { transform: rotate(0); }

@media (max-width: 800px) {
  .masthead .masthead__line--split { gap: .21em; }
  .footer-brand .footer-brand__line--split { gap: .21em; }
}


/* ---------------------------------------------------------
   Roaming with Ryn 3.0 — locked framework refinements
   --------------------------------------------------------- */

/* Wordmark: retain the approved original size on both lines.
   WITH and RYN stay as separate spans so the word gap is reliable. */
.masthead .masthead__line--split,
.footer-brand .footer-brand__line--split {
  font-size: 1em;
  line-height: inherit;
  letter-spacing: inherit;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  white-space: nowrap;
  gap: .24em;
}
.masthead .masthead__line--split { justify-content: center; }
.footer-brand .footer-brand__line--split { justify-content: flex-start; }
.masthead .masthead__line--split > span,
.footer-brand .footer-brand__line--split > span { display: inline-block; }

/* Use the exact footer gold everywhere a brand interaction appears. */
.nav__links > li > a:hover,
.nav__links > li > a:focus-visible,
.nav__links > .current-menu-item > a,
.nav__links > .current_page_item > a,
.nav__links > .current-menu-ancestor > a,
.nav__links > .current_page_ancestor > a,
.nav__links .sub-menu a:hover,
.nav__links .sub-menu a:focus-visible,
.nav__links .sub-menu .current-menu-item > a,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible,
.footer-socials a:hover .social-icon,
.footer-socials a:focus-visible .social-icon {
  color: var(--gold);
}
.nav__links a::after,
.footer-heading,
.eyebrow {
  background-color: var(--gold);
}
.footer-heading,
.eyebrow {
  background: none;
  color: var(--gold);
}

/* Crisp, consistent social glyphs. */
.footer-socials .social-icon svg {
  fill: currentColor;
  stroke: none;
}
.footer-socials .social-icon rect,
.footer-socials .social-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}
.footer-socials .social-icon .social-icon__fill {
  fill: currentColor;
  stroke: none;
}
.footer-socials .social-icon .social-icon__cutout {
  fill: var(--ink);
  stroke: none;
}
.footer-socials a[aria-label*="Pinterest"] .social-icon svg {
  transform: scale(.9);
  transform-origin: center;
}

@media (max-width: 800px) {
  .masthead .masthead__line--split,
  .footer-brand .footer-brand__line--split {
    font-size: 1em;
    gap: .24em;
  }
}

/* ==========================================================
   ARTICLE LAYOUT
========================================================== */

.article-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:72px;
    align-items:start;
}

.article-content{
    min-width:0;
}

.sidebar-column{
    border-left:1px solid #ECE8E0;
    padding-left:56px;
    padding-top:28px;
}

.article-sidebar{
    position:relative;
    align-self:start;
}

.sidebar-section{
    padding:34px 0;
    border-bottom:1px solid #ECE8E0;
}

.sidebar-section:first-child{
    padding-top:0;
}

.sidebar-section:last-child{
    padding-bottom:0;
    border-bottom:none;
}

.sidebar-section h3{
    margin:0 0 20px;
    font-family:var(--font);
    font-size:.85rem;
    font-weight:600;
    line-height:1.4;
    text-transform:uppercase;
    letter-spacing:.18em;
    color:var(--ink);
}

.sidebar-button{
    display:block;
    margin:14px 0;
    font-family:var(--font);
    font-size:1rem;
    font-weight:500;
    line-height:1.5;
    color:var(--ink);
    text-decoration:none;
    transition:color .25s ease;
}

.sidebar-button::after{
    content:" →";
    transition:padding-left .25s ease;
}

.sidebar-button:hover{
    color:var(--gold);
}

.sidebar-button:hover::after{
    padding-left:4px;
}

@media (max-width:1100px){

    .article-layout{
        grid-template-columns:1fr;
        gap:48px;
    }

    .sidebar-column{
        border-left:none;
        border-top:1px solid #ECE8E0;
        padding-left:0;
        padding-top:40px;
    }

}