@font-face {
  font-family: "Cinzel";
  src: url("assets/cinzel-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
}

@font-face {
  font-family: "Cinzel Decorative";
  src: url("assets/cinzel-decorative-400-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Cinzel Decorative";
  src: url("assets/cinzel-decorative-700-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --steam-gray: #2b2e34;
  --steam-dark: #17191e;
  --steam-gold: #e8b42f;
  --steam-yellow: #eeee22;
  --steam-white: #f3f1eb;
  --steam-text: #343434;
  --steam-line: rgba(232, 180, 47, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--steam-white);
  background: var(--steam-gray);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Cinzel Decorative", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 16ch;
  margin: 0 auto 0.6rem;
  color: var(--steam-white);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  line-height: 1.05;
  text-shadow: 0 2px 2px #000, 0 0 18px rgba(0, 0, 0, 0.7);
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.16;
}

h3 {
  margin-bottom: 0.65rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.compact-shell {
  max-width: 850px;
  text-align: center;
}

.section {
  padding: 5.2rem 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.eyebrow,
.adventure__meta {
  margin: 0 0 0.75rem;
  color: var(--steam-yellow);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ornament {
  width: min(760px, 92%);
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.9;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.65));
}

.ornament--short {
  width: min(420px, 80%);
  margin-bottom: 1rem;
}

.button {
  min-height: 46px;
  padding: 0.72rem 1.15rem 0.66rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f6c64a;
  border-radius: 4px;
  color: #221806;
  background: linear-gradient(#f4c54d, #d89e20);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 13px rgba(246, 198, 74, 0.5);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: scale(1.035);
  box-shadow: 0 0 20px rgba(246, 198, 74, 0.75);
}

.button--small {
  min-height: 42px;
  padding-inline: 1rem;
  font-size: 0.7rem;
}

.text-link {
  color: var(--steam-yellow);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-underline-offset: 0.25em;
  text-transform: uppercase;
}

.hero {
  min-height: 590px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(rgba(24, 26, 33, 0.34), rgba(24, 26, 33, 0.55)),
    url("assets/steam-escape-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 110px;
  background: linear-gradient(transparent, rgba(43, 46, 52, 0.9));
}

.hero__inner {
  width: min(980px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 5rem 0 6rem;
  text-align: center;
}

.hero__lead {
  max-width: 740px;
  margin: 0 auto 1.6rem;
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  text-shadow: 0 2px 3px #000;
}

.section--choice {
  background: rgba(43, 46, 52, 0.98);
}

.section--choice h2,
.section--adventures h2 {
  color: var(--steam-yellow);
  text-shadow: 0 2px 2px #000;
}

.format-row {
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.format-choice {
  padding: 1rem clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
}

.format-choice + .format-choice {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.format-choice h3 {
  color: var(--steam-yellow);
  font-size: 1.45rem;
}

.format-choice p {
  color: #e9e7e0;
}

.section--adventures {
  background:
    linear-gradient(rgba(43, 46, 52, 0.88), rgba(43, 46, 52, 0.93)),
    url("assets/steam-escape-hero.webp") center 80% / cover;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.adventure {
  text-align: center;
}

.adventure__image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.5rem;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.adventure__image:hover,
.adventure__image:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(238, 238, 34, 0.35);
}

.adventure__image img {
  width: 100%;
  height: 100% !important;
  aspect-ratio: 1;
  object-fit: cover;
}

.adventure__image--vip {
  background: #161617;
}

.adventure__image--vip img {
  object-fit: cover;
  object-position: center 45%;
}

.adventure h3 {
  color: var(--steam-yellow);
  font-size: 1.22rem;
  text-shadow: 0 2px 2px #000;
}

.adventure__meta {
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: 0.69rem;
  letter-spacing: 0.06em;
}

.adventure > p:not(.adventure__meta) {
  min-height: 84px;
  color: #ece9e2;
  font-size: 0.98rem;
}

.section--references {
  color: var(--steam-text);
  background: rgba(255, 255, 255, 0.94);
}

.section--references h2 {
  color: #27292e;
}

.section--references .eyebrow {
  color: #a96d08;
}

.section--references .text-link {
  color: #976009;
}

.video-showcase {
  margin-top: 2.1rem;
  text-align: center;
}

.video-showcase > p {
  margin-bottom: 1.1rem;
  color: #3b3d42;
  font-size: 1.05rem;
}

.video-frame {
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(39, 41, 46, 0.3);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.section--faq {
  color: var(--steam-white);
  background: var(--steam-gray);
}

.section--faq .section-heading h2 {
  color: var(--steam-yellow);
  text-shadow: 0 2px 2px #000;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.faq-layout .section-heading {
  margin: 0;
  text-align: left;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.faq-list summary {
  padding: 1.25rem 2.7rem 1.15rem 0;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.3rem;
  color: var(--steam-yellow);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding-right: 1.5rem;
  color: #dedbd4;
}

.section--contact {
  background:
    linear-gradient(90deg, rgba(28, 30, 37, 0.96), rgba(28, 30, 37, 0.82)),
    url("assets/steam-escape-hero.webp") center / cover;
}

.contact-panel {
  max-width: 920px;
  text-align: center;
}

.contact-panel h2 {
  color: var(--steam-yellow);
  text-shadow: 0 2px 2px #000;
}

.contact-panel > p:not(.eyebrow) {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.quote-form {
  margin-top: 2rem;
  text-align: left;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.35rem;
}

.quote-form__field {
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-form__field--full {
  grid-column: 1 / -1;
}

.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 4px;
  color: #22242a;
  background: rgba(255, 255, 255, 0.96);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.quote-form__field textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-form__field input:focus,
.quote-form__field select:focus,
.quote-form__field textarea:focus {
  outline: 2px solid var(--steam-yellow);
  outline-offset: 2px;
}

.quote-form__consent {
  margin: 1.25rem 0 0;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #f1eee7;
  font-size: 0.88rem;
}

.quote-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.quote-form__actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.phone-link {
  color: var(--steam-yellow);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  text-underline-offset: 0.25em;
}

@media (max-width: 900px) {
  .adventure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-layout .section-heading {
    text-align: center;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    min-height: 560px;
    background-position: 62% center;
  }

  .hero__inner {
    padding-block: 4.5rem 5rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
  }

  .format-row,
  .adventure-grid {
    grid-template-columns: 1fr;
  }

  .format-choice {
    padding: 1.8rem 0;
  }

  .format-choice + .format-choice {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .adventure-grid {
    gap: 3.2rem;
  }

  .adventure {
    max-width: 430px;
    margin-inline: auto;
  }

  .adventure > p:not(.adventure__meta) {
    min-height: 0;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
  }

  .quote-form__field--full {
    grid-column: auto;
  }

  .quote-form__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-form__actions .button,
  .quote-form__actions .phone-link {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
