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

  :root {
    --ink: #1a1816;
    --ink-soft: #3a3733;
    --paper: #faf6ed;
    --cream: #f3ecdc;
    --cream-deep: #e8dfc8;
    --red: #c8222e;
    --red-deep: #9e1922;
    --gold: #b08930;
    --muted: #8a8378;
    --rule: #d6cdba;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --display: 'Oswald', 'Arial Narrow', sans-serif;
    --sans: 'Manrope', sans-serif;
    --mono: 'JetBrains Mono', monospace;
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { color: inherit; }
  img { display: block; max-width: 100%; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 56px;
    background: rgba(250,246,237,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
  }
  .brand {
    font-family: var(--display); font-weight: 600;
    font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
  }
  .brand .dot { color: var(--red); }
  .nav-links { display: flex; gap: 30px; list-style: none; }
  .nav-links a {
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    transition: color 0.2s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 1px; background: var(--red); transform: scaleX(0);
    transform-origin: left; transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    gap: 80px;
  }
  .hero-eyebrow {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--red); margin-bottom: 32px;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--red); }
  .hero-title {
    font-family: var(--display);
    font-size: clamp(72px, 9vw, 140px);
    font-weight: 700;
    line-height: 0.88;
    color: var(--ink);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: -0.005em;
  }
  .hero-title .line2 { color: var(--red); }
  .hero-subtitle {
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 400; font-style: italic;
    color: var(--ink-soft);
    line-height: 1.35;
    margin-bottom: 36px;
    max-width: 540px;
  }
  .hero-byline {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 36px;
  }
  .hero-byline strong { color: var(--ink); font-weight: 500; }
  .hero-pull {
    font-family: var(--serif);
    font-size: 18px; font-style: italic;
    color: var(--ink-soft);
    border-left: 2px solid var(--red);
    padding-left: 22px;
    margin-bottom: 40px;
    max-width: 460px;
    line-height: 1.55;
  }
  .cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    font-family: var(--sans); font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 16px 32px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 12px;
    transition: all 0.25s; cursor: pointer; border: none;
  }
  .btn-primary { background: var(--ink); color: var(--paper); }
  .btn-primary:hover { background: var(--red); }
  .btn-outline {
    background: transparent; color: var(--ink);
    border: 1px solid var(--ink); padding: 15px 31px;
  }
  .btn-outline:hover { background: var(--ink); color: var(--paper); }
  .btn .arrow { transition: transform 0.25s; }
  .btn:hover .arrow { transform: translateX(4px); }

  .linkedin-link {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 28px;
    font-family: var(--mono); font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-soft); text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: color 0.25s, border-color 0.25s;
  }
  .linkedin-link:hover { color: var(--red); border-bottom-color: var(--red); }
  .linkedin-link svg { transition: transform 0.25s; }
  .linkedin-link:hover svg { transform: translateY(-1px); }
  .linkedin-link .arrow { font-size: 13px; transition: transform 0.25s; }
  .linkedin-link:hover .arrow { transform: translateX(3px); }

  /* Cover display */
  .hero-cover-wrap {
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-cover-wrap::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    transform: translate(-46%, -46%);
    width: 92%; aspect-ratio: 2/3;
    background: var(--cream-deep);
    z-index: 0;
  }
  .hero-cover {
    position: relative; z-index: 1;
    width: 100%; max-width: 420px;
    aspect-ratio: 600/900;
    box-shadow:
      0 1px 2px rgba(0,0,0,0.1),
      0 30px 50px -20px rgba(26,24,22,0.45),
      0 60px 100px -40px rgba(26,24,22,0.35);
    transform: perspective(1600px) rotateY(-7deg) rotateX(1deg);
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
    background-image: url('../images/cover.jpg');
    background-size: cover;
    background-position: center;
  }
  .hero-cover:hover {
    transform: perspective(1600px) rotateY(-2deg) rotateX(0deg) translateY(-8px);
  }

  /* ─── PRESS BAR ─── */
  .press-bar {
    background: var(--ink); color: var(--paper);
    padding: 44px 80px;
    display: flex; align-items: center; gap: 56px;
    flex-wrap: wrap;
    position: relative; z-index: 2;
  }
  .press-pull {
    font-family: var(--serif);
    font-size: 21px; font-style: italic;
    line-height: 1.5; flex: 1; min-width: 320px;
    max-width: 880px;
  }
  .press-pull::before, .press-pull::after { color: var(--red); }
  .press-pull::before { content: '" '; }
  .press-pull::after { content: ' "'; }
  .press-attrib {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--red);
    max-width: 240px;
    line-height: 1.6;
  }

  /* ─── SECTION SHARED ─── */
  section { padding: 110px 80px; }
  .section-head { margin-bottom: 64px; }
  .section-eyebrow {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--red); margin-bottom: 18px;
    display: flex; align-items: center; gap: 14px;
  }
  .section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--red); }
  .section-eyebrow .num { color: var(--muted); font-weight: 500; }
  .section-title {
    font-family: var(--display);
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 600;
    line-height: 0.95;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: -0.005em;
    max-width: 900px;
  }
  .section-title .accent { color: var(--red); }
  .section-intro {
    font-family: var(--serif);
    font-size: 22px; font-style: italic;
    color: var(--ink-soft);
    margin-top: 20px;
    max-width: 720px;
    line-height: 1.45;
  }

  /* ─── BOOK ─── */
  #book { background: var(--cream); }
  .book-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .book-prose p {
    font-family: var(--serif);
    font-size: 19px; line-height: 1.7;
    color: var(--ink); margin-bottom: 22px;
  }
  .book-prose p:first-child::first-letter {
    font-family: var(--display);
    font-size: 80px; float: left;
    line-height: 0.85; padding: 4px 14px 0 0;
    color: var(--red); font-weight: 700;
    text-transform: uppercase;
  }
  .book-prose strong { font-weight: 600; color: var(--ink); }
  .book-prose em { color: var(--red); font-style: italic; }

  .book-sidebar {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 40px 36px;
    position: sticky; top: 100px;
  }
  .sb-label {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--red); margin-bottom: 18px;
    padding-bottom: 16px; border-bottom: 1px solid var(--rule);
  }
  .sb-pub {
    font-family: var(--display); font-size: 26px;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.01em; line-height: 1.05;
    margin-bottom: 4px;
  }
  .sb-info { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
  .sb-row {
    display: flex; justify-content: space-between;
    padding: 11px 0; border-bottom: 1px dotted var(--rule);
    font-size: 13px;
  }
  .sb-row:last-child { border-bottom: none; }
  .sb-row .k {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
  }
  .sb-row .v { font-weight: 600; }
  .sb-btn {
    display: block; text-align: center;
    background: var(--ink); color: var(--paper);
    padding: 15px 24px;
    font-family: var(--sans); font-size: 11px;
    font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; text-decoration: none;
    transition: background 0.2s; margin-top: 24px;
  }
  .sb-btn:hover { background: var(--red); }

  /* Pillars */
  .pillars {
    margin-top: 88px;
    padding-top: 56px;
    border-top: 1px solid var(--rule);
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .pillar-num {
    font-family: var(--display);
    font-size: 88px; font-weight: 700;
    color: var(--red); line-height: 0.8;
    margin-bottom: 18px; opacity: 0.85;
  }
  .pillar-roman {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 6px;
  }
  .pillar-title {
    font-family: var(--display); font-size: 26px;
    font-weight: 600; text-transform: uppercase;
    margin-bottom: 14px; line-height: 1.05;
    letter-spacing: 0.005em;
  }
  .pillar-desc {
    font-family: var(--serif); font-size: 17px;
    line-height: 1.55; color: var(--ink-soft);
  }

  /* ─── ENDORSEMENTS ─── */
  #endorsements { background: var(--ink); color: var(--paper); }
  #endorsements .section-title { color: var(--paper); }
  #endorsements .section-title .accent { color: var(--red); }
  #endorsements .section-intro { color: rgba(250,246,237,0.65); }

  .endorse-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(250,246,237,0.1);
  }
  .endorse-card {
    padding: 52px 44px;
    border-right: 1px solid rgba(250,246,237,0.1);
    border-bottom: 1px solid rgba(250,246,237,0.1);
  }
  .endorse-card:nth-child(2n) { border-right: none; }
  .endorse-card:nth-last-child(-n+2) { border-bottom: none; }
  .endorse-mark {
    font-family: var(--display); font-size: 80px;
    font-weight: 700; color: var(--red);
    line-height: 0.65; margin-bottom: 24px; display: block;
  }
  .endorse-text {
    font-family: var(--serif); font-size: 19px;
    font-style: italic; line-height: 1.55;
    color: rgba(250,246,237,0.92); margin-bottom: 30px;
  }
  .endorse-attrib { padding-top: 18px; border-top: 1px solid rgba(250,246,237,0.15); }
  .endorse-name {
    font-family: var(--display); font-size: 14px;
    font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 4px;
  }
  .endorse-title { font-size: 13px; color: rgba(250,246,237,0.55); line-height: 1.4; }
  .endorse-note {
    font-family: var(--mono); font-size: 11px;
    color: rgba(250,246,237,0.4);
    margin-top: 40px; text-align: center; font-style: italic;
  }

  /* ─── ABOUT ─── */
  #about { background: var(--paper); }
  .about-grid {
    display: grid; grid-template-columns: 340px 1fr;
    gap: 80px; align-items: start;
  }
  .author-portrait {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(160deg, #4a3e30 0%, #2a2218 100%);
    position: relative; overflow: hidden;
  }
  .portrait-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .portrait-frame {
    position: absolute; inset: 16px;
    border: 1px solid rgba(250,246,237,0.4);
    pointer-events: none;
  }
  .about-text p {
    font-family: var(--serif); font-size: 19px;
    line-height: 1.7; color: var(--ink); margin-bottom: 22px;
  }
  .about-text p:first-child { font-size: 23px; color: var(--ink); }
  .about-text em { color: var(--red); font-style: italic; }
  .about-meta {
    margin-top: 40px; padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .meta-label {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); margin-bottom: 8px;
  }
  .meta-value {
    font-family: var(--display); font-size: 17px;
    font-weight: 600; line-height: 1.2;
    text-transform: uppercase; letter-spacing: 0.005em;
  }
  .meta-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

  /* ─── COMMENTARY ─── */
  #commentary { background: var(--cream); }
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .blog-card {
    padding: 44px 36px;
    border-right: 1px solid var(--rule);
    cursor: pointer;
    transition: background 0.25s;
    background: var(--cream);
    display: flex; flex-direction: column;
  }
  .blog-card:last-child { border-right: none; }
  .blog-card:hover { background: var(--paper); }
  .blog-tag {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); margin-bottom: 18px;
  }
  .blog-title {
    font-family: var(--display); font-size: 24px;
    font-weight: 600; line-height: 1.1;
    color: var(--ink); margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 0.005em;
  }
  .blog-excerpt {
    font-family: var(--serif); font-size: 17px;
    line-height: 1.55; color: var(--ink-soft);
    margin-bottom: 28px; flex: 1;
  }
  .blog-meta {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top: 16px; border-top: 1px solid var(--rule);
  }
  .blog-date {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.12em; color: var(--muted);
  }
  .blog-read {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    transition: color 0.2s;
  }
  .blog-read:hover { color: var(--red); }

  /* ─── EVENTS ─── */
  #events { background: var(--paper); }
  .event-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
    gap: 48px;
    padding: 36px 0;
    border-bottom: 1px solid var(--rule);
  }
  .event-row:first-of-type { border-top: 1px solid var(--rule); }
  .event-date {
    text-align: left;
    border-left: 3px solid var(--red);
    padding-left: 20px;
  }
  .event-month {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); margin-bottom: 4px;
  }
  .event-day {
    font-family: var(--display);
    font-size: 52px; font-weight: 700;
    color: var(--ink); line-height: 0.9;
  }
  .event-year {
    font-family: var(--mono); font-size: 10px;
    color: var(--muted); margin-top: 4px;
  }
  .event-type {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red); margin-bottom: 8px;
  }
  .event-title {
    font-family: var(--display); font-size: 24px;
    font-weight: 600; line-height: 1.15;
    text-transform: uppercase; letter-spacing: 0.005em;
    margin-bottom: 8px;
  }
  .event-loc { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink-soft); }
  .event-link {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    padding-bottom: 4px; border-bottom: 1px solid var(--rule);
    transition: color 0.2s, border-color 0.2s;
  }
  .event-link:hover { color: var(--red); border-color: var(--red); }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--ink); color: var(--paper);
    display: grid; grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  #contact .contact-left { padding: 110px 80px; border-right: 1px solid rgba(250,246,237,0.1); }
  #contact .contact-right { padding: 110px 80px; background: rgba(255,255,255,0.02); }
  #contact .section-eyebrow { color: var(--red); }
  #contact .section-eyebrow::before { background: var(--red); }
  #contact .section-title { color: var(--paper); }
  .contact-desc {
    font-family: var(--serif); font-size: 19px;
    line-height: 1.65; color: rgba(250,246,237,0.7);
    margin: 28px 0 44px;
    max-width: 440px;
  }
  .contact-link {
    display: flex; flex-direction: column;
    text-decoration: none;
    padding: 20px 24px;
    border: 1px solid rgba(250,246,237,0.12);
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 14px;
  }
  .contact-link:hover { border-color: var(--red); background: rgba(200,34,46,0.05); }
  .cl-label {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red); margin-bottom: 6px;
  }
  .cl-value { font-family: var(--serif); font-size: 17px; color: var(--paper); }
  .contact-right h3 {
    font-family: var(--display); font-size: 32px;
    font-weight: 600; color: var(--paper);
    text-transform: uppercase; letter-spacing: 0.005em;
    margin-bottom: 32px; line-height: 1;
  }
  .form-group { margin-bottom: 22px; }
  .form-group label {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red); display: block; margin-bottom: 8px;
  }
  .form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(250,246,237,0.12);
    color: var(--paper);
    font-family: var(--sans); font-size: 14px;
    padding: 13px 16px; outline: none;
    transition: border-color 0.2s; resize: none;
  }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
  .form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(250,246,237,0.25); font-size: 13px;
  }
  .form-submit {
    width: 100%; background: var(--red); color: var(--paper);
    border: none; padding: 16px;
    font-family: var(--sans); font-size: 11px;
    font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--red-deep); }
  .form-submit:disabled { opacity: 0.55; cursor: wait; }

  .form-status {
    margin-top: 14px; min-height: 18px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted);
  }
  .form-status.sending { color: var(--muted); }
  .form-status.success { color: var(--ink); }
  .form-status.error   { color: var(--red); }

  /* ─── FOOTER ─── */
  footer {
    background: #0f0e0d; color: rgba(250,246,237,0.4);
    padding: 36px 80px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
    border-top: 1px solid rgba(250,246,237,0.08);
  }
  .footer-brand {
    font-family: var(--display); font-size: 14px;
    font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(250,246,237,0.6);
  }
  .footer-brand .dot { color: var(--red); }
  .footer-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(250,246,237,0.4); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--red); }

  /* ─── ANIMS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.7s ease both 0.1s; }
  .hero-title { animation: fadeUp 0.7s ease both 0.25s; }
  .hero-subtitle { animation: fadeUp 0.7s ease both 0.4s; }
  .hero-byline { animation: fadeUp 0.7s ease both 0.5s; }
  .hero-pull { animation: fadeUp 0.7s ease both 0.6s; }
  .cta-group { animation: fadeUp 0.7s ease both 0.7s; }
  .linkedin-link { animation: fadeUp 0.7s ease both 0.8s; }
  .hero-cover {
    animation: coverIn 1s cubic-bezier(.2,.7,.2,1) both 0.3s;
  }
  @keyframes coverIn {
    from { opacity: 0; transform: perspective(1600px) rotateY(-15deg) translateX(40px); }
    to   { opacity: 1; transform: perspective(1600px) rotateY(-7deg) rotateX(1deg); }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    #hero { grid-template-columns: 1fr; padding: 110px 24px 60px; gap: 48px; }
    .hero-cover-wrap { order: -1; }
    section { padding: 70px 24px; }
    .press-bar { padding: 24px; }
    .book-grid { grid-template-columns: 1fr; gap: 48px; }
    .book-sidebar { position: static; }
    .pillars { grid-template-columns: 1fr; gap: 32px; }
    .endorse-grid { grid-template-columns: 1fr; }
    .endorse-card { border-right: none !important; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .author-portrait { max-width: 280px; }
    .about-meta { grid-template-columns: 1fr; gap: 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { border-right: none; border-bottom: 1px solid var(--rule); }
    .blog-card:last-child { border-bottom: none; }
    .event-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
    .event-link { justify-self: start; }
    #contact { grid-template-columns: 1fr; }
    #contact .contact-left, #contact .contact-right { padding: 60px 24px; border-right: none; }
    footer { padding: 24px; }
  }