
      :root {
        --olive-deep: #3d4220;
        --olive:      #4a5028;
        --olive-mid:  #5e6536;
        --olive-soft: #8a8f5e;
        --olive-pale: #d8d6bf;
        --cream:      #f4efe4;
        --bone:       #ebe4d3;
        --ink:        #1f2014;
        --rule:       color-mix(in srgb, var(--olive) 18%, transparent);

        /* A · B mark only — reserved */
        --mark-font: "Italiana", Georgia, serif;

        /* Type roles */
        --display:   "Italiana", Georgia, serif;      /* headings */
        --editorial: "EB Garamond", Georgia, serif;   /* body */
        --utility:   "EB Garamond", Georgia, serif;   /* italic asides */
      }
      *, *::before, *::after { box-sizing: border-box; }
      html, body { margin: 0; padding: 0; }
      html { scroll-behavior: smooth; }
      body {
        background: var(--cream);
        color: var(--olive);
        font-family: var(--editorial);
        font-size: 19px;
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
      }
      ::selection { background: var(--olive-pale); color: var(--olive-deep); }

      /* ---------- Layout primitives ---------- */
      .wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
      .center { text-align: center; }
      hr.rule {
        border: none;
        border-top: 1px solid var(--rule);
        margin: 0;
      }
      .eyebrow {
        font-family: var(--utility);
        font-style: italic;
        font-size: 14px;
        letter-spacing: 0.32em;
        text-transform: lowercase;
        padding-left: 0.32em;
        opacity: 0.7;
        display: inline-block;
      }
      .btn {
        display: inline-block;
        background: var(--olive);
        color: var(--cream);
        font-family: var(--editorial);
        font-size: 13px;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        padding: 16px 32px;
        text-decoration: none;
        border: 1px solid var(--olive);
        transition: background 200ms ease, color 200ms ease;
      }
      .btn:hover { background: var(--olive-deep); }
      .btn.outline {
        background: transparent;
        color: var(--olive);
      }
      .btn.outline:hover {
        background: var(--olive);
        color: var(--cream);
      }

      /* Image placeholder — striped, captioned */
      .ph {
        position: relative;
        background: var(--olive-pale);
        color: var(--olive-deep);
        overflow: hidden;
        display: grid;
        place-items: center;
      }
      .ph::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(135deg,
          color-mix(in srgb, var(--olive) 14%, transparent) 0 1px,
          transparent 1px 14px);
      }
      .ph .lbl {
        position: relative;
        z-index: 1;
        font-family: var(--utility);
        font-style: italic;
        font-size: 14px;
        padding: 10px 18px;
        background: color-mix(in srgb, var(--cream) 80%, transparent);
        border: 1px solid var(--rule);
        text-align: center;
      }

      /* ---------- Top bar (social + utility nav) ---------- */
      .topbar {
        border-bottom: 1px solid var(--rule);
        padding: 12px 0;
        font-family: var(--utility);
        font-style: italic;
        font-size: 13px;
      }
      .topbar .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
      }
      .topbar .social {
        display: flex;
        gap: 18px;
        letter-spacing: 0.04em;
      }
      .topbar a {
        color: var(--olive);
        text-decoration: none;
        opacity: 0.78;
      }
      .topbar a:hover { opacity: 1; }

      /* ---------- Site header ---------- */
      .site-header {
        padding: 22px 0 18px;
        text-align: center;
      }
      .logo-mark {
        font-family: var(--mark-font);
        font-weight: 400;
        font-size: 56px;
        line-height: 0.85;
        display: inline-flex;
        align-items: baseline;
        color: var(--olive);
      }
      .logo-mark .dot {
        width: 0.05em;
        height: 0.05em;
        margin: 0 0.045em 0.34em;
        border-radius: 50%;
        background: currentColor;
        display: inline-block;
        flex: none;
      }
      .logo-rule {
        display: block;
        width: 36px;
        height: 1px;
        background: var(--olive);
        opacity: 0.4;
        margin: 2px auto 5px;
      }
      .logo-name {
        font-family: var(--editorial);
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0.42em;
        text-transform: uppercase;
        padding-left: 0.42em;
        opacity: 0.95;
        margin-top: -2px;
      }

      /* Main nav */
      .mainnav {
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid var(--rule);
        text-align: center;
      }
      .mainnav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: inline-flex;
        gap: clamp(20px, 4vw, 40px);
      }
      .mainnav a {
        font-family: var(--editorial);
        font-size: 12px;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: var(--olive);
        text-decoration: none;
        opacity: 0.85;
      }
      .mainnav a:hover,
      .mainnav .current a {
        opacity: 1;
      }
      .mainnav .current a {
        font-family: var(--utility);
        font-style: italic;
        text-transform: lowercase;
        letter-spacing: 0.22em;
        padding-left: 0.22em;
      }

      /* ---------- Hero ---------- */
      .hero {
        padding: 80px 0 100px;
        border-bottom: 1px solid var(--rule);
      }
      .hero .wrap {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: clamp(40px, 6vw, 80px);
        align-items: center;
      }
      .hero .text .eyebrow { margin-bottom: 22px; }
      .hero h1 {
        font-family: var(--display);
        font-weight: 400;
        font-size: clamp(48px, 6vw, 86px);
        line-height: 1.02;
        margin: 0 0 24px;
        letter-spacing: 0.005em;
      }
      .hero h1 em { font-family: var(--utility); font-style: italic; }
      .hero p.lead {
        font-size: 19px;
        line-height: 1.55;
        margin: 0 0 32px;
        max-width: 44ch;
      }
      .hero .ctas {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        align-items: center;
      }
      .hero .ctas .or {
        font-family: var(--utility);
        font-style: italic;
        opacity: 0.7;
        font-size: 14px;
      }
      .hero .portrait {
        aspect-ratio: 4 / 5;
        background: var(--bone);
      }
      .hero .hero-img {
        position: relative;
        overflow: hidden;
      }
      .hero .hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      @media (max-width: 880px) {
        .hero .wrap { grid-template-columns: 1fr; }
        .hero .portrait { order: -1; max-width: 360px; margin: 0 auto 24px; }
      }

      /* ---------- Categories ---------- */
      .categories {
        padding: 100px 0;
        border-bottom: 1px solid var(--rule);
      }
      .section-head {
        text-align: center;
        margin-bottom: 64px;
      }
      .section-head h2 {
        font-family: var(--display);
        font-weight: 400;
        font-size: clamp(36px, 4.5vw, 60px);
        line-height: 1;
        margin: 16px 0 0;
      }
      .section-head p.lead {
        margin: 18px auto 0;
        max-width: 56ch;
        opacity: 0.85;
      }
      .cat-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .cat {
        display: block;
        text-decoration: none;
        color: var(--olive);
      }
      .cat .img {
        aspect-ratio: 3 / 4;
        margin-bottom: 18px;
        transition: opacity 300ms ease;
      }
      .cat:hover .img { opacity: 0.85; }
      .cat-img {
        position: relative;
        overflow: hidden;
      }
      .cat-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .cat .name {
        font-family: var(--display);
        font-size: 26px;
        letter-spacing: 0.04em;
        line-height: 1;
        margin-bottom: 6px;
      }
      .cat .meta {
        font-family: var(--utility);
        font-style: italic;
        font-size: 14px;
        opacity: 0.7;
      }
      @media (max-width: 880px) {
        .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      }

      /* ---------- Newsletter band ---------- */
      .news {
        background: var(--olive-deep);
        color: var(--cream);
        padding: 110px 0;
        text-align: center;
      }
      .news h2 {
        font-family: var(--display);
        font-weight: 400;
        font-size: clamp(40px, 5.5vw, 76px);
        line-height: 1;
        margin: 16px 0 18px;
      }
      .news p.lead {
        font-family: var(--editorial);
        font-size: 18px;
        max-width: 52ch;
        margin: 0 auto 36px;
        opacity: 0.85;
      }
      .news .form {
        max-width: 460px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .news input[type="email"] {
        background: transparent;
        color: var(--cream);
        border: 1px solid color-mix(in srgb, var(--cream) 38%, transparent);
        border-radius: 0;
        padding: 16px 18px;
        font-family: var(--editorial);
        font-size: 16px;
        text-align: center;
      }
      .news input[type="email"]::placeholder {
        color: color-mix(in srgb, var(--cream) 55%, transparent);
        font-family: var(--utility);
        font-style: italic;
      }
      .news input[type="email"]:focus {
        outline: none;
        border-color: var(--cream);
      }
      .news .btn {
        background: var(--cream);
        color: var(--olive-deep);
        border-color: var(--cream);
      }
      .news .btn:hover { background: var(--olive-pale); border-color: var(--olive-pale); }
      .news .fine {
        margin-top: 18px;
        font-family: var(--utility);
        font-style: italic;
        font-size: 13px;
        opacity: 0.65;
      }
      .news .eyebrow { color: var(--cream); opacity: 0.8; }

      /* ---------- Shop my favorites ---------- */
      .shop {
        padding: 100px 0;
        border-bottom: 1px solid var(--rule);
      }
      .shop-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
      }
      .shop-grid .img {
        aspect-ratio: 3 / 4;
      }
      .shop-grid .img .lbl { font-size: 12px; }
      .shop-tile {
        text-decoration: none;
        color: inherit;
        transition: opacity 200ms ease;
      }
      .shop-tile:hover { opacity: 0.85; }
      .shop-bottom {
        margin-top: 48px;
        text-align: center;
      }
      @media (max-width: 880px) {
        .shop-grid { grid-template-columns: 1fr 1fr 1fr; }
      }

      /* ---------- Instagram ---------- */
      .ig {
        padding: 100px 0;
        border-bottom: 1px solid var(--rule);
      }
      .ig-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
      }
      .ig-grid .img {
        aspect-ratio: 1;
      }
      .ig-tile {
        display: block;
        position: relative;
        overflow: hidden;
        text-decoration: none;
      }
      .ig-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 400ms ease, opacity 300ms ease;
      }
      .ig-tile:hover img {
        transform: scale(1.03);
        opacity: 0.92;
      }
      .ig .handle {
        font-family: var(--utility);
        font-style: italic;
        font-size: 16px;
        margin-top: 24px;
        text-align: center;
        opacity: 0.78;
      }
      .ig .handle a {
        color: var(--olive);
        text-decoration: none;
        border-bottom: 1px solid color-mix(in srgb, var(--olive) 30%, transparent);
      }
      @media (max-width: 880px) {
        .ig-grid { grid-template-columns: 1fr 1fr 1fr; }
      }

      /* ---------- Footer ---------- */
      footer {
        background: var(--olive-deep);
        color: var(--cream);
        padding: 80px 0 40px;
      }
      footer .wrap {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 40px;
      }
      footer .col h5 {
        font-family: var(--display);
        font-weight: 400;
        font-size: 18px;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        padding-left: 0.32em;
        margin: 0 0 18px;
        opacity: 0.9;
      }
      footer .col ul { list-style: none; margin: 0; padding: 0; }
      footer .col li { margin-bottom: 8px; }
      footer .col a {
        color: var(--cream);
        text-decoration: none;
        font-family: var(--editorial);
        font-size: 14px;
        opacity: 0.8;
      }
      footer .col a:hover { opacity: 1; }
      footer .col p {
        font-family: var(--utility);
        font-style: italic;
        font-size: 15px;
        line-height: 1.55;
        margin: 0;
        opacity: 0.85;
      }
      footer .footmark {
        font-family: var(--mark-font);
        font-size: 64px;
        line-height: 0.85;
        display: inline-flex;
        align-items: baseline;
        margin-bottom: 18px;
      }
      footer .footmark .dot {
        width: 0.05em; height: 0.05em;
        margin: 0 0.045em 0.34em;
        border-radius: 50%;
        background: currentColor;
        display: inline-block;
        flex: none;
      }
      footer .bottom {
        max-width: 1240px;
        margin: 60px auto 0;
        padding: 24px clamp(20px, 5vw, 64px) 0;
        border-top: 1px solid color-mix(in srgb, var(--cream) 18%, transparent);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        font-family: var(--utility);
        font-style: italic;
        font-size: 13px;
        opacity: 0.7;
      }
      footer .bottom a { color: var(--cream); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--cream) 32%, transparent); }
      @media (max-width: 880px) {
        footer .wrap { grid-template-columns: 1fr 1fr; }
      }
    

/* ----- Content page (about / journal / contact) ----- */
.content {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.content .wrap { max-width: 760px; }
.content h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  margin: 0 0 28px;
}
.content h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 36px;
  margin: 2em 0 0.5em;
}
.content p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 1.2em;
}
.content .eyebrow { margin-bottom: 18px; }
.content .meta-img {
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 0 40px;
}
.content .amy-img {
  position: relative;
  overflow: hidden;
}
.content .amy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content .center-block {
  text-align: center;
  padding: 60px 24px;
}
.content .form {
  max-width: 480px;
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
}
.content .form label {
  font-family: var(--utility);
  font-style: italic;
  font-size: 14px;
  opacity: 0.75;
  display: block;
  margin-bottom: 4px;
}
.content .form input,
.content .form textarea {
  width: 100%;
  background: var(--cream);
  color: var(--olive);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--editorial);
  font-size: 16px;
  border-radius: 0;
  outline: none;
}
.content .form input:focus,
.content .form textarea:focus { border-color: var(--olive); }
.content .form textarea { min-height: 140px; resize: vertical; }
.content .form button {
  justify-self: center;
  margin-top: 8px;
}

/* About-page editorial accents */
.content p.lede {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
  color: var(--olive-deep);
  margin: 0 0 36px;
}
.content p.welcome {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.25;
  margin: 36px 0 0;
  color: var(--olive-deep);
}
.content .signoff {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.content .signoff-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--olive-deep);
}
.content .signoff-role {
  margin-top: 6px;
  font-family: var(--utility);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.04em;
  opacity: 0.72;
}
