/* Ramunė Bauer v13
   Creative direction: a contemporary art studio with a calm, human voice. */

:root {
  --v13-ink: #4A4D56;
  --v13-paper: #FCFCFB;
  --v13-paper-deep: #F8F3F6;
  --v13-white: #FFFFFF;
  --v13-coral: #DD8FA1;
  --v13-coral-dark: #AE475F;
  --v13-gold: #E3CF9A;
  --v13-line: rgba(74, 77, 86, .16);
  --v13-line-light: rgba(252, 252, 251, .2);
  --v13-display: "Cormorant Garamond", Georgia, serif;
  --v13-sans: "Geist Variable", system-ui, sans-serif;
  --v13-mono: "Geist Mono Variable", ui-monospace, monospace;
  --v13-ease: cubic-bezier(.2, .8, .2, 1);
  --v13-container: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--v13-paper);
  color: #5D616C;
  font-family: var(--v13-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.08rem);
  line-height: 1.65;
  letter-spacing: -.02em;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--v13-ink);
  font-family: var(--v13-display);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
  text-wrap: balance;
}
h1 { font-size: clamp(4.25rem, 8vw, 8.6rem); }
h2 { font-size: clamp(3.1rem, 5.8vw, 6.2rem); }
h3 { font-size: clamp(1.75rem, 2.5vw, 2.7rem); line-height: 1.02; }
::selection { background: var(--v13-gold); color: var(--v13-ink); }

.v13-shell,
.container { width: min(100%, var(--v13-container)); margin-inline: auto; padding-inline: clamp(1.25rem, 4.5vw, 4.5rem); }
.v13-section { padding-block: clamp(5rem, 9vw, 10rem); }
.v13-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.4rem;
  color: var(--v13-coral-dark);
  font-family: var(--v13-mono);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}
.v13-kicker::before,
.eyebrow::before { content: ""; width: 1.7rem; height: 1px; flex: 0 0 auto; background: var(--v13-coral); }
.v13-lead,
.lead { max-width: 54ch; color: #5D616C; font-size: clamp(1.15rem, .97rem + .65vw, 1.5rem); line-height: 1.5; }

.v13-button,
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--v13-sans);
  font-size: .78rem;
  font-weight: 680;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  transition: transform .35s var(--v13-ease), background .35s var(--v13-ease), color .35s var(--v13-ease), border-color .35s var(--v13-ease), box-shadow .35s var(--v13-ease);
}
.v13-button::after { content: "↗"; font-size: 1rem; transition: transform .35s var(--v13-ease); }
.v13-button:hover::after { transform: translate(3px, -3px); }
.v13-button:hover,
.btn:hover { transform: translateY(-2px); }
.v13-button--primary,
.btn-primary { background: var(--v13-coral); color: #fff; box-shadow: 0 10px 28px rgba(221, 143, 161, .35); }
.v13-button--primary:hover,
.btn-primary:hover { background: var(--v13-coral-dark); color: white; box-shadow: 0 16px 36px rgba(174, 71, 95, .25); }
.v13-button--quiet,
.btn-outline { border-color: rgba(74, 77, 86, .35); background: transparent; color: var(--v13-ink); }
.v13-button--quiet:hover,
.btn-outline:hover { border-color: var(--v13-ink); background: var(--v13-white); color: var(--v13-ink); }

.v13-skip { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .7rem 1rem; background: var(--v13-ink); color: white; text-decoration: none; }
.v13-skip:focus { top: 1rem; }

/* Header used by the new homepage */
.v13-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--v13-line);
  background: rgba(252, 252, 251, .9);
  backdrop-filter: blur(22px) saturate(1.3);
  transition: box-shadow .3s ease, background .3s ease;
}
.v13-header.is-scrolled { background: rgba(252, 252, 251, .97); box-shadow: 0 8px 30px rgba(74, 77, 86, .06); }
.v13-nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.v13-brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--v13-ink); text-decoration: none; }
.v13-brand img { width: 46px; height: 46px; object-fit: contain; }
.v13-brand span { font-family: var(--v13-display); font-size: 1.3rem; font-weight: 500; letter-spacing: -.02em; }
.v13-menu { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.8rem); margin: 0; padding: 0; list-style: none; }
.v13-menu a:not(.v13-button) { position: relative; color: var(--v13-ink); font-size: .75rem; font-weight: 650; letter-spacing: .035em; text-decoration: none; }
.v13-menu a:not(.v13-button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 1px; background: var(--v13-coral); transition: right .3s var(--v13-ease); }
.v13-menu a:not(.v13-button):hover::after { right: 0; }
.v13-menu-toggle { display: none; width: 46px; height: 46px; place-items: center; padding: 0; border: 1px solid var(--v13-line); border-radius: 50%; background: transparent; color: var(--v13-ink); }
.v13-menu-toggle span,
.v13-menu-toggle::before,
.v13-menu-toggle::after { content: ""; display: block; width: 20px; height: 1px; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
.v13-menu-toggle span { margin-block: 5px; }
.v13-header.menu-open .v13-menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.v13-header.menu-open .v13-menu-toggle span { opacity: 0; }
.v13-header.menu-open .v13-menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

/* Homepage hero */
.v13-hero { min-height: calc(100svh - 82px); display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--v13-line); background: radial-gradient(circle at 82% 18%, rgba(221, 143, 161, .13), transparent 42%), radial-gradient(circle at 6% 88%, rgba(242, 231, 238, .8), transparent 38%); }
.v13-hero-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr); align-items: center; gap: clamp(2.5rem, 5vw, 7rem); padding-block: clamp(2.5rem, 4vw, 4.5rem); }
.v13-hero-copy { position: relative; z-index: 2; }
.v13-hero h1 { max-width: 9.2ch; margin-bottom: 1.4rem; font-size: clamp(2.9rem, 6.7vw, 7.2rem); }
.v13-hero h1 em { display: block; color: var(--v13-coral); font-weight: 500; }
.v13-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.v13-proof { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--v13-line); color: #656974; font-size: .76rem; }
.v13-proof span { display: inline-flex; align-items: center; gap: .45rem; }
.v13-proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--v13-coral); }
.v13-hero-art { position: relative; min-height: min(54vw, 570px); }
.v13-art-card { position: absolute; inset: 0 4% 0 4%; padding: 12px; border: 1px solid var(--v13-line); background: var(--v13-white); box-shadow: 0 35px 80px rgba(74, 77, 86, .17); }
.v13-art-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.02); }
.v13-art-label { position: absolute; right: -2.2rem; top: 50%; color: var(--v13-ink); font-family: var(--v13-mono); font-size: .62rem; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.v13-orbit { position: absolute; width: 43%; aspect-ratio: 1; left: -4%; bottom: -12%; border: 1px solid rgba(221, 143, 161, .55); border-radius: 50%; box-shadow: 0 0 0 2rem rgba(221, 143, 161, .05), 0 0 0 4rem rgba(221, 143, 161, .035); }

/* Editorial statement */
.v13-manifesto { position: relative; overflow: hidden; background: var(--v13-ink); color: var(--v13-paper); }
.v13-manifesto::after { content: ""; position: absolute; width: 44vw; aspect-ratio: 1; right: -13vw; top: -23vw; border: 1px solid rgba(227, 207, 154, .2); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(227, 207, 154, .018), 0 0 0 14vw rgba(227, 207, 154, .014); }
.v13-manifesto-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.v13-manifesto .v13-kicker { color: var(--v13-gold); }
.v13-manifesto h2 { max-width: 16ch; color: var(--v13-paper); }
.v13-manifesto h2 em { color: var(--v13-coral); font-weight: 500; }
.v13-manifesto p { max-width: 40ch; margin-top: 1rem; color: #E8E9ED; font-size: clamp(1.05rem, .92rem + .5vw, 1.3rem); }

/* Method */
.v13-method-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 7vw, 8rem); align-items: end; margin-bottom: clamp(3rem, 6vw, 6rem); }
.v13-method-head h2 { max-width: 9ch; margin-bottom: 0; }
.v13-method-head p { max-width: 48ch; margin-bottom: .4rem; }
.v13-steps { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--v13-line); }
.v13-step { counter-increment: steps; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--v13-line); }
.v13-step:last-child { border-right: 0; }
.v13-step::before { content: "0" counter(steps); display: block; margin-bottom: clamp(3rem, 7vw, 6rem); color: var(--v13-coral); font-family: var(--v13-mono); font-size: .68rem; font-weight: 650; letter-spacing: .12em; }
.v13-step h3 { max-width: 12ch; margin-bottom: 1rem; }
.v13-step p { margin-bottom: 0; font-size: .94rem; }

/* Offer paths */
.v13-paths { background: var(--v13-paper-deep); }
.v13-section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.v13-section-head h2 { max-width: 9ch; margin-bottom: 0; }
.v13-text-link { color: var(--v13-coral-dark); font-size: .8rem; font-weight: 680; letter-spacing: .03em; text-underline-offset: 5px; }
.v13-path-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.v13-path { grid-column: span 4; display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--v13-line); background: var(--v13-white); color: inherit; text-decoration: none; transition: transform .45s var(--v13-ease), box-shadow .45s var(--v13-ease), border-color .45s var(--v13-ease); }
.v13-path:hover { transform: translateY(-8px); border-color: rgba(221, 143, 161, .65); box-shadow: 0 25px 55px rgba(174, 71, 95, .12); }
.v13-path-image { aspect-ratio: 1.45 / 1; overflow: hidden; }
.v13-path-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .8s var(--v13-ease), filter .8s var(--v13-ease); }
.v13-path:hover img { transform: scale(1.035); filter: saturate(1); }
.v13-path-body { display: flex; flex: 1; flex-direction: column; padding: clamp(1.4rem, 2.5vw, 2.4rem); }
.v13-path-number { margin-bottom: 2.5rem; color: var(--v13-coral); font-family: var(--v13-mono); font-size: .65rem; font-weight: 650; letter-spacing: .15em; }
.v13-path h3 { max-width: 9ch; margin-bottom: 1rem; }
.v13-path p { margin-bottom: 2rem; font-size: .92rem; }
.v13-path-cta { margin-top: auto; color: var(--v13-coral-dark); font-size: .75rem; font-weight: 680; letter-spacing: .03em; }

/* Gallery */
.v13-gallery { overflow: hidden; background: var(--v13-ink); color: #E8E9ED; }
.v13-gallery h2 { max-width: 10ch; color: var(--v13-paper); }
.v13-gallery .v13-kicker { color: var(--v13-gold); }
.v13-gallery-intro { max-width: 47ch; }
.v13-gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.7rem, 1.3vw, 1.2rem); align-items: start; margin-top: clamp(3rem, 6vw, 6rem); }
.v13-gallery-item { position: relative; margin: 0; padding: 7px; border: 1px solid var(--v13-line-light); background: var(--v13-white); cursor: zoom-in; transition: transform .5s var(--v13-ease), box-shadow .5s var(--v13-ease); }
.v13-gallery-item:nth-child(1) { grid-column: 1 / span 5; }
.v13-gallery-item:nth-child(2) { grid-column: 6 / span 3; margin-top: 5rem; }
.v13-gallery-item:nth-child(3) { grid-column: 9 / span 4; margin-top: 1.5rem; }
.v13-gallery-item:nth-child(4) { grid-column: 2 / span 3; margin-top: 2rem; }
.v13-gallery-item:nth-child(5) { grid-column: 5 / span 5; margin-top: 0; }
.v13-gallery-item:nth-child(6) { grid-column: 10 / span 3; margin-top: 3rem; }
.v13-gallery-item:nth-child(7) { grid-column: 1 / span 4; margin-top: 2.5rem; }
.v13-gallery-item:nth-child(8) { grid-column: 5 / span 3; margin-top: 4.5rem; }
.v13-gallery-item:nth-child(9) { grid-column: 8 / span 5; margin-top: 1rem; }
.v13-gallery-item:nth-child(10) { grid-column: 2 / span 3; margin-top: 3rem; }
.v13-gallery-item:nth-child(11) { grid-column: 5 / span 5; margin-top: -.5rem; }
.v13-gallery-item:nth-child(12) { grid-column: 10 / span 3; margin-top: 4rem; }
.v13-gallery-item:hover { z-index: 2; transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 24px 60px rgba(0, 0, 0, .25); }
.v13-gallery-item img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; }
.v13-gallery-item--portrait img { aspect-ratio: .78 / 1; }
.v13-gallery-note { margin-top: 2.5rem; color: #C4C6CD; font-size: .76rem; }
.v13-lightbox { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 4vw; border: 0; background: rgba(30, 32, 37, .94); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.v13-lightbox.is-open { opacity: 1; pointer-events: auto; }
.v13-lightbox img { max-width: min(94vw, 1100px); max-height: 88vh; padding: 8px; background: white; box-shadow: 0 28px 80px rgba(0, 0, 0, .5); }
.v13-lightbox-close { position: absolute; right: 1.5rem; top: 1.5rem; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; background: transparent; color: white; font: 300 1.5rem/1 var(--v13-sans); cursor: pointer; }

/* About */
.v13-about { background: #F2E7EE; }
.v13-about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; }
.v13-portrait { position: relative; padding: 11px; border: 1px solid rgba(221, 143, 161, .45); background: var(--v13-white); }
.v13-portrait img { width: 100%; filter: saturate(.82); }
.v13-portrait::before { content: "Meet your guide"; position: absolute; left: -2.2rem; top: 2rem; color: #656974; font-family: var(--v13-mono); font-size: .62rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.v13-about h2 { max-width: 10ch; }
.v13-about-copy { max-width: 52ch; }

/* Testimonials */
.v13-testimonials { background: var(--v13-white); }
.v13-quotes { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--v13-line); }
.v13-quote { margin: 0; padding: clamp(2rem, 4vw, 3.7rem); border-right: 1px solid var(--v13-line); }
.v13-quote:last-child { border-right: 0; }
.v13-quote p { color: var(--v13-ink); font-family: var(--v13-display); font-size: clamp(1.55rem, 2.4vw, 2.35rem); line-height: 1.2; letter-spacing: -.025em; }
.v13-quote p::before { content: "“"; display: block; margin-bottom: .8rem; color: var(--v13-coral); font-size: 3.4rem; line-height: .7; }
.v13-quote cite { color: #656974; font-family: var(--v13-mono); font-size: .66rem; font-style: normal; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }

/* FAQ */
.v13-faq { background: var(--v13-paper); }
.v13-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 9rem); }
.v13-faq h2 { max-width: 8ch; }
.v13-faq-list { border-top: 1px solid var(--v13-line); }
.v13-faq-item { border-bottom: 1px solid var(--v13-line); }
.v13-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; color: var(--v13-ink); font-weight: 590; cursor: pointer; list-style: none; }
.v13-faq-item summary::-webkit-details-marker { display: none; }
.v13-faq-item summary::after { content: "+"; color: var(--v13-coral); font-size: 1.5rem; font-weight: 350; transition: transform .3s ease; }
.v13-faq-item[open] summary::after { transform: rotate(45deg); }
.v13-faq-item p { max-width: 62ch; padding: 0 2.5rem 1.35rem 0; }

/* Closing invitation */
.v13-invitation { background: var(--v13-coral); color: var(--v13-paper); }
.v13-invitation-inner { position: relative; overflow: hidden; padding-block: clamp(5rem, 10vw, 10rem); text-align: center; }
.v13-invitation-inner::before { content: ""; position: absolute; width: 430px; aspect-ratio: 1; right: -170px; bottom: -280px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018); }
.v13-invitation h2 { position: relative; max-width: 10ch; margin-inline: auto; color: #5A2331; }
.v13-invitation p { position: relative; max-width: 50ch; margin: 0 auto 2rem; color: #5A2331; }
.v13-invitation .v13-button { position: relative; background: var(--v13-white); color: var(--v13-coral-dark); }
.v13-invitation .v13-button:hover { background: #F2E7EE; color: var(--v13-coral-dark); }

/* Footer */
.v13-footer,
.site-footer[data-astro-cid-sz7xmlte] { margin-top: 0; padding-top: clamp(4rem, 7vw, 7rem); background: var(--v13-ink); color: #E8E9ED; }
.v13-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(2rem, 5vw, 5rem); padding-bottom: clamp(3rem, 5vw, 5rem); }
.v13-footer-brand { color: var(--v13-white); font-family: var(--v13-display); font-size: clamp(2.2rem, 3.6vw, 3.5rem); text-decoration: none; }
.v13-footer-tag { max-width: 29ch; margin-top: 1rem; color: #C4C6CD; font-size: .86rem; }
.v13-footer h3 { color: var(--v13-gold); font-family: var(--v13-sans); font-size: .68rem; font-weight: 680; letter-spacing: .14em; text-transform: uppercase; }
.v13-footer ul { display: grid; gap: .65rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.v13-footer a:not(.v13-footer-brand) { color: #E3CF9A; font-size: .84rem; text-decoration: none; }
.v13-footer a:hover { color: #F2E7EE; }
.v13-footer-legal { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid var(--v13-line-light); color: #C4C6CD; font-size: .7rem; }
.v13-footer-legal p { margin: 0; }

/* Existing subpages inherit the v13 system */
.site-header[data-astro-cid-3ef6ksr2] { background: rgba(252, 252, 251, .92); border-color: var(--v13-line); backdrop-filter: blur(22px) saturate(1.3); }
.header-inner[data-astro-cid-3ef6ksr2] { min-height: 82px; padding-block: .65rem; }
.brand[data-astro-cid-3ef6ksr2] img[data-astro-cid-3ef6ksr2] { width: 46px; height: 46px; }
.brand[data-astro-cid-3ef6ksr2] span[data-astro-cid-3ef6ksr2] { color: var(--v13-ink); font-size: 1.3rem; }
.nav-list[data-astro-cid-3ef6ksr2] a[data-astro-cid-3ef6ksr2]:not(.btn) { border: 0; color: var(--v13-ink); font-size: .72rem; font-weight: 650; letter-spacing: .035em; }
.nav-cta[data-astro-cid-3ef6ksr2] { background: var(--v13-coral); color: white; }
.nav-cta[data-astro-cid-3ef6ksr2]:hover { background: var(--v13-coral-dark); color: white; }
.page-hero { min-height: auto !important; padding-block: clamp(5rem, 8vw, 9rem) !important; background: radial-gradient(circle at 86% 14%, rgba(221, 143, 161, .12), transparent 30%), linear-gradient(145deg, var(--v13-paper-deep), var(--v13-paper) 68%) !important; border-bottom: 1px solid var(--v13-line); }
.page-hero h1 { max-width: 12ch; margin-bottom: 2rem !important; color: var(--v13-ink); font-size: clamp(3.8rem, 7vw, 7.3rem) !important; }
.section { padding-block: clamp(5rem, 8vw, 9rem); }
.card { border-color: var(--v13-line); border-radius: 2px; background: var(--v13-white); }
.card:hover { border-color: rgba(74, 77, 86, .35); transform: translateY(-5px); box-shadow: 0 22px 50px rgba(74, 77, 86, .09); }
form input:not([type="checkbox"]):not([type="radio"]),
form textarea,
form select { width: 100%; border: 1px solid rgba(74, 77, 86, .55) !important; border-radius: 2px !important; background: var(--v13-white); padding: 1rem !important; font: inherit; }
form input:focus,
form textarea:focus,
form select:focus { border-color: var(--v13-coral-dark) !important; outline: 3px solid rgba(174, 71, 95, .1); outline-offset: 0; }
.site-footer[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] { color: #E3CF9A; }

.v13-reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--v13-ease), transform .85s var(--v13-ease); }
.v13-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .v13-hero-grid { grid-template-columns: 1fr; }
  .v13-hero-art { min-height: min(112vw, 650px); }
  .v13-art-card { inset: 0 3.5% 0 3.5%; }
  .v13-manifesto-grid,
  .v13-method-head,
  .v13-about-grid,
  .v13-faq-grid { grid-template-columns: 1fr; }
  .v13-path { grid-column: span 6; }
  .v13-path:last-child { grid-column: 4 / span 6; }
  .v13-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .v13-nav { min-height: 72px; }
  .v13-menu-toggle { display: grid; }
  .v13-menu { position: absolute; left: 0; right: 0; top: 100%; display: none; align-items: stretch; gap: 0; padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--v13-line); background: rgba(252, 252, 251, .99); box-shadow: 0 22px 45px rgba(74, 77, 86, .12); }
  .v13-header.menu-open .v13-menu {
    display: flex;
    flex-direction: column;
    /* Fallback fuer aeltere Browser ohne svh */
    max-height: calc(100vh - 72px);
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .v13-menu li { width: 100%; }
  .v13-menu a:not(.v13-button) { display: block; padding: 1rem 0; border-bottom: 1px solid var(--v13-line); font-size: 1rem; }
  .v13-menu .v13-button { width: 100%; margin-top: 1rem; }
  .nav-list[data-astro-cid-3ef6ksr2] { background: var(--v13-paper); }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(3.7rem, 18vw, 5.7rem); }
  h2 { font-size: clamp(2.9rem, 14vw, 4.7rem); }
  .v13-section { padding-block: 5.5rem; }
  .v13-hero { min-height: auto; }
  .v13-hero-grid { padding-block: 2.6rem 4rem; gap: 3.5rem; }
  .v13-hero h1 { max-width: 12ch; }
  .v13-hero .v13-kicker { letter-spacing: .1em; }
  .v13-hero-actions { display: grid; }
  .v13-hero-actions .v13-button { width: 100%; }
  .v13-art-label { display: none; }
  .v13-manifesto-grid { gap: 2rem; }
  .v13-steps { grid-template-columns: 1fr; }
  .v13-step { display: grid; grid-template-columns: 50px 1fr; gap: 0 1rem; padding: 1.7rem 0; border-right: 0; border-bottom: 1px solid var(--v13-line); }
  .v13-step::before { grid-row: span 2; margin: .25rem 0 0; }
  .v13-step h3 { margin-bottom: .7rem; }
  .v13-section-head { display: block; }
  .v13-section-head .v13-text-link { display: inline-block; margin-top: 1.2rem; }
  .v13-path-grid { display: grid; grid-template-columns: 1fr; }
  .v13-path,
  .v13-path:last-child { grid-column: auto; }
  /* Die Scroll-Reihe ist breiter als der Viewport: der Reveal-Observer (threshold 12%)
     wuerde nie ausloesen, also hier ohne Einblend-Animation (Fix 28.07.) */
  .v13-gallery-grid.v13-reveal { opacity: 1; transform: none; }
  .v13-gallery-grid { display: flex; width: max-content; gap: 1rem; overflow: visible; }
  .v13-gallery-scroll { overflow-x: auto; margin-inline: -1.25rem; padding-inline: 1.25rem; scroll-snap-type: x mandatory; }
  .v13-gallery-item,
  .v13-gallery-item:nth-child(n) { width: min(76vw, 300px); margin-top: 0; scroll-snap-align: center; }
  .v13-gallery-item img,
  .v13-gallery-item--portrait img { aspect-ratio: 1 / 1; }
  .v13-portrait::before { display: none; }
  .v13-quotes { grid-template-columns: 1fr; }
  .v13-quote { padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--v13-line); }
  .v13-footer-grid { grid-template-columns: 1fr; }
  .v13-footer-legal { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .v13-reveal { opacity: 1; transform: none; }
  body::after { display: none; }
}
