:root{
    --navy:#1E3359;
    --slate:#565C81;
    --sand:#C7B7AA;
    --champagne:#E3D7C5;
    --ivory:#FDFBF7;
    --gold:#FCEFCE;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    background:var(--ivory);
    font-family:'Inter',sans-serif;
    color:var(--slate);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

.hero-logo {
    width: 350px;
    margin: 0 auto;
}

.hero-logo img {
    max-width: 100%;
}

.guest-single {
    background: #f8f4ee;
    height: 100vh;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3em;
}

.guest-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px;
    display: flex;
    gap: 3em;
    align-items: center;
}

.guest-header {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
}

.guest-photo-container {
    height: 700px;
    overflow: hidden;
    flex: 1;
}

.guest-photo {
    height: auto;
    width: 100%;
}

.guest-information {
    flex: 1;
}

.guest-information h1 {
    margin: 0 0 30px;
    font-size: clamp(2.4rem, 5vw, 3rem);
    line-height: 1;
    font-family:'Cinzel',serif;
    font-weight:400;
    color: var(--navy);
}

.guest-name {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
}

.guest-position {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-country {
  margin: 0;
  opacity: 0.75;
}

.guest-bio {
  margin-top: 42px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.guest-socials {
    margin-top: 40px;
}

.guest-socials h3 {
    margin-bottom: 18px;
    font-size: 1.2rem;
    font-weight: 600;
}

.guest-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.guest-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid #21365f;
    color: #21365f;
    transition: all .25s ease;
}

.guest-social-link:hover {
    background: #21365f;
    color: #fff;
}

@media (max-width: 800px) {
  .guest-profile {
    padding: 28px;
  }

  .guest-header {
    grid-template-columns: 1fr;
  }
}