:root {
  --background: #ffffff;
  --text-color: #1a1a1a;
  --muted-text: #2c2c2c;
  --accent: #1e3a5f;
  --hover: #2c4d73;
  --shadow: 0 24px 44px rgba(18, 30, 51, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--text-color);
  font-family: "Source Sans Pro", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  height: 80vh;
  background-image: url("alban-hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-intro {
  position: relative;
  background-color: #ffffff;
  padding: clamp(56px, 7vw, 96px) clamp(24px, 6vw, 120px) clamp(72px, 8vw, 128px);
  display: flex;
  justify-content: center;
}

.hero-intro::before {
  content: "";
  position: absolute;
  inset: -96px 0 auto 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.85) 40%,
    #ffffff 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  max-width: 760px;
  text-align: center;
  color: var(--text-color);
}

h1 {
  margin: 0;
  font-family: "Poppins", "Source Sans Pro", sans-serif;
  font-size: clamp(2.3rem, 2vw + 1.5rem, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.2rem);
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
  justify-content: center;
}

.contact-dropdown {
  position: relative;
  display: inline-flex;
}

.contact-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: max-content;
  min-width: 220px;
  max-width: 90vw;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(18, 35, 56, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.contact-menu.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.contact-menu .glass-button {
  width: 100%;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.04em;
}

.contact-menu .glass-button:hover,
.contact-menu .glass-button:focus-visible {
  transform: translateY(-1px);
}

.hidden {
  display: none !important;
}

.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(243, 247, 252, 0.78)
    )
    rgba(244, 247, 251, 0.62);
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 24px rgba(30, 58, 95, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease,
    background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
}

.glass-button:hover,
.glass-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 36px rgba(30, 58, 95, 0.16);
  border-color: rgba(30, 58, 95, 0.35);
}

.glass-button:focus-visible {
  outline: 2px solid rgba(30, 58, 95, 0.35);
  outline-offset: 4px;
}

.glass-button--primary {
  background: radial-gradient(
      circle at top left,
      rgba(46, 83, 131, 0.64),
      rgba(30, 58, 95, 0.78)
    )
    rgba(30, 58, 95, 0.68);
  color: #f6f8fc;
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 16px 32px rgba(23, 42, 68, 0.32);
}

.glass-button--primary:hover,
.glass-button--primary:focus-visible {
  background: radial-gradient(
      circle at top left,
      rgba(60, 110, 170, 0.7),
      rgba(30, 58, 95, 0.7)
    )
    rgba(30, 58, 95, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 22px 44px rgba(18, 35, 56, 0.45);
}

.about {
  width: min(1080px, 92vw);
  margin: 0 auto;
  margin-top: clamp(48px, 7vw, 104px);
  display: grid;
  gap: 24px;
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.18rem);
  line-height: 1.78;
  color: var(--muted-text);
}

.about p {
  margin: 0;
}

.quote {
  display: inline-block;
  margin-top: 12px;
  padding-left: 18px;
  border-left: 3px solid rgba(30, 58, 95, 0.45);
  font-family: "Poppins", "Source Sans Pro", sans-serif;
  font-size: 1.08em;
  color: var(--text-color);
}

.page-footer {
  width: min(1080px, 92vw);
  margin: clamp(56px, 8vw, 112px) auto clamp(32px, 6vw, 72px);
  position: relative;
  padding-top: 28px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.page-footer hr {
  width: min(220px, 60%);
  margin: 0 auto 24px;
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 58, 95, 0.6),
    transparent
  );
}

.page-footer span {
  display: inline-block;
  letter-spacing: 0.14em;
}

.fade-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .hero {
    min-height: 60vh;
    height: 60vh;
  }

  .hero-intro {
    padding: clamp(48px, 10vw, 80px) clamp(24px, 8vw, 40px)
      clamp(64px, 10vw, 96px);
  }

  .about {
    font-size: clamp(1rem, 0.6vw + 0.95rem, 1.1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .glass-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .page {
    gap: 0;
  }
}
