 :root {
      --paper: #F7F5EF;
      --paper-alt: #EFEAD9;
      --paper-deep: #E8E2CE;
      --ink: #15191A;
      --ink-soft: #4B534C;
      --ink-faint: #7B8177;
      --forest: #1F3A2E;
      --forest-light: #2F5443;
      --forest-pale: #E1E9E1;
      --amber: #C98A2C;
      --amber-light: #E8B968;
      --line: rgba(21, 25, 26, 0.12);
      --line-strong: rgba(21, 25, 26, 0.22);

      --font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
      --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      --font-mono: 'Courier New', Courier, monospace;

      --max-w: 1180px;
      --radius: 4px;
      --shadow-sm: 0 1px 3px rgba(21, 25, 26, 0.08);
      --shadow-md: 0 8px 24px rgba(21, 25, 26, 0.10);
      --shadow-lg: 0 20px 48px rgba(21, 25, 26, 0.16);
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    input {
      font-family: inherit;
    }

    .wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--forest);
      outline-offset: 3px;
    }

    .eyebrow {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--amber);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .eyebrow::before {
      content: '';
      width: 18px;
      height: 1px;
      background: var(--amber);
      display: inline-block;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
      font-weight: 400;
      color: var(--ink);
      margin: 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }

    .section-head h2 {
      font-size: clamp(28px, 3.4vw, 40px);
      margin-top: 10px;
    }

    .section-head p {
      color: var(--ink-soft);
      max-width: 420px;
      margin: 10px 0 0;
      font-size: 15px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 2px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      border: 1px solid transparent;
      transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
    }

    .btn-primary {
      background: var(--forest);
      color: var(--paper);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      background: var(--forest-light);
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border-color: var(--line-strong);
    }

    .btn-ghost:hover {
      border-color: var(--ink);
      transform: translateY(-2px);
    }

    .btn-arrow {
      transition: transform 0.3s var(--ease);
    }

    .btn:hover .btn-arrow {
      transform: translateX(4px);
    }

    /* ============================================================
     HEADER / NAV
     ============================================================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(247, 245, 239, 0.88);
      backdrop-filter: blur(10px) saturate(140%);
      -webkit-backdrop-filter: blur(10px) saturate(140%);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .site-header.scrolled {
      border-bottom-color: var(--line);
      box-shadow: 0 4px 20px rgba(21, 25, 26, 0.05);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 32px;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .logo {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 0.01em;
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .logo em {
      font-style: normal;
      color: var(--amber);
      font-size: 11px;
      font-family: var(--font-mono);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid var(--line-strong);
      padding: 3px 7px;
      border-radius: 2px;
      transform: translateY(-6px);
    }

    .nav-links {
      display: flex;
      gap: 38px;
      align-items: center;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-soft);
      position: relative;
      padding: 4px 0;
      transition: color 0.25s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1px;
      background: var(--forest);
      transition: width 0.3s var(--ease);
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      padding: 0;
    }

    .hamburger span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      padding: 8px 32px 28px;
      border-top: 1px solid var(--line);
      background: var(--paper);
    }

    .mobile-menu a {
      padding: 14px 0;
      font-size: 16px;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
    }

    .mobile-menu.open {
      display: flex;
      animation: slideDown 0.35s var(--ease);
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 860px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .nav-actions .btn-primary {
        display: none;
      }
    }

    /* ============================================================
     HERO
     ============================================================ */
    .hero {
      padding: 88px 0 96px;
      border-bottom: 1px solid var(--line);
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 60px;
      align-items: center;
    }

    .hero-copy h1 {
      font-size: clamp(40px, 5.4vw, 68px);
      line-height: 1.06;
      letter-spacing: -0.01em;
      margin: 18px 0 24px;
    }

    .hero-copy h1 .accent {
      color: var(--forest);
      font-style: italic;
      position: relative;
      white-space: nowrap;
    }

    .hero-underline {
      display: block;
      margin-top: 6px;
      width: 220px;
    }

    .hero-copy p {
      font-size: 18px;
      color: var(--ink-soft);
      max-width: 480px;
      margin: 0 0 34px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .hero-meta {
      display: flex;
      gap: 28px;
      margin-top: 44px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
      flex-wrap: wrap;
    }

    .hero-meta div {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--ink-faint);
    }

    .hero-meta strong {
      display: block;
      font-family: var(--font-display);
      font-size: 22px;
      color: var(--ink);
      font-weight: 400;
    }

    .hero-panel {
      background: var(--forest);
      color: var(--paper);
      border-radius: 6px;
      padding: 32px;
      position: relative;
      box-shadow: var(--shadow-lg);
      transform: rotate(1.2deg);
      transition: transform 0.5s var(--ease);
    }

    .hero-panel:hover {
      transform: rotate(0deg) translateY(-4px);
    }

    .hero-panel .eyebrow {
      color: var(--amber-light);
    }

    .hero-panel .eyebrow::before {
      background: var(--amber-light);
    }

    .hero-thumb {
      height: 200px;
      border-radius: 4px;
      margin: 18px 0;
      background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 14px),
        linear-gradient(160deg, #2F5443, #1A2E24);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 52px;
      color: rgba(247, 245, 239, 0.28);
    }

    .hero-panel h3 {
      color: var(--paper);
      font-size: 22px;
      margin: 14px 0 10px;
      line-height: 1.3;
    }

    .hero-panel p {
      color: rgba(247, 245, 239, 0.72);
      font-size: 14px;
      margin: 0 0 18px;
    }

    .hero-panel a.read {
      font-size: 13px;
      font-weight: 600;
      color: var(--amber-light);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        transform: none;
      }
    }

    /* ============================================================
     FEATURED POSTS
     ============================================================ */
    .section {
      padding: 96px 0;
    }

    .section-alt {
      background: var(--paper-alt);
    }

    .section-bordered {
      border-bottom: 1px solid var(--line);
    }

    .featured-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .post-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 6px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
      opacity: 0;
      transform: translateY(24px);
    }

    .post-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .post-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }

    .post-thumb {
      height: 190px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 16px;
      overflow: hidden;
    }

    .post-thumb::after {
      content: attr(data-letter);
      position: absolute;
      top: 14px;
      right: 16px;
      font-family: var(--font-display);
      font-size: 40px;
      color: rgba(255, 255, 255, 0.35);
    }

    .thumb-1 {
      background: linear-gradient(150deg, #2F5443, #16241C);
    }

    .thumb-2 {
      background: linear-gradient(150deg, #C98A2C, #8A5A17);
    }

    .thumb-3 {
      background: linear-gradient(150deg, #4B534C, #20241F);
    }

    .thumb-4 {
      background: linear-gradient(150deg, #3D5A80, #1B2A3C);
    }

    .thumb-5 {
      background: linear-gradient(150deg, #8A4B3B, #40201A);
    }

    .thumb-6 {
      background: linear-gradient(150deg, #5B4B8A, #251E3C);
    }

    .tag-pill {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: rgba(247, 245, 239, 0.92);
      color: var(--ink);
      padding: 5px 10px;
      border-radius: 2px;
    }

    .post-body {
      padding: 22px 24px 26px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .post-body h3 {
      font-size: 21px;
      line-height: 1.32;
    }

    .post-body p {
      color: var(--ink-soft);
      font-size: 14.5px;
      margin: 0;
      flex: 1;
    }

    .post-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 8px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
    }

    .post-author {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: var(--ink-faint);
    }

    .avatar-dot {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: linear-gradient(140deg, var(--forest), var(--amber));
      flex-shrink: 0;
    }

    .read-more {
      font-size: 13px;
      font-weight: 600;
      color: var(--forest);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .read-more .arrow {
      transition: transform 0.3s var(--ease);
    }

    .post-card:hover .read-more .arrow {
      transform: translateX(4px);
    }

    @media (max-width:960px) {
      .featured-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:640px) {
      .featured-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================================
     CATEGORIES
     ============================================================ */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .cat-card {
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 26px 22px;
      background: var(--paper);
      transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
      display: block;
    }

    .cat-card:hover {
      transform: translateY(-4px);
      border-color: var(--forest);
      background: var(--forest-pale);
    }

    .cat-num {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--amber);
    }

    .cat-card h3 {
      font-size: 19px;
      margin: 14px 0 6px;
    }

    .cat-card span {
      font-size: 13px;
      color: var(--ink-faint);
    }

    @media (max-width:860px) {
      .cat-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:520px) {
      .cat-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================================
     LATEST ARTICLES
     ============================================================ */
    .latest-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .latest-item {
      padding: 28px 26px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      transition: background 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .latest-item:hover {
      background: var(--paper-alt);
    }

    .latest-item .eyebrow {
      font-size: 11px;
    }

    .latest-item h4 {
      font-size: 18px;
      line-height: 1.35;
    }

    .latest-item .meta {
      font-size: 12.5px;
      color: var(--ink-faint);
      font-family: var(--font-mono);
    }

    @media (max-width:900px) {
      .latest-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:600px) {
      .latest-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================================
     NEWSLETTER
     ============================================================ */
    .newsletter {
      background: var(--forest);
      color: var(--paper);
      border-radius: 10px;
      padding: 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .newsletter::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 90% 10%, rgba(201, 138, 44, 0.25), transparent 55%);
      pointer-events: none;
    }

    .newsletter h2 {
      color: var(--paper);
      font-size: clamp(26px, 3vw, 36px);
      margin: 14px 0 12px;
    }

    .newsletter p {
      color: rgba(247, 245, 239, 0.72);
      font-size: 15px;
      max-width: 420px;
    }

    .nl-form {
      position: relative;
      z-index: 1;
    }

    .nl-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .nl-row input[type="email"] {
      flex: 1;
      min-width: 220px;
      padding: 15px 18px;
      border-radius: 3px;
      border: 1px solid rgba(247, 245, 239, 0.25);
      background: rgba(247, 245, 239, 0.08);
      color: var(--paper);
      font-size: 14.5px;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .nl-row input[type="email"]::placeholder {
      color: rgba(247, 245, 239, 0.45);
    }

    .nl-row input[type="email"]:focus {
      outline: none;
      border-color: var(--amber-light);
      background: rgba(247, 245, 239, 0.14);
    }

    .nl-row .btn-primary {
      background: var(--amber);
      color: var(--ink);
      white-space: nowrap;
    }

    .nl-row .btn-primary:hover {
      background: var(--amber-light);
    }

    .nl-msg {
      margin-top: 12px;
      font-size: 13.5px;
      min-height: 20px;
      font-family: var(--font-mono);
    }

    .nl-msg.error {
      color: #F2A99C;
    }

    .nl-msg.success {
      color: #9FD8B4;
    }

    .nl-note {
      margin-top: 16px;
      font-size: 12px;
      color: rgba(247, 245, 239, 0.5);
    }

    @media (max-width:820px) {
      .newsletter {
        grid-template-columns: 1fr;
        padding: 44px 28px;
      }
    }

    /* ============================================================
     AUTHOR SPOTLIGHT
     ============================================================ */
    .author-wrap {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 56px;
      align-items: center;
    }

    .author-photo {
      aspect-ratio: 1;
      border-radius: 8px;
      background:
        repeating-linear-gradient(45deg, rgba(21, 25, 26, 0.04) 0 2px, transparent 2px 16px),
        linear-gradient(160deg, #E8B968, #C98A2C 60%, #8A5A17);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 96px;
      color: rgba(21, 25, 26, 0.18);
      box-shadow: var(--shadow-md);
    }

    .author-body h2 {
      font-size: clamp(26px, 3vw, 36px);
      margin: 12px 0 16px;
    }

    .author-body p {
      color: var(--ink-soft);
      font-size: 16px;
      max-width: 560px;
      margin: 0 0 24px;
    }

    .author-stats {
      display: flex;
      gap: 36px;
      margin-bottom: 26px;
      flex-wrap: wrap;
    }

    .author-stats div strong {
      display: block;
      font-family: var(--font-display);
      font-size: 26px;
    }

    .author-stats div span {
      font-size: 12px;
      color: var(--ink-faint);
      font-family: var(--font-mono);
      text-transform: uppercase;
    }

    .author-social {
      display: flex;
      gap: 14px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border: 1px solid var(--line-strong);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s var(--ease);
    }

    .social-btn:hover {
      background: var(--forest);
      border-color: var(--forest);
      color: var(--paper);
      transform: translateY(-3px);
    }

    .social-btn svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    @media (max-width:760px) {
      .author-wrap {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .author-photo {
        max-width: 220px;
      }
    }

    /* ============================================================
     TESTIMONIALS
     ============================================================ */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .testi-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 30px 28px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: box-shadow 0.35s ease, transform 0.35s var(--ease);
    }

    .testi-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .testi-quote {
      font-family: var(--font-display);
      font-size: 17px;
      line-height: 1.55;
      color: var(--ink);
      font-style: italic;
    }

    .testi-quote::before {
      content: '\201C';
      color: var(--amber);
      font-size: 28px;
      margin-right: 2px;
    }

    .testi-person {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
      padding-top: 6px;
      border-top: 1px solid var(--line);
    }

    .testi-person .avatar-dot {
      width: 34px;
      height: 34px;
    }

    .testi-person strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
    }

    .testi-person span {
      font-size: 12.5px;
      color: var(--ink-faint);
    }

    @media (max-width:900px) {
      .testi-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================================
     FOOTER
     ============================================================ */
    footer {
      background: var(--ink);
      color: rgba(247, 245, 239, 0.72);
      padding: 72px 0 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(247, 245, 239, 0.12);
    }

    .footer-brand .logo {
      color: var(--paper);
    }

    .footer-brand p {
      font-size: 14px;
      margin: 16px 0 22px;
      max-width: 280px;
      color: rgba(247, 245, 239, 0.55);
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(247, 245, 239, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: var(--amber);
      border-color: var(--amber);
      color: var(--ink);
    }

    .footer-social svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    .footer-col h4 {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(247, 245, 239, 0.4);
      margin-bottom: 18px;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col a {
      font-size: 14.5px;
      color: rgba(247, 245, 239, 0.75);
      transition: color 0.25s ease;
    }

    .footer-col a:hover {
      color: var(--amber-light);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 26px;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: rgba(247, 245, 239, 0.42);
    }

    .footer-bottom a {
      color: rgba(247, 245, 239, 0.6);
    }

    .footer-bottom a:hover {
      color: var(--amber-light);
    }

    @media (max-width:860px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:520px) {
      .footer-top {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================================
     UTILITIES / SCROLL REVEAL
     ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 640px) {
      .wrap {
        padding: 0 20px;
      }

      .section {
        padding: 64px 0;
      }

      .newsletter {
        padding: 36px 22px;
      }
    }