:root {
  --wine: #3b2025;
  --wine-light: #513036;
  --ink: #27191b;
  --cream: #f4efe5;
  --paper: #fbf8f1;
  --gold: #d8bd8d;
  --gold-deep: #ae8952;
  --muted: #776b65;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Heebo", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.site-header {
  height: 94px; padding: 0 clamp(24px, 6vw, 88px); display: flex; align-items: center;
  justify-content: space-between; background: var(--wine); color: var(--cream); border-bottom: 1px solid rgba(216,189,141,.35);
}
.brand { display: flex; align-items: center; gap: 18px; }
.brand-mark { font: 900 38px/1 "Frank Ruhl Libre", serif; color: var(--gold); }
.brand-subtitle { font-size: 10px; line-height: 1.4; letter-spacing: .25em; border-left: 1px solid rgba(216,189,141,.55); padding-left: 18px; }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; letter-spacing: .04em; }
.site-nav a:not(.nav-button) { color: rgba(255,255,255,.78); transition: color .2s; }
.site-nav a:hover { color: var(--gold); }
.nav-button { border: 1px solid var(--gold); color: var(--gold); padding: 11px 20px; }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button span:not(.sr-only) { width: 24px; height: 1px; margin: 5px; display: block; background: var(--gold); }

.hero { min-height: 675px; padding: 90px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; position: relative; overflow: hidden; color: var(--cream); background: radial-gradient(circle at 68% 56%, rgba(216,189,141,.13), transparent 28%), linear-gradient(125deg, #30191e, var(--wine-light)); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: repeating-linear-gradient(90deg, transparent 0, transparent 37px, rgba(255,255,255,.09) 38px); }
.hero-copy, .hero-art { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 24px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .28em; }
.eyebrow.dark { color: var(--gold-deep); }
h1, h2, h3 { font-family: "Frank Ruhl Libre", Georgia, serif; }
h1 { max-width: 790px; margin: 0; font-size: clamp(54px, 6.5vw, 94px); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
h1 em { color: var(--gold); font-weight: 400; }
.intro { max-width: 575px; margin: 32px 0; color: rgba(255,255,255,.72); font: 300 17px/1.8 "Heebo", sans-serif; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button { display: inline-block; padding: 15px 25px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--wine); }
.button-wine { background: var(--wine); color: white; }
.text-link { padding: 12px 0; color: var(--gold); font-size: 13px; border-bottom: 1px solid rgba(216,189,141,.4); }
.hero-art { justify-self: center; width: min(350px, 82%); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(216,189,141,.42); transform: rotate(45deg); }
.thin-frame { position: absolute; inset: 22px; border: 1px solid rgba(216,189,141,.2); }
.monogram { color: var(--gold); font: 500 180px/1 "Frank Ruhl Libre", serif; transform: rotate(-45deg); opacity: .88; }
.hero-art p { position: absolute; right: -95px; bottom: 24px; width: 190px; margin: 0; color: rgba(216,189,141,.65); font-size: 9px; letter-spacing: .28em; transform: rotate(-45deg); }
.hero-ornament { position: absolute; left: 50%; bottom: 34px; color: rgba(216,189,141,.48); }

.section { padding: 110px clamp(24px, 8vw, 130px); }
.latest { display: grid; grid-template-columns: minmax(280px, .82fr) 1fr; align-items: center; gap: clamp(60px, 9vw, 150px); background: var(--cream); }
.issue-cover-wrap { width: min(100%, 450px); margin: auto; position: relative; }
.issue-cover { position: relative; width: 100%; border: 8px solid #e8dfcf; box-shadow: 0 28px 65px rgba(43,24,28,.22); }
.cover-shadow { position: absolute; width: 90%; height: 100%; top: 22px; left: 35px; background: var(--wine); opacity: .18; }
.issue-copy h2, .about h2 { margin: 0; color: var(--wine); font-size: clamp(48px, 5vw, 76px); line-height: 1; font-weight: 500; }
.issue-copy h2 span { color: var(--gold-deep); font-style: italic; }
.gold-rule { width: 68px; height: 2px; margin: 30px 0; background: var(--gold-deep); }
.issue-description { max-width: 560px; color: var(--muted); line-height: 1.85; }
.issue-details { max-width: 560px; margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid #d9cebd; }
.issue-details li { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #d9cebd; font-size: 13px; }
.issue-details span { color: var(--muted); }
.issue-details strong { color: var(--wine); font-weight: 500; }
.placeholder-note { margin: 12px 0 0; color: #988c82; font-size: 11px; }

.inside { color: var(--cream); background: var(--wine); }
.section-heading { max-width: 700px; margin: 0 auto 70px; text-align: center; }
.section-heading h2 { margin: 0 0 17px; font-size: clamp(44px, 5vw, 68px); font-weight: 500; }
.section-heading > p:last-child { color: rgba(255,255,255,.6); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: auto; border-top: 1px solid rgba(216,189,141,.25); border-bottom: 1px solid rgba(216,189,141,.25); }
.feature-grid article { position: relative; padding: 55px 44px; text-align: center; border-right: 1px solid rgba(216,189,141,.25); }
.feature-grid article:last-child { border-right: 0; }
.feature-number { position: absolute; top: 16px; left: 18px; color: rgba(216,189,141,.35); font: 15px Georgia, serif; }
.feature-symbol { height: 55px; color: var(--gold); font-size: 34px; }
.feature-grid h3 { margin: 18px 0; color: var(--gold); font-size: 28px; font-weight: 500; }
.feature-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; }

.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; align-items: center; background: var(--paper); }
.about-decoration { min-height: 400px; display: grid; place-items: center; border: 1px solid #d8c7ab; outline: 1px solid #d8c7ab; outline-offset: -16px; background: linear-gradient(145deg, #eadfcd, #f8f2e7); }
.about-decoration span { color: var(--wine); font: 500 190px "Frank Ruhl Libre", serif; opacity: .9; }
.about-copy > p:not(.eyebrow) { max-width: 590px; color: var(--muted); line-height: 1.85; }

.subscribe { color: var(--cream); background: #2c171b; }
.subscribe-inner { max-width: 1000px; margin: auto; padding: 80px 30px; position: relative; text-align: center; border: 1px solid rgba(216,189,141,.42); }
.subscribe-inner::before { content: "מ"; position: absolute; inset: 50% auto auto 50%; color: rgba(216,189,141,.04); font: 280px/1 "Frank Ruhl Libre", serif; transform: translate(-50%, -50%); }
.subscribe h2 { position: relative; margin: 0; color: var(--gold); font-size: clamp(48px, 6vw, 76px); font-weight: 500; line-height: 1; }
.subscribe p:not(.eyebrow) { position: relative; color: rgba(255,255,255,.62); margin: 25px 0 30px; }
.subscribe .button { position: relative; }
.subscribe small { display: block; position: relative; margin-top: 15px; color: rgba(255,255,255,.38); }
.corner { position: absolute; width: 30px; height: 30px; }
.corner-one { top: 10px; left: 10px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.corner-two { right: 10px; bottom: 10px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }

footer { padding: 58px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; color: rgba(255,255,255,.68); background: #211115; }
.footer-brand span { color: var(--gold); font: 700 34px "Frank Ruhl Libre", serif; }
.footer-brand p { margin: 5px 0 0; font-size: 12px; }
.footer-links { display: flex; gap: 28px; font-size: 12px; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 25px; font-size: 11px; border-top: 1px solid rgba(255,255,255,.09); }
.notice { position: fixed; left: 50%; bottom: 24px; z-index: 20; padding: 14px 22px; color: white; background: #211115; box-shadow: 0 12px 35px rgba(0,0,0,.2); font-size: 13px; opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: .25s; }
.notice.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .site-header { height: 78px; }
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; z-index: 10; top: 78px; left: 0; right: 0; padding: 25px; flex-direction: column; background: #2c171b; }
  .site-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 90px; padding-bottom: 100px; }
  .hero-art { display: none; }
  .latest, .about { grid-template-columns: 1fr; }
  .issue-copy { max-width: 620px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { border-right: 0; border-bottom: 1px solid rgba(216,189,141,.25); }
  .feature-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .brand-subtitle { display: none; }
  .hero { padding-top: 72px; }
  h1 { font-size: 52px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .issue-details li { flex-direction: column; gap: 3px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
