/* Heyday Presents — shared styles.
   Colours and fonts carried over from the original heydaypresents.nl. */

:root {
  --cream: #f9f8f6;
  --green: #0a3323;
  --green-deep: #082a1d;
  --muted: #6b7a72;
  --line: #e4e2dc;
  --on-green: #f4f1ea;
  --on-green-muted: #a9b8af;

  --serif: "Playfair Display", "Noto Serif KR", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;

  --wrap: 1120px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
}

/* Korean reads better slightly less airy and without italics */
.lang-ko { word-break: keep-all; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

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

/* ---------- Wordmark ---------- */

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: var(--green);
}
.wm-heyday {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.wm-presents {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.wordmark-light { color: var(--on-green); }
.wordmark-light .wm-presents { color: var(--on-green-muted); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}
.header-nav > a { text-decoration: none; color: var(--muted); }
.header-nav > a:hover { color: var(--green); }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  background: #fff;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--muted);
}
.lang-switch a[aria-current] { background: var(--green); color: var(--cream); }

/* ---------- Home hero ---------- */

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.intro {
  text-align: center;
  padding: 72px 0 96px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.intro h1 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 84px);
  line-height: 0.95;
  margin: 0 0 28px;
}
.intro h1 span { display: block; }
.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.5;
  max-width: 34ch;
  margin: 0 auto 20px;
}
.intro .body {
  max-width: 56ch;
  margin: 0 auto 36px;
  color: var(--muted);
}
.lang-ko .lead { font-style: normal; }
.lang-ko .eyebrow { letter-spacing: 0.12em; }

.button {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background 0.2s;
}
.button:hover { background: var(--green-deep); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green);
  color: var(--on-green);
  padding: 64px 0 32px;
  font-size: 15px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.15);
}
.footer-tagline { color: var(--on-green-muted); max-width: 32ch; margin: 16px 0 0; }
.footer-contact p { margin: 0 0 12px; }
.footer-contact .label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-green-muted);
}
.footer-social a { color: var(--on-green-muted); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  font-size: 13px;
  color: var(--on-green-muted);
}

/* ---------- Phone ---------- */

@media (max-width: 640px) {
  :root { --gutter: 16px; }
  body { font-size: 16px; }
  .header-inner { height: 64px; }
  .wm-presents { display: none; }
  .header-nav { gap: 16px; }
  .hero-image { aspect-ratio: 4 / 3; }
  .intro { padding: 48px 0 64px; }
}
