/* =========================================================
   Global Variables & Reset
   ========================================================= */
:root {
  --color-cream: #f4efe6;
  --color-dark-bg: #111713;
  --color-tabs-bg: #141c16;
  --color-tab-pill: rgba(255, 255, 255, 0.12);
  --color-tab-pill-active: #2b352e;
  --color-maroon: #93323c;
  --color-white: #ffffff;
  --color-line-light: rgba(244, 239, 230, 0.12);

  --font-serif: "Instrument Serif", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1360px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-dark-bg);
  color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* =========================================================
   Navigation Header
   ========================================================= */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 28px 4vw;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-text { font-weight: 700; font-size: 18px; letter-spacing: 0.05em; }
.nav__links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav__links a { opacity: 0.85; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 1; }

.nav__social {
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-cream);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.nav__social:hover { background: var(--color-cream); color: var(--color-dark-bg); }
.nav__toggle { display: none; }

/* =========================================================
   Hero Section
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 4vw 48px;
  overflow: hidden;
  background: var(--color-dark-bg);
}
.hero__bg { position: absolute; inset: 0; z-index: 1; }
.hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%); }

.hero__watermark {
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: clamp(72px, 17vw, 240px);
  line-height: 0.9;
  color: var(--color-maroon);
  text-align: center;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  width: 100%;
  margin: auto auto 0;
}
.hero__eyebrows {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 24px;
}
.hero__bottom-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.hero__title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(36px, 4.5vw, 60px); line-height: 1.1; max-width: 620px; }

.hero__video-card { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.hero__video-wrapper {
  position: relative;
  width: 240px;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero__video-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero__video-caption { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; opacity: 0.85; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

/* =========================================================
   Vertical Sidebar Tabs Section
   ========================================================= */
.section--dark-tabs {
  background-color: var(--color-tabs-bg);
  padding: 120px 4vw;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.tabs-grid {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Left Column Styling */
.tabs-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.tab-text-panel {
  display: none;
}
.tab-text-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.tab-panel__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 40px;
}

.tab-panel__desc {
  font-size: 16px;
  opacity: 0.8;
  max-width: 420px;
}

.tab-panel__mono-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.tab-panel__mono-list .mono-label {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-cream);
  opacity: 1;
}

/* Vertical Tab Buttons List */
.vertical-tab-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
  margin-top: auto;
  padding-top: 40px;
}

.v-tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(244, 239, 230, 0.7);
  background: transparent;
  transition: all 0.2s ease;
}

.v-tab-btn:hover {
  color: var(--color-cream);
  background: rgba(255, 255, 255, 0.05);
}

.v-tab-btn.active {
  background: var(--color-tab-pill-active);
  color: var(--color-cream);
}

.v-tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Right Column Media Containers */
.tab-media-panel {
  display: none;
}
.tab-media-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.image-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.image-showcase img { width: 100%; height: 100%; object-fit: cover; }

.glass-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 240px;
  padding: 10px 14px;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}

.stacked-video-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v-card-stacked {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.v-card-stacked img { width: 100%; height: 100%; object-fit: cover; }

.v-card-stacked__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Universal Footer
   ========================================================= */
.site-footer {
  background-color: var(--color-dark-bg);
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}

.footer__wave-banner {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(34, 53, 40, 0) 0%, var(--color-dark-bg) 100%),
              url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  opacity: 0.6;
}

.footer__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 4vw;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer__logo {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}
.logo-sup { font-size: 10px; vertical-align: super; }

.footer__newsletter-label,
.footer__newsletter-title,
.footer__newsletter label {
  color: var(--color-cream, #ffffff);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.95;
  margin-bottom: 12px;
}

.footer__form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 4px 6px 4px 16px;
  max-width: 320px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__form input,
.footer__form input[type="email"],
.footer__newsletter-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 4px;
}
.footer__form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.footer__form input:focus { outline: none; }

.footer__form button {
  color: var(--color-cream);
  font-size: 16px;
  padding: 4px 12px;
}

.footer__disclaimer {
  font-size: 11px;
  opacity: 0.75;
}

.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__col-head {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-cream, #ffffff);
  opacity: 0.9;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--color-cream, #ffffff);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer__col a:hover { opacity: 1; }

.footer__watermark-bottom {
  font-weight: 800;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.8;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--color-cream);
  user-select: none;
  padding-bottom: 20px;
}

/* Modal */
.video-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center; z-index: 100; padding: 24px;
}
.video-modal[hidden] { display: none; }
.video-modal__frame { width: 100%; max-width: 900px; aspect-ratio: 16/9; }
.video-modal__frame iframe { width: 100%; height: 100%; border-radius: var(--radius-sm); }
.video-modal__close { position: absolute; top: 24px; right: 32px; color: var(--color-cream); font-size: 36px; }

/* Active Navigation Highlight */
.nav__links a.nav__link--active {
  opacity: 1;
  font-weight: 600;
  border-bottom: 2px solid var(--color-cream);
  padding-bottom: 2px;
}

/* =========================================================
   About Page Hero & Bio
   ========================================================= */
.about-hero {
  padding: 160px 4vw 80px;
  background-color: var(--color-dark-bg);
}

.about-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.mono-tag {
  display: inline-block;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 20px;
}

.about-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.08;
  max-width: 960px;
}

.about-bio {
  padding: 60px 4vw 120px;
  background-color: var(--color-tabs-bg);
}

.about-bio__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.bio-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.bio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin: 8px 0 24px;
}

.bio-paragraph {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line-light);
}

.stat-card__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.6;
  text-transform: uppercase;
}

/* About Values Section */
.about-values {
  padding: 120px 4vw;
  background-color: var(--color-dark-bg);
}

.about-values__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.values-header {
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.value-card__num {
  font-family: monospace;
  font-size: 12px;
  opacity: 0.5;
  display: block;
  margin-bottom: 20px;
}

.value-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card__desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
}

/* =========================================================
   Blog Page Styles
   ========================================================= */
.blog-hero {
  padding: 160px 4vw 60px;
  background-color: var(--color-dark-bg);
}

.blog-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  margin-bottom: 40px;
}

.blog-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-cream);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--color-cream);
  color: var(--color-dark-bg);
  border-color: var(--color-cream);
}

.blog-featured {
  padding: 0 4vw 80px;
  background-color: var(--color-dark-bg);
}

.blog-featured__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--color-tabs-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.featured-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-card__image img {
  transform: scale(1.03);
}

.category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(17, 23, 19, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.featured-card__content {
  padding: 40px 40px 40px 0;
}

.post-meta {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-card__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.featured-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 24px;
}

.read-more-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}

.blog-grid-section {
  padding: 80px 4vw 120px;
  background-color: var(--color-tabs-bg);
}

.blog-grid__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  background: var(--color-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.post-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 28px 24px;
}

.post-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.post-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
}

/* =========================================================
   Contact Page Styles
   ========================================================= */
.contact-hero {
  padding: 160px 4vw 60px;
  background-color: var(--color-dark-bg);
}

.contact-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
}

.contact-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 600px;
}

.contact-section {
  padding: 40px 4vw 140px;
  background-color: var(--color-dark-bg);
}

.contact-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  width: fit-content;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 10px #4CAF50;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.contact-email {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--color-cream);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.contact-email:hover {
  text-decoration-color: var(--color-cream);
}

.contact-text {
  font-size: 16px;
  opacity: 0.8;
}

.contact-socials {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-socials a {
  font-size: 15px;
  color: var(--color-cream);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-socials a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.contact-form-wrapper {
  background: var(--color-tabs-bg);
  padding: 48px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select option {
  background-color: var(--color-dark-bg);
  color: var(--color-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-cream);
  background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--color-cream);
  color: var(--color-dark-bg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  margin-top: 12px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =========================================================
   Apple / Essos UI Software Theme
   ========================================================= */
.blog-theme-body {
  background-color: #EBE5DF;
  color: #1D1D1F;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-window {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 1180px;
  border-radius: 28px;
  padding: 32px 40px 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.app-nav__logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #8C3B2B;
  text-transform: uppercase;
}

.app-nav__links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.app-nav__links a {
  color: #515154;
  transition: color 0.2s ease;
}

.app-nav__links a:hover,
.app-nav__links a.active {
  color: #8C3B2B;
}

.app-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
}

.nav-btn-link { color: #1D1D1F; }

.nav-btn-primary {
  background-color: #8C3B2B;
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.nav-btn-primary:hover { opacity: 0.9; }

/* Bento Grid Hero Layout */
.bento-hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}

.bento-hero__main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.bento-hero__img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.bento-hero__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #FFFFFF !important;
  z-index: 2;
}

.bento-hero__title {
  color: #FFFFFF !important;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  margin: 12px 0 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bento-hero__meta {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 11px;
  font-weight: 500;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #FFFFFF;
  color: #1D1D1F;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}

.pill-badge__dot {
  width: 6px;
  height: 6px;
  background-color: #8C3A27;
  border-radius: 50%;
}

.pill-badge--sm {
  background-color: #F6F3EF;
  margin-bottom: 12px;
}

.sidebar-heading {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.sidebar-item img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-item__text h3 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #1A1A1A;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-item__text p {
  font-size: 10px;
  color: #8C3B2B;
  font-weight: 600;
}

/* Three Card Responsive Grid */
.cards-section {
  margin-bottom: 48px;
}

.cards-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
}

.carousel-nav {
  display: flex;
  gap: 8px;
}

.arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F6F3EF;
  color: #1D1D1F;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
  user-select: none;
}

.arrow-btn:hover { background: #EBE5DF; }
.arrow-btn:active, .page-arrow:active { transform: scale(0.9); }

.three-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow-x: visible;
}

.three-card-grid .soft-card {
  flex: none;
  min-width: 0;
}

.soft-card {
  background: #FAF8F5;
  border-radius: 20px;
  overflow: hidden;
  padding: 12px;
}

.soft-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.soft-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soft-card__body {
  padding: 4px 8px 12px;
}

.soft-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.soft-card__desc {
  font-size: 12px;
  color: #6E6E73;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.soft-card__meta {
  font-size: 10px;
  color: #86868B;
  font-weight: 500;
}

/* Pagination Bar */
.app-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}

.page-numbers {
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
}

.page-num {
  color: #86868B;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  user-select: none;
  transition: all 0.2s ease;
}

.page-num.active {
  background: #1D1D1F;
  color: #FFFFFF;
}

.page-num:hover:not(.active) {
  background: #EBE5DF;
  color: #1D1D1F;
}

.page-arrow {
  color: #1D1D1F;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

/* Search Layout */
.search-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 32px auto;
}

.bento-hero__sidebar .search-container {
  width: 100%;
  margin-bottom: 12px;
}

#blog-search-input {
  width: 100%;
  max-width: 420px;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  text-align: center;
  outline: none;
  transition: all 0.2s ease;
}

#blog-search-input:focus {
  border-color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bento-hero__sidebar #blog-search-input {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  font-size: 0.9rem;
  text-align: left;
  outline: none;
  background-color: #faf8f5;
  transition: all 0.2s ease;
}

.bento-hero__sidebar #blog-search-input:focus {
  border-color: #8C3B2B;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-results-list {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.search-no-results {
  font-size: 0.85rem;
  color: #777;
  padding: 8px 0;
}

/* =========================================================
   Apple Article Reader Modal
   ========================================================= */
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.article-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.article-modal__sheet {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
}

.article-modal.is-open .article-modal__sheet {
  transform: translateY(0) scale(1);
}

.article-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F6F3EF;
  color: #1D1D1F;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.article-modal__close:hover { background: #EBE5DF; }

.article-modal__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1D1D1F;
  margin: 12px 0 8px;
}

.article-modal__meta {
  font-size: 12px;
  color: #86868B;
  font-weight: 600;
  margin-bottom: 24px;
}

.article-modal__hero-image {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}

.article-modal__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-modal__body {
  font-size: 16px;
  line-height: 1.75;
  color: #333336;
}

.article-modal__body p { margin-bottom: 20px; }

/* Clickable Post Effects */
.clickable-post {
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.clickable-post:hover { opacity: 0.92; }
.bento-hero__main.clickable-post:hover { transform: scale(0.995); }
.soft-card.clickable-post:hover { transform: translateY(-4px); }

/* =========================================================
   Hybrid About Page Styles (Kim Da Mi x Essos UI)
   ========================================================= */
.about-hybrid-page {
  background-color: #EBE5DF;
  color: #1D1D1F;
}

.app-nav-wrapper {
  padding: 28px 4vw;
  max-width: 1200px;
  margin: 0 auto;
}

.hybrid-container {
  max-width: 1180px;
  margin: 20px auto 80px;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.hybrid-hero {
  text-align: center;
  margin-bottom: 56px;
}

.hybrid-hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.korean-name-tag {
  font-size: 18px;
  font-weight: 500;
  color: #8C3A27;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hybrid-hero__name {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #8C3A27;
  margin-bottom: 16px;
}

.hybrid-hero__banner-img {
  width: 100%;
  max-height: 520px;
  border-radius: 20px;
  overflow: hidden;
}

.hybrid-hero__banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hybrid-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  margin-bottom: 64px;
}

.intro-card {
  background: #8C3A27;
  color: #FFFFFF;
  padding: 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intro-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 28px;
}

.intro-card__body p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 16px;
}

.intro-card__body p:last-child { margin-bottom: 0; }

.feature-card-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.feature-card-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  position: relative;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-badge-light {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 220px;
  padding: 10px 14px;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #1D1D1F;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
}

.hybrid-biography {
  border-top: 1px solid #EBE5DF;
  padding-top: 48px;
}

.hybrid-section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: #8C3A27;
  margin-bottom: 32px;
}

.bio-tables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.table-col-heading {
  font-size: 14px;
  font-weight: 700;
  color: #1D1D1F;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.tabular-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabular-list li {
  display: flex;
  gap: 16px;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px dashed #EBE5DF;
}

.tab-year {
  color: #8C3A27;
  font-weight: 600;
  min-width: 44px;
}

.tab-title {
  color: #515154;
  font-weight: 500;
}

/* =========================================================
   Upgraded Hybrid Contact Page Styles
   ========================================================= */
.contact-page-body {
  background-color: var(--color-dark-bg);
  color: var(--color-cream);
}

.contact-app-container {
  padding: 140px 4vw 80px;
  max-width: 1260px;
  margin: 0 auto;
}

.contact-window {
  background: var(--color-tabs-bg);
  border-radius: 28px;
  padding: 56px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-hero-inner { margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mono-label {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.5;
  color: var(--color-cream);
}

.email-link {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--color-maroon);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(147, 50, 60, 0.4);
  transition: all 0.2s ease;
}

.email-link:hover {
  color: var(--color-cream);
  text-decoration-color: var(--color-cream);
}

.info-text {
  font-size: 15px;
  opacity: 0.85;
}

.tabular-socials {
  list-style: none;
  padding: 0;
  margin-top: 4px;
}

.tabular-socials li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(244, 239, 230, 0.15);
  font-size: 14px;
}

.social-platform { opacity: 0.7; }

.tabular-socials a {
  color: var(--color-cream);
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tabular-socials a:hover {
  opacity: 1;
  color: var(--color-maroon);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.submit-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--color-maroon);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.submit-btn-primary:hover {
  background: #a83b47;
  transform: translateY(-2px);
}

/* =========================================================
   About-Style Repurposed Contact Page
   ========================================================= */
body.about-style-body {
  background-color: #EBE5DF;
  color: #1D1D1F;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
}

.page-canvas-wrapper {
  padding: 40px 20px 80px;
  max-width: 1180px;
  margin: 0 auto;
}

.page-canvas {
  background-color: #FFFFFF;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.canvas-header {
  text-align: center;
  margin-bottom: 40px;
}

.korean-subtitle {
  display: block;
  font-size: 14px;
  color: #8C3B2B;
  font-weight: 500;
  margin-bottom: 4px;
}

.serif-hero-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.9;
  color: #8C3B2B;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5EFE9;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333333;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.rust-card {
  background-color: #8C3B2B;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rust-card__header {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 32px;
}

.rust-card__body p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 16px;
}

.rust-card__body p:last-child { margin-bottom: 0; }

.contact-form-bento-card {
  background-color: #F8F6F3;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #EAE5DF;
}

.bento-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bento-form-group label {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #666;
}

.bento-form-group input,
.bento-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DDD6CE;
  border-radius: 8px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #1A1A1A;
  box-sizing: border-box;
}

.bento-submit-btn {
  background-color: #8C3B2B;
  color: #FFFFFF;
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.bento-submit-btn:hover { opacity: 0.9; }

.section-divider {
  border: none;
  border-top: 1px solid #EAE5DF;
  margin: 48px 0;
}

.serif-section-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #8C3B2B;
  margin-bottom: 32px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.directory-col h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.directory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.directory-list li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dotted #D0C8BF;
  font-size: 13px;
}

.list-year {
  color: #8C3B2B;
  font-weight: 600;
  min-width: 50px;
}

.list-text {
  color: #444444;
  text-decoration: none;
}

.list-text:hover { color: #8C3B2B; }

/* =========================================================
   Light Theme Interactive Tabs Overrides
   ========================================================= */
.logo-text-rust {
  font-weight: 700;
  font-size: 18px;
  color: #8C3B2B;
}

.nav__social-rust {
  font-size: 13px;
  font-weight: 500;
  background: #8C3B2B;
  color: #FFFFFF;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s;
}

.nav__social-rust:hover { opacity: 0.9; }

.tabs-grid-light {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #EBE5DF;
}

.mono-label-rust {
  font-weight: 700;
  color: #8C3B2B;
}

.tab-panel__mono-list-light {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: monospace;
  font-size: 13px;
  color: #515154;
}

.vertical-tab-list-light {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 280px;
  margin-top: 32px;
}

.v-tab-btn-light {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: #515154;
  background: #F8F6F3;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.v-tab-btn-light:hover {
  background: #EBE5DF;
  color: #1A1A1A;
}

.v-tab-btn-light.active {
  background: #8C3B2B !important;
  color: #FFFFFF !important;
}

.hero-video-card { position: relative; }
.hero-video-card video { width: 100%; height: 100%; object-fit: cover; }

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-left .tab-text-panel,
.tabs-right .tab-media-panel {
  display: none;
}

.tabs-left .tab-text-panel.active,
.tabs-right .tab-media-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

/* =========================================================
   Global Responsive Adjustments
   ========================================================= */
@media (max-width: 900px) {
  .tabs-grid,
  .tabs-grid-light {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tabs-left { min-height: auto; }
  
  .footer__grid,
  .about-bio__inner,
  .contact-section__inner,
  .contact-grid,
  .hybrid-intro,
  .bento-hero,
  .featured-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .values-grid,
  .posts-grid,
  .three-card-grid,
  .bio-tables-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .app-window,
  .hybrid-container,
  .contact-window,
  .page-canvas {
    padding: 24px;
  }

  .app-nav__links { display: none; }
  .featured-card__content { padding: 32px; }
  .contact-form-wrapper,
  .contact-form-card { padding: 28px; }
  .hero-image-container { height: 280px; }
}