/* ============================================================
   VINOPTEROS – Artur Baumann
   Farbwelt & Typografie nach Logo-/Webseitenentwurf (branding/)
   ============================================================ */

:root {
  --cream: #f7f2e9;
  --cream-deep: #efe7d8;
  --wine: #5b1f2e;
  --wine-dark: #431422;
  --wine-ink: #33101b;
  --gold: #a8894e;
  --gold-soft: #c3aa76;
  --green: #55603c;
  --ink: #453b32;
  --ink-soft: #6b5f53;
  --line: #ddd2bf;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", sans-serif;

  --container: 1160px;
  --radius: 6px;
  --shadow: 0 14px 40px rgba(67, 20, 34, 0.09);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--wine); text-decoration: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--wine);
  font-weight: 600;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: 0.01em;
  color: var(--wine-dark);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--wine);
  color: var(--cream);
}
.btn-primary:hover { background: var(--wine-dark); color: var(--cream); }

.btn-ghost {
  border-color: var(--wine);
  color: var(--wine);
  background: transparent;
}
.btn-ghost:hover { background: var(--wine); color: var(--cream); }

.btn-light {
  background: var(--cream);
  color: var(--wine-dark);
}
.btn-light:hover { background: #fff; color: var(--wine-dark); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: 0 6px 24px rgba(67, 20, 34, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: auto;
  height: 54px;
  color: var(--wine);
  flex-shrink: 0;
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine-dark);
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-indent: 0.38em; /* Ausgleich für das Letter-Spacing nach dem letzten Zeichen */
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--wine);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--wine);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-visual img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* linke Bildkante weich in den Hintergrund auslaufen lassen */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 32%, #000 58%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 32%, #000 58%);
}

.hero-watermark {
  position: absolute;
  left: -60px;
  bottom: -120px;
  width: 480px;
  height: auto;
  opacity: 0.1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--cream) 0%,
    var(--cream) 22%,
    rgba(247, 242, 233, 0.82) 38%,
    rgba(247, 242, 233, 0.35) 55%,
    rgba(247, 242, 233, 0) 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(4rem, 10vh, 7rem);
}

.hero-copy { max-width: 560px; }

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  color: var(--green);
  margin-top: 1rem;
}

.hero-text {
  margin-top: 1.4rem;
  max-width: 46ch;
  color: var(--ink-soft);
}

.hero-keywords {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  max-width: 48ch;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.9;
  color: var(--gold);
}

/* ---------- Sektionen allgemein ---------- */

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.section-alt { background: var(--cream-deep); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.8rem, 6vw, 4.5rem);
}

.section-intro {
  margin-top: 1.1rem;
  color: var(--ink-soft);
}

/* ---------- Säulen ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
}

.pillar { text-align: center; padding-inline: 0.5rem; }

.pillar-icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin: 0 auto 1.3rem;
  color: var(--gold);
}

.pillar h3 { margin-bottom: 0.7rem; }

.pillar p { font-size: 0.98rem; color: var(--ink-soft); }

/* ---------- Claim-Band ---------- */

.claim-band {
  background: var(--wine);
  padding-block: clamp(2.6rem, 5vw, 3.8rem);
  text-align: center;
}

.claim-band p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* ---------- Leistungen ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.4rem, 2.5vw, 2rem);
}

.service {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem 1.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(67, 20, 34, 0.14);
}

.service h3 { margin-bottom: 0.75rem; }

.service a {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}
.service a:hover { color: var(--wine-dark); }

.service > p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.service-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.85rem;
  height: 0.85rem;
  background-color: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5.5 5.5L20 6.5"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5.5 5.5L20 6.5"/></svg>') center / contain no-repeat;
}

/* ---------- Über mich ---------- */

.about {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-portrait { margin: 0; }

.about-portrait img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-portrait figcaption {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}

.about-copy h2 { margin-bottom: 0.3rem; }

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.about-copy p + p { margin-top: 1rem; }

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

/* ---------- Vita-Popup ---------- */

.vita-dialog {
  width: min(640px, calc(100vw - 2.5rem));
  max-height: min(82vh, 760px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 30px 80px rgba(51, 16, 27, 0.35);
}

.vita-dialog::backdrop {
  background: rgba(51, 16, 27, 0.55);
  backdrop-filter: blur(3px);
}

.vita-dialog h2 {
  font-size: clamp(1.45rem, 4.5vw, 2rem);
  margin-bottom: 0.4rem;
}

.vita-intro {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.vita-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s ease;
}
.vita-close:hover { color: var(--wine); }

.vita-timeline {
  list-style: none;
  border-left: 2px solid var(--line);
  margin-left: 0.4rem;
  padding-left: 0;
}

.vita-timeline > li {
  position: relative;
  display: flex;
  gap: 1.2rem;
  padding: 0 0 1.6rem 1.6rem;
}

.vita-timeline > li:last-child { padding-bottom: 0.2rem; }

.vita-timeline > li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
}

.vita-year {
  flex-shrink: 0;
  width: 3.6rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--wine);
  padding-top: 0.15em;
}

.vita-timeline h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.vita-timeline p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.vita-timeline p + p { margin-top: 0.6rem; }

.vita-sub {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem !important;
  color: var(--gold) !important;
}

.vita-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0;
}

.vita-tags li {
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
}

/* Rechtstexte im Popup */
.legal-dialog { width: min(720px, calc(100vw - 2.5rem)); }

.legal-inhalt h2 {
  font-size: 1.35rem;
  margin: 1.6rem 0 0.5rem;
}

.legal-inhalt p + p { margin-top: 0.7rem; }

.legal-inhalt a { text-decoration: underline; }

.vita-quote {
  margin-top: 1.9rem;
  padding: 1.3rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: var(--cream-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--wine);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .vita-timeline > li { flex-direction: column; gap: 0.2rem; }
}

/* ---------- Philosophie ---------- */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}

.value-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
  color: var(--green);
}

.value h3 { margin-bottom: 0.6rem; }

.value p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Kontakt ---------- */

.contact {
  background: linear-gradient(160deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--cream);
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.contact-mark {
  width: auto;
  height: 96px;
  margin-bottom: 1.4rem;
}

.contact h2 { color: var(--cream); margin-bottom: 1rem; }

.contact-copy p {
  max-width: 46ch;
  color: rgba(247, 242, 233, 0.85);
  margin-bottom: 2rem;
}

.contact-details {
  border-left: 1px solid rgba(195, 170, 118, 0.4);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.contact-line {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
}

.contact-line a, .contact-line span + span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
}

.contact-line a:hover { color: var(--gold-soft); }

/* ---------- Kontaktformular (Popup) ---------- */

.contact-dialog {
  width: min(600px, calc(100vw - 2.5rem));
  max-height: min(86vh, 780px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 30px 80px rgba(51, 16, 27, 0.35);
}

.contact-dialog::backdrop {
  background: rgba(51, 16, 27, 0.55);
  backdrop-filter: blur(3px);
}

.dialog-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s ease;
}
.dialog-close:hover { color: var(--wine); }

.dialog-close:focus,
.vita-close:focus { outline: none; }

.dialog-close:focus-visible,
.vita-close:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 3px;
}

.contact-form h3 {
  color: var(--wine);
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-wide { grid-column: 1 / -1; }

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: normal;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 137, 78, 0.16);
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.7rem !important;
  margin: 1.2rem 0 1.5rem;
  font-size: 0.85rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--ink-soft) !important;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  margin-top: 0.25em;
  accent-color: var(--wine);
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.form-consent a {
  color: var(--wine);
  text-decoration: underline;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-bottom: 1.2rem;
  padding: 0.85rem 1.1rem;
  border-radius: 2px;
  font-size: 0.95rem;
}

.form-status.ok {
  background: #e8efd8;
  border: 1px solid #c5d69b;
  color: #3c4a22;
}

.form-status.err {
  background: #f7e4e4;
  border: 1px solid #e6bcbc;
  color: #7c2828;
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--wine-ink);
  color: rgba(247, 242, 233, 0.65);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.6rem;
}

.footer-nav { display: flex; gap: 1.8rem; }

.footer-nav a {
  color: rgba(247, 242, 233, 0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.footer-nav a:hover { color: var(--gold-soft); }

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Unterseiten (Impressum / Datenschutz) ---------- */

.legal {
  max-width: 760px;
  margin-inline: auto;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.legal h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 2rem; }
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 0.7rem; }
.legal p + p { margin-top: 0.8rem; }
.legal .hint {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.3rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .pillars { grid-template-columns: repeat(2, 1fr); row-gap: 2.8rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-details {
    border-left: none;
    border-top: 1px solid rgba(195, 170, 118, 0.4);
    padding-left: 0;
    padding-top: 2rem;
  }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(67, 20, 34, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open { max-height: 420px; }

  .main-nav .nav-link {
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
    border-bottom: 1px solid var(--line);
  }

  .hero { min-height: 0; }

  .hero-visual img {
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-visual::after {
    background: linear-gradient(180deg,
      rgba(247, 242, 233, 0.96) 0%,
      rgba(247, 242, 233, 0.9) 55%,
      rgba(247, 242, 233, 0.65) 100%);
  }

  .about { grid-template-columns: 1fr; }
  .about-portrait { max-width: 380px; margin-inline: auto; }

  .values { grid-template-columns: 1fr; row-gap: 2.6rem; }

  .claim-br { display: none; }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.2rem; }
  .brand-mark { width: auto; height: 44px; }
}
