:root {
  --cream: #fff9ef;
  --ivory: #f5eee2;
  --sand: #d5b078;
  --gold: #b9763f;
  --ink: #101110;
  --forest: #123b30;
  --muted: #70675b;
  --line: rgba(16, 17, 16, 0.14);
  --night: #090c0b;
  --danger: #d96b50;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(54px, 7vw, 112px);
}

h2 {
  font-size: clamp(42px, 5.4vw, 82px);
}

h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.58;
}

.kicker {
  width: fit-content;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.85;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn.primary {
  background: var(--ink);
  color: var(--cream);
}

.btn.ghost {
  background: rgba(255, 249, 239, 0.72);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  padding: clamp(28px, 4vw, 64px);
  background:
    linear-gradient(90deg, var(--cream) 0 58%, rgba(213, 176, 120, 0.22) 58%),
    var(--cream);
  overflow: hidden;
}

.nav {
  position: absolute;
  top: clamp(24px, 3vw, 42px);
  left: clamp(24px, 4vw, 64px);
  right: clamp(24px, 4vw, 64px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(16, 17, 16, 0.12);
  background: rgba(255, 249, 239, 0.72);
  backdrop-filter: blur(18px);
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand,
.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 59, 48, 0.32);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  gap: clamp(16px, 3vw, 36px);
  color: rgba(18, 59, 48, 0.72);
}

.nav-links a {
  padding: 10px 0;
}

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

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--cream);
}

.nav-cta:hover {
  color: var(--cream);
}

.nav-links a:first-child {
  border-bottom: 1px solid var(--gold);
}

.hero-media {
  position: relative;
  height: clamp(540px, 72vh, 780px);
  overflow: hidden;
  background: #1a1612;
  box-shadow: 0 34px 90px rgba(16, 17, 16, 0.18);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding-top: 74px;
}

.hero-content h1 {
  margin-top: 24px;
}

.hero-content > p:last-of-type {
  max-width: 600px;
  margin: 28px 0 36px;
  color: #4f473e;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.event-card {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 64px);
  z-index: 2;
  width: min(380px, calc(100% - 48px));
  padding: 22px;
  background: rgba(255, 249, 239, 0.94);
  border: 1px solid var(--line);
}

.event-card span,
.event-card small {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card strong {
  display: block;
  margin: 12px 0;
  color: var(--forest);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.event-card small {
  color: var(--muted);
  line-height: 1.4;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 0 clamp(24px, 4vw, 64px);
}

.quick-proof article {
  min-height: 230px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--ivory);
}

.quick-proof span,
.steps span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.quick-proof strong {
  display: block;
  margin: 48px 0 16px;
  color: var(--forest);
  font-size: clamp(24px, 2.4vw, 36px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

.reservation {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 0.86fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
  padding: clamp(82px, 9vw, 140px) clamp(24px, 5vw, 82px);
  background: var(--cream);
}

.reservation-copy {
  max-width: 720px;
  position: sticky;
  top: 42px;
}

.reservation-copy h2 {
  margin: 28px 0;
}

.poster-note {
  margin-top: 36px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.poster-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.poster-note strong {
  color: var(--forest);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.18;
}

.reservation-visual {
  height: clamp(180px, 18vw, 260px);
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.reservation-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.9) contrast(1.04);
}

.reservation-panel {
  padding: clamp(22px, 3vw, 36px);
  background: #101412;
  color: var(--cream);
  box-shadow: 0 34px 90px rgba(16, 17, 16, 0.18);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 249, 239, 0.18);
}

.panel-top span {
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-top strong {
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
}

form {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 249, 239, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea,
button {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 249, 239, 0.2);
  border-radius: 0;
  background: rgba(255, 249, 239, 0.08);
  color: var(--cream);
  font: inherit;
  padding: 0 16px;
}

textarea {
  min-height: 104px;
  padding-top: 14px;
  resize: vertical;
}

select option {
  background: #101412;
  color: var(--cream);
}

button {
  cursor: pointer;
}

.passages-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 249, 239, 0.14);
}

.passages-head span {
  display: block;
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.passages-head strong {
  display: block;
  margin-top: 8px;
  color: var(--cream);
  font-size: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.btn-add {
  width: auto;
  min-height: 44px;
  padding: 0 16px;
  background: rgba(255, 249, 239, 0.12);
  color: var(--cream);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.passages-list {
  display: grid;
  gap: 14px;
}

.passage-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 249, 239, 0.07);
  border: 1px solid rgba(255, 249, 239, 0.13);
}

.passage-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.passage-card-top strong {
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.remove-passage {
  width: auto;
  min-height: 36px;
  border-color: rgba(255, 249, 239, 0.22);
  background: transparent;
  color: rgba(255, 249, 239, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.passage-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio-option {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 249, 239, 0.2);
  background: rgba(255, 249, 239, 0.08);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.radio-option input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--sand);
}

.submit-btn {
  margin-top: 4px;
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-status {
  min-height: 24px;
  color: rgba(255, 249, 239, 0.74);
  font-size: 14px;
}

.form-status.error {
  color: #ffc2b5;
}

.hidden-frame {
  display: none;
}

.flow,
.offers,
.formats {
  padding: clamp(82px, 9vw, 140px) clamp(24px, 5vw, 82px);
}

.flow {
  background: var(--ivory);
}

.flow > h2 {
  max-width: 940px;
  margin: 28px 0 54px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.steps article {
  min-height: 290px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--ivory);
}

.steps h3 {
  margin: 70px 0 18px;
  color: var(--forest);
}

.offers {
  background: #111513;
  color: var(--cream);
}

.offers-head {
  max-width: 850px;
}

.offers h2 {
  margin-top: 28px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 249, 239, 0.18);
}

.price-grid article {
  min-height: 360px;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: clamp(26px, 3vw, 42px);
  background: #111513;
}

.price-grid article.highlight {
  background: var(--cream);
  color: var(--ink);
}

.price-grid span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-grid p {
  color: rgba(255, 249, 239, 0.72);
}

.price-grid .highlight p {
  color: var(--muted);
}

.price-grid strong {
  color: var(--sand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.format-visual {
  width: 100%;
  height: 118px;
  position: relative;
  border: 1px solid rgba(255, 249, 239, 0.18);
  background:
    linear-gradient(135deg, rgba(213, 176, 120, 0.16), rgba(255, 249, 239, 0.02)),
    rgba(255, 249, 239, 0.04);
  overflow: hidden;
}

.format-visual img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.visual-landscape img {
  object-position: center;
}

.visual-portrait img {
  object-position: center 42%;
}

.format-visual.has-image::before,
.format-visual.has-image::after {
  display: none;
}

.highlight .format-visual {
  border-color: rgba(16, 17, 16, 0.14);
  background:
    linear-gradient(135deg, rgba(185, 118, 63, 0.16), rgba(18, 59, 48, 0.04)),
    rgba(16, 17, 16, 0.03);
}

.format-visual::before,
.format-visual::after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  color: rgba(213, 176, 120, 0.78);
}

.highlight .format-visual::before,
.highlight .format-visual::after {
  color: rgba(18, 59, 48, 0.56);
}

.visual-landscape::before {
  width: 68%;
  height: 52%;
  left: 16%;
  top: 24%;
}

.visual-landscape::after {
  width: 42%;
  height: 2px;
  left: 29%;
  bottom: 20%;
  border-width: 1px 0 0;
}

.visual-landscape span {
  position: absolute;
  left: 24%;
  right: 24%;
  top: 44%;
  height: 1px;
  background: rgba(213, 176, 120, 0.62);
}

.visual-portrait::before {
  width: 32%;
  height: 70%;
  left: 34%;
  top: 15%;
}

.visual-portrait::after {
  width: 8px;
  height: 8px;
  left: calc(50% - 4px);
  bottom: 20%;
  border-radius: 50%;
  background: currentColor;
}

.visual-portrait span {
  position: absolute;
  left: 42%;
  right: 42%;
  top: 25%;
  bottom: 32%;
  border: 1px solid rgba(18, 59, 48, 0.32);
}

.visual-club {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 22px;
}

.visual-club::before,
.visual-club::after {
  display: none;
}

.visual-club span {
  min-height: 72px;
  border: 1px solid rgba(213, 176, 120, 0.52);
  background: rgba(213, 176, 120, 0.08);
}

.price-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 249, 239, 0.18);
}

.price-note span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-note strong {
  color: var(--cream);
  font-size: clamp(24px, 2.8vw, 42px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.formats {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.68fr);
  gap: clamp(38px, 6vw, 100px);
  align-items: center;
  background: var(--cream);
}

.formats h2 {
  margin: 28px 0;
}

.formats p:not(.kicker) {
  max-width: 620px;
}

.phone-stack {
  position: relative;
  min-height: 610px;
}

.phone-stack figure {
  position: absolute;
  width: min(45%, 260px);
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(16, 17, 16, 0.2);
  background: var(--night);
  box-shadow: 0 28px 80px rgba(16, 17, 16, 0.18);
  overflow: hidden;
}

.phone-stack figure:first-child {
  left: 14%;
  top: 4%;
  transform: rotate(-7deg);
}

.phone-stack figure:last-child {
  right: 12%;
  bottom: 0;
  transform: rotate(8deg);
}

.phone-stack img {
  height: 100%;
  object-fit: cover;
}

.phone-stack figure:first-child img {
  object-position: 78% center;
}

.phone-stack figure:last-child img {
  object-position: 52% center;
  transform: scale(1.72);
}

.final {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
  text-align: center;
}

.final > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: saturate(0.82) contrast(1.08);
}

.final::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(9, 12, 11, 0.34), rgba(9, 12, 11, 0.82) 72%),
    linear-gradient(0deg, rgba(9, 12, 11, 0.88), rgba(9, 12, 11, 0.08));
}

.final-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
}

.final-content .kicker {
  margin: 0 auto 28px;
  color: var(--sand);
}

.final-content h2 {
  color: var(--cream);
}

.final-content p {
  max-width: 680px;
  margin: 30px auto 42px;
  color: rgba(255, 249, 239, 0.76);
}

@media (max-width: 1100px) {
  .reservation {
    grid-template-columns: 1fr;
  }

  .reservation-copy {
    position: static;
  }
}

@media (max-width: 980px) {
  .hero,
  .formats {
    grid-template-columns: 1fr;
  }

  .quick-proof,
  .steps,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    position: relative;
    left: auto;
    bottom: auto;
    grid-column: 1;
    width: 100%;
  }

  .hero-content {
    padding-top: 100px;
  }

  .phone-stack {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .form-grid,
  .passage-fields,
  .radio-group {
    grid-template-columns: 1fr;
  }

  .passages-head,
  .price-note {
    display: grid;
  }
}

@media (max-width: 640px) {
  .hero,
  .reservation,
  .flow,
  .offers,
  .formats {
    padding: 24px;
  }

  .nav {
    position: relative;
    inset: auto;
    display: grid;
    min-height: auto;
    padding: 14px;
    margin-bottom: 28px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-media {
    height: 430px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .actions {
    display: grid;
  }

  .quick-proof {
    padding: 0 24px;
  }

  .price-grid article {
    min-height: 300px;
  }

  .phone-stack {
    min-height: 460px;
  }

  .phone-stack figure {
    width: 48%;
  }

  .phone-stack figure:first-child {
    left: 2%;
  }

  .phone-stack figure:last-child {
    right: 2%;
  }
}
