/* ===========================
   Candaş Yeter — Global Styles
   Style Reference: erhancaliskan.com
   =========================== */

/* ---------- RESET & BASE ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* — Palette — */
  --clr-primary: #1a1a2e;
  --clr-primary-l: #16213e;
  --clr-accent: #c9a84c;
  --clr-accent-h: #e0bf5f;
  --clr-red: #c0392b;
  --clr-red-h: #e74c3c;
  --clr-white: #ffffff;
  --clr-off-white: #f5f5f5;
  --clr-gray-100: #e8e8e8;
  --clr-gray-200: #d0d0d0;
  --clr-gray-400: #999999;
  --clr-gray-600: #666666;
  --clr-gray-800: #333333;
  --clr-dark: #111111;

  /* — Typography — */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* — Sizes — */
  --header-h: 70px;
  --top-bar-h: 40px;
  --container-w: 1200px;

  /* — Shadows — */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .18);

  /* — Transitions — */
  --tr-fast: .2s ease;
  --tr-med: .35s ease;
  --tr-slow: .5s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-gray-800);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--tr-fast);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
}

/* ---------- TOP SOCIAL BAR ---------- */
.top-bar {
  background: var(--clr-primary);
  height: var(--top-bar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__socials {
  display: flex;
  gap: 14px;
}

.top-bar__socials a {
  color: var(--clr-gray-200);
  font-size: .85rem;
  transition: color var(--tr-fast);
}

.top-bar__socials a:hover {
  color: var(--clr-accent);
}

.top-bar__cta a {
  color: var(--clr-accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--tr-fast);
}

.top-bar__cta a:hover {
  color: var(--clr-accent-h);
}

/* ---------- HEADER / NAV ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  transition: box-shadow var(--tr-med);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo a {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: 1px;
}

.header__logo span {
  color: var(--clr-accent);
}

/* --- Desktop Nav --- */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 0 18px;
  line-height: var(--header-h);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--clr-gray-800);
  transition: color var(--tr-fast), background var(--tr-fast);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-accent);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--clr-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--tr-med);
}

.nav__item:hover .nav__dropdown,
.nav__item.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-gray-800);
  transition: background var(--tr-fast), color var(--tr-fast);
}

.nav__dropdown a:hover {
  background: var(--clr-off-white);
  color: var(--clr-accent);
}

/* Dropdown arrow */
.nav__link--has-dropdown::after {
  content: '▾';
  margin-left: 5px;
  font-size: .65rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--clr-primary);
  border-radius: 3px;
  transition: all var(--tr-med);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, .85) 0%, rgba(22, 33, 62, .6) 50%, rgba(0, 0, 0, .3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero__content {
  max-width: 750px;
  animation: fadeInUp .8s ease forwards;
}

.hero__subtitle {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__desc {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero__btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--tr-med);
}

.hero__btn:hover {
  background: var(--clr-accent-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .4);
}

/* Hero Slider Controls */
.hero__controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.hero__dot.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

/* ---------- SECTIONS (shared) ---------- */
.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--clr-off-white);
}

.section--dark {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
}

.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

.section--dark .section__title {
  color: var(--clr-white);
}

.section__line {
  width: 60px;
  height: 3px;
  background: var(--clr-accent);
  margin: 0 auto;
}

/* ---------- BIO SECTION ---------- */
.bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Outer wrapper handles the decorative frame so nothing gets clipped */
.bio__image-wrap {
  position: relative;
  /* push right & bottom to leave room for the offset frame */
  margin: 16px 16px 16px 0;
}

/* The actual image container */
.bio__image-wrap .bio__image-inner {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  z-index: 1;
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
}

.bio__image-wrap:hover .bio__image-inner {
  transform: translate(-4px, -4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.bio__image-wrap .bio__image-inner img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--tr-slow);
}

.bio__image-wrap:hover .bio__image-inner img {
  transform: scale(1.04);
}

/* Gold offset frame — sits behind the image, never clipped */
.bio__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--clr-accent);
  border-radius: 6px;
  transform: translate(16px, 16px);
  z-index: 0;
  opacity: .75;
  transition: transform var(--tr-slow), opacity var(--tr-slow);
}

.bio__image-wrap:hover::before {
  transform: translate(20px, 20px);
  opacity: 1;
}

/* Small gold accent block in the bottom-left corner */
.bio__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 72px;
  height: 72px;
  background: var(--clr-accent);
  border-radius: 4px;
  z-index: 0;
  opacity: .18;
  transition: opacity var(--tr-slow);
}

.bio__image-wrap:hover::after {
  opacity: .28;
}

.bio__text h2 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.bio__text .bio__role {
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bio__text p {
  margin-bottom: 16px;
  color: var(--clr-gray-600);
  line-height: 1.85;
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--tr-med);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-primary);
}

.btn--primary:hover {
  background: var(--clr-accent-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}

.btn--outline:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
}

.btn--red {
  background: var(--clr-red);
  color: var(--clr-white);
}

.btn--red:hover {
  background: var(--clr-red-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, .35);
}

/* ---------- ARTICLE CARDS ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.card {
  background: var(--clr-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-med);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 14px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
}

.card__body {
  padding: 24px;
}

.card__date {
  font-size: .78rem;
  color: var(--clr-gray-400);
  margin-bottom: 10px;
}

.card__title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color var(--tr-fast);
}

.card__title:hover {
  color: var(--clr-accent);
}

.card__excerpt {
  font-size: .9rem;
  color: var(--clr-gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--clr-gray-100);
  padding-top: 14px;
}

.card__read-more {
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card__read-more:hover {
  color: var(--clr-accent-h);
}

.card__share {
  display: flex;
  gap: 10px;
}

.card__share a {
  font-size: .85rem;
  color: var(--clr-gray-400);
}

.card__share a:hover {
  color: var(--clr-accent);
}

/* See all link */
.section__see-all {
  text-align: center;
  margin-top: 40px;
}

/* ---------- PAGE BANNER ---------- */
.page-banner {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, .9) 0%, rgba(22, 33, 62, .7) 100%);
}

.page-banner__content {
  position: relative;
  z-index: 2;
}

.page-banner__title {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.page-banner__breadcrumb {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
}

.page-banner__breadcrumb a {
  color: var(--clr-accent);
}

.page-banner__breadcrumb span {
  margin: 0 8px;
}

/* ---------- TIMELINE (Özgeçmiş) ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--clr-gray-100);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline__item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline__item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline__dot {
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  background: var(--clr-accent);
  border: 3px solid var(--clr-white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline__item:nth-child(odd) .timeline__dot {
  right: -8px;
}

.timeline__item:nth-child(even) .timeline__dot {
  left: -8px;
}

.timeline__card {
  background: var(--clr-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-med);
}

.timeline__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.timeline__year {
  display: inline-block;
  padding: 3px 12px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 10px;
}

.timeline__title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: .9rem;
  color: var(--clr-gray-600);
  line-height: 1.7;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr-med);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay i {
  font-size: 2rem;
  color: var(--clr-white);
}

/* Video card */
.video-card {
  background: var(--clr-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-med);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-card__embed {
  position: relative;
  padding-top: 56.25%;
}

.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__body {
  padding: 18px;
}

.video-card__title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-primary);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
}

.contact-info__text h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 4px;
}

.contact-info__text p {
  color: var(--clr-gray-600);
  font-size: .9rem;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-gray-800);
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--clr-gray-200);
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: .92rem;
  color: var(--clr-gray-800);
  transition: border var(--tr-fast), box-shadow var(--tr-fast);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--clr-dark);
  color: var(--clr-gray-400);
  padding: 50px 0 30px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand a {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
}

.footer__brand a span {
  color: var(--clr-accent);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--clr-gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gray-400);
  transition: all var(--tr-fast);
}

.footer__socials a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: rgba(201, 168, 76, .1);
}

.footer__copy {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--clr-white);
  cursor: pointer;
  transition: color var(--tr-fast);
  background: none;
  border: none;
}

.lightbox__close:hover {
  color: var(--clr-accent);
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.8rem;
  }

  .bio {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header {
    height: 60px;
  }

  .nav__link {
    line-height: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--clr-white);
    box-shadow: var(--shadow-lg);
    transition: right var(--tr-med);
    z-index: 1050;
    padding-top: 80px;
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__link {
    line-height: 1;
    padding: 16px 24px;
    border-bottom: 1px solid var(--clr-gray-100);
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    display: none;
    background: var(--clr-off-white);
  }

  .nav__item.open .nav__dropdown {
    display: block;
  }

  .nav__dropdown a {
    padding-left: 40px;
  }

  .hero {
    height: 65vh;
    min-height: 400px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__desc {
    font-size: .95rem;
  }

  .bio {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bio__image-wrap {
    margin: 16px 16px 16px 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .bio__image-wrap .bio__image-inner img {
    aspect-ratio: 3 / 4;
  }

  .section__title {
    font-size: 1.9rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-banner {
    height: 260px;
  }

  .page-banner__title {
    font-size: 2.2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline__item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }

  .timeline__item:nth-child(even) {
    left: 0;
  }

  .timeline__item:nth-child(odd) .timeline__dot,
  .timeline__item:nth-child(even) .timeline__dot {
    left: 12px;
    right: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-med);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}