/* ------------------------------------------------------------
   Studiolone — Grafikdesign & Visuelle Kommunikation
   ------------------------------------------------------------ */

:root {
  --bg: #faf5f1;
  --bg-alt: #f1dfd6;
  --surface: #fffaf7;
  --text: #3a2827;
  --text-muted: #765f5c;
  --border: #e6cbc2;
  --accent: #e73788;
  --accent-dark: #b75032;
  --accent-soft: #f8c9d9;
  --terracotta: #b75032;
  --beige: #f8f0eb;

  --font-display: "Open Sans", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;

  --max-width: 1160px;
  --radius: 0;
  --shadow: 0 18px 45px -24px rgba(110, 57, 48, 0.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--text);
}

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.75em;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ---------- Layout helpers ---------- */
.section { padding: 7.5em 1.5em; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 0.75em;
}
.section-intro {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 241, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 18px -12px rgba(56, 50, 45, 0.25);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1em 1.5em;
  display: flex;
  align-items: center;
  gap: 2em;
}
.logo {
  margin-right: auto;
  display: block;
  line-height: 0;
}
.logo img { width: 210px; height: auto; }
.logo-name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav {
  display: flex;
  gap: 1.75em;
}
.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.3em 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
}
.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}

.header-cta { flex-shrink: 0; }

/* Language switch. The header carries the two-letter form so it survives the
   narrow layouts; the footer repeats it with the full names. */
/* display:flex would otherwise beat the browser's own [hidden] rule, so the
   switch would stay visible while only one language is published. */
.lang-switch[hidden] { display: none; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.lang-link {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.25em 0.55em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.lang-link + .lang-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.8em;
  background: var(--border);
  transform: translateY(-50%);
}
.lang-link:hover { color: var(--accent-dark); }
.lang-link.is-active { color: var(--text); font-weight: 700; }
.lang-link.is-active::after {
  content: "";
  position: absolute;
  right: 0.55em;
  bottom: 0;
  left: 0.55em;
  height: 1px;
  background: var(--accent);
}
.lang-link.is-active:hover { color: var(--text); }

.footer-lang .lang-link { font-size: 0.75rem; letter-spacing: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s 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 {
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 4em 1.5em;
  position: relative;
  background: var(--bg);
}
.hero-inner { max-width: 860px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1em;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  line-height: 1.28;
  letter-spacing: 0.015em;
  margin-bottom: 0.4em;
}
.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 1.75em;
}
.hero-actions {
  display: flex;
  gap: 1em;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
}
.hero-scroll span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4em;
  align-items: center;
  margin-bottom: 4.5em;
}
.about-photo {
  aspect-ratio: 4 / 5;
  width: 70%;
  margin: 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-content p { color: var(--text-muted); }

.stats-row {
  display: flex;
  gap: 2.5em;
  margin-top: 2em;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.skills h3 { margin-bottom: 1.5em; font-size: 1.4rem; }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em 3em;
}
.skill-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.skill-bar {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 999px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  transition: width 1.1s cubic-bezier(.2,.7,.3,1);
}
.skill-bar-fill.animate { width: var(--value); }

.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
  margin-top: 2.5em;
}
.tool-tag {
  padding: 0.5em 1.1em;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
}

/* ---------- Services ---------- */
.services { background: var(--bg-alt); }
.services h2, .portfolio h2, .process h2, .contact h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  margin-top: 2.5em;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 5px solid var(--accent);
  padding: 2em 1.75em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card:nth-child(2) { border-top-color: var(--terracotta); }
.service-card:nth-child(3) { border-top-color: var(--text); }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1em;
}
.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }
.service-card ul { margin-top: 1em; }
.service-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0.4em;
}
.service-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75em;
  margin-top: 2.5em;
}
.portfolio-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.portfolio-media {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1em;
}
.portfolio-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-tag {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4em 0.9em;
  border-radius: 999px;
}
.grad-1 { background: linear-gradient(135deg, #dfcfc0 0%, #a48a78 100%); }
.grad-2 { background: linear-gradient(135deg, #d3c9bf 0%, #776c63 100%); }
.grad-3 { background: linear-gradient(135deg, #e5d8cb 0%, #b29c88 100%); }
.grad-4 { background: linear-gradient(135deg, #d9c8bc 0%, #977f6e 100%); }
.grad-5 { background: linear-gradient(135deg, #cec6bd 0%, #756e66 100%); }
.grad-6 { background: linear-gradient(135deg, #d7d1cb 0%, #827a72 100%); }

.portfolio-info { padding: 1.4em 1.5em 1.6em; }
.portfolio-info h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.portfolio-info p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  margin-top: 2.5em;
}
.process-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-soft);
  -webkit-text-stroke: 1.5px var(--accent);
  display: block;
  margin-bottom: 0.3em;
}
.process-step h3 { font-size: 1.1rem; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--text); color: var(--bg); text-align: center; }
.testimonial-inner { max-width: 700px; }
.testimonial-icon { font-size: 1.8rem; color: var(--accent); margin-bottom: 0.5em; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 0 1em;
}
.testimonial-author {
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3em;
  align-items: start;
}
.contact-text p { color: var(--text-muted); max-width: 460px; }
.contact-email { margin: 0.5em 0 1.5em; }
.social-links { display: flex; gap: 0.9em; }
.social-links a,
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-links a:hover,
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2em;
}
.contact-info-row {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  padding: 0.9em 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-label { color: var(--text-muted); font-weight: 600; }

/* ---------- Simple freelancer page ---------- */
.simple-about { max-width: 740px; }
.simple-about h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.simple-about p { max-width: 680px; color: var(--text-muted); font-size: 1.08rem; }
.simple-services { grid-template-columns: repeat(3, 1fr); }
.contact-address {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.65em;
  font-weight: 700;
  color: var(--accent-dark);
}
.contact-address:hover { color: var(--accent); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 5px solid var(--terracotta);
  padding: 2em;
  box-shadow: var(--shadow);
}
.form-field { margin-bottom: 1.15em; }
.form-field label { display: block; margin-bottom: 0.4em; font-size: 0.9rem; font-weight: 700; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8em 0.9em;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }
.form-note, .form-status { margin: 1em 0 0; font-size: 0.82rem; color: var(--text-muted); }
.form-status { color: var(--accent-dark); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 3em 1.5em 1.5em;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
  padding-bottom: 2em;
  border-bottom: 1px solid var(--border);
}
.footer-nav {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 0.8em; }
.footer-social a { width: 36px; height: 36px; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.back-to-top { font-weight: 600; color: var(--text); }
.back-to-top:hover { color: var(--accent); }
.site-footer .lang-link { color: var(--text-muted); }
.site-footer .lang-link + .lang-link::before { background: var(--border); }
.site-footer .lang-link.is-active { color: var(--text); }
.site-footer .lang-link.is-active::after { background: var(--accent); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* The short page must remain complete and legible even when motion is reduced
   or JavaScript is delayed. */
.hero .reveal,
.simple-about.reveal,
.simple-services .reveal,
.contact .reveal { opacity: 1; transform: none; }

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

/* Tablet: the full header no longer fits once the six nav links and the
   CTA are on one line, so the menu collapses here rather than at 720px. */
@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    transition: max-height 0.3s ease, border-color 0.3s ease;
  }
  .main-nav.open {
    max-height: 400px;
    border-bottom-color: var(--border);
  }
  .nav-link {
    padding: 1em 1.5em;
    border-top: 1px solid var(--border);
  }
  .nav-link::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 4.75em 1.5em; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5em; }
  .about-visual { max-width: 320px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5em; }
  .contact-text p { max-width: none; }
  .section-intro { max-width: none; }
}

@media (max-width: 720px) {
  .section { padding: 3.75em 1.25em; }
  .hero {
    min-height: 72vh;
    background: var(--bg);
  }
  .skills-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { gap: 1.75em; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lang-link { padding: 0.3em 0.55em; font-size: 0.72rem; }
}

/* ---------- Seasonal digital business card ---------- */
:root {
  --season-bg: #e83e91;
  --season-fg: #f8f0ec;
  --season-muted: rgba(248, 240, 236, 0.72);
  --logo-colour-1: #f8f0ec;
  --logo-colour-2: #071525;
  --logo-colour-3: #a94f39;
}
body { background: var(--season-bg); color: var(--season-fg); }
.business-card {
  position: relative;
  --card-edge: clamp(1.5rem, 4vw, 4rem);
  --button-bottom: calc(var(--card-edge) + 1.65rem);
  min-height: 100svh;
  padding: clamp(1.5rem, 4vw, 4rem);
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  text-align: center;
  background: var(--season-bg);
  color: var(--season-fg);
  transition: background-color 700ms ease, color 700ms ease;
}
.season-indicator {
  position: absolute;
  top: var(--card-edge);
  left: var(--card-edge);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--season-fg);
  font-family: "Montserrat", var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.season-symbol { font-size: 0.85rem; line-height: 1; }
.season-cursor { display: none; }
@media (pointer: fine) {
  body, a, button { cursor: none; }
  .season-cursor {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: block;
    font-size: 1.15rem;
    line-height: 1;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 120ms ease;
  }
  .season-cursor.is-visible { opacity: 1; }
}
.card-content { align-self: end; }
.card-logo { display: inline-block; line-height: 0; }
.card-logo img { display: none; }
.logo-pulse {
  display: block;
  width: min(76vw, 660px);
  aspect-ratio: 1074 / 131;
  background: #e83e91;
  -webkit-mask: url("images/studiolone-logo-wordmark.png") center / contain no-repeat;
  mask: url("images/studiolone-logo-wordmark.png") center / contain no-repeat;
  animation: logo-colours 2.4s steps(1, end) infinite;
}
@keyframes logo-colours {
  0%, 32% { background-color: var(--logo-colour-1); }
  33%, 65% { background-color: var(--logo-colour-2); }
  66%, 100% { background-color: var(--logo-colour-3); }
}
.card-logo .logo-terracotta,
.card-logo .logo-creme { display: none; }
.card-subtitle {
  margin: clamp(2.4rem, 5vw, 4rem) 0 0;
  color: var(--season-muted);
  font-family: "Montserrat", var(--font-body);
  font-size: clamp(0.62rem, 0.95vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.card-links {
  position: absolute;
  right: var(--card-edge);
  bottom: var(--button-bottom);
  transform: none;
}
.card-footer {
  position: absolute;
  left: var(--card-edge);
  bottom: var(--button-bottom);
  height: 2.6rem;
  align-self: end;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--season-muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1;
}
.card-footer p { margin: 0; }
.card-legal { height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.legal-links { display: flex; flex-wrap: wrap; gap: 0.45rem 1rem; line-height: 1; }
.business-card > .card-instagram {
  position: absolute;
  top: var(--card-edge);
  right: var(--card-edge);
  grid-column: auto;
  grid-row: auto;
  justify-self: auto;
  transform: none;
  color: var(--season-fg);
  width: auto;
  height: auto;
  display: block;
}
.card-link { display: grid; justify-items: center; gap: 0.65rem; color: var(--season-fg); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; transition: opacity 180ms ease; }
.card-link > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.card-link:not(.card-link-pending):hover { opacity: 0.58; }
.card-link i { font-size: 1rem; line-height: 1; }
.card-instagram {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  transform: translateY(clamp(4rem, 12vh, 8rem));
  width: 2.8rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
}
.card-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.45rem 1.15rem;
  background: var(--season-fg);
  color: var(--season-bg);
  font-family: "Montserrat", var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.card-link-pending:not(.card-instagram) { display: none; }
.card-mail i { display: none; }
.card-mail > span {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
}
.card-link-pending { opacity: 0.62; cursor: default; }
.card-languages { display: none; }
.card-languages .lang-link { color: var(--season-muted); }
.card-languages .lang-link.is-active { color: var(--season-fg); }
.card-languages .lang-link.is-active::after { background: currentColor; }

body.season--summer { --season-bg: #e83e91; --season-fg: #f8f0ec; --season-muted: rgba(248, 240, 236, 0.72); --logo-colour-1: #f8f0ec; --logo-colour-2: #071525; --logo-colour-3: #a94f39; }
body.season--spring { --season-bg: #f8f0ec; --season-fg: #e83e91; --season-muted: rgba(232, 62, 145, 0.72); --logo-colour-1: #e83e91; --logo-colour-2: #071525; --logo-colour-3: #a94f39; }
body.season--autumn { --season-bg: #a94f39; --season-fg: #e83e91; --season-muted: rgba(232, 62, 145, 0.72); --logo-colour-1: #f8f0ec; --logo-colour-2: #071525; --logo-colour-3: #e83e91; }
body.season--winter { --season-bg: #071525; --season-fg: #f8f0ec; --season-muted: rgba(248, 240, 236, 0.72); --logo-colour-1: #f8f0ec; --logo-colour-2: #e83e91; --logo-colour-3: #a94f39; }

@media (max-width: 540px) {
  .business-card { padding: 1.5rem; }
  .card-links { top: 62%; right: auto; bottom: auto; left: 50%; transform: translate(-50%, -50%); }
  .card-footer { left: 50%; transform: translateX(-50%); text-align: center; }
  .legal-links { justify-content: center; }
  .card-logo img { width: min(84vw, 430px); }
  .logo-pulse { width: min(84vw, 430px); }
  .card-links { gap: 1.25rem; }
  .card-link { font-size: 0.62rem; letter-spacing: 0.06em; }
  .card-footer { font-size: 0.58rem; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-pulse { animation: none; }
}
