/* ============================================================
   with love, giuliana — global styles
   Follows guidelines/guidelines.html (May 2026)
   ============================================================ */
:root {
  --cream: #F5F0E8;     /* primary background */
  --forest: #1B4332;    /* headings, text, buttons */
  --forest-dark: #143726;
  --blush: #E8B8C2;     /* primary accent */
  --pale: #FBF0F3;      /* soft backgrounds */
  --nearwhite: #FEF9FA; /* subtle fills */
  --rose: #C8889A;      /* display accents */
  --crimson: #C8102E;   /* sparing use only */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--forest);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--forest); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
}

/* Brand mark: "with love," 500 · "giuliana" 300 italic blush */
.brandmark {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.1;
}
.brandmark em { font-weight: 300; font-style: italic; color: var(--blush); }
.brandmark.on-dark { color: var(--cream); }

/* ---------- Top navbar (always visible & white; big at top, shrinks on scroll) ---------- */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: #FFFFFF; /* deliberately pure white (owner request; guideline exception) */
  border-bottom: 1px solid var(--blush);
  transition: height 0.25s ease;
}
.topnav .nav-brand { font-size: clamp(24px, 3.4vw, 34px); transition: font-size 0.25s ease; }
.topnav .nav-brand:hover { text-decoration: none; }
.topnav.shrunk { height: 60px; }
.topnav.shrunk .nav-brand { font-size: clamp(20px, 2.6vw, 24px); }
body.has-topnav { padding-top: 92px; }

/* ---------- Menu button (inside navbar, left) ---------- */
.menu-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.menu-btn:hover { background: var(--pale); }
.menu-btn .bars { position: relative; width: 18px; height: 12px; }
.menu-btn .bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--forest);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.menu-btn .bars span:nth-child(1) { top: 0; }
.menu-btn .bars span:nth-child(2) { top: 5px; }
.menu-btn .bars span:nth-child(3) { top: 10px; }
body.menu-open .menu-btn .bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
body.menu-open .menu-btn .bars span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn .bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* ---------- Left drawer menu ---------- */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: min(320px, 85vw);
  background: var(--nearwhite);
  border-right: 1px solid var(--blush);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 96px 32px 40px;
  box-shadow: none;
}
body.menu-open .drawer {
  transform: translateX(0);
  box-shadow: 20px 0 40px rgba(27, 67, 50, 0.08);
}
/* invisible click-catcher so tapping the page closes the drawer (no dark overlay) */
.drawer-catcher {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  background: transparent;
}
body.menu-open .drawer-catcher { display: block; }

.drawer .drawer-brand {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 32px;
}
.drawer ul { list-style: none; }
.drawer .menu-item { border-bottom: 0.5px solid #E8DDD6; }
.drawer .menu-item > a,
.drawer .menu-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 2px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.drawer .menu-item > a:hover,
.drawer .menu-item > button:hover { color: var(--rose); text-decoration: none; }
.drawer .caret { font-size: 10px; color: var(--rose); transition: transform 0.25s ease; }
.drawer .menu-item.open .caret { transform: rotate(180deg); }
.drawer .submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.drawer .menu-item.open .submenu { max-height: 400px; }
.drawer .submenu a {
  display: block;
  padding: 9px 0 9px 18px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s ease;
}
.drawer .submenu a:hover { color: var(--rose); }
.drawer .drawer-socials { margin-top: 32px; display: flex; gap: 18px; }

/* ---------- Hero (full screen) ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  min-height: calc(100svh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
/* each hero photo is a full-cover layer that cross-fades into the next;
   only one carries .active (opacity:1) at a time */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(27, 67, 50, 0.5); /* flat forest scrim — no gradients */
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; padding: 32px 24px; }
.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(245, 240, 232, 0.45);
}
.hero-dots button.active { background: var(--cream); }
.hero .eyebrow { color: var(--blush); margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 em { font-weight: 300; font-style: italic; color: var(--blush); }
.hero p.body {
  font-size: 16px;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.hero .signature {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--blush);
}
.hero .scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  text-decoration: none;
  font-size: 22px;
  animation: bob 2s infinite ease-in-out;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--forest); color: var(--cream); border: 1px solid var(--forest); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-secondary { background: transparent; color: var(--forest); border: 1px solid var(--blush); }
.btn-secondary:hover { background: var(--pale); }
.btn-on-image { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.btn-on-image:hover { background: var(--cream); color: var(--forest); }

/* ---------- Split-screen panels ---------- */
.split-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh; }
.split-panel .panel-img { position: relative; overflow: hidden; background-size: cover; background-position: center; min-height: 320px; }
.split-panel.reverse .panel-img { order: 2; }

/* ---------- Embedded-media background layer ----------
   Homepage section images can be a plain URL (rendered as a CSS
   background, as above) or a full embed snippet (Flickr/Instagram/etc,
   pasted verbatim from the source). When it's an embed, its markup is
   injected here and stretched to fill the same space a background
   image would have occupied. */
.media-embed-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.media-embed-bg img, .media-embed-bg iframe { width: 100%; height: 100%; object-fit: cover; display: block; border: none; }
.sec-full::before, .duo-tile::before { z-index: 1; }
.sec-full .sec-inner, .duo-inner { z-index: 2; }
.split-panel .panel-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 6vw, 88px) clamp(24px, 5vw, 72px);
  background: var(--cream);
}
.split-panel.alt .panel-text { background: var(--pale); }
.panel-text .eyebrow { margin-bottom: 16px; }
.panel-text h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.panel-text p { max-width: 48ch; margin-bottom: 28px; font-size: 16px; }

/* ---------- Full-bleed image sections (Style 1 cover · Style 4 banner) ---------- */
.sec-full {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--cream);
  overflow: hidden;
}
.sec-full:hover { text-decoration: none; }
.sec-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.45);
  transition: background 0.3s ease;
}
a.sec-full:hover::before { background: rgba(27, 67, 50, 0.6); }
.sec-full .sec-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.sec-cover, .sec-cover .sec-inner { min-height: 100vh; min-height: 100svh; }
.sec-banner, .sec-banner .sec-inner { min-height: 52vh; }
.sec-full .eyebrow { color: var(--blush); margin-bottom: 16px; }
.sec-full h2 {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.sec-full p { max-width: 520px; font-size: 16px; margin-bottom: 28px; }
.sec-full .disclosure {
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ---------- Grid section (Style 5: 1–6 images per row) ---------- */
.sec-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px clamp(24px, 5vw, 48px);
  text-align: center;
}
.sec-grid .eyebrow { margin-bottom: 12px; }
.sec-grid h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.sec-grid > p { max-width: 640px; margin: 0 auto 8px; font-size: 16px; }
.sec-grid .grid { display: grid; gap: 16px; margin-top: 32px; }
.sec-grid .cell { position: relative; display: block; overflow: hidden; }
.sec-grid .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: opacity 0.25s ease;
}
.sec-grid a.cell:hover img { opacity: 0.85; }
.sec-grid .cell-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 67, 50, 0.55);
  color: var(--cream);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 6px;
}
@media (max-width: 720px) {
  .sec-grid .grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 460px) {
  .sec-grid .grid { grid-template-columns: 1fr !important; }
}

/* ---------- Duo section (Style 6: two images side by side, text on each) ---------- */
.duo-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh; }
.duo-tile {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--cream);
  overflow: hidden;
}
.duo-tile:hover { text-decoration: none; }
.duo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.45);
  transition: background 0.3s ease;
}
a.duo-tile:hover::before { background: rgba(27, 67, 50, 0.6); }
.duo-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 48px 24px;
}
.duo-tile .eyebrow { color: var(--blush); margin-bottom: 16px; }
.duo-tile h2 {
  font-size: clamp(22px, 3.2vw, 38px);
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.duo-tile p { max-width: 34ch; font-size: 15px; margin-bottom: 22px; }
.duo-tile .disclosure {
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.75;
}
@media (max-width: 720px) {
  .duo-panel { grid-template-columns: 1fr; min-height: 0; }
  .duo-tile { min-height: 56vh; }
}

/* ---------- Newsletter / trends brief signup ---------- */
.signup-section {
  background: var(--pale);
  border-top: 1px solid var(--blush);
  padding: 72px clamp(24px, 5vw, 48px);
  text-align: center;
}
.signup-inner { max-width: 640px; margin: 0 auto; }
.signup-section .eyebrow { margin-bottom: 12px; }
.signup-section h2 {
  font-size: clamp(30px, 4.6vw, 48px);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.signup-section h2 em { font-weight: 300; font-style: italic; color: var(--rose); }
.signup-text { font-size: 16px; margin-bottom: 28px; }
.signup-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.signup-form input {
  flex: 1 1 260px;
  max-width: 360px;
  padding: 13px 20px;
  border: 1px solid var(--blush);
  border-radius: 999px;
  background: var(--nearwhite);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--forest);
}
.signup-form input:focus { outline: none; border-color: var(--rose); }
.signup-form .btn { border: none; }
.signup-success {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--rose);
}
.signup-error { font-size: 13px; color: var(--crimson); margin-top: 12px; }

/* ---------- Live Instagram feed (homepage, above the footer) ---------- */
.reels-section { border-top: 1px solid var(--blush); }
.reels-head {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 48px) 22px;
}
.reels-follow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--forest);
  white-space: nowrap;
  text-decoration: none;
}
.reels-handle {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
  text-decoration: none;
}
.reels-follow:hover, .reels-handle:hover { color: var(--rose); text-decoration: none; }
.reels-line { flex: 1; height: 1px; background: var(--forest); min-width: 32px; }
.reels-grid { width: 100%; line-height: 0; }
.reels-grid iframe { width: 100%; border: none; display: block; }
.reels-placeholder {
  padding: 40px clamp(24px, 5vw, 48px) 56px;
  text-align: center;
  font-size: 13px;
  color: var(--rose);
}
@media (max-width: 560px) {
  .reels-head { gap: 12px; padding: 22px 20px 16px; }
}

/* ---------- Back to top (between content and footer on long pages) ---------- */
.back-to-top {
  display: block;
  text-align: center;
  padding: 36px 24px;
}
.back-to-top a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--rose);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.back-to-top a:hover { color: var(--forest); text-decoration: none; }
.back-to-top .arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--blush);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--forest);
  transition: background 0.25s ease;
}
.back-to-top a:hover .arrow { background: var(--pale); }

/* ---------- Footer (socials left · brand centre · pages right) ---------- */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--blush);
  padding: 40px clamp(24px, 5vw, 48px) 28px;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-socials { display: flex; gap: 18px; justify-self: start; }
.footer-socials a {
  color: var(--forest);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.footer-socials a:hover { color: var(--rose); text-decoration: none; }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-brand { justify-self: center; font-size: clamp(24px, 3.4vw, 34px); text-align: center; }
.footer-nav { justify-self: end; display: flex; gap: 28px; }
.footer-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}
.footer-nav a:hover { color: var(--rose); text-decoration: none; }
.footer-copy {
  text-align: center;
  margin-top: 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
}
@media (max-width: 720px) {
  .footer-row { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  .footer-socials, .footer-nav { justify-self: center; }
}

/* ---------- Inner pages (about / contact / clients gate) ---------- */
.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 48px) 96px;
  min-height: 70vh;
}
.page .eyebrow { margin-bottom: 12px; }
.page h1 {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.page h1 em { font-weight: 300; font-style: italic; color: var(--blush); }
.page p { font-size: 16px; margin-bottom: 16px; max-width: 640px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 8px 0 36px; }
.page .quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  border-top: 2px solid var(--forest);
  padding-top: 20px;
  margin: 40px 0 16px;
  max-width: 560px;
  line-height: 1.4;
}

/* forms */
.form-card {
  background: var(--nearwhite);
  border: 1px solid var(--blush);
  border-radius: 18px;
  padding: 32px;
  max-width: 560px;
  margin-top: 24px;
}
.form-card label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 18px 0 6px;
}
.form-card label:first-child { margin-top: 0; }
.form-card input, .form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--blush);
  border-radius: 4px;
  background: #fff;
  background: var(--nearwhite);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--forest);
}
.form-card input:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.form-card textarea { min-height: 140px; resize: vertical; }
.form-card .btn { margin-top: 24px; border: none; }
.form-note { font-size: 12px; color: var(--rose); margin-top: 14px; }
.form-success {
  background: var(--pale);
  border: 1px solid var(--blush);
  border-radius: 18px;
  padding: 24px 32px;
  max-width: 560px;
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
}
.form-error { color: var(--crimson); font-size: 13px; margin-top: 12px; }

/* password gate pages */
.gate-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gate-card {
  background: var(--nearwhite);
  border: 1px solid var(--blush);
  border-radius: 18px;
  padding: 48px 40px;
  width: 380px;
  max-width: 100%;
  text-align: center;
}
.gate-card .brandmark { font-size: 30px; margin-bottom: 8px; }
.gate-card .eyebrow { margin-bottom: 24px; }
.gate-card input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--blush);
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  text-align: center;
  color: var(--forest);
  margin-bottom: 16px;
}
.gate-card input:focus { outline: none; border-color: var(--rose); }
.gate-card .btn { width: 100%; border: none; }
.gate-card .gate-error { color: var(--crimson); font-size: 12px; margin-top: 12px; display: none; }

/* ---------- Article pages ---------- */
.article-head {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 8px;
  text-align: center;
}
.article-head h1 {
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0;
}
.article-head .article-meta { margin-bottom: 0; }
.article-hero-img {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.article-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--blush);
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 0;
  font-size: 16px;
}
.article-body p { margin-bottom: 22px; }
.article-body p.quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px);
  border-left: 2px solid var(--forest);
  padding: 4px 0 4px 20px;
  margin: 12px 0 32px;
  line-height: 1.4;
}
.article-body img.body-img {
  width: 100%;
  border-radius: 4px;
  margin: 8px 0 30px;
}
.article-sign {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 0 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--rose);
}
.back-journal {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.back-journal a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}
.back-journal a:hover { color: var(--forest); }

.article-related {
  max-width: 1160px;
  margin: 8px auto 0;
  padding: 48px clamp(24px, 5vw, 48px) 16px;
  text-align: center;
  border-top: 1px solid var(--blush);
}
.article-related .eyebrow { margin-bottom: 24px; }
.article-related .journal-grid { text-align: left; }

/* ---------- Journal (blog index) ---------- */
.journal-page { max-width: 1160px; }
.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 40px;
}
.journal-pill {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid var(--blush);
  border-radius: 999px;
  padding: 8px 18px;
  text-decoration: none;
}
.journal-pill:hover { background: var(--pale); text-decoration: none; }
.journal-pill.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.journal-card {
  display: block;
  color: var(--forest);
  text-decoration: none;
  background: var(--nearwhite);
  border: 1px solid var(--blush);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.journal-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(27, 67, 50, 0.1);
}
.journal-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--pale);
}
.journal-card-body { padding: 18px 20px 22px; }
.journal-card-body .eyebrow { margin-bottom: 8px; }
.journal-card-body h2 {
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.journal-card-excerpt { font-size: 14px; color: var(--forest); opacity: 0.85; margin-bottom: 10px; }
.journal-card-date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}
.journal-empty { font-size: 15px; color: var(--rose); padding: 24px 0; }
@media (max-width: 900px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .journal-grid { grid-template-columns: 1fr; }
}
.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.gallery a { display: block; }
.gallery img { width: 100%; height: auto; display: block; transition: opacity 0.25s ease; }
.gallery a:hover img { opacity: 0.85; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(27, 67, 50, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; }
.lightbox .close-x {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 32px;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .split-panel { grid-template-columns: 1fr; min-height: 0; }
  .split-panel.reverse .panel-img { order: 0; }
  .split-panel .panel-img { min-height: 46vh; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .menu-btn { left: 10px; }
}
