/* CAFÉ VALEUR — fælles farver og layout for begge sprog */

:root {
  --cream: #f3eee4;
  --ink: #f3eee4;
  --green: #101e19;
  --muted: #c1c8bf;
  --line: #cba66b40;
  --gold: #dcb67a;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--green);
  color: var(--ink);
  font: 16px / 1.75 var(--sans);
}

a {
  color: inherit;
  text-underline-offset: 6px;
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1240px, calc(100% - 100px));
  margin-inline: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;
  padding: 20px 0;

  border-bottom: 1px solid #e8d5aa40;
}

.brand img {
  width: 104px;
  height: 104px;

  object-fit: contain;
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;

  gap: 32px;

  font-size: 0.875rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--gold);
}

.nav-contact {
  padding: 10px 25px;

  border: 1px solid var(--gold);
  border-radius: 3px;
}

.nav-contact span {
  margin-left: 14px;
}

.language {
  color: var(--gold);
}

.current-language {
  border-bottom: 1px solid var(--gold);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 850px;
  min-height: min(920px, 100svh);

  display: grid;
  place-items: center;

  padding: 185px 30px 110px;

  isolation: isolate;

  text-align: center;
}

.hero-image {
  position: absolute;
  inset: 0;

  margin: 0;

  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      180deg,
      #050c09a8 0%,
      #07100b70 28%,
      #07100b99 70%,
      #101e19 100%
    );
}

.hero-copy {
  max-width: 870px;

  text-shadow: 0 2px 20px #0006;
}

.eyebrow {
  margin: 0 0 25px;

  color: var(--gold);

  font-size: 0.8rem;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero .eyebrow {
  margin-bottom: 25px;
}

.hero-welcome {
  margin-bottom: 4px;

  font:
    italic clamp(1.4rem, 2.5vw, 2rem) / 1.3
    var(--serif);
}

h1 {
  margin-bottom: 24px;

  font:
    400 clamp(4.5rem, 8vw, 7.8rem) / 1.04
    var(--serif);

  letter-spacing: -0.035em;
}

.hero-subtitle {
  margin-bottom: 12px;

  font-size: clamp(1rem, 1.8vw, 1.3rem);

  letter-spacing: 0.03em;
}

.intro {
  max-width: 530px;

  margin: 0 auto 28px;

  color: #ece7df;

  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;

  gap: 35px;

  padding: 13px 27px;

  background: var(--gold);
  color: #132018;

  border: 1px solid var(--gold);
  border-radius: 3px;

  text-decoration: none;

  font-size: 0.875rem;
  font-weight: 600;

  text-shadow: none;
}

.button:hover {
  background: #efd09b;
}

.hero-status {
  margin: 23px 0 0;

  color: #e4d2b4;

  font-size: 0.8rem;
}

.hero-image figcaption {
  position: absolute;

  bottom: 20px;
  left: 20px;
  right: 20px;

  z-index: 2;

  color: #d4d9d1;

  font-size: 0.75rem;
}


/* =========================================================
   FÆLLES SEKTIONER
   ========================================================= */

.section {
  padding-block: 100px;
}

h2 {
  margin-bottom: 25px;

  font:
    400 clamp(2.5rem, 3.8vw, 3.7rem) / 1.13
    var(--serif);

  letter-spacing: -0.025em;
}

em {
  color: var(--gold);
  font-weight: 400;
}

.body-copy {
  color: var(--muted);

  font-size: 1.05rem;
}


/* =========================================================
   HVORFOR CAFÉ VALEUR
   ========================================================= */

.concept {
  display: grid;

  grid-template-columns: 1.05fr 1fr;

  align-items: center;

  gap: 85px;
}

.concept-image {
  margin: 0;
}

.concept-image img {
  width: 100%;
  height: 530px;

  object-fit: cover;
  object-position: 38% center;

  border-radius: 3px;
}

.concept-image figcaption {
  margin-top: 12px;

  color: var(--muted);

  font-size: 0.75rem;
}

.offerings {
  display: flex;
  flex-wrap: wrap;

  gap: 14px 24px;

  margin-top: 28px;

  color: var(--gold);

  font-size: 0.8rem;
}

.offerings span {
  padding-bottom: 6px;

  border-bottom: 1px solid var(--line);
}


/* =========================================================
   HVORFOR ALBERTSLUND
   ========================================================= */

.location-case {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 85px;

  align-items: start;

  border-top: 1px solid var(--line);
}

.location-case-intro {
  max-width: 610px;
}

.location-case-intro h2 {
  max-width: 600px;
}

.location-points {
  display: flex;
  flex-direction: column;

  gap: 34px;

  padding-top: 4px;
}

.location-point {
  padding-bottom: 26px;

  border-bottom: 1px solid var(--line);
}

.location-point:last-child {
  padding-bottom: 0;

  border-bottom: 0;
}

.location-point-label {
  margin: 0 0 8px;

  color: var(--gold);

  font-size: 0.72rem;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-point h3 {
  margin: 0 0 9px;

  font:
    400 1.4rem / 1.3
    var(--serif);
}

.location-point p:last-child {
  margin: 0;

  color: var(--muted);

  font-size: 0.95rem;
}


/* =========================================================
   DET PLANLAGTE LOKALE / PRE-LAUNCH
   ========================================================= */

.status {
  background: #e8dfce;
  color: #26372d;
}

.status-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;
}

.status .eyebrow {
  color: #655333;
}

.status h2 {
  max-width: 400px;
}

.status-label {
  display: inline-block;

  padding: 5px 12px;

  border: 1px solid #a08e6c;

  font-size: 0.75rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status h3 {
  font:
    400 1.8rem / 1.3
    var(--serif);
}

.status p {
  max-width: 520px;
}

.text-link {
  display: inline-flex;

  gap: 36px;

  padding: 6px 0;

  border-bottom: 1px solid #88724d;

  text-decoration: none;
}

.pitch-download {
  margin-top: 45px;
  margin-bottom: 0;
}


/* =========================================================
   MENNESKENE BAG
   ========================================================= */

.story {
  display: grid;

  grid-template-columns: 1fr 1.1fr;

  gap: 100px;

  align-items: center;
}

.founders-mark {
  display: flex;

  justify-content: center;
}

.founders-mark img {
  width: min(390px, 100%);
  height: auto;
}

.signature {
  margin-top: 30px;

  color: var(--gold);

  font:
    italic 1.45rem
    var(--serif);
}


/* =========================================================
   FINANSIERING / KONTAKT
   ========================================================= */

.contact {
  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 90px;

  border-top: 1px solid var(--line);
}

.contact-details {
  align-self: center;
}

.contact-names {
  color: var(--gold);

  font-size: 0.8rem;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#contact-links {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

#contact-links a {
  width: fit-content;

  overflow-wrap: anywhere;

  font: 400 16px / 1.75 var(--sans);

  text-decoration: none;
}

.investor-note {
  margin-top: 28px;

  color: var(--gold);

  font-size: 0.875rem;
}

.location {
  color: var(--muted);

  font-size: 0.875rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding-block: 25px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 0.75rem;
}

footer a {
  text-decoration: none;
}


/* =========================================================
   TILGÆNGELIGHED
   ========================================================= */

.skip {
  position: absolute;

  top: -100px;
  left: 20px;

  z-index: 10;

  padding: 12px;

  background: white;
  color: #111;
}

.skip:focus {
  top: 10px;
}


/* =========================================================
   STORE SKÆRME
   ========================================================= */

@media (min-width: 1500px) {

  .hero {
    min-height: 900px;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .wrap {
    width: calc(100% - 60px);
  }

  .concept,
  .story,
  .location-case {
    gap: 45px;
  }

  .concept-image img {
    height: 470px;
  }

  nav {
    gap: 20px;
  }

  .hero {
    min-height: 780px;
  }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 700px) {

  .wrap {
    width: calc(100% - 40px);
  }


  .header {
    gap: 15px;

    padding: 14px 0;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  nav {
    gap: 16px;
  }

  nav a[href="#concept"],
  nav a[href="#story"] {
    display: none;
  }

  .nav-contact {
    padding: 7px 12px;
  }

  .nav-contact span {
    display: none;
  }

  .current-language {
    display: none;
  }


  .hero {
    min-height: 760px;

    padding: 155px 22px 100px;
  }

  .hero-image img {
    object-position: 43% center;
  }

  .hero::after {
    background:
      linear-gradient(
        180deg,
        #050c09a8,
        #07100b7a 40%,
        #101e19 100%
      );
  }

  h1 {
    font-size: clamp(3.65rem, 13vw, 5.5rem);
  }

  .hero-subtitle {
    max-width: 280px;

    margin: 0 auto 18px;

    font-size: 1rem;
  }

  .hero .eyebrow {
    font-size: 0.75rem;

    letter-spacing: 0.15em;
  }

  .intro {
    max-width: 340px;
  }

  .hero-image figcaption {
    font-size: 0.75rem;
  }


  .section {
    padding-block: 58px;
  }

  .concept,
  .story,
  .contact,
  .status-grid,
  .location-case {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .concept-image img {
    height: 340px;
  }

  .concept > div {
    grid-row: 1;
  }


  .location-points {
    gap: 26px;
  }


  .status h2 {
    margin-bottom: 0;
  }

  .pitch-download {
    margin-top: 38px;
  }


  .founders-mark img {
    width: 240px;
  }

  .story {
    gap: 40px;
  }


  .contact {
    gap: 28px;
  }


  footer {
    flex-wrap: wrap;
  }

  footer > span:nth-child(2) {
    display: none;
  }

}


/* =========================================================
   REDUCERET ANIMATION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

}