/* Main layout */
.hero {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 5vw;
  width: 100%;
}

/* Important for grid overflow issues */
.hero > * {
  min-width: 0;
}

/* Left side */
.hero-image-section {
  width: 100%;
}

.large-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--placeholder);
}

.large-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right side */
.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4vw 0 2vw;
}

.portrait-placeholder {
  width: 28%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2rem;
  background-color: var(--placeholder);
  margin-bottom: 2vw;
}

.portrait-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--green);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.8vw;
}

.subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: #5c5c5c;
}

/* Mobile */
@media (max-width: 900px) {
  body {
    padding: 1.5rem;
  }

  .site-header {
    margin-bottom: 2rem;
    padding-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    padding: 0;
  }

  .portrait-placeholder {
    width: 120px;
    margin-bottom: 1.5rem;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}
/* ABOUT SECTION */
.about {
  display: grid;
  grid-template-columns: 62% 38%;
  gap: 4vw;
  margin-top: 8vw;
  align-items: center;
  width: 100%;
}

.about-text {
  max-width: none;
  padding-left: 3vw;
  padding-right: 4vw; 
}

.about h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.15;
  color: #000;
  margin-bottom: 2vw;
  max-width: 22ch;
}

.about p {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.5;
  margin-bottom: 1.4vw;
  color: #333;
  max-width: 48ch;
}

/* Right image */
.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding-right: 3vw;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* TAGS */
.glass-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2vw;
  max-width: 42rem;
}

.glass-tag {
  font-family: 'Syne Mono', monospace;
  font-size: 14px;
  color: #333;
  letter-spacing: -0.02em;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid #284F3F;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.glass-tag:hover {
  transform: translateY(-6px);
  color: #fff;
  background: #284F3F;
  box-shadow: 0 12px 30px rgba(40, 79, 63, 0.3);
}

.glass-tag::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
}

.glass-tag:hover::after {
  left: 150%;
  transition: all 0.7s ease-in-out;
}

/* MOBILE */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text {
    padding-left: 0;
    padding-right: 0;
  }

  .about h2,
  .about p {
    max-width: 100%;
  }

   .about-image {
    aspect-ratio: 4 / 3;
    padding-right: 0;
  }

  .glass-tag-container {
    max-width: 100%;
  }
}
