:root {
  --ink: #20252b;
  --muted: #5e6872;
  --paper: #f7f4ec;
  --white: #ffffff;
  --line: #d7d0c2;
  --green: #28584b;
  --green-soft: #dfece3;
  --gold: #d7a544;
  --rose: #b95d53;
  --blue: #346b86;
  --plum: #594562;
  --shadow: 0 24px 70px rgba(32, 37, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 244, 236, 0.96) 360px),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 236, 0.9);
  border-bottom: 1px solid rgba(215, 208, 194, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: clamp(36px, 6vw, 86px) clamp(18px, 4vw, 56px) 52px;
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.kicker,
.meta {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta {
  color: var(--rose);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 8ch;
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 9.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-copy p:not(.kicker) {
  max-width: 610px;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.wide-copy {
  max-width: 920px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 780;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.hero-art {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(32, 37, 43, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(223, 236, 227, 0.92)),
    linear-gradient(45deg, rgba(185, 93, 83, 0.18), rgba(52, 107, 134, 0.16));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.postcard {
  position: absolute;
  inset: 42px 42px auto auto;
  width: min(72%, 430px);
  height: 286px;
  border: 12px solid var(--white);
  border-radius: 8px;
  background: var(--green-soft);
  box-shadow: 0 20px 48px rgba(32, 37, 43, 0.14);
  overflow: hidden;
  transform: rotate(2deg);
}

.postcard-sky {
  height: 48%;
  background:
    radial-gradient(circle at 82% 34%, var(--gold) 0 38px, transparent 39px),
    linear-gradient(135deg, #dfece3, #cddfe4);
}

.postcard-road {
  position: relative;
  height: 52%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.postcard-road::after {
  content: "";
  position: absolute;
  left: 45%;
  bottom: -16px;
  width: 34%;
  height: 118%;
  background: rgba(247, 244, 236, 0.55);
  transform: skewX(-16deg);
}

.ticket,
.note-card,
.media-panel,
.frame {
  border: 1px solid rgba(32, 37, 43, 0.16);
}

.ticket,
.note-card {
  position: absolute;
  display: grid;
  gap: 12px;
  width: 210px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(32, 37, 43, 0.14);
}

.ticket span,
.note-card span,
.caption-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(32, 37, 43, 0.22);
}

.ticket span:last-child,
.note-card span:last-child {
  width: 62%;
}

.ticket-one {
  left: 44px;
  top: 150px;
  transform: rotate(-7deg);
}

.ticket-two {
  right: 54px;
  bottom: 76px;
  background: #f8f0dc;
  transform: rotate(8deg);
}

.note-card {
  left: 22%;
  bottom: 124px;
  color: var(--ink);
  background: #fffaf0;
  transform: rotate(-2deg);
}

.strip,
.band {
  padding: 76px clamp(18px, 4vw, 56px);
}

.intro {
  border-top: 1px solid rgba(215, 208, 194, 0.78);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.note-preview {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.note-preview h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
  background: var(--green-soft);
}

.media-panel {
  min-height: 420px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.frame {
  border-radius: 8px;
}

.frame.large {
  height: 220px;
  background:
    radial-gradient(circle at 76% 32%, rgba(215, 165, 68, 0.9) 0 42px, transparent 43px),
    linear-gradient(135deg, var(--green), var(--blue));
}

.frame.small {
  width: 58%;
  height: 96px;
  margin: -34px 24px 24px auto;
  background: linear-gradient(135deg, var(--gold), var(--rose));
}

.caption-lines {
  display: grid;
  gap: 12px;
}

.caption-lines span:nth-child(2) {
  width: 84%;
}

.caption-lines span:nth-child(3) {
  width: 52%;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
}

.private-list {
  display: grid;
  gap: 10px;
}

.private-list span {
  padding: 14px 16px;
  border-left: 4px solid var(--rose);
  background: var(--white);
  border-radius: 6px;
  font-weight: 720;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header,
  nav {
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .band,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 430px;
    order: -1;
  }

  .note-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 5.6rem);
  }
}

@media (max-width: 560px) {
  .hero-art {
    min-height: 380px;
  }

  .postcard {
    inset: 28px 18px auto auto;
    width: 82%;
    height: 210px;
  }

  .ticket,
  .note-card {
    width: 158px;
    padding: 15px;
  }

  .ticket-one {
    left: 16px;
    top: 138px;
  }

  .ticket-two {
    right: 16px;
    bottom: 34px;
  }

  .note-card {
    left: 24px;
    bottom: 100px;
  }
}
