/* Praxis Claudia Romano, Atlaslogie
   Zwei Schriften: Cormorant Garamond für Name und Titel, Jost für alles andere.
   Farben aus der Visitenkarte: Elfenbein, Kakao, mattes Gold. Die Lotusblüte
   stammt aus der Karte und liegt als sanfte Fläche hinter Auftritt und Kontakt. */

:root {
  --cream: #F4EEE6;
  --sand: #EAE1D6;
  --kakao: #4A3B34;
  --ink: #3B2F2A;
  --muted: #6B5C53;
  --gold: #B9985F;
  --line: rgba(185, 152, 95, 0.45);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;
  --column: 680px;
  --wide: 900px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3, p, ul, figure, address, table { margin: 0; }
ul { padding: 0; list-style: none; }
address { font-style: normal; }
img { max-width: 100%; height: auto; display: block; }

hr {
  max-width: var(--column);
  margin: 0 auto;
  border: 0;
  border-top: 1px solid var(--line);
}

/* Monogramm: die Logo-Datei als Maske, gefüllt mit einer Farbe */
.mark {
  display: inline-block;
  width: 34px;
  height: 30px;
  background: var(--gold);
  -webkit-mask: url("../img/logo-cr.svg") center / contain no-repeat;
  mask: url("../img/logo-cr.svg") center / contain no-repeat;
}
.mark-intro { width: 88px; height: 77px; }
.mark-footer { width: 72px; height: 63px; }

/* Kopf */
.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.nav { display: flex; gap: 32px; }
.nav a { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 0; }
.menu {
  display: none;
  padding: 8px 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

/* Auftritt: zentriert, dahinter die grosse Blüte der Karte als hauchdünnes Wasserzeichen */
.intro {
  position: relative;
  overflow: hidden;
}
.intro-lotus {
  position: absolute;
  left: calc(50% - 720px);
  top: 16px;
  width: auto;
  height: 500px;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}
.intro-text {
  position: relative;
  max-width: var(--column);
  margin: 0 auto;
  padding: 80px var(--gutter) 96px;
  text-align: center;
}
.mark-large { width: 128px; height: 113px; }
.intro h1 {
  margin-top: 36px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.03em;
}
.label {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 0.4em;
}
.actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 36px;
}
.button {
  display: inline-block;
  padding: 15px 36px;
  border: 1px solid var(--gold);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.button:hover { background: var(--gold); color: #fff; }
.phone { font-size: 16px; letter-spacing: 0.06em; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* Textabschnitte */
.text {
  max-width: var(--column);
  margin: 0 auto;
  padding: 72px var(--gutter);
}
.text > * + * { margin-top: 22px; }
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.15;
}
h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
}
.text h2 + * { margin-top: 28px; }
.small { font-size: 14px; color: var(--muted); }

.list { columns: 2; column-gap: 48px; }
.list li { padding: 12px 0; border-bottom: 1px solid var(--line); break-inside: avoid; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.steps p { margin-top: 12px; font-size: 16px; }

/* Fotos: bis die Bilder da sind, eine ruhige Fläche mit Hinweis */
.photos { display: grid; grid-template-columns: 1fr; gap: 20px; }
.photo {
  position: relative;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption { font-size: 13px; letter-spacing: 0.08em; color: var(--muted); }
.photo.wide { aspect-ratio: 2 / 1; }


/* Preise */
.prices { width: 100%; border-collapse: collapse; }
.prices th {
  padding: 30px 0 6px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  text-align: left;
}
.prices tr.group:first-child th { padding-top: 0; }
.prices td { padding: 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.prices td:last-child { text-align: right; white-space: nowrap; padding-left: 24px; }

/* Kontakt: links die Blüte wie auf der Vorderseite der Karte, rechts die Angaben */
.contact {
  margin-top: 24px;
  background: var(--kakao);
  color: var(--cream);
}
.contact-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 88px var(--gutter) 56px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 64px;
  align-items: start;
}
.contact .ornament { width: 180px; height: auto; opacity: 0.9; }
.contact-body > * + * { margin-top: 22px; }
.contact-body h2 + * { margin-top: 28px; }
.contact a:hover { color: var(--gold); }
.contact address { font-size: 18px; line-height: 1.7; }
.contact .legal {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #D9CFC5;
}

/* Unterseiten */
.page { max-width: var(--column); margin: 0 auto; padding: 56px var(--gutter) 120px; }
.page > * + * { margin-top: 20px; }
.page h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(36px, 4.6vw, 52px); line-height: 1.1; }
.page h2 { font-size: 26px; margin-top: 40px; }
.page p, .page li { font-size: 16px; }
.page ul { list-style: disc; padding-left: 22px; }
.page a { border-bottom: 1px solid var(--line); }
.contact .text { max-width: var(--column); margin: 0 auto; padding: 40px var(--gutter); }
.contact .text .legal { margin-top: 0; padding-top: 0; border-top: 0; }

/* Schmale Bildschirme */
@media (max-width: 760px) {
  .menu { display: block; }
  .nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; }
  .intro-lotus { left: -70px; top: 0; height: 360px; }
  .intro-text { padding: 56px var(--gutter) 72px; }
  .mark-large { width: 104px; height: 92px; }
  .intro h1 { margin-top: 28px; }
  .actions { margin-top: 36px; flex-direction: column; gap: 20px; }
  .button { width: 100%; text-align: center; }
  .text { padding: 56px var(--gutter); }
  .list { columns: 1; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .photos { gap: 16px; }
  .photo.wide { aspect-ratio: 3 / 2; }
  .prices th { font-size: 22px; }
  .contact-inner { padding: 64px var(--gutter) 40px; grid-template-columns: 1fr; gap: 0; }
  .contact .ornament { display: none; }
}
