:root {
  --cream: #f2dfcf;
  --brown: #75452f;
  --orange: #f36b21;
  --soft-brown: #92644d;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: var(--cream);
  color: var(--brown);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

/* ---------- LANDING PAGE ---------- */

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 42px;
}

.hero-inner {
  width: 100%;
  max-width: 850px;
  text-align: center;
}

/* ---------- PETIT DÀDA WORDMARK ---------- */


.brand-logo {
  width: 140px;
  max-width: 42vw;
  height: auto;
  display: block;
  margin: 0 auto;
}




/* ---------- MAIN CLAIM ---------- */

h1 {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.claim {
  max-width: 650px;
  margin: 30px auto 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 29px);
  font-style: italic;
  line-height: 1.45;
}

.coming {
  margin: 40px 0 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- CONTACT ---------- */

.contact {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: var(--brown);
  font-size: 14px;
}

.contact a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact a:hover {
  border-bottom-color: var(--brown);
}

/* ---------- FOOTER ---------- */

footer {
  padding: 18px 24px 24px;
  text-align: center;
  color: var(--soft-brown);
  font-size: 11px;
}

footer nav {
  margin-top: 7px;
}

footer nav a {
  text-decoration: none;
}

footer nav span {
  margin: 0 8px;
}

/* ---------- LEGAL PAGES ---------- */

.legal {
  min-height: 100vh;
  background: #fff9f4;
}

.legal header,
.legal main,
.legal footer {
  width: min(820px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.legal header {
  padding-top: 48px;
}

.back {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 14px;
  text-decoration: none;
}

.legal main {
  padding-bottom: 40px;
}

.legal h1 {
  margin-bottom: 36px;
  font-size: clamp(34px, 5vw, 50px);
}

.legal h2 {
  margin-top: 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.legal p,
.legal li {
  font-size: 15px;
  line-height: 1.65;
}

.legal footer {
  border-top: 1px solid rgba(117, 69, 47, 0.18);
  padding-top: 20px;
}

/* ---------- MOBILE ---------- */

@media (max-width: 600px) {
  .hero {
    min-height: calc(100vh - 70px);
    padding: 42px 20px 30px;
  }

  .brand {
    margin-bottom: 38px;
  }

  .brand-main {
    font-size: 40px;
  }

  .brand-sub {
    font-size: 15px;
  }

  h1 {
    font-size: 42px;
  }

  .claim {
    margin-top: 24px;
    font-size: 20px;
  }

  .claim br {
    display: none;
  }

  .coming {
    margin-top: 32px;
  }

  .contact {
    margin-top: 24px;
    flex-direction: column;
    gap: 7px;
  }
}
/* Größe des Petit-Dàda-Logos */
.brand img,
.brand-logo,
.logo {
  width: 110px !important;
  max-width: 110px !important;
  height: auto !important;
  display: block;
  margin: 0 auto 32px !important;
  object-fit: contain;
}
/* Original Petit Dàda Logo */
.brand-logo {
  display: block !important;
  width: 145px !important;
  max-width: 145px !important;
  height: auto !important;
  margin: 0 auto !important;
}

.brand {
  display: block;
  margin: 0 auto 40px;
  text-align: center;
}