.hero-full {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: clamp(1rem, 30vh, 30rem);
  padding: 2rem;
  background: linear-gradient(
    to top,
    oklch(0.12 0.015 240) 10%,
    oklch(0.12 0.015 240 / 0.95) 40%,
    oklch(0.12 0.015 240 / 0.65) 55%,
    transparent 65%
  );
}

/* Navigation */
.top-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.top-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease-in-out;
}

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

.lang-toggle {
  background: transparent;
  border: 0.09rem solid var(--text);
  color: var(--text);
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.lang-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

h1 span { display: block; }

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--text);
  overflow-wrap: break-word;
}

@supports (background-clip: text) {
  @property --spotlight-r {
    syntax: '<length>';
    inherits: false;
    initial-value: 0px;
  }

  h1 {
    padding-bottom: 0.15em;
    background: radial-gradient(
      circle var(--spotlight-r) at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
      var(--accent),
      var(--text) 70%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    transition: --spotlight-r 0.4s ease;
  }
}

.subheading {
  margin-top: 1.2rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  border-left: 0.12rem solid var(--accent);
  padding-left: 0.75rem;
}

.subheading-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.subheading-tel-label {
  color: var(--text-muted);
  font-size: inherit;
  opacity: 0.7;
}

.subheading-tel {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.subheading-tel:hover {
  color: var(--accent);
}

.hero-text {
  transition: opacity 0.3s ease;
}

.top-nav a:focus-visible,
.lang-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.subheading-tel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Hero Mobile */

@media (max-width: 767px) {
  body {
    background-position: center 25%;
  }

  .hero-full {
    height: auto;
    min-height: 100dvh;
    background: linear-gradient(
      to top,
      oklch(0.12 0.015 240) 0%,
      oklch(0.12 0.015 240 / 0.95) 30%,
      oklch(0.12 0.015 240 / 0.7) 55%,
      transparent 75%
    );
  }

  .subheading-phones {
    display: block;
    margin-top: 0.2rem;
  }

  .subheading-phones > .subheading-sep:first-child {
    display: none;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero-full {
    gap: clamp(0.25rem, 2vh, 1.5rem);
    padding: 0.75rem 1.5rem;
  }

  .hero-content {
    gap: 1rem;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}
