:root {
  --ink: #1b1a17;
  --ink-soft: #34312c;
  --paper: #f5f0e8;
  --paper-deep: #e8dece;
  --cream: #fffaf3;
  --sand: #cba97c;
  --sand-light: #e2cba9;
  --line: rgba(53, 44, 33, .18);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: .65rem 1rem;
  background: var(--cream);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 18px clamp(24px, 4vw, 76px);
  color: #fff;
  transition: background .5s ease, min-height .5s var(--ease), color .5s ease, box-shadow .5s ease;
}
.site-header.is-scrolled {
  min-height: 76px;
  color: var(--ink);
  background: rgba(248, 244, 237, .94);
  box-shadow: 0 10px 40px rgba(35, 28, 20, .08);
  backdrop-filter: blur(16px);
}
.brand {
  justify-self: start;
  position: relative;
  width: 190px;
  height: 58px;
  display: block;
  overflow: hidden;
  isolation: isolate;
}
.brand-logo,
.footer-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%) scale(1.72);
}
.brand-logo {
  filter: invert(1);
  mix-blend-mode: screen;
  transition: filter .4s ease, mix-blend-mode .4s ease;
}
.site-header.is-scrolled .brand-logo {
  filter: none;
  mix-blend-mode: multiply;
}
.brand-script {
  margin-bottom: -2px;
  font-family: "Segoe Script", cursive;
  font-size: 1.2rem;
  font-weight: 300;
  transform: rotate(-6deg);
}
.brand-name {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.brand-sub {
  margin-top: 6px;
  font-size: .55rem;
  letter-spacing: .38em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.3vw, 44px);
}
.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: .69rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  padding: 14px 21px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.09);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s;
}
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.client-login {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  transition: color .3s, border-color .3s, background .3s;
}
.client-login span { position: absolute; top: 8px; font-size: 0; }
.client-login span::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.client-login i {
  position: absolute;
  bottom: 8px;
  width: 19px;
  height: 10px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}
.site-header.is-scrolled .client-login { border-color: var(--line); }
.client-login:hover { color: var(--ink); border-color: var(--sand-light); background: var(--sand-light); }
.site-header.is-scrolled .header-cta { border-color: var(--line); }
.header-cta:hover { color: var(--ink); border-color: var(--sand-light); background: var(--sand-light); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  max-height: 980px;
  overflow: hidden;
  color: #fff;
  background: #161713;
}
.hero-media,
.quote-media {
  position: absolute;
  inset: -5%;
}
.hero-media img,
.quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img { object-position: center 44%; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,15,12,.92) 0%, rgba(13,15,12,.58) 36%, rgba(13,15,12,.12) 66%, rgba(13,15,12,.52) 100%),
    linear-gradient(0deg, rgba(12,13,11,.8) 0%, transparent 45%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 17%;
  left: clamp(24px, 7.2vw, 138px);
  width: min(650px, 48vw);
  padding: 0;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--sand);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
}
.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 4.45vw, 5.3rem);
  line-height: .9;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.hero h1 em,
.section h2 em,
.quote blockquote em {
  color: var(--sand-light);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}
.hero-copy {
  max-width: 510px;
  margin: 25px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.32);
  color: rgba(255,255,255,.82);
  font-size: clamp(.95rem, 1.1vw, 1.1rem);
}
.hero-actions { display: flex; gap: 14px; margin-top: 24px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--sand-light); }
.button-primary:hover { background: #f1ddbd; }
.button-ghost { border-color: rgba(255,255,255,.4); }
.button-ghost:hover { color: var(--ink); background: #fff; }
.button-dark { color: #fff; background: var(--ink); }

.category-rail {
  position: absolute;
  z-index: 4;
  top: 98px;
  right: 0;
  bottom: 104px;
  width: clamp(250px, 20vw, 360px);
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}
.category-card {
  position: relative;
  min-height: 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,9,.48), rgba(10,11,9,.82));
  transition: background .4s;
}
.category-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.7);
  transition: transform .8s var(--ease), filter .5s;
}
.category-card span {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.category-card:hover::after,
.category-card.is-current::after { background: linear-gradient(90deg, rgba(10,11,9,.18), rgba(10,11,9,.56)); }
.category-card:hover img,
.category-card.is-current img { filter: saturate(1); transform: scale(1.055); }

.hero-trust {
  position: absolute;
  z-index: 5;
  right: clamp(250px, 20vw, 360px);
  bottom: 0;
  left: clamp(24px, 5vw, 96px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(17,18,15,.52);
  backdrop-filter: blur(12px);
}
.hero-trust > div {
  min-height: 104px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  padding: 16px clamp(12px, 1.45vw, 24px);
  border-right: 1px solid rgba(255,255,255,.17);
}
.hero-trust > div:last-child { border-right: 0; }
.trust-icon {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--sand-light);
  font-family: var(--serif);
  font-size: 2rem;
}
.hero-trust strong {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-trust small { color: rgba(255,255,255,.56); font-size: .7rem; line-height: 1.5; }
.hero-foot {
  position: absolute;
  z-index: 6;
  right: clamp(250px, 20vw, 360px);
  bottom: 108px;
  left: clamp(24px, 5vw, 96px);
  display: none;
  justify-content: space-between;
  color: rgba(255,255,255,.58);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Der kompakte Startseiten-Entwurf zeigt die wichtigsten Informationen
   direkt im ersten Bildschirm. Die ausführlichen Inhalte werden später
   als eigenständige Unterseiten umgesetzt. */
.intro,
.portfolio,
.about,
.experience,
.quote,
.contact,
.site-footer { display: none; }

.section {
  position: relative;
  padding: clamp(90px, 10vw, 170px) clamp(24px, 7vw, 130px);
}
.section-number {
  color: var(--sand);
  font-family: var(--serif);
  font-size: 1rem;
}
.intro {
  display: grid;
  grid-template-columns: .3fr 1.05fr .85fr;
  gap: clamp(30px, 5vw, 100px);
  align-items: start;
}
.section h2 {
  font-size: clamp(3.1rem, 5.2vw, 6rem);
  line-height: .98;
}
.intro-copy { padding-top: 36px; }
.intro-copy p { max-width: 620px; margin: 0 0 24px; color: #625a50; }

.portfolio { color: #f8f3ea; background: var(--ink); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: clamp(54px, 6vw, 90px);
}
.section-lead { max-width: 500px; margin: 0; color: rgba(255,255,255,.58); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.story { min-height: clamp(420px, 44vw, 640px); }
.story-wide { grid-column: span 2; min-height: min(63vw, 780px); }
.story-tall { min-height: clamp(520px, 55vw, 760px); }
.story a { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; background: #292722; }
.story img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.15s var(--ease), filter .7s; }
.story::after { content: ""; }
.story a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,8,.76), transparent 58%);
  transition: background .5s;
}
.story:hover img { transform: scale(1.045); filter: saturate(1.08); }
.story:hover a::after { background: linear-gradient(0deg, rgba(10,10,8,.82), rgba(10,10,8,.04) 72%); }
.story-index {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 28px;
  color: rgba(255,255,255,.68);
  font-family: var(--serif);
}
.story-copy { position: absolute; z-index: 2; right: 30px; bottom: 28px; left: 30px; }
.story-copy small { color: var(--sand-light); font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; }
.story-copy h3 { margin: 8px 0 2px; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 5rem); font-weight: 300; line-height: 1; }
.story-link {
  display: inline-block;
  margin-top: 16px;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s;
}
.story:hover .story-link { transform: none; opacity: 1; }

.about {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  background: var(--cream);
}
.about-image { position: relative; padding: 0 0 52px 52px; }
.about-image::before {
  content: "";
  position: absolute;
  right: 52px;
  bottom: 0;
  left: 0;
  height: 68%;
  border: 1px solid var(--sand);
}
.about-image img { position: relative; z-index: 1; max-height: 720px; object-fit: cover; object-position: center top; }
.image-note {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 76px;
  color: #6f604e;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.about-content h2 { font-size: clamp(3rem, 4.4vw, 5.2rem); }
.about-text { max-width: 660px; margin: 36px 0; color: #665d52; }
.text-link {
  display: inline-flex;
  gap: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sand);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.signature { margin-top: 40px; color: #8d7557; font-family: "Segoe Script", cursive; font-size: 1.5rem; transform: rotate(-3deg); transform-origin: left; }

.experience { background: var(--paper-deep); }
.process { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { min-height: 300px; padding: 36px clamp(20px, 2.4vw, 44px); border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step > span { color: #9c7b52; font-family: var(--serif); }
.process-step h3 { margin: 46px 0 18px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.process-step p { margin: 0; color: #6a6055; font-size: .92rem; }

.quote { position: relative; min-height: min(72vw, 880px); display: grid; place-items: center; overflow: hidden; color: #fff; }
.quote-overlay { position: absolute; inset: 0; background: rgba(17,17,13,.5); }
.quote blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 80px 24px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
}
.quote blockquote > span { display: block; height: 46px; color: var(--sand-light); font-size: 6rem; line-height: 1; }

.contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  color: #fff;
  background: #25231f;
}
.contact h2 { font-size: clamp(3.5rem, 6vw, 7rem); }
.contact-copy > p:last-child { max-width: 650px; margin-top: 36px; color: rgba(255,255,255,.6); }
.contact-actions { display: grid; justify-items: start; gap: 28px; padding-bottom: 14px; }
.contact .button-dark { color: var(--ink); background: var(--sand-light); }
.contact-mail { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: .78rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: end;
  padding: 60px clamp(24px, 7vw, 130px);
  color: rgba(255,255,255,.64);
  background: #161512;
  font-size: .7rem;
}
.footer-brand { position: relative; width: 210px; height: 72px; overflow: hidden; isolation: isolate; }
.footer-logo { filter: invert(1); mix-blend-mode: screen; }
.footer-brand strong { font-size: 1.15rem; font-weight: 300; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand small { margin-top: 6px; letter-spacing: .2em; text-transform: uppercase; }
.footer-links { display: flex; gap: 30px; }
.footer-links a:hover { color: #fff; }
.site-footer > p { justify-self: end; margin: 0; }

body > main > .intro,
body > main > .portfolio,
body > main > .about,
body > main > .experience,
body > main > .quote,
body > main > .contact,
body > .site-footer {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .12s; }
.hero .reveal:nth-child(3) { transition-delay: .22s; }
.hero .reveal:nth-child(4) { transition-delay: .32s; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 170px 1fr auto; }
  .main-nav { justify-content: center; gap: 22px; }
  .category-rail { display: none; }
  .hero-content { width: min(680px, 68vw); }
  .hero-trust { right: 24px; }
}

@media (max-width: 860px) {
  .site-header { min-height: 78px; grid-template-columns: 1fr auto auto; gap: 8px; padding: 12px 22px; }
  .brand { width: 145px; }
  .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) { width: 28px; height: 1px; display: block; background: currentColor; transition: transform .4s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 16px;
    color: #fff;
    background: rgba(25,24,20,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .4s, transform .5s var(--ease);
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { font-family: var(--serif); font-size: 2.4rem; letter-spacing: .03em; text-transform: none; }
  .site-header.is-scrolled .main-nav { color: #fff; }
  .hero { height: auto; min-height: 920px; max-height: none; }
  .hero-content { position: relative; top: auto; left: auto; width: auto; padding: 145px 24px 400px; }
  .hero h1 { font-size: clamp(3.2rem, 12vw, 5.4rem); }
  .hero-shade { background: linear-gradient(90deg, rgba(13,15,12,.86), rgba(13,15,12,.2)), linear-gradient(0deg, rgba(12,13,11,.9), transparent 65%); }
  .hero-trust { right: 20px; bottom: 24px; left: 20px; grid-template-columns: repeat(2, 1fr); }
  .hero-trust > div:nth-child(even) { border-right: 0; }
  .hero-trust > div { border-bottom: 1px solid rgba(255,255,255,.17); }
  .hero-trust > div:last-child { grid-column: span 2; border-bottom: 0; }
  .intro { grid-template-columns: 1fr; }
  .intro .section-number { display: none; }
  .section-head { display: grid; }
  .about { grid-template-columns: 1fr; }
  .about-image { max-width: 560px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer > p { justify-self: center; }
}

@media (max-width: 580px) {
  .section { padding: 84px 20px; }
  .hero { min-height: 940px; }
  .hero-content { padding: 138px 20px 450px; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.4vw, 4rem);
    line-height: .96;
    letter-spacing: .015em;
  }
  .hero-copy { margin-top: 25px; padding-top: 20px; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust > div { min-height: 84px; padding: 13px 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .hero-trust > div:last-child { grid-column: auto; border-bottom: 0; }
  .hero-trust > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }
  .section h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .portfolio-grid { grid-template-columns: 1fr; gap: 10px; }
  .story,
  .story-wide,
  .story-tall { grid-column: auto; min-height: 530px; }
  .story-link { opacity: 1; transform: none; }
  .about-image { padding: 0 0 34px 28px; }
  .about-image::before { right: 26px; }
  .image-note { bottom: 9px; left: 46px; }
  .process { grid-template-columns: 1fr; }
  .process-step { min-height: auto; padding: 30px 5px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step h3 { margin: 18px 0 10px; }
  .quote { min-height: 680px; }
  .quote blockquote { font-size: 2.65rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px 24px; }
}

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

/* Unterseiten */
.subpage { background: var(--cream); }
.subpage .site-header:not(.is-scrolled) { background: linear-gradient(180deg, rgba(16,16,13,.62), transparent); }
.page-hero {
  position: relative;
  min-height: 380px;
  height: 48svh;
  max-height: 500px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(24px, 7vw, 130px) 54px;
  color: #fff;
  background: #24231f;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,18,15,.84), rgba(18,18,15,.25)), linear-gradient(0deg, rgba(18,18,15,.65), transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 900px; }
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.2vw, 7.2rem);
  font-weight: 300;
  line-height: .92;
}
.page-hero h1 em { color: var(--sand-light); font-weight: 300; }
.page-hero p:last-child { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.76); }
.content-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 64px 0 82px; }
.content-shell.compact { width: min(920px, calc(100% - 48px)); }
.content-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 8vw, 120px);
  margin-bottom: 58px;
}
.content-intro h2,
.content-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  font-weight: 300;
  line-height: 1;
}
.content-intro h2 em,
.content-section h2 em { color: #a47d4d; font-weight: 300; }
.prose { color: #625a50; }
.prose p:first-child { margin-top: 0; }
.prose p { margin: 0 0 20px; }
.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) 1.25fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}
.about-layout > *,
.content-intro > *,
.contact-layout > * { min-width: 0; }
.story-section h2,
.content-intro h2 { overflow-wrap: anywhere; }
.portrait-frame { position: sticky; top: 110px; }
.portrait-frame img { max-height: 680px; object-fit: cover; object-position: center top; }
.portrait-frame figcaption { margin-top: 14px; color: #8c775f; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }
.story-section { padding: 0 0 56px; margin-bottom: 56px; border-bottom: 1px solid var(--line); }
.story-section:last-child { border-bottom: 0; }
.story-section h2 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(2.1rem, 3.3vw, 3.6rem); font-weight: 400; }
.check-list,
.facts-list { display: grid; gap: 12px; padding: 0; margin: 24px 0; list-style: none; }
.check-list li,
.facts-list li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; }
.check-list li::before { content: "✓"; color: #9b7448; }
.facts-list li span:first-child { color: #9b7448; }
.sensitive-note { padding: 34px; border-left: 2px solid var(--sand); background: #f1e9dd; }

.filter-bar {
  position: sticky;
  z-index: 20;
  top: 76px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  margin: -18px auto 38px;
  border: 1px solid var(--line);
  background: rgba(255,250,243,.93);
  backdrop-filter: blur(14px);
}
.filter-button {
  padding: 9px 16px;
  border: 1px solid transparent;
  background: transparent;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-button:hover,
.filter-button.is-active { border-color: #b68e5e; background: #ecdfcc; }
.portfolio-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.portfolio-page-grid .story { min-height: 0; aspect-ratio: 4 / 3; }
.portfolio-page-grid .story.is-hidden { display: none; }
.portfolio-page-grid .story:nth-child(3n) { grid-column: auto; min-height: 0; }
.portfolio-page-grid .story-link { opacity: 1; transform: none; }
.portfolio-page-grid .story-copy { right: 22px; bottom: 20px; left: 22px; }
.portfolio-page-grid .story-copy h3 { font-size: clamp(2rem, 3vw, 3.2rem); }
.portfolio-page-grid #portrait img { object-position: center 28%; }
.portfolio-page-grid .story { color: #fff; }
.portfolio-page-grid .story a::after {
  background: linear-gradient(0deg, rgba(8,8,7,.92) 0%, rgba(8,8,7,.35) 48%, rgba(8,8,7,.08) 78%);
}
.portfolio-page-grid .story-copy h3,
.portfolio-page-grid .story-link { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.portfolio-page-grid .story-copy small { color: #f2d5ad; text-shadow: 0 1px 12px rgba(0,0,0,.7); }

.gallery-detail-hero { height: min(60svh, 600px); max-height: 600px; }
.gallery-detail-shell { padding-top: 54px; }
.gallery-detail-head {
  display: grid;
  grid-template-columns: auto minmax(280px, 620px);
  justify-content: space-between;
  gap: 40px;
  align-items: start;
  margin-bottom: 42px;
}
.gallery-detail-head p { margin: 0; color: #6f665c; font-size: 1rem; line-height: 1.8; }
.gallery-back { padding-bottom: 6px; border-bottom: 1px solid #ae8758; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.gallery-photo-grid { columns: 3 280px; column-gap: 14px; }
.gallery-photo { break-inside: avoid; margin: 0 0 14px; overflow: hidden; background: #ddd2c4; }
.gallery-photo img { display: block; width: 100%; height: auto; cursor: zoom-in; transition: transform .8s var(--ease); }
.gallery-photo:hover img { transform: scale(1.015); }
.gallery-related { margin-top: 70px; padding-top: 34px; border-top: 1px solid var(--line); }
.gallery-related > div { display:grid; grid-template-columns:repeat(3,1fr); margin-top:18px; border-top:1px solid var(--line); border-left:1px solid var(--line); }
.gallery-related a { min-height:86px; display:flex; justify-content:space-between; align-items:center; padding:18px 22px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:#fffdf9; }
.gallery-related a:hover { background:#eee1d0; }
.gallery-lightbox { width:100vw; max-width:none; height:100vh; max-height:none; margin:0; padding:0; border:0; color:#fff; background:rgba(12,11,9,.96); }
.gallery-lightbox::backdrop { background:rgba(12,11,9,.96); }
.gallery-lightbox[open] { display:grid; grid-template-columns:70px minmax(0,1fr) 70px; align-items:center; }
.gallery-lightbox figure { min-width:0; height:calc(100vh - 70px); display:grid; grid-template-rows:minmax(0,1fr) auto; place-items:center; margin:35px 0 0; }
.gallery-lightbox img { max-width:100%; max-height:calc(100vh - 110px); object-fit:contain; }
.gallery-lightbox figcaption { padding:10px; color:rgba(255,255,255,.65); font-size:.75rem; }
.gallery-lightbox button { z-index:2; width:48px; height:48px; display:grid; place-items:center; margin:auto; border:1px solid rgba(255,255,255,.35); border-radius:50%; color:#fff; background:rgba(0,0,0,.25); font-size:1.2rem; cursor:pointer; }
.gallery-lightbox .lightbox-close { position:fixed; top:18px; right:20px; margin:0; }
.protected-gallery-wrap { display:block; }
.protected-gallery-panel { max-width:820px; margin:0 auto; padding:clamp(38px,6vw,76px); border:1px solid var(--line); text-align:center; background:#fffdf9; box-shadow:0 28px 80px rgba(44,34,23,.08); }
.protected-gallery-icon { width:70px; height:70px; display:grid; place-items:center; margin:0 auto 25px; border:1px solid #b79468; border-radius:50%; color:#9d7547; font-size:1.6rem; }
.protected-gallery-panel h2 { margin:8px 0 22px; font-family:var(--serif); font-size:clamp(2.6rem,5vw,5rem); font-weight:300; line-height:1; }
.protected-gallery-panel > p:not(.eyebrow) { max-width:640px; margin:0 auto; color:#6d645a; line-height:1.8; }
.protected-gallery-panel ul { display:flex; justify-content:center; flex-wrap:wrap; gap:10px 24px; margin:28px 0; padding:0; list-style:none; color:#786c60; font-size:.78rem; }
.protected-gallery-panel li::before { content:"✓"; margin-right:7px; color:#9d7547; }

.protected-access-page { background:#f7f2e9; }
.protected-access-hero { min-height:360px; display:grid; place-items:end start; padding:clamp(100px,12vw,170px) max(6vw,30px) 64px; color:#fff; background:linear-gradient(90deg,rgba(14,13,11,.88),rgba(14,13,11,.34)),url("assets/images/portrait.jpg") center 32%/cover; }
.protected-access-hero > div { width:min(760px,100%); }
.protected-access-hero h1 { margin:10px 0 16px; font-family:var(--serif); font-size:clamp(3.4rem,7vw,7.2rem); font-weight:300; line-height:.95; }
.protected-access-hero h1 em { color:#e8cda5; }
.protected-access-hero > div > p:last-child { max-width:650px; font-size:1.05rem; line-height:1.75; color:rgba(255,255,255,.82); }
.protected-login-shell { width:min(1180px,calc(100% - 40px)); margin:clamp(42px,7vw,90px) auto; display:grid; grid-template-columns:1fr minmax(340px,480px); border:1px solid var(--line); background:#fffdf9; box-shadow:0 28px 80px rgba(44,34,23,.09); }
.protected-login-copy { padding:clamp(38px,6vw,80px); background:#181714; color:#f7f2e9; }
.protected-login-copy h2 { margin:16px 0 24px; font-family:var(--serif); font-size:clamp(3rem,5vw,5.3rem); font-weight:300; line-height:.95; }
.protected-login-copy h2 em { color:#d8b98c; }
.protected-login-copy p { max-width:520px; line-height:1.8; color:#c5beb3; }
.protected-login-copy a { display:inline-block; margin-top:26px; color:#e5cfad; text-transform:uppercase; letter-spacing:.15em; font-size:.72rem; }
.protected-login-card { display:flex; flex-direction:column; justify-content:center; gap:18px; padding:clamp(34px,5vw,68px); }
.protected-login-card h2 { margin:0 0 8px; font-family:var(--serif); font-size:clamp(2.2rem,4vw,3.8rem); font-weight:300; }
.protected-login-card label { display:grid; gap:8px; color:#5d544a; font-size:.82rem; letter-spacing:.06em; }
.protected-login-card input { width:100%; padding:16px; border:1px solid #cfc3b4; background:#fff; font:inherit; }
.protected-login-card button,.protected-login-card .button { width:100%; justify-content:center; }
.protected-login-card small { color:#81766a; line-height:1.6; }
.form-message { padding:13px 15px; border:1px solid #c9b28f; background:#fbf4e8; line-height:1.5; }
.form-message.is-error { color:#7c352e; border-color:#d8aaa4; background:#fff4f2; }
.private-gallery-shell { width:min(1440px,calc(100% - 40px)); margin:clamp(45px,7vw,90px) auto; }
.private-gallery-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:40px; }
.private-gallery-head h2 { margin:8px 0 0; font-family:var(--serif); font-size:clamp(3rem,6vw,6rem); font-weight:300; }
.private-photo-grid { columns:3 280px; column-gap:14px; }
.private-photo-grid figure { break-inside:avoid; margin:0 0 14px; background:#e9e1d6; }
.private-photo-grid img { display:block; width:100%; height:auto; }
.private-gallery-empty { padding:70px 30px; text-align:center; border:1px solid var(--line); background:#fffdf9; }
.private-gallery-empty h3 { margin:0 0 10px; font-family:var(--serif); font-size:2rem; font-weight:400; }
@media (max-width:760px) {
  .protected-access-hero { min-height:330px; padding:110px 22px 42px; }
  .protected-login-shell { grid-template-columns:1fr; width:calc(100% - 24px); }
  .protected-login-copy,.protected-login-card { padding:34px 24px; }
  .private-gallery-head { align-items:start; flex-direction:column; }
  .private-photo-grid { columns:1; }
}
.protected-gallery-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; }
.button-outline { border:1px solid var(--line); color:var(--ink); background:transparent; }
.gallery-detail-cta {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-top: 72px;
  padding: 48px;
  color: #fff;
  background: #191814;
}
.gallery-detail-cta h2 { margin: 4px 0 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.5rem); font-weight: 300; line-height: 1; }
.gallery-detail-cta .button-dark { color: #1a1815; background: #e9c99c; }
.more-galleries { margin-top: 58px; padding-top: 46px; border-top: 1px solid var(--line); }
.more-galleries-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 24px; }
.more-galleries-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.6rem); font-weight: 400; line-height: 1; }
.more-galleries-head > p { max-width: 390px; margin: 0; color: #756b60; }
.gallery-link-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.gallery-link-grid a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
  font-size: .78rem;
  transition: color .3s, background .3s;
}
.gallery-link-grid a span { color: #a47c4c; }
.gallery-link-grid a:hover { color: #76542d; background: #eee1d0; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 30px;
  color: #fff;
  background: var(--ink);
}
.service-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,12,10,.88), rgba(12,12,10,.08) 75%); }
.service-card > *:not(img) { position: relative; z-index: 1; }
.service-card small { color: var(--sand-light); letter-spacing: .16em; text-transform: uppercase; }
.service-card h2 { margin: 8px 0 10px; font-family: var(--serif); font-size: 2.4rem; font-weight: 300; }
.service-card p { margin: 0; color: rgba(255,255,255,.7); font-size: .88rem; }
.service-card .text-link { align-self: start; margin-top: 18px; }
.process-compact { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-compact article { padding: 24px 20px; border-right: 1px solid var(--line); }
.process-compact article:last-child { border-right: 0; }
.process-compact span { color: #a47d4d; font-family: var(--serif); }
.process-compact h3 { margin: 20px 0 8px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.process-compact p { margin: 0; color: #6c6257; font-size: .86rem; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 110px); }
.contact-details { padding: 38px; color: #fff; background: var(--ink); }
.contact-details h2 { margin: 0 0 30px; font-family: var(--serif); font-size: 2.6rem; font-weight: 300; }
.contact-details dl { margin: 0; }
.contact-details dt { margin-top: 24px; color: var(--sand-light); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-details dd { margin: 4px 0 0; color: rgba(255,255,255,.76); }
.whatsapp-contact { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.28); }
.whatsapp-contact span { color: #54c972; font-size: .7rem; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: span 2; }
.form-field label { font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfc2b1;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #9b7448; box-shadow: 0 0 0 3px rgba(155,116,72,.12); }
.form-consent { grid-column: span 2; display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: #6a6156; font-size: .8rem; }
.form-consent input { margin-top: 6px; }
.contact-form .button { width: max-content; }
.form-status { grid-column: span 2; min-height: 1.5em; margin: 0; font-size: .85rem; }
.honeypot { position: absolute !important; left: -9999px !important; }

.subpage-footer {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 45px clamp(24px, 7vw, 130px);
  color: rgba(255,255,255,.64);
  background: #161512;
  font-size: .7rem;
}
.subpage-footer .footer-links { justify-content: center; }
.subpage-footer > p { justify-self: end; margin: 0; }

.client-hub {
  min-height: calc(100svh - 140px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(35px, 7vw, 100px);
  align-items: center;
}
.client-hub-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.6rem); font-weight: 300; line-height: .98; }
.client-hub-copy p { max-width: 620px; margin: 28px 0 0; color: #665e54; }
.client-options { display: grid; gap: 14px; }
.client-option {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fffdf9;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.client-option:hover { transform: translateY(-3px); border-color: #b89162; box-shadow: 0 18px 44px rgba(42,33,23,.09); }
.client-option-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: #8d6a41; background: #eee2d1; font-size: 1.35rem; }
.client-option h3 { margin: 0; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.client-option p { margin: 2px 0 0; color: #746b61; font-size: .82rem; }
.client-option > span:last-child { color: #9c7548; }
.client-security { margin-top: 18px; color: #7a7065; font-size: .78rem; }
.client-gallery-login {
  display: grid;
  gap: 13px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fffdf9;
  box-shadow: 0 24px 60px rgba(42,33,23,.08);
}
.client-gallery-login h3 { margin: 0; font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
.client-gallery-login > p:not(.eyebrow) { margin: 0 0 6px; color: #746b61; }
.client-gallery-login label { margin-top: 8px; font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.client-gallery-login input { width: 100%; min-height: 56px; padding: 13px 15px; border: 1px solid #cbbda9; background: #fff; font: inherit; }
.client-gallery-login input:focus { outline: 0; border-color: #9b7448; box-shadow: 0 0 0 3px rgba(155,116,72,.12); }
.client-gallery-login .button { width: 100%; text-align: center; }
.client-gallery-login small { color: #7a7065; line-height: 1.5; }

@media (max-width: 860px) {
  .page-hero { min-height: 390px; height: 48svh; padding-bottom: 42px; }
  .content-intro,
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .portrait-frame { position: relative; top: auto; max-width: 520px; }
  .portfolio-page-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-page-grid .story:nth-child(3n) { grid-column: auto; min-height: 0; }
  .process-compact { grid-template-columns: repeat(2, 1fr); }
  .process-compact article:nth-child(2) { border-right: 0; }
  .process-compact article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .subpage-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .subpage-footer > p { justify-self: center; }
  .client-hub { grid-template-columns: 1fr; }
  .gallery-link-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 580px) {
  .page-hero { min-height: 360px; height: 44svh; padding: 115px 20px 34px; }
  .page-hero h1 { font-size: 2.75rem; }
  .page-hero p:last-child { margin-top: 14px; line-height: 1.5; }
  .content-shell { width: calc(100% - 40px); padding: 52px 0 66px; }
  .portfolio-page-grid,
  .services-grid,
  .process-compact,
  .contact-form { grid-template-columns: 1fr; }
  .portfolio-page-grid .story,
  .portfolio-page-grid .story:nth-child(3n) { min-height: 0; aspect-ratio: 4 / 3; }
  .portfolio-page-grid .story-copy h3 { font-size: 2.25rem; }
  .filter-bar { top: 70px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; }
  .process-compact article { border-right: 0; border-bottom: 1px solid var(--line); }
  .form-field.full,
  .form-consent,
  .form-status { grid-column: auto; }
  .contact-form .button { width: 100%; }
  .more-galleries-head { display: grid; gap: 12px; }
  .gallery-link-grid { grid-template-columns: 1fr 1fr; }
  .gallery-link-grid a { min-height: 62px; padding: 12px; }
  .client-option { grid-template-columns: 46px 1fr auto; padding: 18px 15px; }
  .client-option-icon { width: 44px; height: 44px; }
  .gallery-detail-head { grid-template-columns: 1fr; gap: 20px; }
  .gallery-photo-grid { columns: 1; }
  .gallery-photo { margin-bottom: 10px; }
  .gallery-detail-cta { align-items: stretch; flex-direction: column; padding: 30px 22px; }
  .gallery-detail-cta .button { width: 100%; text-align: center; }
  .gallery-related > div { grid-template-columns:1fr; }
  .gallery-lightbox[open] { grid-template-columns:48px minmax(0,1fr) 48px; }
  .gallery-lightbox figure { height:calc(100vh - 60px); }
  .gallery-lightbox button { width:40px; height:40px; }
}
/* Legal pages */
.legal-shell { width:min(980px,calc(100% - 40px)); margin:0 auto; padding:clamp(70px,9vw,130px) 0; }
.legal-shell > .eyebrow { color:var(--gold); }
.legal-shell > h1 { max-width:900px; margin:.2em 0 .75em; overflow-wrap:anywhere; hyphens:auto; font-family:var(--serif); font-size:clamp(3rem,7vw,6.5rem); font-weight:400; line-height:.92; }
.legal-copy { display:grid; gap:0; border-top:1px solid var(--line); }
.legal-copy section,.legal-copy > h2,.legal-copy > p { padding-left:clamp(0px,4vw,80px); padding-right:clamp(0px,4vw,80px); }
.legal-copy section { padding-top:30px; padding-bottom:30px; border-bottom:1px solid var(--line); }
.legal-copy h2 { margin:28px 0 10px; font-family:var(--serif); font-size:clamp(1.45rem,3vw,2.2rem); font-weight:400; }
.legal-copy section h2 { margin-top:0; }
.legal-copy p,.legal-copy li { color:var(--muted); font-size:1rem; line-height:1.8; }
.legal-copy a { color:inherit; text-decoration-color:var(--gold); text-underline-offset:4px; }
.legal-copy ul { display:grid; gap:7px; padding-left:1.3rem; }
.legal-copy .legal-source { font-size:.8rem; }
.withdrawal-form { background:rgba(200,164,119,.08); }
@media(max-width:620px){.legal-shell{width:min(100% - 30px,980px);padding-top:55px}.legal-copy section,.legal-copy>h2,.legal-copy>p{padding-left:0;padding-right:0}.legal-copy p,.legal-copy li{font-size:.95rem}.legal-shell>h1{font-size:clamp(2.3rem,11vw,4rem)}}


/* Geschützter Bereich – kompaktere und ruhigere Ansicht */
.protected-access-page.is-authorized .protected-access-hero {
  min-height: 220px;
  padding: 105px max(5vw, 28px) 38px;
  background-position: center 38%;
}
.protected-access-page.is-authorized .protected-access-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  margin-bottom: 8px;
}
.protected-access-page.is-authorized .protected-access-hero > div > p:last-child {
  font-size: .95rem;
}
.protected-access-page.is-authorized .private-gallery-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 80px;
}
.protected-access-page.is-authorized .private-gallery-head {
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.protected-access-page.is-authorized .private-gallery-head h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
}
.protected-access-page.is-authorized .private-gallery-shell > .protected-login-card {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: #fffdf9;
  box-shadow: 0 20px 55px rgba(44,34,23,.08);
}
.protected-access-page.is-authorized .private-gallery-shell > .protected-login-card h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
}
.password-hint {
  margin: 0 0 4px;
  color: #776c60;
  font-size: .84rem;
  line-height: 1.55;
}
.protected-password-change {
  width: min(620px, 100%);
  margin: 0 auto 34px;
  border: 1px solid var(--line);
  background: #fffdf9;
}
.protected-password-change summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}
.protected-password-change .protected-login-card {
  padding-top: 12px;
}
@media (max-width:760px) {
  .protected-access-page.is-authorized .protected-access-hero {
    min-height: 190px;
    padding: 92px 20px 28px;
  }
  .protected-access-page.is-authorized .private-gallery-shell {
    width: calc(100% - 24px);
    margin-top: 24px;
  }
  .protected-access-page.is-authorized .private-gallery-head {
    gap: 18px;
  }
}
