@font-face {
  font-family: 'Hedvig Letters Serif';
  src: url('Hedvig_Letters_Serif/HedvigLettersSerif-Regular-VariableFont_opsz.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --text: #14110e;
  --red: #e4232a;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Hedvig Letters Serif', ui-serif, Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
}

/* --- Hero logo: huge on load, shrinks + pins to top as you scroll --- */

/* Plain white band so content scrolls cleanly under the pinned name.
   Same colour as the page, so it reads as empty space — no rule, no shadow. */
.hero-band {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: var(--bg);
  z-index: 99;
  pointer-events: none;
}

.hero-logo {
  position: fixed;
  left: 50%;
  top: 50vh;
  transform: translate(-50%, -50%);
  margin: 0;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
  white-space: nowrap;
  z-index: 100;
  text-shadow: 0 10px 30px rgba(20, 17, 14, 0.28);
  will-change: font-size, top;
}

.scroll-hint {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 100;
  transition: opacity 0.2s linear;
}

.hero-spacer {
  height: 100vh;
}

/* --- Content sections --- */

main {
  position: relative;
  z-index: 1;
  background: var(--bg);
}

/* Every section fills a full screen so the previous one has fully scrolled
   away by the time the next is centered. */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1 1 480px;
  max-width: 560px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.intro-text .lead {
  color: var(--text);
  font-weight: 700;
  -webkit-text-stroke: 0.3px currentColor;
  text-shadow: 0 3px 10px rgba(20, 17, 14, 0.25);
}

.intro-photo {
  flex: 0 0 auto;
  max-width: 320px;
}

.intro-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(20, 17, 14, 0.28);
}

/* --- Services & Contacts sections --- */

.services,
.contacts {
  text-align: center;
}

.section-label {
  color: var(--text);
  font-size: 22px;
  margin: 0 0 40px;
  text-shadow: 0 2px 6px rgba(20, 17, 14, 0.2);
}

.contact-line {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.3;
  text-shadow: 0 3px 10px rgba(20, 17, 14, 0.2);
}

.contact-line .key {
  color: var(--red);
}

.contact-line a {
  color: inherit;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.whyhot-logo {
  display: inline-block;
  font-size: 72px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 26px rgba(20, 17, 14, 0.22);
  transition: transform 0.25s ease, text-shadow 0.25s ease;
}

.whyhot-logo .red {
  color: var(--red);
}

.whyhot-logo:hover {
  transform: translateY(-4px) scale(1.03);
  text-shadow: 0 16px 32px rgba(20, 17, 14, 0.3);
}

@media (max-width: 640px) {
  .intro-content {
    flex-direction: column-reverse;
  }
  .whyhot-logo {
    font-size: 48px;
  }
}
