/* =====================================================================
   Sharon Gordon — editorial rebuild
   Design system: cream / soft charcoal / champagne
   Type: Cormorant Garamond (display) + Inter (body)
   ===================================================================== */

:root {
  --cream:        #FAF6EF;
  --cream-2:      #F1E9DC;
  --cream-3:      #EAE0CF;
  --charcoal:     #2A2521;
  --charcoal-2:   #4A433C;
  --muted:        #7A7167;
  --champagne:    #B8975A;
  --champagne-dk: #9C7C43;
  --line:         rgba(42, 37, 33, 0.14);
  --line-soft:    rgba(42, 37, 33, 0.08);
  --white:        #FFFFFF;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --read: 720px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0;
}

p { margin: 0 0 1.15em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-dk);
  margin: 0 0 22px;
}

.serif-italic { font-family: var(--serif); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn:hover { background: var(--charcoal); color: var(--cream); }

.btn--solid { background: var(--charcoal); color: var(--cream); }
.btn--solid:hover { background: var(--champagne-dk); border-color: var(--champagne-dk); color: var(--white); }

.btn--gold { border-color: var(--champagne-dk); color: var(--champagne-dk); }
.btn--gold:hover { background: var(--champagne-dk); color: var(--white); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 4px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.link-arrow:hover { gap: 14px; color: var(--champagne-dk); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  padding-left: 0.34em; /* optical balance for tracking */
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal-2);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--charcoal); }
.nav-links .ext { color: var(--champagne-dk); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 22px; color: var(--charcoal); }

/* ---------- Placeholder image blocks (until real photos arrive) ---------- */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--cream-2) 0%, var(--cream-3) 55%, #DFD2BC 100%);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.ph::before {
  /* subtle diagonal sheen */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
}
.ph__tag {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42,37,33,0.5);
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.ph__tag::before { content: "◈"; color: var(--champagne); font-size: 12px; }

/* A placeholder that now holds a real photo */
.ph.has-photo {
  /* cream, not black — any sub-pixel gap at the frame edge would otherwise
     show as a hard dark hairline around the image */
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  border-color: transparent;
}
/* Portrait frames match the photo's own 2:3 proportions, so the full
   shot shows with no cropping and no empty bars. */
.ph.has-photo.fit {
  background-size: cover;
  background-position: center top;
  aspect-ratio: 2 / 3;
}
/* Sharon's cream-background portraits are 4:5, not 2:3 — own frame so
   they sit edge-to-edge with no crop and no letterbox bars. */
.ph.has-photo.fit45 {
  background-size: cover;
  background-position: center top;
  aspect-ratio: 4 / 5;
}
.ph.has-photo::before { display: none; }
.ph.has-photo .ph__tag { display: none; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 640px;
  align-items: stretch;
}
.hero__copy {
  padding: 84px 64px 84px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__title {
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: 0.98;
  margin: 0 0 26px;
}
.hero__lead { font-size: 18px; color: var(--charcoal-2); max-width: 30em; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__media { position: relative; display: flex; align-items: center; }
.hero__media .ph { position: absolute; inset: 0; }
/* a real portrait sits in its own 2:3 frame, vertically centred */
.hero__media .ph.has-photo.fit { position: relative; inset: auto; width: 100%; }

/* two value props under hero lead */
.hero__props { display: grid; gap: 20px; margin: 0 0 34px; }
.hero__prop { display: flex; gap: 16px; align-items: baseline; }
.hero__prop .n {
  font-family: var(--serif); font-size: 26px; font-style: italic;
  color: var(--champagne-dk); line-height: 1; min-width: 34px;
}
.hero__prop h4 { font-size: 22px; margin-bottom: 2px; }
.hero__prop p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- Generic section ---------- */
section { position: relative; }
.section { padding: 110px 0; }
.section--tight { padding: 76px 0; }
.section--cream2 { background: var(--cream-2); }
.section--charcoal { background: var(--charcoal); color: var(--cream); }
.section--charcoal .eyebrow { color: var(--champagne); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 18px; }
.section-head p { font-size: 18px; color: var(--charcoal-2); }
.section--charcoal .section-head p { color: rgba(250,246,239,0.72); }

/* ---------- Pedigree split ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.split .ph { aspect-ratio: 4/5; }
/* portrait shots keep their own proportions so nothing is cropped */
.split .ph.has-photo.fit { aspect-ratio: 2/3; }
.split .ph.has-photo.fit45 { aspect-ratio: 4/5; }
.split h2 { font-size: clamp(34px, 4.4vw, 54px); margin-bottom: 24px; }
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--charcoal);
  border-left: 2px solid var(--champagne);
  padding: 6px 0 6px 28px;
  margin: 32px 0;
}

/* ---------- Trust / as-seen-in bar ---------- */
.trust { text-align: center; }
.trust__label {
  font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 30px;
}
.trust__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px 56px;
}
.trust__logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  opacity: 0.62;
  transition: opacity 0.3s ease;
}
.trust__logo:hover { opacity: 1; }
.trust__logo small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; }

/* ---------- Three-card integration ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(250,246,239,0.18); }
.card {
  padding: 48px 40px 44px;
  border-right: 1px solid rgba(250,246,239,0.18);
}
.cards .card:last-child { border-right: 0; }
.card .num {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--champagne); margin-bottom: 22px;
}
.card h3 { font-size: 30px; margin-bottom: 16px; color: var(--cream); }
.card p { color: rgba(250,246,239,0.72); font-size: 15.5px; margin-bottom: 26px; }

/* ---------- Newsletter / briefing ---------- */
.briefing { text-align: center; max-width: 640px; margin: 0 auto; }
.briefing h2 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 20px; }
.briefing p { font-size: 18px; color: var(--charcoal-2); margin-bottom: 34px; }
.signup { display: flex; gap: 0; max-width: 480px; margin: 0 auto; border: 1px solid var(--charcoal); }
.signup input {
  flex: 1; border: 0; background: transparent; padding: 16px 20px;
  font-family: var(--sans); font-size: 14px; color: var(--charcoal); outline: none;
}
.signup input::placeholder { color: var(--muted); }
.signup button {
  border: 0; background: var(--charcoal); color: var(--cream);
  padding: 0 28px; font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer;
  transition: background 0.3s ease;
}
.signup button:hover { background: var(--champagne-dk); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(250,246,239,0.7); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(250,246,239,0.14); }
.footer-brand { font-family: var(--serif); font-size: 26px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.footer-brand + p { font-size: 15px; max-width: 32em; }
.footer-col h5 { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne); margin: 0 0 18px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(250,246,239,0.72); text-decoration: none; font-size: 14.5px; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 12.5px; letter-spacing: 0.04em; color: rgba(250,246,239,0.5); flex-wrap: wrap; gap: 12px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 90px 0 70px; border-bottom: 1px solid var(--line-soft); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(44px, 6vw, 82px); margin-bottom: 22px; }
.page-hero p { font-size: 19px; color: var(--charcoal-2); max-width: 40em; }
.breadcrumb { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--champagne-dk); }

/* ---------- Media / article grid ---------- */
.article-block {
  display: grid;
  /* the image column is capped at the photo's own 340px so it is never
     scaled up — upscaling was what made these read as blurry */
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: 48px;
  padding: 56px 0; border-bottom: 1px solid var(--line-soft); align-items: center;
}
/* square — matches the photo crops taken from the source cards, so nothing
   is cropped and nothing is upscaled */
.article-block .ph { aspect-ratio: 1 / 1; }
.article-block h3 { font-size: 32px; margin-bottom: 14px; }
.article-block .meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne-dk); margin-bottom: 18px; }
.insight-quote { font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.5; color: var(--charcoal-2); margin: 0 0 22px; }
.bridge {
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--champagne);
  padding: 24px 28px;
  margin-top: 8px;
}
.bridge .bridge-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne-dk); font-weight: 600; margin-bottom: 10px; display: block; }
.bridge p { font-size: 15px; color: var(--charcoal-2); margin-bottom: 16px; }

/* ---------- Report / journal categories ---------- */
.dimension { padding: 64px 0; border-bottom: 1px solid var(--line-soft); }
.dimension__head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 12px; }
.dimension__num { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--champagne); }
.dimension h2 { font-size: clamp(30px, 4vw, 46px); }
.dimension__intro { font-size: 17px; color: var(--charcoal-2); max-width: 44em; margin: 0 0 40px; }
.feature { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; margin-bottom: 36px; }
.feature .ph { aspect-ratio: 1 / 1; }
.feature h3 { font-size: 30px; margin-bottom: 14px; }
.feature p { color: var(--charcoal-2); }
.mini-list { list-style: none; margin: 0 0 30px; padding: 0; }
.mini-list li { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.mini-list li span { font-family: var(--serif); font-size: 21px; color: var(--charcoal); max-width: 80%; }
.mini-list li a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--champagne-dk); white-space: nowrap; }
.mini-list li a:hover { color: var(--charcoal); }

/* ---------- Speaking / offer blocks ---------- */
.offer { padding: 80px 0; border-bottom: 1px solid var(--line-soft); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.offer h2 { font-size: clamp(30px, 3.8vw, 44px); margin-bottom: 20px; }
.offer .tag { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne-dk); margin-bottom: 14px; }
.feature-list { list-style: none; margin: 0 0 28px; padding: 0; }
.feature-list li { padding: 18px 0; border-top: 1px solid var(--line-soft); }
.feature-list li strong { font-family: var(--serif); font-size: 20px; font-weight: 500; display: block; margin-bottom: 4px; }
.feature-list li p { font-size: 15px; color: var(--muted); margin: 0; }
.testimonial { background: var(--cream-2); padding: 40px; border: 1px solid var(--line-soft); margin-bottom: 24px; }
.testimonial p { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.45; margin-bottom: 18px; }
.testimonial cite { font-family: var(--sans); font-style: normal; font-size: 13px; letter-spacing: 0.06em; color: var(--champagne-dk); }

/* ---------- Article page ---------- */
.reading { max-width: var(--read); margin: 0 auto; }
.reading p { font-size: 18.5px; line-height: 1.85; margin-bottom: 1.4em; }
.reading h3 { font-size: 30px; margin: 44px 0 18px; }
.article-lead { font-size: 22px !important; color: var(--charcoal-2); font-family: var(--serif); line-height: 1.6; }
.big-quote { font-family: var(--serif); font-style: italic; font-size: 32px; line-height: 1.35; text-align: center; color: var(--charcoal); margin: 56px auto; max-width: 16em; }
.author-box { display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: center; background: var(--cream-2); padding: 36px; margin: 60px 0; border: 1px solid var(--line-soft); }
.author-box .ph { aspect-ratio: 1; border-radius: 50%; }
.author-box h4 { font-size: 24px; margin-bottom: 8px; }
.author-box p { font-size: 15px; color: var(--charcoal-2); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); background: var(--white);
  padding: 14px 16px; font-family: var(--sans); font-size: 15px; color: var(--charcoal); outline: none;
  transition: border-color 0.25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--champagne); }
.contact-detail { margin-bottom: 26px; }
.contact-detail h5 { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne-dk); margin: 0 0 6px; }
.contact-detail p { font-family: var(--serif); font-size: 22px; margin: 0; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.divider { height: 1px; background: var(--line-soft); border: 0; margin: 0; }
.note-banner {
  background: var(--cream-3);
  border: 1px dashed var(--champagne);
  color: var(--charcoal-2);
  font-size: 13px;
  padding: 12px 20px;
  text-align: center;
  letter-spacing: 0.02em;
}
.note-banner strong { color: var(--charcoal); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Auto-pulled feed (from Lola Montez) ---------- */
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feed-card {
  border: 1px solid var(--line-soft); background: var(--white);
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feed-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(42,37,33,0.10); }
.feed-card__body { padding: 30px 28px 32px; display: flex; flex-direction: column; flex: 1; border-top: 2px solid var(--champagne); }
.feed-card__date { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne-dk); margin-bottom: 12px; }
.feed-card__title { font-family: var(--serif); font-size: 23px; line-height: 1.16; margin-bottom: 12px; }
.feed-card__excerpt { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; flex: 1; }
.feed-card__link { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); border-bottom: 1px solid var(--champagne); padding-bottom: 3px; align-self: flex-start; }
.feed-status { grid-column: 1 / -1; color: var(--muted); padding: 26px 28px; font-size: 14.5px; line-height: 1.6; background: var(--cream-2); border: 1px dashed var(--line); }
.feed-status strong { color: var(--champagne-dk); font-family: var(--sans); }

/* ---------- Stock imagery, toned to the cream palette ----------
   The source photos are cool grey / over-saturated. Rather than bake
   the colour in, tone them here so it stays adjustable. ---------- */
.ph.has-stock {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-color: var(--line-soft);
  filter: sepia(0.28) saturate(0.78) brightness(1.04) contrast(0.97);
}
.ph.has-stock::before { display: none; }
.ph.has-stock .ph__tag { display: none; }
.ph.has-stock::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(250,246,239,0.34), rgba(184,151,90,0.16));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Category banner — a slim editorial band, not a hero */
.cat-art {
  width: 100%; aspect-ratio: 6 / 1; margin-bottom: 30px;
  border: 1px solid var(--line-soft);
  background-size: cover; background-position: center;
}
@media (max-width: 900px) { .cat-art { aspect-ratio: 3 / 1; } }
.dimension .feed-grid { margin-top: 34px; }
.feed-status .spin { display: inline-block; width: 20px; height: 20px; border: 2px solid var(--line); border-top-color: var(--champagne-dk); border-radius: 50%; animation: feedspin 0.8s linear infinite; margin-bottom: 10px; }
@keyframes feedspin { to { transform: rotate(360deg); } }
.feed-badge { display:inline-flex; align-items:center; gap:7px; font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:var(--champagne-dk); }
.feed-badge::before { content:""; width:7px; height:7px; border-radius:50%; background:#3fa96a; box-shadow:0 0 0 0 rgba(63,169,106,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(63,169,106,0.5);} 70%{box-shadow:0 0 0 7px rgba(63,169,106,0);} 100%{box-shadow:0 0 0 0 rgba(63,169,106,0);} }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--line); padding: 8px 32px 20px;
  }
  .nav-links.open li { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { padding: 56px 0 40px; }
  .hero__media { min-height: 420px; }
  .split, .contact-grid, .article-block, .feature, .offer-grid, .author-box { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr; }
  .cards .card { border-right: 0; border-bottom: 1px solid rgba(250,246,239,0.18); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 72px 0; }
  .author-box { grid-template-columns: 1fr; text-align: center; }
  .author-box .ph { width: 120px; margin: 0 auto; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
  .signup { flex-direction: column; }
  .signup button { padding: 14px; }
  .brand { font-size: 19px; letter-spacing: 0.24em; }
}
