html, body {
  height: 100%;
  margin: 0;
  background: #000000;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

#logoCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  text-align: center;
  pointer-events: none;
}

.overlay h1 {
  margin: 0;
  font-size: clamp(22px, 4.7vw, 49px);
  letter-spacing: 1.6px;
  font-weight: 700;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
  display: inline-block;
}

.overlay p {
  margin-top: 10px;
  opacity: 0.9;
  font-size: clamp(14px, 2.4vw, 28px);
  display: inline-block;
  width: fit-content;
  white-space: nowrap;
}

.overlay p.subtitle {
  margin-top: 15px;
  font-size: clamp(14px, 2.4vw, 28px);
  opacity: 0.8;
}

.overlay p.subtitle-reveal {
  margin-top: 8px;
  height: 1.25em;
  line-height: 1.25;
  display: block;
  width: 100%;
  font-size: clamp(14px, 2.1vw, 24px);
  opacity: 0.8;
  font-weight: 700;
}

.hover-item {
  cursor: pointer;
  position: relative;
  display: inline-block;
  pointer-events: auto;
}

.hover-text {
  font-weight: normal;
  opacity: 0.8;
}

.footer-info {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #ffffff;
  font-size: clamp(10px, 1vw, 12px);
  opacity: 0.6;
  pointer-events: none;
  text-align: center;
}

.copyright-line {
  position: fixed;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #ffffff;
  opacity: 0.45;
  font-size: clamp(9px, 0.9vw, 11px);
  letter-spacing: 0.3px;
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
}

.contact-trigger-wrap {
  position: fixed;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  text-align: center;
}

.contact-trigger {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(14px, 2.4vw, 28px);
  opacity: 0.9;
  letter-spacing: 0.8px;
  pointer-events: auto;
}

.contact-trigger:hover {
  opacity: 1;
}

.bottom-contact-links {
  position: fixed;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 18px;
}

.bottom-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(10px, 1vw, 12px);
  opacity: 0.7;
  letter-spacing: 0.4px;
}

.bottom-link:hover {
  opacity: 1;
}

.bottom-link-icon {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  filter: grayscale(100%);
  opacity: 0.85;
}

.city-info {
  display: block;
  white-space: nowrap;
  margin: 2px 0;
}

.footer-info .city-name {
  font-weight: bold;
  margin-right: 6px;
}

.footer-info .divider {
  margin: 0 8px;
}

.instagram-stack {
  position: fixed;
  left: 50%;
  bottom: 142px;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: auto;
}

.instagram-widget {
  width: 120px;
  height: auto;
  opacity: 0.96;
  overflow: hidden;
  border-radius: 10px;
  text-align: center;
}

.instagram-label {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 1px;
  opacity: 0.85;
}

.instagram-widget a,
.instagram-widget img {
  width: 100%;
  display: block;
}

.instagram-widget img {
  height: 120px;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 10px;
}

.overlay a {
  pointer-events: auto;
  cursor: pointer;
}

.contact-section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 18px 140px;
  box-sizing: border-box;
}

.contact-card {
  width: min(640px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.72);
  padding: 26px;
  color: #ffffff;
}

.contact-card h2 {
  margin: 0 0 18px;
  font-size: clamp(20px, 3.2vw, 34px);
  letter-spacing: 1.2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  font: inherit;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 12px 14px;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.contact-form button:hover {
  background: rgba(255, 255, 255, 0.2);
}

#toronto-weather,
#dubai-weather,
#newyork-weather {
  filter: grayscale(100%);
}

@media (max-width: 420px) {
  .overlay h1 { font-size: 28px; }
  .contact-trigger-wrap {
    bottom: 100px;
  }
  .bottom-contact-links {
    bottom: 78px;
    gap: 12px;
  }
  .bottom-link {
    font-size: 10px;
  }
  .bottom-link-icon {
    width: 12px;
    height: 12px;
  }
  .instagram-stack {
    left: 50%;
    bottom: 148px;
    transform: translateX(-50%);
    gap: 10px;
  }
  .instagram-widget {
    width: 90px;
  }
  .instagram-widget img {
    height: 90px;
  }
  .copyright-line {
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
  }
}
