/* ═══════════════════════════════════════════════════════════════════════════
   mi-su.me — Portfolio von Midnight Sun Global LLC.

   Eigenständig. Der alte Auftritt hing am Compass-Stylesheet und erbte damit
   dessen Gold und dessen Kartenraster; das Portfolio soll aber nicht wie eines
   der Produkte aussehen, sondern wie das Haus dahinter.

   Palette nach der Vorlage, die der Nutzer angegeben hat (Travel-Agency-Shot):
   ein fast schwarzes Tiefgrün als Grund, darauf Salbei und Minze. Ruhig,
   natürlich, dunkel — dieselbe Familie wie Compass' Nacht und Quests' Grün,
   nur zurückgenommener.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ink:      #091413;  /* Grund */
  --ink-2:    #0E1B19;  /* gehobene Fläche */
  --ink-3:    #13231F;  /* Karte */
  --forest:   #255246;  /* Akzentfläche */
  --slate:    #506661;
  --olive:    #777F71;
  --sage:     #A0B1AE;  /* Fließtext */
  --mint:     #B8CCC8;  /* hervorgehoben */
  --paper:    #EAF1EE;  /* Überschriften */

  --line:     rgba(160,177,174,.14);
  --line-2:   rgba(160,177,174,.26);

  --font: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, 'Segoe UI',
          system-ui, 'Noto Sans', sans-serif;

  --page: 1180px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--sage);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--page); margin: 0 auto; padding: 0 28px; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.on {
  background: rgba(9,20,19,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-in {
  max-width: var(--page); margin: 0 auto; height: 100%;
  padding: 0 28px; display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900;
         letter-spacing: -.4px; color: var(--paper); font-size: 16px; }
.brand svg { width: 24px; height: 24px; color: var(--mint); flex: none; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--sage);
               transition: color .15s; }
.nav-links a:hover { color: var(--paper); }

.lang { display: flex; gap: 2px; border: 1px solid var(--line);
        border-radius: 999px; padding: 3px; }
.lang button {
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  padding: 4px 10px; border-radius: 999px; color: var(--olive);
  transition: background .15s, color .15s;
}
.lang button.on { background: var(--forest); color: var(--mint); }

.burger { display: none; margin-left: auto; padding: 8px; color: var(--sage); }
.mobile { display: none; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: calc(var(--nav-h) + 92px) 0 104px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
/* Höhenlinien statt eines Fotos: es gibt kein Bildmaterial, und eine
   topografische Textur trägt dieselbe Aussage ohne eine einzige Anfrage. */
.hero-bg svg { position: absolute; right: -8%; top: -6%; width: 78%;
               min-width: 620px; opacity: .5; color: var(--forest); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 15% 30%, rgba(9,20,19,.0), var(--ink) 78%);
}
.hero-in { position: relative; max-width: 760px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--olive);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px 6px 10px; margin-bottom: 30px;
}
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint);
             display: block; flex: none; }

h1 {
  font-size: clamp(40px, 6.4vw, 74px);
  line-height: 1.04; letter-spacing: -2.4px; font-weight: 900;
  color: var(--paper); margin-bottom: 26px;
}
h1 em { font-style: normal; color: var(--mint); }

.lead { font-size: clamp(16px, 1.6vw, 19px); max-width: 60ch; color: var(--sage); }

.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-size: 14.5px; font-weight: 700; transition: transform .15s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-fill { background: var(--mint); color: var(--ink); }
.btn-fill:hover { background: var(--paper); }
.btn-line { border: 1px solid var(--line-2); color: var(--paper); }
.btn-line:hover { border-color: var(--mint); background: rgba(184,204,200,.06); }

/* ── Abschnitte ──────────────────────────────────────────────────────────── */
section { padding: 92px 0; }
.sec-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 46px; }
.sec-head h2 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--olive); white-space: nowrap;
}
.sec-head::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.sec-lead {
  font-size: clamp(22px, 2.9vw, 34px); line-height: 1.28; letter-spacing: -.9px;
  font-weight: 700; color: var(--paper); max-width: 22ch;
}
.two { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: 56px;
       align-items: start; }

/* ── Leistungen ──────────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  color: var(--mint); border: 1px solid var(--line-2);
}

/* ── Grundsätze ──────────────────────────────────────────────────────────── */
.tenets { display: grid; gap: 0; }
.tenet { padding: 22px 0; border-top: 1px solid var(--line); display: grid;
         grid-template-columns: 34px 1fr; gap: 18px; }
.tenet:last-child { border-bottom: 1px solid var(--line); }
.tenet .n { font-size: 12px; font-weight: 700; color: var(--forest);
            letter-spacing: 1px; padding-top: 4px; }
.tenet h3 { font-size: 17px; font-weight: 700; color: var(--paper); margin-bottom: 5px; }
.tenet p { font-size: 14.5px; }

/* ── Produkte ────────────────────────────────────────────────────────────── */
.cat { font-size: 12px; font-weight: 700; letter-spacing: 1.6px;
       text-transform: uppercase; color: var(--olive); margin: 0 0 18px; }
.cat + .cat-note { color: var(--olive); font-size: 14px; margin: -10px 0 22px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
         gap: 20px; margin-bottom: 62px; }
.card {
  position: relative; overflow: hidden;
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: 22px; display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }

.card-art { height: 156px; position: relative; background: var(--ink-2);
            border-bottom: 1px solid var(--line); overflow: hidden; }
.card-art svg { position: absolute; inset: 0; width: 100%; height: 100%;
                color: var(--forest); }
.card-body { padding: 24px 24px 26px; display: flex; flex-direction: column;
             flex: 1; gap: 12px; }
.card-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: 1.1px;
               text-transform: uppercase; color: var(--olive); }
.card h3 { font-size: 21px; font-weight: 900; letter-spacing: -.6px; color: var(--paper); }
.card p { font-size: 14.5px; flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
       color: var(--mint); background: rgba(37,82,70,.42); }
.card-foot { display: flex; align-items: center; justify-content: space-between;
             padding-top: 15px; border-top: 1px solid var(--line); }
.go { font-size: 13.5px; font-weight: 700; color: var(--mint);
      display: inline-flex; align-items: center; gap: 6px; }
.go svg { width: 15px; height: 15px; transition: transform .18s; }
.card:hover .go svg { transform: translateX(4px); }
.state { font-size: 10.5px; font-weight: 700; letter-spacing: .9px;
         text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
         border: 1px solid var(--line-2); color: var(--olive); }
.state.live { border-color: transparent; background: var(--mint); color: var(--ink); }

/* ── Kontakt ─────────────────────────────────────────────────────────────── */
.contact { border-top: 1px solid var(--line); }
.contact-in { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 40px;
              align-items: end; }
.contact h2 { font-size: clamp(26px, 3.6vw, 44px); line-height: 1.15;
              letter-spacing: -1.4px; font-weight: 900; color: var(--paper); }
.contact a.mail { color: var(--mint); border-bottom: 1px solid var(--line-2); }
.addr { font-size: 14px; color: var(--olive); line-height: 1.9; }
.addr a { color: var(--sage); border-bottom: 1px solid var(--line); }
.addr a:hover { color: var(--mint); }
.addr-h {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--forest); margin: 0 0 2px;
}
.addr-h + br { display: none; }
.addr .addr-h:not(:first-child) { margin-top: 18px; }

/* ── Anfrageformular ─────────────────────────────────────────────────────── */
.form {
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: 22px; padding: 34px;
  display: grid; gap: 18px; max-width: 860px;
}
.form-head h3 { font-size: 24px; font-weight: 900; letter-spacing: -.8px;
                color: var(--paper); margin-bottom: 6px; }
.form-head p  { font-size: 14.5px; color: var(--olive); }

.f-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-row-3 { grid-template-columns: repeat(3, 1fr); }

.f { display: grid; gap: 7px; }
.f > span { font-size: 12.5px; font-weight: 700; color: var(--olive);
            letter-spacing: .3px; }
.f input, .f select, .f textarea {
  font: inherit; font-size: 15px; color: var(--paper);
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; width: 100%;
  transition: border-color .15s;
}
.f textarea { resize: vertical; line-height: 1.6; min-height: 120px; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; border-color: var(--mint);
}
.f input::placeholder, .f textarea::placeholder { color: var(--text-3, #454C46); }
/* Das Auswahlfeld erbt sonst die Systemfarben und leuchtet weiß auf. */
.f select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23A0B1AE' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-size: 12px; padding-right: 38px; }
.f select option { background: var(--ink-2); color: var(--paper); }

/* Der Honigtopf muss für Menschen unsichtbar sein, ohne display:none — manche
   Bots überspringen genau das. Also aus dem Sichtfeld schieben. */
.f-hp { position: absolute; left: -9999px; width: 1px; height: 1px;
        overflow: hidden; }

.f-consent { display: flex; gap: 12px; align-items: flex-start;
             font-size: 13.5px; color: var(--sage); line-height: 1.6; }
.f-consent input { margin: 3px 0 0; accent-color: var(--forest); flex: none;
                   width: 17px; height: 17px; }

.f-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.f-foot .btn { border: 0; }
.f-msg { font-size: 13.5px; }
.f-msg.ok  { color: var(--mint); }
.f-msg.err { color: #E39A9A; }

.f-legal summary { cursor: pointer; font-size: 13px; color: var(--olive);
                   list-style: none; padding: 4px 0; }
.f-legal summary::-webkit-details-marker { display: none; }
.f-legal summary::before { content: '+ '; color: var(--forest); }
.f-legal[open] summary::before { content: '− '; }
.f-legal p { font-size: 13px; color: var(--olive); line-height: 1.7;
             padding: 8px 0 0; max-width: 68ch; }

@media (max-width: 720px) {
  .form { padding: 24px; border-radius: 18px; }
  .f-row, .f-row-3 { grid-template-columns: 1fr; }
}

/* ── Fuß ─────────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 26px 0 40px; }
.foot-in { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center;
           justify-content: space-between; font-size: 13px; color: var(--olive); }
.foot-in a:hover { color: var(--mint); }
.foot-links { display: flex; flex-wrap: wrap; gap: 20px; }

/* ── Schmale Fenster ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two { grid-template-columns: 1fr; gap: 34px; }
  .contact-in { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
            background: rgba(9,20,19,.97); backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--line); z-index: 49; padding: 10px 0 18px; }
  .mobile.open { display: block; }
  .mobile a { display: block; padding: 13px 28px; font-size: 15.5px; color: var(--sage); }
  .mobile a:hover { color: var(--paper); }
  section { padding: 68px 0; }
  .hero { padding: calc(var(--nav-h) + 62px) 0 74px; }
  .hero-bg svg { right: -34%; opacity: .34; }
  .cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
