/* ==========================================================================
   Markus Laghanke — Messe- & Eventfotografie
   ========================================================================== */

/* ---------- self-hosted fonts (no external font requests) ---------- */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #17171a;
  --ink-soft: #45454a;
  --paper: #f6f4f0;
  --paper-raised: #efece5;
  --line: rgba(23, 23, 26, 0.14);
  --line-strong: rgba(23, 23, 26, 0.28);
  --dark: #121212;
  --dark-paper: #1b1b1a;
  --dark-ink: #efece5;
  --dark-ink-soft: #a9a6a0;
  --dark-line: rgba(239, 236, 229, 0.16);
  --accent: #ea5b0c;
  --accent-hover: #c94a08;
  --accent-ink: #ffffff;

  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --gap: clamp(0.9rem, 1.6vw, 1.6rem);
  --edge: clamp(1.25rem, 5vw, 4.5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --max: 1440px;

  color-scheme: light;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- type scale ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.dark-section .eyebrow { color: var(--dark-ink-soft); }

h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.4vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.3;
}

.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 46em;
}

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--edge);
}

section { padding-block: var(--section-y); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}
.section-head.with-lede { max-width: 48em; }

.dark-section {
  background: var(--dark);
  color: var(--dark-ink);
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem var(--edge);
  color: #fff;
  transition: background-color 0.4s ease, color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: var(--paper);
  color: var(--ink);
  padding-block: 0.9rem;
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-weight: 500;
}
.brand span { color: inherit; opacity: 0.62; font-weight: 400; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { display: block; }

.main-nav ul {
  display: flex;
  gap: clamp(1.1rem, 2vw, 2.1rem);
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
  padding-block: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}
.main-nav a:hover { opacity: 1; border-color: var(--accent); color: var(--accent); }

.main-nav .nav-cta {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  opacity: 1;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.main-nav .nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.28) 0%, rgba(10,10,10,0.02) 32%, rgba(10,10,10,0.06) 55%, rgba(10,10,10,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  color: #fff;
  padding: 0 var(--edge) clamp(2.6rem, 7vw, 5rem);
}

.hero-content .eyebrow { color: rgba(255,255,255,0.82); margin-bottom: 1.1rem; }

.hero h1 { color: #fff; max-width: 15em; }

.hero .lede {
  color: rgba(255,255,255,0.88);
  margin-top: 1.1rem;
  max-width: 34em;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-top: clamp(1.8rem, 3.4vw, 2.6rem);
}

.hero-locator {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: #fff;
  color: var(--ink);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  border: 1px solid #fff;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--accent); color: #fff; border-color: var(--accent); }

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.dark-section .btn-ghost:hover { background: var(--dark-ink); color: var(--dark); border-color: var(--dark-ink); }

.scroll-cue {
  position: absolute;
  right: var(--edge);
  bottom: 2rem;
  z-index: 1;
  color: rgba(255,255,255,0.75);
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.55);
}
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* ==========================================================================
   Intro
   ========================================================================== */

.intro { position: relative; }

.intro .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  max-width: 68em;
}
.intro h2 { max-width: 16em; }
.intro p { margin-top: 1.3rem; }

@media (min-width: 900px) {
  .intro .wrap { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .intro p { margin-top: 0.4rem; }
}

.intro-head { position: relative; }

.intro-media {
  display: none;
}

@media (min-width: 900px) {
  .intro-media {
    display: block;
    position: absolute;
    top: 50%;
    right: 100%;
    margin-right: -64px;
    transform: translateY(-50%);
    width: clamp(160px, 17vw, 253px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    z-index: 0;
  }
  .intro-media img { width: 100%; height: 100%; object-fit: cover; }
  .intro-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(246,244,240,0.4) 0%, rgba(246,244,240,0.06) 32%, rgba(246,244,240,0.06) 45%, var(--paper) 100%);
  }
  .intro-head h2 { position: relative; z-index: 1; }
}

/* ==========================================================================
   Leistungen
   ========================================================================== */

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

@media (min-width: 760px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 4vw, 3.5rem); }
}

.leistung {
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
}
@media (min-width: 760px) {
  .leistung { padding-right: clamp(1.5rem, 3vw, 3rem); }
  .leistung:nth-child(odd) { border-right: 1px solid var(--line); }
}

.leistung-num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--accent);
  padding-top: 0.15rem;
}

.leistung h3 { margin-bottom: 0.55rem; }
.leistung p { color: var(--ink-soft); font-size: 0.97rem; max-width: 32em; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

.g-item {
  position: relative;
  overflow: hidden;
  background: var(--paper-raised);
  grid-column: span 12;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}

.g-item.ratio-32 { aspect-ratio: 3 / 2; }
.g-item.ratio-23 { aspect-ratio: 2 / 3; }
.g-item.ratio-wide { aspect-ratio: 16 / 8; }

@media (hover: hover) {
  .g-item:hover img { transform: scale(1.035); }
}

@media (min-width: 720px) {
  .g-half { grid-column: span 6; }
  .g-third { grid-column: span 4; }
  .g-two-third { grid-column: span 8; }
}
@media (max-width: 719px) {
  .g-item.ratio-23 { aspect-ratio: 3 / 2; }
}

/* ---------- gallery slider ---------- */

.gallery-slider {
  grid-column: 1 / -1;
  margin-top: clamp(1.2rem, 3vw, 2.4rem);
}

.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.3rem;
  border-top: 1px solid var(--line);
}

.slider-head .eyebrow {
  font-size: 0.82rem;
  color: var(--ink);
}

.slider-controls { display: flex; gap: 0.6rem; }

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.slider-btn svg { display: block; }

.slider-track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }

.slider-track .g-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(280px, 53vw, 370px);
}
.slider-track .g-item.slide-wide {
  width: clamp(345px, 69vw, 530px);
}
.slider-track .g-item.slide-portrait {
  width: clamp(220px, 37vw, 290px);
}

.slider-track .g-item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-figure {
  margin: 0;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
}
.lightbox-figure img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-btn {
  position: fixed;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.lightbox-btn:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-btn svg { display: block; }

.lightbox-close { top: clamp(1rem, 3vw, 1.8rem); right: clamp(1rem, 3vw, 1.8rem); }
.lightbox-prev { left: clamp(0.6rem, 2.5vw, 1.8rem); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(0.6rem, 2.5vw, 1.8rem); top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.6rem);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

/* ==========================================================================
   BTS
   ========================================================================== */

.bts .section-head { max-width: 44em; }
.bts .lede { color: var(--dark-ink-soft); }

.bts-sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 2.6rem);
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-top: clamp(2rem, 4vw, 2.6rem);
  border-top: 1px solid var(--dark-line);
}
@media (min-width: 760px) {
  .bts-sub { grid-template-columns: repeat(3, 1fr); }
}
.bts-sub h3 { color: var(--dark-ink); margin-bottom: 0.5rem; }
.bts-sub p { color: var(--dark-ink-soft); font-size: 0.95rem; }

.bts-gallery {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.6rem, 1.4vw, 1rem);
}
.bts-gallery .g-item { grid-column: span 1; }
@media (max-width: 560px) {
  .bts-gallery { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Arbeitsweise
   ========================================================================== */

.arbeitsweise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 2.6rem);
}
@media (min-width: 760px) {
  .arbeitsweise-grid { grid-template-columns: repeat(3, 1fr); }
}
.arbeitsweise-item { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.arbeitsweise-item h3 { margin-bottom: 0.6rem; }
.arbeitsweise-item p { color: var(--ink-soft); font-size: 0.97rem; }

/* ==========================================================================
   Einsatzmoeglichkeiten
   ========================================================================== */

.einsatz { padding-block: clamp(2.6rem, 5vw, 4rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.einsatz-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.9rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: var(--ink-soft);
}
.einsatz-list li::after { content: "·"; margin-left: 0.9rem; color: var(--accent); opacity: 0.85; }
.einsatz-list li:last-child::after { content: ""; }

/* ==========================================================================
   Persoenliche Sektion
   ========================================================================== */

.about .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 860px) {
  .about .wrap { grid-template-columns: 1.15fr 0.85fr; }
}

.about-media { position: relative; overflow: hidden; background: var(--paper-raised); aspect-ratio: 3 / 2; max-width: 560px; margin: 0; }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.photo-credit {
  position: absolute;
  right: 0.7rem;
  bottom: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}
.photo-credit a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.5); }
.photo-credit a:hover { color: #fff; }

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--ink-soft); max-width: 32em; }
.about-text p + p { margin-top: 1rem; }
.about-text .role { margin-top: 1.4rem; font-size: 0.86rem; letter-spacing: 0.03em; color: var(--ink-soft); }

/* ==========================================================================
   Kontakt
   ========================================================================== */

.kontakt { background: var(--paper-raised); }
.kontakt .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 860px) {
  .kontakt .wrap { grid-template-columns: 1.1fr 0.9fr; }
}

.kontakt h2 { max-width: 12em; }
.kontakt .lede { margin-top: 1.2rem; }

.kontakt-card {
  border-top: 1px solid var(--line-strong);
  padding-top: 1.6rem;
}
.kontakt-card .name { font-family: var(--font-serif); font-size: 1.3rem; }
.kontakt-card .role { color: var(--ink-soft); margin-top: 0.2rem; font-size: 0.92rem; }

.kontakt-links { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.kontakt-links a {
  text-decoration: none;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.1rem;
  width: fit-content;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.kontakt-links a:hover { border-color: var(--accent); color: var(--accent); }

.kontakt .btn { margin-top: 1.8rem; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.kontakt .btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 2.4rem var(--edge);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

.footer-legal { display: flex; gap: 1.2rem; }

/* ==========================================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================================== */

.legal {
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.legal .wrap { max-width: 46em; }
.legal .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}
.legal .back-link:hover { color: var(--accent); border-color: var(--accent); }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2.2rem; }
.legal h2 {
  font-size: 1.2rem;
  margin-top: 2.6rem;
  margin-bottom: 0.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 0.9rem; }
.legal address { font-style: normal; color: var(--ink-soft); font-size: 0.97rem; line-height: 1.7; }
.legal a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-strong); }
.legal a:hover { color: var(--accent); }
.legal ul { padding-left: 1.2rem; list-style: disc; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Mobile nav overlay
   ========================================================================== */

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 90;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 1.8rem; text-align: center; }
  .main-nav a { font-size: 1.25rem; font-family: var(--font-serif); }
  .main-nav .nav-cta { border-color: var(--ink); }
}

@media (min-width: 761px) {
  .main-nav { display: block; }
}
