/* ============================================================
   THE CUSTOMS HOUSE — site stylesheet
   Brand: Ink & Stone · Georgia, one face
   ============================================================ */

:root {
  --ink:      #1C1A17;
  --ink-soft: #353029;
  --paper:    #F4F0E7;
  --paper-hi: #FBF8F1;   /* lighter paper for airy sections */
  --paper-dp: #ECE6D9;   /* deeper paper for cards/insets   */
  --stone:    #8A8068;
  --oat:      #B7AD99;
  --line:     rgba(138,128,104,0.34);  /* stone hairline */
  --line-ink: rgba(244,240,231,0.22);  /* hairline on ink */

  --serif: Georgia, 'Times New Roman', 'Times', serif;

  --container: 1280px;
  --gutter: clamp(22px, 5vw, 76px);
  --section: clamp(82px, 11vw, 150px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---- type helpers ---- */
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
  display: inline-block;
  max-width: 100%;
}

.display {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}
.h-xl { font-size: clamp(36px, 4.4vw, 64px); }
.h-lg { font-size: clamp(29px, 3.3vw, 47px); }
.h-md { font-size: clamp(25px, 2.7vw, 37px); }
.h-sm { font-size: clamp(21px, 2.1vw, 28px); }

.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.8; color: var(--ink-soft); }
p { margin: 0 0 1.1em; }
.muted { color: var(--stone); }

/* numerals / labels */
.label {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--stone); font-style: normal;
}

/* ---- layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-style: normal;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper); text-decoration: none;
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease);
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--paper:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn .arr { width: 22px; height: 9px; }

.tlink {
  font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 11px;
  padding-bottom: 4px; border-bottom: 1px solid var(--ink);
  transition: gap .3s var(--ease), opacity .3s var(--ease);
}
.tlink:hover { gap: 17px; opacity: 0.7; }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid var(--line-ink);
}
.site-head .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 116px; gap: 24px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--paper); line-height: 1; }
.brand .bl-the { font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--oat); }
.brand .bl-name { font-family: var(--serif); font-weight: 400; font-size: 23px; letter-spacing: 0.1em; text-transform: uppercase; line-height: 0.95; text-align: center; }
.brand .bl-est { font-size: 8.5px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--oat); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav a {
  text-decoration: none; color: var(--paper);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; padding: 6px 0; opacity: 0.86;
  transition: opacity .3s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--oat); transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { opacity: 1; }
.head-cta { display: flex; align-items: center; gap: 22px; }
.menu-btn { display: none; background: none; border: 0; font-family: var(--serif);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--paper); cursor: pointer; }
.head-cta .lbl-short { display: none; }
@media (max-width: 560px) { .head-cta .lbl-long { display: none; } .head-cta .lbl-short { display: inline; } }

/* ============================================================
   FOOTER (ink)
   ============================================================ */
.site-foot { background: var(--ink); color: var(--paper); }
.site-foot a { color: var(--paper); text-decoration: none; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-block: clamp(64px,8vw,104px); }
.foot-mark { width: 290px; height: 290px; opacity: 0.95; margin-bottom: 30px; filter: invert(1) brightness(1.06); }
.foot-tag { font-style: italic; font-size: 22px; color: var(--paper); max-width: 30ch; line-height: 1.5; }
.foot-col h4 { font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--oat);
  font-weight: 400; margin: 6px 0 20px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 15px; opacity: 0.86; transition: opacity .3s; }
.foot-col a:hover { opacity: 1; }
.foot-social-icons { display: inline-flex; align-items: center; gap: 14px; }
.foot-social-icons a { display: inline-flex; opacity: 0.86; color: var(--paper); }
.foot-social-icons a:hover { opacity: 1; }
.foot-bottom { border-top: 1px solid var(--line-ink); padding-block: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.04em; color: var(--oat); }

/* ============================================================
   REUSABLE BLOCKS
   ============================================================ */
/* image frame */
.img-wrap { position: relative; overflow: hidden; background: var(--paper-dp); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-cap { position: absolute; left: 18px; bottom: 16px; color: var(--paper);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5); }

/* horizontal gallery strip */
.gallery-row { display: flex; gap: 18px; margin-top: 28px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 16px; -webkit-overflow-scrolling: touch; }
.gallery-row .img-wrap { flex: 0 0 auto; width: clamp(240px, 32vw, 360px);
  aspect-ratio: 4 / 3; scroll-snap-align: start; }
.gallery-row::-webkit-scrollbar { height: 6px; }
.gallery-row::-webkit-scrollbar-track { background: transparent; }
.gallery-row::-webkit-scrollbar-thumb { background: rgba(28,26,23,0.22); border-radius: 3px; }

/* split row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 92px); align-items: center; }
.split.wide-img { grid-template-columns: 0.92fr 1.08fr; }

/* duties / three-up */
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.triad > div { padding: 40px 30px 8px; border-left: 1px solid var(--line); }
.triad > div:first-child { border-left: 0; padding-left: 4px; }
.triad .n { font-style: italic; font-size: 30px; color: var(--ink); display: block; margin-bottom: 14px; }
.triad p { font-size: 16px; color: var(--ink-soft); }

/* booking strip */
.booking {
  background: var(--paper-hi); border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: stretch;
}
.booking .field { padding: 22px 28px; border-right: 1px solid var(--line); }
.booking .field span { display: block; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.booking .field b { font-weight: 400; font-style: italic; font-size: 21px; color: var(--ink); }
.booking .go { display: flex; }
.booking .go .btn { border: 0; padding-inline: clamp(26px, 3vw, 52px); }

/* ---- hero ---- */
.hero { padding-top: clamp(40px, 5vw, 70px); padding-bottom: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.16fr; gap: clamp(32px, 4.5vw, 70px); align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding-bottom: clamp(28px, 4vw, 56px); }
.hero-copy .eyebrow { margin-bottom: 30px; }
.hero-copy h1 { margin: 0 0 26px; font-size: clamp(36px, 4.4vw, 64px); }
.hero-copy .lede { max-width: 42ch; margin-bottom: 38px; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-media { position: relative; align-self: stretch; min-height: clamp(420px, 52vw, 660px); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp { position: absolute; right: -26px; top: -26px; width: 132px; height: 132px;
  background: var(--paper); border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 18px 50px rgba(28,26,23,0.14); }
.hero-stamp img { width: 108px; height: 108px; }

/* ---- estate grid: one building, five named spaces ---- */
.estate { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.estate-card { background: var(--paper); position: relative; display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink); min-height: 340px; transition: background .4s var(--ease); }
.estate-card .ph { aspect-ratio: 3/2.4; overflow: hidden; background: var(--paper-dp); }
.estate-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.estate-card:hover .ph img { transform: scale(1.05); }
.estate-card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.estate-card .nm { font-style: italic; font-size: 27px; color: var(--ink); margin: 0 0 6px; line-height: 1.1; }
.estate-card .ds { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.estate-card .no { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--stone); margin-bottom: 14px; }
.estate-card.span-2 { grid-column: span 3; }
.estate-card.span-1 { grid-column: span 2; }
.tag { align-self: flex-start; margin-top: auto; font-size: 10.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--stone); padding-top: 16px; }
.tag.live { color: var(--ink); }
.tag.live::before { content: "● "; color: var(--stone); }
.tag.soon::before { content: "○ "; }

/* ---- room scroller ---- */
.rooms-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr);
  gap: 26px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.room-card { scroll-snap-align: start; text-decoration: none; color: var(--ink); }
.room-card .ph { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-dp); margin-bottom: 18px; }
.room-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.room-card:hover .ph img { transform: scale(1.05); }
.room-card .nm { font-style: italic; font-size: 26px; margin: 0 0 6px; }
.room-card .ds { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
/* rooms listing page — balanced four-up with smaller thumbnails + headlines */
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2vw, 30px); }
.rooms-grid .room-card .ph { aspect-ratio: 4/3; margin-bottom: 13px; }
.rooms-grid .room-card .nm { font-size: 20px; margin-bottom: 4px; }
.rooms-grid .room-card .ds { font-size: 13.5px; line-height: 1.5; }
@media (max-width: 900px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rooms-grid { grid-template-columns: 1fr; } }
.rooms-note {
	margin: 22px 0 0;
	font-size: 14.5px;
	font-style: italic;
	color: var(--stone);
}
.rooms-row::-webkit-scrollbar { height: 3px; }
.rooms-row::-webkit-scrollbar-thumb { background: var(--oat); }

/* ---- ink section (the night / the byre) ---- */
.ink-sec { background: var(--ink); color: var(--paper); }
.ink-sec .eyebrow { color: var(--oat); }
.ink-sec .eyebrow::before, .ink-sec .eyebrow.center::after { background: var(--oat); }
.ink-sec .display { color: var(--paper); }
.ink-sec .lede { color: rgba(244,240,231,0.78); }
.ink-sec p { color: rgba(244,240,231,0.7); }
.ink-sec .tlink { color: var(--paper); border-color: var(--paper); }
.ink-sec .facts { border-top-color: var(--line-ink); }
.ink-sec .facts li { border-bottom-color: var(--line-ink); }
.ink-sec .facts li span { color: var(--oat); }
.ink-sec .facts li b { color: var(--paper); }

/* ---- meta list (key facts) ---- */
.facts { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.facts li { display: flex; justify-content: space-between; gap: 24px; padding: 16px 2px;
  border-bottom: 1px solid var(--line); font-size: 15px; }
.facts li span { color: var(--stone); letter-spacing: 0.04em; }
.facts li b { font-weight: 400; font-style: italic; color: var(--ink); font-size: 18px; }

/* ---- page hero (interior pages) ---- */
.page-hero { padding-top: clamp(56px, 7vw, 96px); }
.page-hero h1 { margin: 22px 0 0; font-size: clamp(31px, 3.6vw, 50px); }
.page-hero .lede { max-width: 56ch; margin-top: 26px; }
.bleed-img { aspect-ratio: 16/7; margin-top: clamp(40px, 5vw, 70px); }

/* seo-only (visually subordinate, machine-readable) */
.seo-note { font-size: 12px; color: var(--stone); opacity: 0.7; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 4/3; min-height: 0; }
  .estate { grid-template-columns: 1fr; }
  .estate-card.span-2, .estate-card.span-1 { grid-column: 1 / -1; }
}

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .nav { display: none; }
  .menu-btn { display: inline-block; }
}
@media (max-width: 900px) {
  .split, .split.wide-img { grid-template-columns: 1fr; }
  .triad { grid-template-columns: 1fr; }
  .triad > div { border-left: 0; border-top: 1px solid var(--line); padding-inline: 4px; }
  .triad > div:first-child { border-top: 0; }
  .booking { grid-template-columns: 1fr 1fr; }
  .booking .go { grid-column: 1 / -1; }
  .booking .go .btn { width: 100%; justify-content: center; padding-block: 20px; }
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .wedding-grid { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; }
  .booking .field { border-right: 0; border-bottom: 1px solid var(--line); }
}


/* ============================================================
   THE TOWPATH — journal front page (blog listing)
   ============================================================ */
/* ===== THE TOWPATH, journal front page ===== */
  .journal { max-width: 1160px; margin: 0 auto; padding: clamp(26px,4vw,56px) var(--gutter) clamp(60px,7vw,108px); }

  .mast { text-align: center; }
  .mast-folio { font-family: Georgia, serif; font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--stone); padding-bottom: 14px; }
  .mast-name { font-family: Georgia,'Times New Roman',serif; font-style: italic; font-weight: 400; font-size: clamp(46px,9.5vw,128px); line-height: 0.95; letter-spacing: 0.02em; color: var(--ink); margin: 0; border-top: 3px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 16px 0 18px; }
  .mast-date { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; font-family: Georgia, serif; font-style: italic; font-size: 14px; color: var(--stone); border-bottom: 3px solid var(--ink); padding: 12px 0 14px; }
  .mast-date .dot { color: var(--oat); font-style: normal; }
  .mast-intro { max-width: 62ch; margin: 22px auto 0; font-family: Georgia, serif; font-size: 15px; line-height: 1.65; color: var(--stone); text-align: center; }

  .front { display: grid; grid-template-columns: 2fr 1fr; gap: 0; margin-top: clamp(30px,4vw,52px); }
  .front > * { padding: 0 clamp(22px,2.4vw,40px); }
  .front > *:first-child { padding-left: 0; }
  .front > *:last-child { padding-right: 0; border-left: 1px solid var(--line); }

  .story { display: block; text-decoration: none; color: inherit; }
  .story:hover .s-head { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
  .s-kicker { font-family: Georgia, serif; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--oat); display: block; margin-bottom: 14px; }
  .s-art { margin: 0 0 18px; overflow: hidden; }
  .s-art img { width: 100%; height: auto; display: block; transition: transform .6s ease; }
  .lead .s-art img { height: clamp(240px,30vw,360px); object-fit: cover; }
  .story:hover .s-art img { transform: scale(1.03); }

  /* lead */
  .lead .s-head { font-family: Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(32px,4.6vw,58px); line-height: 1.02; color: var(--ink); margin: 0; }
  .lead .s-stand { font-family: Georgia, serif; font-size: clamp(16px,1.4vw,19px); line-height: 1.55; color: #4a463f; margin: 18px 0 0; max-width: 52ch; }
  .lead .s-body { column-count: 2; column-gap: 34px; column-rule: 1px solid var(--line); text-align: justify; hyphens: auto; margin-top: 22px; }
  .lead .s-body p { font-family: Georgia, serif; font-size: 15.5px; line-height: 1.6; color: var(--ink); margin: 0 0 1em; }
  .s-more { font-family: Georgia, serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; }
  .s-more svg { width: 22px; }

  .byline { font-family: Georgia, serif; font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--stone); margin: 16px 0 0; }

  /* rail */
  .rail .story + .story { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
  .rail .s-head { font-family: Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(24px,2.2vw,30px); line-height: 1.06; color: var(--ink); margin: 0; }
  .rail .s-stand { font-family: Georgia, serif; font-size: 15px; line-height: 1.55; color: #4a463f; margin: 12px 0 0; }
  .rail-head { font-family: Georgia, serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); padding-bottom: 16px; margin-bottom: 22px; border-bottom: 1px solid var(--ink); }

  .upnext { column-span: all; margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); font-family: Georgia, serif; font-style: italic; font-size: 14.5px; color: var(--stone); }

  @media (max-width: 820px) {
    .front { grid-template-columns: 1fr; }
    .front > * { padding: 0; }
    .front > *:last-child { border-left: 0; border-top: 3px solid var(--ink); margin-top: 40px; padding-top: 30px; }
    .lead .s-body { column-count: 1; text-align: left; }
  }


/* ============================================================
   THE TOWPATH — broadsheet article (single blog post)
   ============================================================ */
.broadsheet { max-width: 1080px; margin: 0 auto; padding: clamp(22px,3vw,44px) var(--gutter) clamp(60px,7vw,110px); }
  .return-strip { text-align: center; border-bottom: 1px solid var(--ink); padding-bottom: 14px; margin-bottom: clamp(28px,3.5vw,48px); }
  .return-strip a { text-decoration: none; font-family: Georgia, serif; letter-spacing: 0.3em; text-transform: uppercase; font-size: 12px; color: var(--ink); }
  .return-strip .ret-sub { display: block; font-style: italic; letter-spacing: 0.04em; text-transform: none; font-size: 13px; color: var(--stone); margin-top: 6px; }

  .head-block { text-align: center; max-width: 32ch; margin: 0 auto clamp(24px,3vw,38px); }
  .head-kicker { font-family: Georgia, serif; font-size: 13px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--oat); display: block; margin-bottom: 16px; }
  .head-line { font-family: Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(34px,6vw,62px); line-height: 1.02; color: var(--ink); margin: 0; }
  .head-stand { font-family: Georgia, serif; font-size: clamp(17px,1.5vw,20px); line-height: 1.5; color: #4a463f; max-width: 56ch; margin: 22px auto 0; }
  .head-byline { font-family: Georgia, serif; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); margin-top: 18px; }

  figure { margin: 0; }
  .lead-art { margin: clamp(24px,3vw,38px) 0 0; }
  .lead-art img, .span-art img, .col-art img { width: 100%; display: block; }
  .lead-art img { height: clamp(260px,34vw,400px); object-fit: cover; }
  .span-art img { height: clamp(220px,30vw,340px); object-fit: cover; }
  figcaption { font-family: Georgia, serif; font-style: italic; font-size: 13.5px; color: var(--stone); padding-top: 9px; border-top: 1px solid var(--line); margin-top: 9px; }
  figcaption b { font-style: normal; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; color: var(--ink); }

  .body-cols { margin-top: clamp(30px,4vw,50px); column-count: 3; column-gap: 38px; column-rule: 1px solid var(--line); text-align: justify; hyphens: auto; }
  .body-cols p { font-family: Georgia, serif; font-size: 16.5px; line-height: 1.62; color: var(--ink); margin: 0 0 1.05em; text-indent: 1.3em; }
  .body-cols p:first-of-type { text-indent: 0; }
  .body-cols p:first-of-type::first-letter { float: left; font-family: Georgia, serif; font-weight: 700; font-size: 5.4em; line-height: 0.74; padding: 0.04em 0.12em 0 0; color: var(--ink); }
  .run-in { font-family: Georgia, serif; font-weight: 700; }
  .run-in::after { content: ' '; }
  .span-art { column-span: all; margin: 14px 0 22px; }
  .col-art { break-inside: avoid; margin: 4px 0 14px; }
  .end-mark { display:block; text-align:center; column-span: all; margin-top: 8px; color: var(--oat); letter-spacing:0.4em; }

  .up-next { border-top: 3px solid var(--ink); margin-top: clamp(40px,5vw,72px); padding-top: 26px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; text-decoration: none; color: inherit; }
  .up-next .un-k { font-family: Georgia, serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--oat); }
  .up-next .un-h { font-family: Georgia, serif; font-style: italic; font-size: clamp(20px,2vw,28px); color: var(--ink); }
  .up-next:hover .un-h { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
  .up-next svg { width: 26px; }

  @media (max-width: 900px) { .body-cols { column-count: 2; } }
  @media (max-width: 620px) {
    .body-cols { column-count: 1; text-align: left; }
    .body-cols p { text-indent: 0; margin-bottom: 1.2em; }
    .body-cols p + p { text-indent: 1.3em; }
    .up-next { grid-template-columns: 1fr; }
  }

/* ===== WordPress admin bar offset for the sticky header ===== */
body.admin-bar .site-head { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-head { top: 46px; } }

/* ============================================================
   Compatibility with the legacy style.css
   style.css applies 'Nunito' directly to (nearly) every element,
   which beats inheritance from body — so the serif is re-asserted
   here at the same specificity. This file is enqueued after
   style.css, so these rules win; all class-based rules above and
   below still override as normal.
   ============================================================ */
html, body, div, span, applet, object, iframe, h1, h2,
h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea {
	font-family: var(--serif);
}

/* style.css forces h1-h6 { margin:0 0 10px; line-height:1 } — restore
   browser defaults so the design's own heading rules act as authored. */
h1, h2, h3, h4, h5, h6 {
	margin: revert;
	line-height: revert;
}

/* style.css adds a 0.5s all-property transition to every link. */
a {
	transition: none;
}

/* ===== Header brand as the custom logo (Appearance → Customise → Site Identity) ===== */
.site-head .brand--logo { flex-direction: row; }
.site-head .brand-logo {
	display: block;
	height: clamp(56px, 6vw, 80px);
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

/* ============================================================
   Gallery row — drag cursor + lightbox
   ============================================================ */
.gallery-row.ch-gallery { cursor: grab; user-select: none; -webkit-user-select: none; }
.gallery-row.ch-gallery.is-dragging { cursor: grabbing; }
.gallery-row.ch-gallery .img-wrap { cursor: pointer; }
.gallery-row.ch-gallery.is-dragging .img-wrap { cursor: grabbing; }

.ch-lightbox {
	position: fixed; inset: 0; z-index: 200;
	background: rgba(22, 20, 17, 0.96);
	display: flex; align-items: center; justify-content: center;
	padding: clamp(16px, 4vw, 48px);
}
.ch-lightbox[hidden] { display: none; }
.ch-lb-stage { margin: 0; max-width: min(1200px, 86vw); text-align: center; }
.ch-lb-stage img {
	max-width: 100%; max-height: 76vh;
	width: auto; height: auto; margin: 0 auto;
	display: block; object-fit: contain;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.ch-lb-stage figcaption {
	font-family: var(--serif); font-style: italic;
	font-size: 14px; color: var(--oat);
	border-top: 1px solid var(--line-ink);
	padding-top: 10px; margin-top: 14px;
	display: inline-block;
}
.ch-lb-close {
	position: absolute; top: clamp(14px, 3vw, 28px); right: clamp(16px, 3vw, 32px);
	background: transparent; border: 1px solid var(--line-ink);
	color: var(--paper); font-family: var(--serif);
	font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
	padding: 10px 16px; cursor: pointer;
	transition: background .25s, color .25s;
}
.ch-lb-close:hover { background: var(--paper); color: var(--ink); }
.ch-lb-btn {
	background: transparent; border: 1px solid var(--line-ink);
	color: var(--paper); cursor: pointer;
	width: clamp(46px, 5vw, 60px); height: clamp(46px, 5vw, 60px);
	display: flex; align-items: center; justify-content: center;
	flex: 0 0 auto; margin: 0 clamp(8px, 2vw, 26px);
	transition: background .25s, color .25s;
}
.ch-lb-btn svg { width: 24px; height: 10px; }
.ch-lb-btn:hover { background: var(--paper); color: var(--ink); }
.ch-lb-prev svg { transform: rotate(180deg); }
.ch-lb-count {
	position: absolute; bottom: clamp(14px, 3vw, 26px); left: 50%; transform: translateX(-50%);
	font-family: var(--serif); font-size: 12px; letter-spacing: 0.24em;
	color: var(--stone);
}
@media (max-width: 640px) {
	.ch-lightbox { padding: 12px; }
	.ch-lb-btn { position: absolute; bottom: 52px; top: auto; }
	.ch-lb-prev { left: 18px; }
	.ch-lb-next { right: 18px; }
	.ch-lb-stage img { max-height: 64vh; }
}

/* ---- Contact Form 7 (contact page) ---- */
.ch-cf7 .wpcf7 { margin: 0; }
.ch-cf7 .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.ch-cf7 .wpcf7-form > p { margin: 0; }
.ch-cf7 .wpcf7-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ch-cf7 .wpcf7-form-control-wrap { display: block; }
.ch-cf7 .wpcf7-form input[type="text"],
.ch-cf7 .wpcf7-form input[type="email"],
.ch-cf7 .wpcf7-form textarea {
	width: 100%;
	box-sizing: border-box;
	font-family: var(--serif);
	font-size: 16px;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: 0;
	background: var(--paper);
	color: var(--ink);
	appearance: none;
}
.ch-cf7 .wpcf7-form textarea { resize: vertical; min-height: 6.5em; }
.ch-cf7 .wpcf7-form input:focus,
.ch-cf7 .wpcf7-form textarea:focus {
	outline: 1px solid var(--ink);
	outline-offset: 0;
	border-color: var(--ink);
}
.ch-cf7 .wpcf7-form .wpcf7-submit {
	align-self: flex-start;
	width: auto;
}
.ch-cf7 .wpcf7-not-valid-tip {
	font-size: 13px;
	font-style: italic;
	color: var(--stone);
	margin-top: 4px;
}
.ch-cf7 .wpcf7-response-output {
	margin: 0;
	padding: 14px 16px;
	border: 1px solid var(--line);
	font-size: 14.5px;
	font-style: italic;
	color: var(--stone);
	background: var(--paper);
}
.ch-cf7 .wpcf7-spinner { margin: 0 0 0 10px; }
