/* Banket — banket.dk
   Farver: ink #1C2430 · cream #F6F1E8 · papir #FFFCF7 · messing #B08D57 */

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

:root {
  --ink: #1C2430;
  --ink-soft: #3C4655;
  --muted: #5A6371;
  --cream: #F6F1E8;
  --paper: #FFFCF7;
  --sand: #EFE9DE;
  --brass: #B08D57;
  --brass-dark: #8E6F3F;
  --line: #E1D9C9;
  --line-warm: #D8CDB8;
  --line-dark: #38424F;
  --footer: #171E27;
  --sec-pad: clamp(56px, 7vw, 112px) clamp(20px, 5vw, 88px);
  --gap: clamp(32px, 5vw, 80px);
  --card-gap: clamp(20px, 2.4vw, 32px);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Bodoni Moda', Georgia, serif; font-weight: 400; margin: 0; }
p { margin: 0; text-wrap: pretty; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: var(--brass-dark); text-decoration: none; }
a:hover { color: var(--brass); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--brass);
}
.h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; }
.lead { font-size: clamp(16px, 1.25vw, 19px); line-height: 1.7; color: var(--ink-soft); }
.body { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.7; color: var(--muted); }

.btn {
  display: inline-block;
  padding: 17px 34px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--brass); color: var(--ink); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--brass); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 241, 232, 0.5);
}
.btn-ghost:hover { background: transparent; border-color: var(--brass); color: #D8C9AC; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 88px);
  background: var(--cream);
  border-bottom: 1px solid rgba(28, 36, 48, 0.12);
}
.logo {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.2em;
  margin-left: 0.2em;
  color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links a:hover { color: var(--brass); }
.nav-links a.btn { color: var(--cream); }
.nav-links a.btn:hover { color: var(--ink); }
.nav-toggle, .nav-toggle-label { display: none; }

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; padding: 16px 20px; }
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    cursor: pointer;
    padding: 8px 0;
  }
  .nav-toggle-label span { height: 1px; background: var(--ink); }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding: 18px 0 6px;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a.btn { padding: 14px 26px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(460px, 72vh, 720px);
  background: var(--ink);
  display: flex;
  align-items: flex-end;
}
.hero .media { position: absolute; inset: 0; }
.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,36,48,0.90) 0%, rgba(28,36,48,0.62) 42%, rgba(28,36,48,0.45) 100%);
}
.hero-inner {
  position: relative;
  padding: clamp(32px, 5vw, 76px) clamp(20px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.6vw, 24px);
  max-width: 900px;
}
.hero .eyebrow { color: #D8C9AC; letter-spacing: 0.42em; }
.hero h1 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.04;
  color: var(--cream);
}
.hero p { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.65; color: #E3DDD1; max-width: 520px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 8px; }

.hero-slim { min-height: clamp(340px, 52vh, 520px); }
.hero-slim h1 { font-size: clamp(44px, 6.4vw, 82px); }

/* ---------- Sections ---------- */
section { padding: var(--sec-pad); }
.sec-paper { background: var(--paper); }
.sec-sand { background: var(--sand); }
.sec-ink { background: var(--ink); color: var(--cream); }
.sec-ink .h2, .sec-ink h2 { color: var(--cream); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: clamp(36px, 4vw, 64px);
}
.sec-head .stack { display: flex; flex-direction: column; gap: 20px; }
.sec-head p { max-width: 380px; }
.stack-lg { display: flex; flex-direction: column; gap: 26px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.stat b {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
}
.stat span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Kategorier ---------- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--card-gap); }
.card { display: flex; flex-direction: column; gap: 18px; min-width: 0; color: var(--ink); }
.card .media { height: clamp(220px, 24vw, 320px); overflow: hidden; background: var(--line); }
.card img { transition: transform 0.6s ease; }
a.card:hover img { transform: scale(1.03); }
a.card:hover { color: var(--ink); }
.card .title { font-family: 'Bodoni Moda', Georgia, serif; font-size: clamp(22px, 2vw, 26px); }
.card .note { font-size: 14px; color: var(--muted); }

/* ---------- Pakker ---------- */
.pkgs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--card-gap); }
.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line-dark);
}
.pkg .num { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brass); }
.pkg .name { font-family: 'Bodoni Moda', Georgia, serif; font-size: clamp(28px, 2.8vw, 36px); }
.pkg .desc { font-size: 15px; line-height: 1.6; color: #AEB6C2; }
.pkg .price { font-family: 'Bodoni Moda', Georgia, serif; font-size: clamp(24px, 2.4vw, 30px); }
.pkg .price small { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.16em; color: #8D96A4; }
.pkg ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
  color: #C9D0DA;
}
.pkg-featured { background: var(--cream); color: var(--ink); border: 0; }
.pkg-featured .num { color: var(--brass-dark); }
.pkg-featured .desc { color: var(--ink-soft); }
.pkg-featured .price small { color: var(--muted); }
.pkg-featured ul { border-top-color: var(--line-warm); color: var(--ink-soft); }
.pkg-featured .flag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 14px;
  background: var(--brass);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.pkg .head { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Galleri ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.4vw, 20px); }
.gallery figure { margin: 0; min-width: 0; height: clamp(180px, 17vw, 250px); overflow: hidden; background: var(--line); }
.gallery figure.wide { grid-column: span 2; grid-row: span 2; height: auto; min-height: clamp(370px, 35vw, 520px); }

/* ---------- Menuer ---------- */
.menus { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--card-gap); }
.menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  border-top: 1px solid var(--ink);
}
.menu .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.menu .no { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass); }
.menu .kind { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.menu .name { font-family: 'Bodoni Moda', Georgia, serif; font-size: clamp(26px, 2.4vw, 30px); line-height: 1.2; }
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.menu .foot {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--brass-dark);
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

/* ---------- Ydelser ---------- */
.services { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--card-gap); }
.service {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.service b { font-family: 'Bodoni Moda', Georgia, serif; font-weight: 400; font-size: 24px; }
.service span { font-size: 14px; line-height: 1.6; color: #AEB6C2; }

/* ---------- CTA ---------- */
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 5vw, 88px);
  background: var(--brass);
  color: var(--ink);
}
.cta .eyebrow { color: #4A3A20; letter-spacing: 0.34em; }
.cta .stack { display: flex; flex-direction: column; gap: 14px; }
.cta .title { font-family: 'Bodoni Moda', Georgia, serif; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.1; }

/* ---------- Kontaktformular ---------- */
.form-card { background: var(--paper); padding: clamp(28px, 3.4vw, 52px); }
form { display: flex; flex-direction: column; gap: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
label { display: flex; flex-direction: column; gap: 9px; }
label span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass-dark); }
input, select, textarea {
  border: 0;
  border-bottom: 1px solid var(--line-warm);
  background: transparent;
  padding: 9px 0;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  border-radius: 0;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-bottom-color: var(--brass); }
textarea { resize: vertical; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line-warm);
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */
footer {
  padding: clamp(48px, 5vw, 88px) clamp(20px, 5vw, 88px);
  background: var(--footer);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col .eyebrow { font-size: 10px; letter-spacing: 0.3em; }
.foot-col a, .foot-col span.item { font-size: 14px; color: #C9D0DA; }
.foot-col a:hover { color: var(--brass); }
.foot-brand { display: flex; flex-direction: column; gap: 16px; }
.foot-brand .logo { color: var(--cream); font-size: 30px; }
.foot-brand p { font-size: 13px; line-height: 1.7; color: #8D96A4; max-width: 260px; }
.foot-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid #303945;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7C8694;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .cards, .pkgs, .menus { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery figure { height: clamp(170px, 40vw, 240px); }
  .gallery figure.wide { grid-column: span 2; grid-row: auto; min-height: clamp(240px, 55vw, 340px); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .cards, .pkgs, .menus, .services, .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta { align-items: flex-start; }
}

/* ---------- Fotokredit (fjernes når egne fotos indsættes) ---------- */
.credit {
  position: absolute;
  z-index: 3;
  left: 10px;
  bottom: 8px;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(246, 241, 232, 0.65);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.credit:hover { color: rgba(246, 241, 232, 0.95); }
.media, .gallery figure { position: relative; }
