  :root {
    --paper: #F5F1EA;
    --paper-deep: #EDE7DB;
    --ink: #111110;
    --ink-soft: #2A2824;
    --muted: #6B6862;
    --rule: #D6CFBF;
    --rule-soft: #E5DFD0;
    --accent: #8B2A1F;
    --accent-soft: #B84A3A;

    --font-display: 'Instrument Serif', 'Times New Roman', serif;
    --font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --max: 1360px;
    --pad: clamp(20px, 4vw, 48px);
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  h1, h2, h3, h4, p, q, a { overflow-wrap: break-word; word-wrap: break-word; }
  img, svg { max-width: 100%; height: auto; }

  a { color: inherit; text-decoration: none; }

  ::selection { background: var(--ink); color: var(--paper); }

  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  /* ——————————————————————————————————————————— NAV */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(245, 241, 234, 0.78);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease;
  }
  .nav.scrolled { border-bottom-color: var(--rule); }
  .nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
  .logo em {
    font-style: italic;
    font-weight: 400;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    font-size: 14px;
  }
  .nav-links a {
    color: var(--ink-soft);
    position: relative;
    transition: color .2s ease;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    height: 1px; width: 0;
    background: currentColor;
    transition: width .25s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
  }
  .btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
  }
  .btn svg { width: 14px; height: 14px; }

  .nav-mobile-toggle { display: none; }

  @media (max-width: 820px) {
    .nav-links { display: none; }
    .nav-inner > .btn { display: none; }
    .nav-mobile-toggle {
      display: inline-flex;
      background: none;
      border: 1px solid var(--ink);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      cursor: pointer;
      font-family: var(--font-body);
    }
  }

  /* ——————————————————————————————————————————— HERO */
  .hero {
    padding: 180px 0 100px;
    position: relative;
  }
  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--muted);
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 48px;
    max-width: 18ch;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .hero-sub {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--ink-soft);
    max-width: 56ch;
    line-height: 1.5;
    margin-bottom: 56px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-meta {
    position: absolute;
    top: 140px;
    right: var(--pad);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: right;
    line-height: 1.8;
  }
  .hero-meta strong { color: var(--ink); font-weight: 500; }
  @media (max-width: 820px) {
    .hero { padding: 140px 0 80px; }
    .hero-meta { display: none; }
  }

  /* ——————————————————————————————————————————— SECTION */
  section { padding: 120px 0; position: relative; }
  @media (max-width: 820px) { section { padding: 80px 0; } }

  .section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: end;
  }
  .section-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: "§";
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--accent);
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(30px, 3.6vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 22ch;
  }
  .section-title em {
    font-style: italic;
    font-weight: 400;
  }
  @media (max-width: 820px) {
    .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  }

  /* ——————————————————————————————————————————— MANIFESTO */
  .manifesto {
    border-top: 1px solid var(--rule);
    padding-top: 80px;
  }
  .manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
  }
  .manifesto-grid h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .manifesto-grid h2 em { font-style: italic; }
  .manifesto-body {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .manifesto-body p + p { margin-top: 20px; }
  .manifesto-body p:first-letter {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 54px;
    float: left;
    line-height: .9;
    padding: 6px 10px 0 0;
    color: var(--ink);
  }
  @media (max-width: 820px) {
    .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ——————————————————————————————————————————— SERVICES */
  .services {
    background: var(--paper-deep);
    margin: 0 calc(var(--pad) * -1);
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }
  .service {
    padding: 40px 32px 44px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
    transition: background .3s ease;
    cursor: default;
  }
  .service:hover { background: var(--paper); }
  .service-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
  }
  .service h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
  }
  .service p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.55;
  }
  @media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ——————————————————————————————————————————— DUAL CITY */
  .dual {
    border-top: 1px solid var(--rule);
    padding-top: 100px;
  }
  .dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .dual-col {
    padding: 56px 40px 60px;
    position: relative;
  }
  .dual-col + .dual-col { border-left: 1px solid var(--ink); }
  .dual-city {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
  }
  .dual-meta {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .dual-body {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 42ch;
  }
  @media (max-width: 820px) {
    .dual-grid { grid-template-columns: 1fr; }
    .dual-col + .dual-col { border-left: none; border-top: 1px solid var(--ink); }
  }

  /* ——————————————————————————————————————————— TESTIMONIALS */
  .testimonials-group + .testimonials-group { margin-top: 100px; }
  .test-header {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
    color: var(--muted);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .test-header span {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .test {
    position: relative;
    padding-top: 8px;
  }
  .test::before {
    content: "“";
    position: absolute;
    top: -32px;
    left: -4px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 84px;
    line-height: 1;
    color: var(--accent);
  }
  .test q {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--ink);
    quotes: none;
    display: block;
    margin-bottom: 24px;
  }
  .test q::before, .test q::after { content: ""; }
  .test-author {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
  }
  .test-author strong {
    color: var(--ink);
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
  }
  @media (max-width: 900px) {
    .test-grid { grid-template-columns: 1fr; gap: 56px; }
  }

  /* ——————————————————————————————————————————— JOURNAL */
  .journal {
    border-top: 1px solid var(--rule);
    padding-top: 100px;
  }
  .journal-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--ink);
  }
  .journal-item {
    display: grid;
    grid-template-columns: 80px 180px 1fr 140px;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
    transition: padding .3s ease;
    cursor: pointer;
  }
  .journal-item:hover {
    padding-left: 20px;
    background: linear-gradient(90deg, var(--paper-deep) 0%, transparent 100%);
  }
  .journal-item:hover .journal-title { color: var(--accent); }
  .journal-item:hover .journal-arrow { transform: translateX(6px); color: var(--accent); }
  .journal-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    color: var(--muted);
  }
  .journal-cat {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .journal-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.22;
    letter-spacing: -0.015em;
    transition: color .2s ease;
  }
  .journal-arrow {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    text-align: right;
    color: var(--ink-soft);
    transition: transform .25s ease, color .25s ease;
  }
  @media (max-width: 820px) {
    .journal-item {
      grid-template-columns: 60px 1fr;
      row-gap: 8px;
    }
    .journal-cat { grid-column: 2; }
    .journal-title { grid-column: 2; }
    .journal-arrow { display: none; }
  }

  /* ——————————————————————————————————————————— CTA */
  .cta-block {
    text-align: center;
    padding: 120px var(--pad);
    background: var(--ink);
    color: var(--paper);
    margin: 120px calc(var(--pad) * -1) 0;
    position: relative;
    overflow: hidden;
  }
  .cta-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(245, 241, 234, 0.06) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
  }
  .cta-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--paper-deep);
    opacity: 0.6;
    margin-bottom: 36px;
  }
  .cta-block h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(34px, 4.6vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    max-width: 18ch;
    margin: 0 auto 48px;
  }
  .cta-block h2 em {
    font-style: italic;
    color: var(--accent-soft);
  }
  .cta-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .cta-block .btn {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
  }
  .cta-block .btn:hover {
    background: var(--accent);
    color: var(--paper);
    border-color: var(--accent);
  }
  .cta-block .btn-ghost {
    background: transparent;
    color: var(--paper);
    border-color: var(--paper);
  }
  .cta-block .btn-ghost:hover {
    background: var(--paper);
    color: var(--ink);
  }

  /* ——————————————————————————————————————————— FOOTER */
  footer {
    background: var(--ink);
    color: var(--paper);
    padding: 80px var(--pad) 40px;
    width: 100%;
  }
  .foot-inner {
    max-width: var(--max);
    margin: 0 auto;
  }
  .foot-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(245, 241, 234, 0.18);
  }
  .foot-brand {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }
  .foot-brand em { font-style: italic; }
  .foot-tagline {
    color: var(--paper-deep);
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
    max-width: 36ch;
  }
  .foot-col h4 {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper-deep);
    opacity: 0.6;
    margin-bottom: 20px;
    font-weight: 500;
  }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .foot-col a {
    font-size: 14px;
    color: var(--paper);
    opacity: 0.85;
    transition: opacity .2s ease, color .2s ease;
  }
  .foot-col a:hover { opacity: 1; color: var(--accent-soft); }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 12px;
    color: var(--paper-deep);
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 16px;
  }
  .foot-legal {
    display: flex;
    gap: 24px;
  }
  .foot-legal a:hover { color: var(--accent-soft); opacity: 1; }

  @media (max-width: 900px) {
    .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 560px) {
    .foot-top { grid-template-columns: 1fr; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
  }

  /* ——————————————————————————————————————————— REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0s !important; transition-duration: 0s !important; }
  }

  /* ——————————————————————————————————————————— ARTICLE PAGES */
  .article-wrap {
    padding: 140px 0 80px;
  }
  .article-header {
    max-width: 820px;
    margin: 0 auto 72px;
    text-align: left;
  }
  .article-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .article-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--accent);
  }
  .article-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .article-title em { font-style: italic; color: var(--accent); }
  .article-meta {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
  }
  .article-body {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-soft);
  }
  .article-body > p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 72px;
    float: left;
    line-height: .88;
    padding: 8px 14px 0 0;
    color: var(--ink);
  }
  .article-body p { margin-bottom: 24px; }
  .article-body h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 56px 0 20px;
  }
  .article-body h2 em { font-style: italic; }
  .article-body h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink);
    margin: 40px 0 16px;
  }
  .article-body blockquote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.35;
    color: var(--ink);
    padding: 32px 0 32px 32px;
    margin: 40px 0;
    border-left: 2px solid var(--accent);
    font-style: italic;
  }
  .article-body a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--rule);
    text-underline-offset: 4px;
    transition: text-decoration-color .2s ease, color .2s ease;
  }
  .article-body a:hover { color: var(--accent); text-decoration-color: var(--accent); }
  .article-body strong { color: var(--ink); font-weight: 600; }
  .article-body em { font-style: italic; }
  .article-body ul, .article-body ol {
    margin: 0 0 24px 24px;
    padding-left: 8px;
  }
  .article-body li { margin-bottom: 10px; }
  .article-body hr {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 48px auto;
    width: 80px;
  }

  /* article end nav */
  .article-end {
    max-width: 680px;
    margin: 80px auto 0;
    padding-top: 48px;
    border-top: 1px solid var(--rule);
  }
  .article-end-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .article-end a {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: color .2s ease;
  }
  .article-end a:hover { color: var(--accent); }
  .article-end a + a { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--rule-soft); }

  @media (max-width: 820px) {
    .article-wrap { padding: 110px 0 60px; }
    .article-header { margin-bottom: 48px; }
    .article-body { font-size: 17px; }
    .article-body > p:first-of-type::first-letter { font-size: 56px; }
  }

  /* ——————————————————————————————————————————— LEGAL PAGES */
  .legal-wrap {
    padding: 140px 0 80px;
  }
  .legal-header {
    max-width: 820px;
    margin: 0 auto 56px;
  }
  .legal-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .legal-title em { font-style: italic; }
  .legal-subtitle {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  .legal-body {
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
  }
  .legal-body h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 48px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }
  .legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
  .legal-body h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin: 24px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .legal-body p { margin-bottom: 16px; }
  .legal-body ul, .legal-body ol { margin: 0 0 20px 24px; padding-left: 8px; }
  .legal-body li { margin-bottom: 8px; }
  .legal-body a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--rule);
    text-underline-offset: 3px;
  }
  .legal-body a:hover { color: var(--accent); }
  .legal-body .placeholder {
    background: var(--paper-deep);
    padding: 2px 8px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--accent);
  }
  .legal-body dl {
    margin: 16px 0;
  }
  .legal-body dt {
    font-weight: 600;
    color: var(--ink);
    margin-top: 12px;
  }
  .legal-body dd {
    margin-left: 0;
    margin-bottom: 8px;
  }

  @media (max-width: 820px) {
    .legal-wrap { padding: 110px 0 60px; }
  }
