 :root {
  --black: #0b0c10;
  --charcoal: #121417;
  --soft-black: #181614;
  --cream: #f8f3ea;
  --muted: #b9b2a6;
  --gold: #c8a15a;
  --gold-light: #e2c385;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

p {
  line-height: 1.7;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.25));
  backdrop-filter: blur(8px);
}

.brand img {
  width: 260px;
  max-width: 65vw;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: bold;
}

.nav-cta, .btn {
  background: linear-gradient(135deg, var(--gold), #a47632);
  color: white !important;
  padding: 15px 24px;
  border-radius: 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover, .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,161,90,.28);
}

.hero {
  min-height: 100vh;
  background-image: url("images/hero-toronto.jpg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 7% 80px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.15), rgba(0,0,0,.72)),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.7));
}

.hero-content {
  position: relative;
  max-width: 980px;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: bold;
}

.eyebrow.dark {
  color: #9a7338;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1.02;
  margin: 18px 0;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 20px;
}

.quick-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #08090b;
  border-top: 1px solid rgba(200,161,90,.28);
  border-bottom: 1px solid rgba(200,161,90,.28);
}

.quick-features div {
  padding: 36px 7%;
  border-right: 1px solid rgba(200,161,90,.28);
}

.quick-features span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 28px;
}

.quick-features h3 {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.quick-features p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-pad {
  padding: 92px 7%;
}

.intro {
  background: var(--cream);
  color: #161616;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.intro h2, .section-heading h2, .how h2, .quote-copy h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
}

.intro p {
  color: #4c463e;
}

.intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0,0,0,.22);
}

.how {
  background: #111;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  gap: 0;
  background: var(--cream);
  color: #161616;
}

.step {
  padding: 52px 38px;
  border-right: 1px solid #d6caba;
}

.step span {
  width: 58px;
  height: 58px;
  background: var(--gold);
  color: white;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 30px;
}

.step h3 {
  text-transform: uppercase;
  letter-spacing: .06em;
}

.step p {
  color: #4f4a43;
}

.why {
  background: linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.86)), url("images/toronto-night.jpg.png");
  background-size: cover;
  background-position: center;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.why-grid, .package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  padding: 42px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(200,161,90,.32);
  min-height: 250px;
}

.why-card h3 {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.why-card p {
  color: #ddd5c9;
}

.packages {
  background: var(--cream);
  color: #161616;
}

.packages .section-heading p {
  color: #514a42;
}

.package-card {
  background: white;
  box-shadow: 0 15px 36px rgba(0,0,0,.1);
}

.package-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.package-card h3, .package-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.package-card h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.package-card p {
  color: #514a42;
  padding-bottom: 22px;
}

.skyline-callout {
  min-height: 360px;
  background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.65)), url("images/vancouver-night.jpg.png");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 7%;
}

.skyline-callout h2 {
  font-size: clamp(32px, 5vw, 54px);
  max-width: 900px;
}

.quote-section {
  background: #11100f;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.quote-copy p {
  color: #cfc7b9;
}

.quote-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,161,90,.25);
  padding: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 15px;
}

select option {
  color: #111;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-btn {
  width: 100%;
  margin-top: 10px;
}

.form-note {
  font-size: 12px;
  color: #c9c0b4;
  text-align: center;
}

footer {
  background: #050506;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 7%;
  border-top: 1px solid rgba(200,161,90,.28);
}

footer img {
  width: 230px;
}

footer p {
  color: #bdb7ad;
  font-size: 13px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .quick-features,
  .intro,
  .steps,
  .why-grid,
  .package-grid,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quick-features div,
  .step {
    border-right: none;
    border-bottom: 1px solid rgba(200,161,90,.25);
  }

  .hero {
    padding-top: 210px;
  }

  .quote-copy {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .brand img {
    width: 220px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .section-pad {
    padding: 70px 6%;
  }

  .quote-form {
    padding: 24px;
  }
}
