:root {
  --jw-bg: #11110f;
  --jw-bg-2: #181816;
  --jw-bg-3: #211f1b;
  --jw-text: #f2f0ea;
  --jw-muted: #9d9a91;
  --jw-accent: #b79a63;
  --jw-border: rgba(242, 240, 234, .14);
  --jw-container: min(1380px, calc(100% - 112px));
  --jw-serif: "Cormorant Garamond", Georgia, serif;
  --jw-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --jw-ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { background: var(--jw-bg); color-scheme: dark; }
html.jw-no-js { scroll-behavior: auto; }
html:not(.jw-no-js) { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--jw-bg);
  color: var(--jw-text);
  font-family: var(--jw-sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}
body, button, input, textarea, select { font-family: var(--jw-sans); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--jw-accent); color: #11110f; }

.jw-container { width: var(--jw-container); margin-inline: auto; }
/* iOS Safari doesn't honor overflow:hidden on body, so pin it in place */
html.jw-scroll-lock { overflow: hidden; }
body.jw-scroll-lock { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; overscroll-behavior: none; }
.visually-hidden, .jw-skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.jw-skip-link:focus {
  width: auto; height: auto; margin: 0; clip: auto; padding: 12px 18px;
  background: var(--jw-bg); color: var(--jw-text); z-index: 9999;
}

.jw-header {
  position: fixed; inset: 0 0 auto; z-index: 20;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(10,9,7,.62), transparent);
  box-shadow: 0 1px 0 0 transparent;
  transition: background 1s var(--jw-ease), backdrop-filter 2s var(--jw-ease),
    box-shadow 1s var(--jw-ease);
}
.jw-header.is-scrolled {
  background: rgba(17,17,15,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 0 var(--jw-border);
}
.jw-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.jw-brand { display: inline-flex; flex-direction: column; gap: 1px; }
.jw-brand__name {
  font-family: var(--jw-serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.jw-brand__strap {
  font-size: 15px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--jw-muted);
  margin-top: 5px;
}
.jw-nav { display: flex; align-items: center; gap: 34px; }
.jw-nav a {
  position: relative; padding: 8px 0;
  font-size: 12px; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(242,240,234,.78); transition: color .25s var(--jw-ease);
}
.jw-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  transform: scaleX(0); transform-origin: left; background: var(--jw-accent);
  transition: transform .3s var(--jw-ease);
}
.jw-nav a:hover, .jw-nav a.is-active { color: var(--jw-text); }
.jw-nav a:hover::after, .jw-nav a.is-active::after { transform: scaleX(1); }
.jw-menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.jw-menu-toggle span:not(.visually-hidden) { display: block; width: 24px; height: 1px; background: var(--jw-text); margin: 5px 0; }

.jw-eyebrow {
  margin: 0 0 22px;
  color: var(--jw-accent);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 500;
}
.jw-rule { display: block; width: 65px; height: 1px; background: var(--jw-accent); }
.jw-text-link {
  display: inline-flex; align-items: center; gap: 24px;
  margin-top: 28px; color: var(--jw-accent);
  font-size: 10px; line-height: 1; text-transform: uppercase; letter-spacing: .2em;
  transition: gap .3s var(--jw-ease);
}
.jw-text-link:hover { gap: 34px; }
.jw-text-link span { font-size: 18px; line-height: 0; }

.jw-hero {
  position: relative; min-height: var(--jw-hero-height, 100svh);
  display: flex; align-items: flex-end; overflow: hidden;
  background: #201d18;
}
.jw-hero__image, .jw-page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.jw-hero__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 45%, rgba(183,154,99,.38), transparent 30%),
    linear-gradient(115deg, #181713, #4c3a25 55%, #161510);
}
.jw-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,11,9,.72), rgba(12,11,9,.12) 65%, rgba(12,11,9,.18)),
              linear-gradient(0deg, rgba(10,9,7,.48), transparent 45%);
}
.jw-hero__content { position: relative; z-index: 2; padding-bottom: 68px; }
.jw-hero h1 {
  max-width: 720px; margin: 0;
  font-family: var(--jw-serif); font-weight: 400;
  font-size: clamp(58px, 7vw, 110px); line-height: .88;
  letter-spacing: -.025em;
}
.jw-hero__credit {
  margin: 26px 0 24px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .35em;
}
.jw-scroll {
  display: inline-flex; align-items: center; gap: 20px;
  margin-top: 55px; color: rgba(242,240,234,.78);
  font-size: 9px; text-transform: uppercase; letter-spacing: .22em;
}
.jw-scroll__arrow { font-size: 26px; font-weight: 300; }

.jw-section { padding: 140px 0; }
.jw-selected { background: var(--jw-bg); }
.jw-selected__layout {
  display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start;
}
.jw-selected__intro { padding-top: 8px; max-width: 340px; }
.jw-title-section h1, .jw-post__header h1 {
  margin: 0; font-family: var(--jw-serif); font-weight: 400;
  font-size: clamp(48px, 5vw, 76px); line-height: .95;
}
.jw-contact-layout {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 56px; align-items: start; margin-top: 40px;
}
.jw-contact-layout__form { min-width: 0; }
.jw-contact-layout__image { display: flex; align-items: flex-start; }
.jw-contact-layout__image .jw-piwigo-item,
.jw-contact-layout__image .jw-piwigo-item img {
  display: block; width: 100%; height: auto;
}
.jw-contact-layout__image .jw-piwigo-item img {
  border-radius: 18px; box-shadow: 0 20px 40px rgba(8, 8, 8, 0.12);
}
@media (max-width: 768px) {
  .jw-contact-layout { grid-template-columns: 1fr; gap: 28px; }
}
.jw-selected h2 {
  margin: 0; font-family: var(--jw-serif); font-weight: 400;
  font-size: clamp(38px, 3.4vw, 56px); line-height: 1.02;
}
.jw-selected__intro > p:not(.jw-eyebrow) { color: var(--jw-muted); margin-top: 28px; }
/* Selected stories */

.jw-mosaic {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    gap: 24px;
    align-items: start;
}

.jw-mosaic__column {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.jw-mosaic__item {
    display: block;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.jw-mosaic__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.jw-mosaic__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 1s var(--jw-ease);
}

.jw-mosaic__item:hover .jw-mosaic__image img {
    transform: scale(1.045);
}

.jw-mosaic__veil {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(10,9,7,.82), rgba(10,9,7,0) 55%);
}

.jw-mosaic__content {
    position: absolute; inset: auto 18px 16px;
}

.jw-mosaic__title {
    display: block;
    font-family: var(--jw-serif);
    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.25;
    font-weight: 400;
    color: var(--jw-text);
    transition: color .25s var(--jw-ease);
}
.jw-mosaic__item:hover .jw-mosaic__title { color: var(--jw-accent); }
.jw-mosaic__item--1 .jw-mosaic__image,
.jw-mosaic__item--3 .jw-mosaic__image,
.jw-mosaic__item--4 .jw-mosaic__image {
    aspect-ratio: 4 / 3;
}

.jw-mosaic__item--2 .jw-mosaic__image,
.jw-mosaic__item--5 .jw-mosaic__image,
.jw-mosaic__item--6 .jw-mosaic__image {
    aspect-ratio: 1 / 1;
}


.jw-collections__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.jw-collection {
  position: relative; min-height: 320px; overflow: hidden; background: var(--jw-bg-3);
}
.jw-collection img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--jw-ease); }
.jw-collection:hover img { transform: scale(1.045); }
.jw-collection__veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,9,7,.78), rgba(10,9,7,.05) 70%); }
.jw-collection__content { position: absolute; inset: auto 28px 28px; }
.jw-collection__title { display: block; font-family: var(--jw-serif); font-size: 30px; }
.jw-collection__subtitle { display: block; margin-top: 8px; max-width: 240px; color: rgba(242,240,234,.7); font-size: 12px; line-height: 1.5; }
.jw-collection__link { display: inline-flex; gap: 15px; margin-top: 20px; color: var(--jw-accent); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }

.jw-featured-story {
    display: grid;
    grid-template-columns: 2fr 3fr;
    height: 300px;
}

.jw-featured-story__image {
    min-height: 0;
    overflow: hidden;
    background: #1a1814;
}

.jw-featured-story__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jw-featured-story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px clamp(35px, 5vw, 80px);
    background: var(--jw-bg-2);
}

.jw-featured-story__content h2 { margin: 0; font-family: var(--jw-serif); font-weight: 400; font-size: clamp(45px, 5vw, 74px); line-height: .92; }
.jw-featured-story__content > p:not(.jw-eyebrow):not(.jw-featured-story__location) { max-width: 470px; color: var(--jw-muted); margin-top: 25px; }
.jw-featured-story__location { margin: 18px 0 0; color: var(--jw-text); font-size: 10px; text-transform: uppercase; letter-spacing: .22em; }

.jw-title-section { padding: 130px 0 70px; }
.jw-title-section--compact { padding: 130px 0 50px; }
.jw-title-section h1 { font-size: clamp(60px, 8vw, 80px); }
.jw-lead { max-width: 680px; margin: 30px 0 0; color: var(--jw-muted); font-size: 18px; }
.jw-page-hero { position: relative; min-height: 65svh; display: flex; align-items: flex-end; overflow: hidden; }
.jw-page-hero__veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,9,7,.78), transparent 65%); }
.jw-page-hero__content { position: relative; z-index: 2; padding-bottom: 70px; }
.jw-page-hero h1 { margin: 0; font-family: var(--jw-serif); font-weight: 400; font-size: clamp(55px, 8vw, 110px); line-height: .9; }
.jw-page-hero__lead { max-width: 620px; margin: 25px 0 0; color: rgba(242,240,234,.78); font-size: 18px; }

.jw-content-section { padding: 20px 0 150px; }
.jw-prose { max-width: 760px; }
.jw-prose h2, .jw-prose h3 { font-family: var(--jw-serif); font-weight: 400; line-height: 1; margin-top: 70px; }
.jw-prose h2 { font-size: 52px; }
.jw-prose h3 { font-size: 38px; }
.jw-prose p, .jw-prose li { color: rgba(242,240,234,.78); }
.jw-prose a { color: var(--jw-accent); border-bottom: 1px solid rgba(183,154,99,.35); }
.jw-prose img { margin: 50px 0; width: 100%; }
.jw-prose blockquote {
  margin: 55px 0; padding-left: 28px; border-left: 1px solid var(--jw-accent);
  font-family: var(--jw-serif); font-size: 32px; line-height: 1.2; color: var(--jw-text);
}
.jw-story-content { padding-top: 105px; }
.jw-story-content .jw-prose > p { margin-block: 0 1.65em; }
.jw-story-content .jw-prose > h2 { margin: 90px 0 26px; font-size: clamp(42px, 4vw, 58px); }
.jw-story-pullquote {
  margin: 82px 0; padding: 4px 0 5px 34px; border-left: 1px solid var(--jw-accent);
  font-family: var(--jw-serif); font-size: clamp(34px, 3.6vw, 50px); line-height: 1.04; color: var(--jw-text);
}
.jw-story-pullquote p { margin: 0; color: inherit; }
.jw-story-wide {
  position: relative; left: 50%; width: min(1180px, calc(100vw - 112px)); margin: 82px 0;
  transform: translateX(-50%);
}
.jw-story-wide.jw-piwigo-row { margin: 82px 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.jw-story-outro { margin-top: 88px; padding-top: 25px; border-top: 1px solid var(--jw-border); }
.jw-story-outro p { margin: 0; }
.jw-story-outro a { display: inline-block; padding: 9px 0; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }

.jw-journal { padding: 20px 0 150px; }
.jw-journal__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 90px 40px; }
.jw-journal-card__image { display: block; aspect-ratio: 1.55; overflow: hidden; background: var(--jw-bg-3); }
.jw-journal-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--jw-ease); }
.jw-journal-card__image:hover img { transform: scale(1.035); }
.jw-journal-card__body { padding: 25px 5px; }
.jw-meta { margin: 0; color: var(--jw-accent); font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.jw-journal-card h2 { margin: 12px 0; font-family: var(--jw-serif); font-weight: 400; font-size: 46px; line-height: .95; }
.jw-journal-card p:not(.jw-meta) { color: var(--jw-muted); max-width: 600px; }

.jw-post__header { padding: 130px 0 70px; }
.jw-post__header-inner { max-width: 900px; }
.jw-post__header h1 { font-size: clamp(60px, 8vw, 115px); line-height: 1.05; }
.jw-post__header .jw-meta { margin-top: 18px; }
.jw-post__hero { margin: 0; }
.jw-post__hero img { width: 100%; max-height: 85svh; object-fit: cover; }
.jw-post__hero figcaption { width: var(--jw-container); margin: 12px auto 0; color: var(--jw-muted); font-size: 11px; }
.jw-post__content { padding-top: 90px; padding-bottom: 160px; }

.jw-post--behind-the-image .jw-post__hero {
  box-sizing: border-box;
  width: fit-content;
  max-width: var(--jw-container);
  margin: 0 auto;
  padding: clamp(8px, 1.25vw, 16px);
  background: #e8e2d5;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .32), inset 0 0 0 1px rgba(44, 38, 28, .28);

}
.jw-post--behind-the-image .jw-post__hero img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 72svh;
  object-fit: contain;
}
.jw-post--behind-the-image .jw-post__hero figcaption {
  width: auto;
  margin: 12px 0 0;
}
.jw-post--behind-the-image .jw-post__header {
  padding: 90px 0 36px;
}
.jw-post--behind-the-image .jw-post__header-inner {
  max-width: none;
}
.jw-post--behind-the-image .jw-post__header h1 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 72px);
}
.jw-post--behind-the-image .jw-post__technical {
  max-width: none;
}
.jw-post--behind-the-image .jw-post__content {
  max-width: none;
  padding-top: 64px;
}

.jw-footer { padding: 65px 0 30px; border-top: 1px solid var(--jw-border); background: #0d0d0c; }
.jw-footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; }
.jw-brand--footer .jw-brand__name { font-size: 23px; }
.jw-footer__nav, .jw-footer__social { display: flex; flex-wrap: wrap; gap: 20px 30px; }
.jw-footer__nav a, .jw-footer__social a { color: var(--jw-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.jw-footer__nav a:hover, .jw-footer__social a:hover { color: var(--jw-text); }
.jw-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 22px; border-top: 1px solid var(--jw-border); color: #67645d; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }

@media (max-width: 1050px) {
  :root { --jw-container: min(100% - 56px, 1380px); }
  .jw-selected__layout { grid-template-columns: 1fr; }
  .jw-selected__intro { max-width: 600px; }
  .jw-collections__grid { grid-template-columns: repeat(2, 1fr); }
  .jw-collection { min-height: 330px; }
  .jw-featured-story { grid-template-columns: 1fr; }
  .jw-featured-story__image { min-height: 55vw; }
  .jw-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --jw-container: calc(100% - 36px); }
  .jw-header { padding: 18px 0; }
  .jw-brand__name { font-size: 22px; }
  .jw-brand__strap { font-size: 7px; letter-spacing: .16em; }
  .jw-menu-toggle { display: block; position: relative; z-index: 31; }
  .jw-nav {
    position: fixed; inset: 0; z-index: 30; display: flex; flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 80px 30px; background: rgba(17,17,15,.98);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s var(--jw-ease), transform .25s var(--jw-ease);
  }
  .jw-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .jw-nav a { font-family: var(--jw-serif); font-size: 46px; letter-spacing: 0; text-transform: none; }
  .jw-nav a::after { display: none; }
  .jw-header.is-menu-open { position: fixed; }
  .jw-hero__content { padding-bottom: 44px; }
  .jw-hero h1 { font-size: clamp(54px, 16vw, 82px); max-width: 95%; }
  .jw-scroll { margin-top: 38px; }
  .jw-section { padding: 90px 0; }
  .jw-selected__layout { gap: 45px; }
  .jw-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 180px 220px; }
  .jw-mosaic__item--1 { grid-column: 1 / 3; grid-row: 1; }
  .jw-mosaic__item--2 { grid-column: 1; grid-row: 2; }
  .jw-mosaic__item--3 { grid-column: 2; grid-row: 2 / 4; }
  .jw-mosaic__item--4 { grid-column: 1; grid-row: 3; }
  .jw-mosaic__item--5, .jw-mosaic__item--6 { display: none; }
  .jw-collections__grid { grid-template-columns: 1fr; }
  .jw-collection { min-height: 300px; }
  .jw-featured-story__image { min-height: 75vw; }
  .jw-featured-story__content { padding: 70px 28px; }
  .jw-title-section, .jw-post__header { padding: 100px 0 60px; }
  .jw-title-section--compact { padding: 100px 0 40px; }
  .jw-title-section h1, .jw-post__header h1 { font-size: clamp(55px, 16vw, 85px); }
  .jw-page-hero__lead { max-width: 440px; font-size: 16px; }
  .jw-story-content { padding-top: 85px; }
  .jw-story-content .jw-prose > h2 { margin-top: 68px; }
  .jw-story-pullquote { margin: 62px 0; padding-left: 24px; }
  .jw-story-wide { width: calc(100vw - 36px); margin: 62px 0; }
  .jw-story-wide.jw-piwigo-row { margin: 62px 0; grid-template-columns: 1fr; gap: 32px; }
  .jw-story-outro { margin-top: 65px; }
  .jw-post__header h1 { line-height: 1.02; }
  .jw-journal__grid { grid-template-columns: 1fr; gap: 60px; }
  .jw-journal-card h2 { font-size: 42px; }
  .jw-footer__top { grid-template-columns: 1fr; }
  .jw-footer__bottom { flex-direction: column; margin-top: 50px; }
}

.piwigo-embed figcaption {
  margin-top: -32px;
  max-width: 100%;
  text-align: center;
  font-family: var(--jw-serif, Georgia, serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--jw-muted, #9d9a91);
}

/* Wrap consecutive [piwigo] shortcodes in <div class="jw-piwigo-row">...</div>
   to lay them out side by side, wrapping to new rows as space runs out. */
.jw-piwigo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 50px 0;
}
.jw-piwigo-row .piwigo-embed {
  margin: 0;
  min-width: 0;
}
.jw-piwigo-row .piwigo-embed img {
  width: 100%;
  margin: 0;
  display: block;
}
.jw-piwigo-row .piwigo-embed figcaption {
  margin-top: 10px;
}

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