:root {
  --ink: #2e2530;
  --muted: #6b6169;
  --paper: #fffdfb;
  --white: #ffffff;
  --rose: #d9566f;
  --rose-soft: #f8dde3;
  --aqua: #72aaa6;
  --aqua-soft: #dcefed;
  --gold: #c58a22;
  --butter: #f4df9b;
  --plum: #332538;
  --rule: #ded6da;
  --display: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: "Avenir Next", "Gill Sans", Calibri, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 2px solid var(--ink);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.35);
}
body:not(:has(.home-hero)) .site-header {
  position: relative;
  background: var(--plum);
}
.site-brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: .88;
  font-family: var(--display);
}
.site-brand span { font-size: 13px; text-transform: uppercase; }
.site-brand strong { font-size: 24px; font-weight: 400; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a:focus-visible { border-color: currentColor; }
.menu-toggle { display: none; }

.home-hero {
  position: relative;
  min-height: 620px;
  height: 72vh;
  max-height: 760px;
  display: grid;
  align-items: center;
  background-image: url('/wp-content/uploads/2013/09/IMG_2603-copy.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 34%;
  color: var(--white);
  isolation: isolate;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(32, 22, 35, .58);
}
.hero-copy {
  width: min(690px, 70vw);
  margin-left: 9vw;
  padding-top: 56px;
  animation: arrive .65s ease-out both;
}
.hero-eyebrow, .eyebrow, .article-kicker {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-decoration: none;
}
.hero-eyebrow { color: var(--butter); }
.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: 76px;
  font-weight: 400;
  line-height: .98;
}
.hero-copy > p:not(.hero-eyebrow) {
  max-width: 570px;
  margin: 24px 0 30px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.4;
}
.hero-link {
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--butter);
  padding-bottom: 5px;
}

.journal-surface {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.journal-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 64px;
}
.section-heading { max-width: 720px; }
.section-heading h2, .editorial-intro h2, .category-stories h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
}
.section-heading > p:last-child { margin: 12px 0 0; color: var(--muted); }
.tabs { margin-top: 30px; }
.tab-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--rule);
}
.tab-list button {
  flex: 0 0 auto;
  min-height: 44px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 8px 17px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.tab-list button:first-child { padding-left: 0; }
.tab-list button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--rose); }
.tab-list button:focus-visible { outline: 2px solid var(--aqua); outline-offset: -2px; }
.tab-panel {
  max-height: 430px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 8px 4px 0;
  scrollbar-color: var(--rose) var(--rose-soft);
}
.home-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-link-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid #eee8eb;
}
.home-link-list a {
  min-width: 0;
  padding: 12px 0;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.25;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.home-link-list a:hover, .home-link-list a:focus-visible { color: var(--rose); text-decoration: underline; }
.home-link-list time { color: var(--muted); font-size: 12px; white-space: nowrap; }
.published-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.published-columns h3 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.published-columns .home-link-list { grid-template-columns: 1fr; }

.editorial-intro {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9%;
  align-items: center;
}
.intro-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); font-size: 18px; }
.text-link {
  color: var(--rose);
  font-weight: 700;
  text-decoration-thickness: 2px;
}
.intro-image { margin: 0; position: relative; }
.intro-image::before {
  content: "";
  position: absolute;
  width: 58%;
  height: 30%;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  background: var(--aqua-soft);
}
.intro-image img { width: 100%; max-height: 650px; object-fit: cover; object-position: center 22%; }
.intro-image figcaption { margin-top: 10px; color: var(--muted); font-size: 12px; }

.category-stories { padding: 88px max(24px, calc((100% - 1180px) / 2)); background: var(--plum); color: var(--white); }
.category-stories .eyebrow { color: var(--butter); }
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 40px; }
.story {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 34px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.45);
  transition: transform .18s ease, background-color .18s ease;
}
.story:last-child { border-right: 0; }
.story span { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.story strong { font-family: var(--display); font-size: 27px; font-weight: 400; line-height: 1.18; }
.story-weddings { background: var(--rose); }
.story-home { background: var(--aqua); color: #182b2b; }
.story-life { background: var(--butter); color: #352916; }
.story:hover, .story:focus-visible { transform: translateY(-8px); outline: 0; }

.closing-note { padding: 80px 24px 96px; text-align: center; }
.closing-note img { width: min(720px, 100%); margin: 0 auto; }
.closing-note blockquote {
  margin: 38px auto 0;
  font-family: var(--display);
  font-size: 32px;
  font-style: italic;
}

.article-page, .info-page { min-height: 70vh; }
.article-mast, .info-mast, .collection-mast {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 56px;
  text-align: center;
}
.article-mast h1, .info-mast h1, .collection-mast h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.04;
  overflow-wrap: anywhere;
}
.article-deck { max-width: 720px; margin: 24px auto 0; color: var(--muted); font-size: 19px; }
.article-byline { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.article-content {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 80px;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.78;
}
.article-content > *:first-child { margin-top: 0; }
.article-content h2, .article-content h3 {
  margin: 48px 0 16px;
  color: var(--plum);
  font-family: var(--body);
  line-height: 1.2;
}
.article-content h2 { font-size: 28px; }
.article-content h3 { font-size: 22px; }
.article-content p, .article-content ul, .article-content ol, .article-content blockquote { margin: 0 0 24px; }
.article-content a { color: #9d3047; overflow-wrap: anywhere; }
.article-content img { width: auto; margin: 34px auto; }
.article-content blockquote {
  border-left: 4px solid var(--aqua);
  padding: 6px 0 6px 24px;
  color: #534751;
  font-size: 22px;
  font-style: italic;
}
.article-content table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  font-family: var(--body);
  font-size: 15px;
}
.article-content td, .article-content th { min-width: 140px; padding: 10px; border: 1px solid var(--rule); text-align: left; }
.article-content hr { margin: 40px 0; border: 0; border-top: 1px solid var(--rule); }
.article-close {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 96px;
  padding: 26px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.article-close p { margin: 0 auto 0 0; font-family: var(--display); font-size: 23px; }
.article-close a { color: var(--rose); font-size: 14px; font-weight: 700; }
.info-page .article-content { padding-bottom: 100px; }

.collection-page { width: min(1080px, calc(100% - 48px)); margin: 0 auto; padding-bottom: 100px; }
.collection-mast { width: 100%; text-align: left; }
.collection-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; margin: 0; padding: 0; list-style: none; }
.collection-list li { min-width: 0; border-top: 1px solid var(--rule); }
.collection-list a { min-height: 142px; display: flex; flex-direction: column; padding: 23px 0; text-decoration: none; }
.collection-list span { color: var(--rose); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.collection-list strong { margin-top: 8px; font-family: var(--display); font-size: 23px; font-weight: 400; line-height: 1.18; overflow-wrap: anywhere; }
.collection-list time { margin-top: auto; padding-top: 10px; color: var(--muted); font-size: 12px; }
.collection-list a:hover strong, .collection-list a:focus-visible strong { color: var(--rose); text-decoration: underline; }
.empty-collection { grid-column: 1 / -1; }

.site-footer { background: #211a23; color: var(--white); }
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 210px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 4px 32px;
}
.footer-mark { font-family: var(--display); font-size: 30px; text-decoration: none; }
.footer-inner p { margin: 0; color: #c8bdc6; font-size: 13px; }
.footer-inner nav { grid-column: 2; grid-row: 1 / 3; display: flex; align-items: center; gap: 24px; }
.footer-inner nav a { font-size: 13px; }

@keyframes arrive {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .site-header { height: 68px; padding: 0 24px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }
  .menu-icon { width: 22px; display: grid; gap: 5px; }
  .menu-icon i { display: block; height: 2px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    max-height: calc(100vh - 68px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: var(--plum);
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(255,255,255,.25);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 16px; }
  .home-hero { min-height: 560px; height: 78vh; max-height: 700px; background-position: 58% center; }
  .hero-copy { width: calc(100% - 48px); margin: 0 24px; padding-top: 58px; }
  .hero-copy h1 { font-size: 58px; }
  .hero-copy > p:not(.hero-eyebrow) { max-width: 520px; font-size: 21px; }
  .editorial-intro { grid-template-columns: 1fr; gap: 54px; padding: 76px 0; }
  .intro-image { width: 88%; margin-left: auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.45); }
  .story:last-child { border-bottom: 0; }
  .article-mast h1, .info-mast h1, .collection-mast h1 { font-size: 46px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-brand strong { font-size: 21px; }
  .home-hero { min-height: 540px; height: 76vh; background-position: 64% center; }
  .home-hero::before { background: rgba(32, 22, 35, .64); }
  .hero-copy h1 { font-size: 48px; }
  .hero-copy > p:not(.hero-eyebrow) { font-size: 19px; line-height: 1.45; }
  .journal-inner, .editorial-intro, .collection-page { width: min(100% - 32px, 1180px); }
  .journal-inner { padding: 46px 0 52px; }
  .section-heading h2, .editorial-intro h2, .category-stories h2 { font-size: 37px; }
  .tab-list {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .tab-list button {
    min-width: 0;
    padding: 9px 10px;
    white-space: normal;
    text-align: left;
  }
  .tab-panel { max-height: 470px; padding-right: 4px; }
  .home-link-list, .published-columns { grid-template-columns: 1fr; }
  .published-columns { gap: 28px; }
  .home-link-list li { grid-template-columns: 1fr; gap: 0; }
  .home-link-list a { padding: 11px 0 2px; font-size: 17px; }
  .home-link-list time { padding-bottom: 9px; }
  .editorial-intro { padding: 64px 0 72px; }
  .intro-copy > p:not(.eyebrow) { font-size: 17px; }
  .intro-image { width: 100%; }
  .intro-image::before { right: 0; }
  .category-stories { padding: 66px 16px; }
  .story-grid { margin-top: 28px; }
  .story { min-height: 210px; padding: 26px; }
  .story strong { font-size: 24px; }
  .closing-note { padding: 60px 16px 72px; }
  .closing-note blockquote { font-size: 27px; }
  .article-mast, .info-mast, .collection-mast { width: min(100% - 32px, 900px); padding: 64px 0 44px; }
  .article-mast h1, .info-mast h1, .collection-mast h1 { font-size: 38px; }
  .article-deck { font-size: 17px; }
  .article-content { width: min(100% - 32px, 760px); font-size: 18px; padding-bottom: 62px; }
  .article-content h2 { font-size: 25px; }
  .article-content blockquote { padding-left: 18px; font-size: 20px; }
  .article-close { width: min(100% - 32px, 760px); align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 70px; }
  .article-close p { margin: 0 0 4px; }
  .collection-list { grid-template-columns: 1fr; }
  .collection-list a { min-height: 126px; }
  .footer-inner { width: min(100% - 32px, 1180px); min-height: 250px; grid-template-columns: 1fr; grid-template-rows: auto; gap: 4px; }
  .footer-inner nav { grid-column: 1; grid-row: auto; margin-top: 24px; flex-wrap: wrap; gap: 12px 20px; }
}

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