/* ==========================================================================
   nicolebrachettiperetti.com — editorial design system
   A warm, magazine-style layout: paper tones, gold accents, serif display.
   ========================================================================== */

:root{
  --paper:#f6eede;
  --paper-2:#fffaf2;
  --ink:#17140f;
  --ink-soft:#3b342b;
  --line:rgba(41,33,25,.16);
  --green:#123a2d;
  --red:#a7352d;
  --gold:#b9883f;        /* AA on the dark surfaces only */
  --gold-deep:#7f5a26;   /* the gold for paper/cream surfaces: 5.4:1 on --paper,
                            4.7:1 at the thinnest point of the hero photo scrim */
  --gold-soft:#caa05a;   /* the gold to use on --green / --night */
  --night:#100f0d;
  --shadow:0 26px 60px rgba(25,20,15,.16);
  --radius:18px;
  --serif:"Georgia","Times New Roman",serif;
  --sans:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms!important;animation-iteration-count:1!important;
    transition-duration:.01ms!important;scroll-behavior:auto!important;
  }
  .strip a:hover img{transform:none}
}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}

/* keyboard focus: clear, on-brand indicator for every interactive element */
a:focus-visible,button:focus-visible,.btn:focus-visible,.strip a:focus-visible{
  outline:3px solid var(--red);outline-offset:3px;border-radius:6px;
}

/* skip link — hidden until focused by keyboard */
.skip-link{
  position:absolute;left:50%;top:8px;transform:translateX(-50%) translateY(-180%);
  z-index:20;background:var(--red);color:#fff;
  padding:10px 18px;border-radius:999px;font-weight:800;
  font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;
  transition:transform .18s ease;
}
.skip-link:focus{transform:translateX(-50%) translateY(0)}
h1,h2,h3{font-family:var(--serif);font-weight:600;line-height:1;margin:0;letter-spacing:-.01em;overflow-wrap:break-word}
p{margin:0 0 1rem}
p:last-child{margin-bottom:0}

.kicker{
  font-size:.74rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold-deep);font-weight:800;margin:0 0 .9rem;
}

/* ---- shared nav pill ---------------------------------------------------- */
.pill{
  position:relative;z-index:6;
  display:flex;flex-wrap:wrap;align-items:center;gap:6px 4px;
  width:min(1240px,calc(100% - 6vw));
  margin:26px auto 0;
  padding:9px 22px;
  border-radius:999px;
  background:rgba(255,250,242,.86);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 30px rgba(25,20,15,.14);
  border:1px solid rgba(255,255,255,.5);
}
.pill .monogram{
  font-family:var(--serif);font-size:1.45rem;font-weight:700;
  color:var(--gold-deep);letter-spacing:.02em;
  padding-right:16px;margin-right:8px;
  border-right:1px solid var(--line);line-height:1;
}
.pill nav{
  display:flex;flex-wrap:wrap;align-items:center;gap:4px 6px;
  flex:1 1 auto;justify-content:center;
}
.pill nav a{
  font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--ink-soft);padding:8px 11px;border-radius:999px;white-space:nowrap;
  transition:background .18s ease,color .18s ease;
}
.pill nav a:hover,.pill nav a:focus-visible{background:rgba(167,53,45,.1);color:var(--red)}
.pill nav a[aria-current="page"]{color:var(--red)}
.pill .cta{
  flex:0 0 auto;
  background:var(--red);color:#fff;border-radius:999px;
  padding:10px 20px;font-size:.72rem;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;white-space:nowrap;
}
.pill .cta:hover,.pill .cta:focus-visible{background:#8f2a23}

/* ---- buttons ------------------------------------------------------------ */
.btn{
  display:inline-flex;align-items:center;gap:.6em;
  padding:14px 26px;border-radius:999px;
  background:var(--red);color:#fff;font-weight:700;letter-spacing:.02em;
  font-size:.95rem;transition:transform .18s ease,background .18s ease;
}
.btn:hover,.btn:focus-visible{background:#8f2a23;transform:translateY(-1px)}
.btn .arrow{font-size:1.1em;line-height:0}
.btn.ghost{background:transparent;color:var(--ink);border:1.5px solid var(--ink)}
.btn.ghost:hover{background:var(--ink);color:var(--paper-2)}

/* ==========================================================================
   HOMEPAGE
   ========================================================================== */
.home{background:var(--night)}
.hero{
  position:relative;min-height:760px;overflow:hidden;background:#1a1712;
}
.hero__photo{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:62% 26%;
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(95deg,
      rgba(246,238,222,.96) 0%,
      rgba(246,238,222,.86) 30%,
      rgba(246,238,222,.42) 55%,
      rgba(246,238,222,.05) 74%,
      rgba(20,17,12,.18) 100%);
  pointer-events:none;
}
.hero__inner{
  position:relative;z-index:4;
  width:min(1240px,calc(100% - 6vw));margin:0 auto;
}
.hero__copy{
  max-width:640px;
  padding:64px 0 0;
}
.hero__copy h1{
  font-size:clamp(3.1rem,7.4vw,6.6rem);
  color:var(--ink);margin:.2em 0 .35em;
  line-height:.98;
}
.hero__tagline{
  font-family:var(--serif);font-style:italic;
  font-size:clamp(1.25rem,2.4vw,1.9rem);
  color:var(--ink-soft);line-height:1.3;max-width:30ch;
  margin-bottom:1.8rem;
}

/* card strip */
.strip{
  position:relative;z-index:4;
  width:min(1240px,calc(100% - 6vw));margin:46px auto 0;
  display:grid;grid-template-columns:repeat(6,1fr);
  border-radius:14px;overflow:hidden;
  border:3px solid rgba(255,255,255,.7);
  box-shadow:0 24px 50px rgba(10,8,5,.42);
}
.strip a{
  position:relative;display:block;min-height:218px;
  padding:120px 14px 22px;text-align:center;color:#fff;overflow:hidden;
  border-right:1px solid rgba(255,255,255,.45);
}
.strip a:last-child{border-right:0}
.strip a::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(15,12,8,.28),rgba(15,12,8,.72));
  z-index:1;
}
.strip img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  object-position:50% 18%;z-index:0;
  transition:transform .4s ease;
}
.strip a:hover img{transform:scale(1.06)}
.strip .badge{
  position:absolute;top:34px;left:50%;transform:translateX(-50%);z-index:2;
  width:54px;height:54px;border-radius:50%;
  border:1.5px solid rgba(255,255,255,.85);
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;background:rgba(20,17,12,.32);backdrop-filter:blur(2px);
}
/* line-art category icons: drawn as SVG so every tile gets a matching mark
   (they were dingbat characters, two of which pointed at the wrong codepoint) */
.strip .badge svg{display:block;width:23px;height:23px;color:#fff}
.strip .label{position:relative;z-index:2;display:block;
  font-family:var(--serif);font-size:1.12rem;letter-spacing:.1em;text-transform:uppercase}
.strip .sub{position:relative;z-index:2;display:block;
  font-size:.74rem;color:rgba(255,255,255,.82);margin-top:.4rem;line-height:1.35;font-weight:500}

/* closing quote band on home */
.hero-quote{
  position:relative;z-index:4;
  width:min(1240px,calc(100% - 6vw));margin:30px auto 0;
  padding:26px 20px 60px;text-align:center;color:#f2e7d3;
}
/* soft, feathered scrim so the cream/gold quote stays legible
   wherever the hero photo happens to be bright behind it */
.hero-quote::before{
  content:"";position:absolute;z-index:0;
  left:50%;top:46%;transform:translate(-50%,-50%);
  width:min(900px,98%);height:124%;
  background:radial-gradient(ellipse at center,
    rgba(14,13,11,.82) 0%,
    rgba(14,13,11,.8) 52%,
    rgba(14,13,11,.5) 72%,
    rgba(14,13,11,.16) 88%,
    rgba(14,13,11,0) 100%);
  pointer-events:none;
}
.hero-quote blockquote{
  position:relative;z-index:1;
  margin:0;font-family:var(--serif);font-style:italic;
  font-size:clamp(1.05rem,1.7vw,1.4rem);line-height:1.5;color:#efe4d0;
}
.hero-quote .sig{
  position:relative;z-index:1;
  display:block;margin-top:.7rem;font-family:var(--serif);
  font-style:italic;color:var(--gold-soft);font-size:1.15rem;letter-spacing:.02em;
}

/* ==========================================================================
   INTERIOR PAGES
   ========================================================================== */
.interior{background:var(--paper)}
.interior .pill{
  background:rgba(255,250,242,.94);
  box-shadow:0 8px 24px rgba(25,20,15,.12);
}

.feature{
  width:min(1240px,calc(100% - 6vw));margin:26px auto 0;
  display:grid;grid-template-columns:1.02fr .98fr;
  border-radius:var(--radius);overflow:hidden;
  background:var(--paper-2);box-shadow:var(--shadow);border:1px solid var(--line);
  min-height:520px;
}
.feature__media{position:relative;min-height:520px;background:#1a1712}
.feature__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 15%}
.feature__copy{
  display:flex;flex-direction:column;justify-content:center;
  padding:clamp(34px,5vw,72px);background:var(--green);color:#f4ead7;
}
.feature__copy h1{
  font-size:clamp(2.6rem,5.4vw,4.8rem);color:#fdf6e8;margin-bottom:.4em;line-height:1.02;
}
.feature__copy .lede{
  font-family:var(--serif);font-size:clamp(1.1rem,1.5vw,1.32rem);
  line-height:1.5;color:#ece0cb;max-width:40ch;margin-bottom:1.6rem;
}
.feature__copy .kicker{color:var(--gold-soft)}
.feature__copy .btn{background:var(--red);align-self:flex-start}

/* editorial body sections */
.layout{
  width:min(1240px,calc(100% - 6vw));margin:0 auto;
  padding:clamp(46px,6vw,86px) 0 24px;
}
.section-head{max-width:62ch;margin:0 auto clamp(30px,4vw,52px);text-align:center}
.section-head h1,.section-head h2{font-size:clamp(2rem,3.6vw,3.1rem);color:var(--green);margin-bottom:.5em}
.section-head h1::after,.section-head h2::after{content:"";display:block;width:48px;height:2px;background:var(--red);margin:.7em auto 0}
.section-head p{color:var(--ink-soft);font-size:1.05rem}

/* alternating photo + prose rows */
.spread{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(20px,3vw,44px);
  align-items:center;margin:0 0 clamp(34px,5vw,64px);
}
.spread:last-child{margin-bottom:0}
.spread__media{
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
  aspect-ratio:4/3;background:#1a1712;border:1px solid var(--line);
}
.spread__media.tall{aspect-ratio:3/4}
.spread__media img{width:100%;height:100%;object-fit:cover;object-position:50% 15%}
.spread__copy h3{font-size:clamp(1.6rem,2.6vw,2.3rem);color:var(--ink);margin-bottom:.5em}
.spread__copy p{color:var(--ink-soft);line-height:1.7}
.spread.reverse .spread__media{order:2}
.spread.reverse .spread__copy{order:1}

/* three-up note cards */
.notes{
  display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,2vw,26px);
  margin-top:clamp(34px,5vw,60px);
}
.note{
  background:var(--paper-2);border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(26px,3vw,40px);box-shadow:0 12px 30px rgba(25,20,15,.07);
}
.note .kicker{color:var(--red)}
.note h3{font-size:1.5rem;color:var(--green);margin-bottom:.5em}
.note p{color:var(--ink-soft);line-height:1.65;margin:0}

/* pull quote band */
.pullquote{
  background:var(--green);color:#f3e9d6;margin-top:clamp(46px,6vw,84px);
}
.pullquote__inner{
  width:min(1000px,calc(100% - 6vw));margin:0 auto;
  padding:clamp(46px,6vw,84px) 0;text-align:center;
}
.pullquote blockquote{
  margin:0;font-family:var(--serif);font-style:italic;
  font-size:clamp(1.4rem,2.6vw,2.1rem);line-height:1.4;
}
.pullquote .sig{display:block;margin-top:1rem;color:var(--gold-soft);font-size:1.1rem;letter-spacing:.06em}

/* gallery mosaic (gallery page) */
.mosaic{
  display:grid;grid-template-columns:repeat(3,1fr);
  grid-auto-rows:240px;gap:14px;margin-top:clamp(34px,5vw,56px);
}
.mosaic figure{margin:0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:#1a1712}
.mosaic img{width:100%;height:100%;object-fit:cover;object-position:50% 8%}
.mosaic .span-row{grid-row:span 2}
.mosaic .span-col{grid-column:span 2}

/* contact panel */
.contact-card{
  width:min(900px,calc(100% - 6vw));margin:clamp(40px,5vw,70px) auto 0;
  background:var(--paper-2);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:clamp(34px,5vw,60px);text-align:center;
}
.contact-card h2{font-size:clamp(1.9rem,3vw,2.6rem);color:var(--green);margin-bottom:.5em}
.contact-card p{color:var(--ink-soft);max-width:52ch;margin-left:auto;margin-right:auto}
.contact-card .link{color:var(--red);font-weight:700}

/* ==========================================================================
   FOOTER — distinctive three-column editorial footer
   ========================================================================== */
.site-footer{
  background:var(--night);color:#e9ddc8;margin-top:clamp(50px,7vw,96px);
  border-top:3px solid var(--gold);
}
.site-footer__inner{
  width:min(1240px,calc(100% - 6vw));margin:0 auto;
  padding:clamp(44px,5vw,72px) 0 28px;
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:clamp(26px,4vw,56px);
}
.site-footer__brand .mark{
  font-family:var(--serif);font-size:1.7rem;color:var(--gold);letter-spacing:.04em;
}
.site-footer__brand .name{
  display:block;font-family:var(--serif);font-size:1.55rem;color:#fdf6e8;margin:.5rem 0 .8rem;line-height:1.1;
}
.site-footer__brand p{color:#b9ad97;max-width:36ch;line-height:1.6;font-size:.95rem}
.site-footer__col h2{
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-soft);
  margin:0 0 1rem;font-family:var(--sans);font-weight:800;
}
.site-footer__col a{
  display:block;color:#d7cbb4;padding:.34rem 0;font-size:.95rem;
  transition:color .16s ease;
}
.site-footer__col a:hover,.site-footer__col a:focus-visible{color:var(--gold-soft)}
.site-footer__bar{
  border-top:1px solid rgba(255,255,255,.12);
  width:min(1240px,calc(100% - 6vw));margin:0 auto;
  padding:22px 0;display:flex;flex-wrap:wrap;gap:10px 22px;
  justify-content:space-between;align-items:center;
  font-size:.82rem;color:#9c917d;letter-spacing:.04em;
}
.site-footer__bar .domain{color:var(--gold-soft);font-weight:700;letter-spacing:.06em}

/* visually-hidden helper */
.vh{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

/* ==========================================================================
   HOMEPAGE BIO PANEL (scoped) + shared fact tables
   ========================================================================== */
.bio{
  position:relative;z-index:4;
  width:min(1240px,calc(100% - 6vw));margin:8px auto 0;
  padding:0 0 clamp(40px,6vw,72px);
}
.bio__inner{
  display:grid;grid-template-columns:1.5fr 1fr;gap:clamp(24px,4vw,52px);
  align-items:start;
  background:var(--paper-2);border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow);
  padding:clamp(30px,4vw,60px);
}
.bio__lead h2{font-size:clamp(2rem,3.6vw,3rem);color:var(--green);margin-bottom:.5em}
.bio__lead h2::after{content:"";display:block;width:48px;height:2px;background:var(--red);margin:.6em 0 0}
.bio__lead p{color:var(--ink-soft);line-height:1.75;margin:0 0 1.05rem}
.bio__lead .bio__intro{font-family:var(--serif);font-size:1.12rem;color:var(--ink);line-height:1.65}
.bio__lead a{color:var(--red);font-weight:700}
.bio__lead a.btn{color:#fff}
.bio__lead a.btn.ghost{color:var(--ink)}
.bio__more{margin-top:1.4rem}
.bio__facts{
  background:var(--green);color:#f3e9d6;border-radius:var(--radius);
  padding:clamp(22px,3vw,32px);position:sticky;top:18px;
}
.bio__facts h3{font-size:1.4rem;color:#fdf6e8;margin-bottom:.8rem;font-family:var(--serif)}

/* shared fact-table style (homepage + who-is post) */
.fact-table{width:100%;border-collapse:collapse;font-size:.95rem}
.fact-table th,.fact-table td{
  text-align:left;vertical-align:top;padding:.6rem .4rem;
  border-bottom:1px solid rgba(255,255,255,.16);line-height:1.5;
}
.fact-table tr:last-child th,.fact-table tr:last-child td{border-bottom:0}
.fact-table th{
  font-family:var(--sans);font-weight:800;width:38%;
  font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-soft);
  padding-right:1rem;
}
.fact-table td{color:#ece0cb}
.fact-table td a{color:#f3e9d6;text-decoration:underline;text-underline-offset:2px}

/* light-panel variant of the fact table, for use on paper backgrounds */
.fact-table--light th,.fact-table--light td{border-bottom-color:var(--line)}
.fact-table--light th{color:var(--red)}
.fact-table--light td{color:var(--ink-soft)}
.fact-table--light td a{color:var(--red)}

@media (max-width:1080px){
  .bio__inner{grid-template-columns:1fr}
  .bio__facts{position:static}
}

/* ==========================================================================
   BLOG INDEX + WHO-IS POST (scoped, paper background)
   ========================================================================== */
.post-wrap{
  width:min(820px,calc(100% - 6vw));margin:clamp(30px,4vw,52px) auto 0;
}
.post-head{margin-bottom:clamp(26px,3vw,40px)}
.post-head h1{
  font-size:clamp(2.2rem,4.6vw,3.6rem);color:var(--green);
  margin:.3em 0 .35em;line-height:1.05;
}
.post-head .post-meta{
  color:var(--ink-soft);font-size:.9rem;letter-spacing:.04em;
}
.post-head .post-standfirst{
  font-family:var(--serif);font-size:1.2rem;color:var(--ink);
  line-height:1.6;margin-top:1rem;
}
.post-body{color:var(--ink-soft)}
.post-body h2{
  font-size:clamp(1.5rem,2.6vw,2.1rem);color:var(--green);
  margin:clamp(30px,4vw,46px) 0 .6em;scroll-margin-top:90px;
}
.post-body h2::after{content:"";display:block;width:40px;height:2px;background:var(--red);margin:.5em 0 0}
.post-body h3{font-size:1.3rem;color:var(--ink);margin:1.6rem 0 .5em}
.post-body p{line-height:1.8;margin:0 0 1.1rem}
.post-body a{color:var(--red);font-weight:600;text-decoration:underline;text-underline-offset:2px}
.post-body ul{margin:0 0 1.1rem;padding-left:1.2rem}
.post-body li{margin:0 0 .5rem;line-height:1.7}

/* table of contents */
.post-toc{
  background:var(--paper-2);border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(20px,3vw,28px);margin:0 0 clamp(26px,3vw,38px);box-shadow:0 12px 30px rgba(25,20,15,.07);
}
.post-toc h2{margin:0 0 .7rem;font-size:1.1rem;color:var(--ink);font-family:var(--sans);
  letter-spacing:.12em;text-transform:uppercase;font-weight:800}
.post-toc h2::after{display:none}
.post-toc ol{margin:0;padding-left:1.2rem;color:var(--ink-soft)}
.post-toc li{margin:.35rem 0;line-height:1.5}
.post-toc a{color:var(--red);font-weight:600;text-decoration:none}
.post-toc a:hover{text-decoration:underline}

/* fact table wrapper inside posts (gives the dark table breathing room) */
.post-table{
  background:var(--green);border-radius:var(--radius);
  padding:clamp(20px,3vw,30px);margin:1.4rem 0 1.6rem;box-shadow:var(--shadow);
}
.post-table .fact-table th{width:42%}

/* FAQ */
.faq{margin-top:1rem}
.faq details{
  background:var(--paper-2);border:1px solid var(--line);border-radius:14px;
  padding:.4rem 1.1rem;margin:0 0 .7rem;
}
.faq summary{
  cursor:pointer;font-family:var(--serif);font-size:1.12rem;color:var(--ink);
  padding:.7rem 0;list-style:none;font-weight:600;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";float:right;color:var(--red);font-weight:700;margin-left:1rem}
.faq details[open] summary::after{content:"\2212"}
.faq details[open] summary{border-bottom:1px solid var(--line)}
.faq details p{padding:.8rem 0 .6rem;margin:0;color:var(--ink-soft);line-height:1.75}

/* blog index cards */
.post-list{display:grid;gap:clamp(18px,2.5vw,26px);margin-top:clamp(26px,3vw,40px)}
.post-card{
  background:var(--paper-2);border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(24px,3vw,38px);box-shadow:0 12px 30px rgba(25,20,15,.07);
}
.post-card .post-meta{color:var(--gold-deep);font-size:.74rem;letter-spacing:.16em;
  text-transform:uppercase;font-weight:800;margin:0 0 .6rem}
.post-card h2{font-size:clamp(1.5rem,2.6vw,2rem);color:var(--green);margin:0 0 .5em;line-height:1.1}
.post-card h2 a{color:inherit}
.post-card h2 a:hover{color:var(--red)}
.post-card p{color:var(--ink-soft);line-height:1.7;margin:0 0 1.1rem}
.post-card .more{color:var(--red);font-weight:700}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px){
  .hero{min-height:0}
  .hero__photo{position:relative;height:440px}
  .hero::after{
    background:linear-gradient(180deg,rgba(20,17,12,.12),rgba(20,17,12,.55));
  }
  .hero__inner{position:static}
  .hero__copy{
    max-width:none;padding:34px 0 6px;
    background:var(--paper);width:min(1240px,calc(100% - 6vw));margin:0 auto;
  }
  .hero__copy h1,.hero__tagline{color:var(--ink)}
  .hero__tagline{color:var(--ink-soft)}
  .strip{grid-template-columns:repeat(3,1fr);margin-top:24px}
  .strip a:nth-child(3n){border-right:0}
  /* the quote still sits on the dark hero background at this width, so it
     keeps the light cream/gold treatment; only the photo scrim is dropped */
  .hero-quote{padding-bottom:30px}
  .hero-quote::before{display:none}
  .feature{grid-template-columns:1fr;min-height:0}
  .feature__media{height:360px;min-height:0}
  .spread{grid-template-columns:1fr;gap:20px}
  .spread.reverse .spread__media{order:0}
  .spread.reverse .spread__copy{order:0}
  .notes{grid-template-columns:1fr 1fr}
  .mosaic{grid-template-columns:1fr 1fr;grid-auto-rows:220px}
  .site-footer__inner{grid-template-columns:1fr 1fr}
  .site-footer__brand{grid-column:1 / -1}
}
@media (max-width:680px){
  .pill{padding:9px 12px;border-radius:20px;width:calc(100% - 5vw)}
  .pill nav{justify-content:flex-start}
  .pill .monogram{border-right:0;padding-right:8px}
  .hero__photo{height:340px}
  .hero__copy h1{font-size:clamp(2.6rem,11vw,3.6rem)}
  .strip{grid-template-columns:1fr 1fr}
  .strip a:nth-child(3n){border-right:1px solid rgba(255,255,255,.45)}
  .strip a:nth-child(2n){border-right:0}
  .feature__media{height:300px}
  .notes{grid-template-columns:1fr}
  .mosaic{grid-template-columns:1fr;grid-auto-rows:240px}
  .mosaic .span-col{grid-column:auto}
  .mosaic .span-row{grid-row:auto}
  .site-footer__inner{grid-template-columns:1fr}
  .site-footer__bar{justify-content:flex-start}
}

/* ==========================================================================
   AUTHORISED PHOTOGRAPHY — visible copyright credits
   ========================================================================== */
.photo{margin:0}
.photo-credit{display:block;font-size:.72rem;opacity:.6;margin-top:.35rem;letter-spacing:.02em}
.photo--lead{max-width:440px;margin:0 auto 2.2rem}
.photo--lead img{width:100%;height:auto;border-radius:12px;display:block;box-shadow:var(--shadow)}
.photo--lead figcaption{text-align:center}
.hero__credit{
  position:absolute;right:16px;top:18px;z-index:4;margin:0;
  font-size:.7rem;color:rgba(255,255,255,.92);letter-spacing:.03em;
  background:rgba(20,17,12,.5);padding:.28rem .6rem;border-radius:6px;
}
.feature__credit{
  position:absolute;left:12px;bottom:11px;z-index:3;margin:0;
  font-size:.68rem;color:rgba(255,255,255,.92);letter-spacing:.02em;
  background:rgba(20,17,12,.55);padding:.24rem .55rem;border-radius:6px;
}
.spread__media{position:relative}
.spread__media .photo-credit{
  position:absolute;left:10px;bottom:10px;z-index:3;margin:0;opacity:1;
  font-size:.66rem;color:rgba(255,255,255,.92);letter-spacing:.02em;
  background:rgba(20,17,12,.55);padding:.22rem .5rem;border-radius:6px;
}
.site-footer__credit{flex-basis:100%;order:1;color:#8a8069;font-size:.78rem;letter-spacing:.03em}
