/* ============================================
   THE GENTLEWOMAN MAGAZINE — PHP VERSION
   Pixel-perfect CSS extracted from React/Tailwind
   ============================================ */

/* ---- Base / Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
  background-color: #050A0F;
  color: #EDE8E4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif SC', 'Georgia', serif;
  word-break: keep-all;
}

.font-serif-display {
  font-family: 'Noto Serif SC', 'Georgia', serif;
}

.font-sans-body {
  font-family: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
}

/* ---- Fluid Background ---- */
.fluid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.fluid-background canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Main Content Wrappers ---- */
.main-content {
  position: relative;
}

.hero-section-wrapper {
  position: relative;
  z-index: 1;
}

.philosophy-wrapper {
  position: relative;
  z-index: 2;
}

.gallery-wrapper {
  position: relative;
  z-index: 3;
}

.mediums-footer-wrapper {
  position: relative;
  z-index: 50;
}

.mediums-wrapper {
  position: relative;
}

.footer-wrapper {
  position: relative;
}

/* ---- Navigation ---- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.main-nav.scrolled {
  background-color: rgba(5, 10, 15, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-brand {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  font-family: 'Noto Serif SC', Georgia, serif;
  transition: opacity 0.4s ease;
}

.nav-brand:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  background: none;
  border: none;
  color: #FFFFFF;
  opacity: 0.6;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.4s ease;
  padding: 0;
  font-family: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
}

.nav-link:hover {
  opacity: 1;
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.hero-grid {
  flex: 1 1 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  padding: 0 6vw;
  gap: 6vw;
}

.hero-wordmark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wordmark {
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  margin: 0;
  white-space: pre-line;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: 440px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 28px;
  margin-left: 60px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.hero-title {
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  color: #ffffff;
  word-break: keep-all;
  margin-bottom: 24px;
  margin-left: 60px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.hero-description {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 40px;
  margin-left: 60px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.hero-cta {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 40px;
  padding: 14px 32px;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-left: 60px;
  font-family: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
}

.hero-cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.8);
}

/* ---- Philosophy ---- */
.philosophy-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.philosophy-inner {
  width: 100%;
  min-height: 100vh;
  background: transparent;
  display: flex;
}

.philosophy-left {
  flex: 0 0 30%;
  position: relative;
}

.philosophy-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw 0 4vw;
}

.philosophy-eyebrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.philosophy-title {
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 300;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.philosophy-body {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.philosophy-right {
  flex: 0 0 70%;
  position: relative;
}

.philosophy-ring-wrap {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6vh;
  perspective: 1000px;
  perspective-origin: 50% 55%;
}

.philosophy-ring {
  position: relative;
  width: 100%;
  height: 560px;
  transform-style: preserve-3d;
}

.ring-item {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 50%;
  backface-visibility: hidden;
  will-change: filter;
  transform-origin: center center;
}

.ring-item-text {
  display: inline-block;
  font-family: 'Noto Serif SC', Georgia, serif;
  font-size: clamp(42px, 8vw, 100px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.1;
  will-change: transform;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}

/* ---- Gallery ---- */
.gallery-section {
  position: relative;
  z-index: 2;
  background: transparent;
  padding-top: 15vh;
  padding-bottom: 15vh;
}

.gallery-header {
  padding: 0 2rem;
  margin-bottom: 10vh;
}

.gallery-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.gallery-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 200;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.gallery-projects {
  position: relative;
  padding: 0 2rem;
}

.gallery-project {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
}

.gallery-project-left {
  justify-content: flex-start;
  padding-left: 5vw;
  padding-right: 40vw;
}

.gallery-project-right {
  justify-content: flex-end;
  padding-left: 40vw;
  padding-right: 5vw;
}

.gallery-project-inner {
  width: 45vw;
  max-width: 600px;
}

.gallery-image-wrap {
  width: 100%;
  aspect-ratio: 1024 / 1536;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-image-wrap:hover img {
  transform: scale(1.03);
}

.gallery-meta {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gallery-meta-id {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.gallery-meta-title {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  cursor: pointer;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.gallery-meta-title:hover {
  border-bottom-color: rgba(255,255,255,0.55);
}

.gallery-meta-right {
  text-align: right;
}

.gallery-meta-location,
.gallery-meta-year {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.gallery-meta-year {
  margin-top: 4px;
}

/* ---- Mediums ---- */
.mediums-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: #050A0F;
  z-index: 4;
  display: flex;
  padding: 16vh 8vw;
  gap: 8vw;
}

.mediums-left {
  flex: 0 0 50%;
}

.mediums-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(237,232,228,0.35);
  text-transform: uppercase;
  margin-bottom: 48px;
}

.mediums-rows {
  display: flex;
  flex-direction: column;
}

.mediums-row {
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  transition: border-color 0.4s;
}

.mediums-row:hover {
  border-color: rgba(255,255,255,0.2);
}

.mediums-svg {
  width: 100%;
  max-width: 500px;
  height: 50px;
  overflow: visible;
}

.mediums-row[data-href] {
  cursor: pointer;
}

.mediums-texts-group {
  transition: filter 0.3s;
}

.mediums-text-cn {
  transition: opacity 0.5s, transform 0.5s;
}

.mediums-text-en {
  transition: opacity 0.5s, transform 0.5s;
}

.mediums-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  position: relative;
}

.mediums-description-wrap {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 420px;
}

.mediums-description-wrap.active {
  opacity: 1;
  transform: translateY(0);
}

.mediums-desc-en {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: #30B0D0;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mediums-desc-text {
  font-size: 22px;
  line-height: 2;
  color: rgba(237,232,228,0.65);
  font-weight: 300;
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
  width: 100%;
  background: #050A0F;
  z-index: 4;
  overflow: hidden;
}

.footer-video-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  z-index: 0;
}

.footer-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 20vh 8vw 8vh;
}

.footer-vision {
  max-width: 720px;
  margin-bottom: 120px;
}

.footer-vision p {
  font-size: 17px;
  font-weight: 300;
  line-height: 2.2;
  color: rgba(237,232,228,0.75);
  letter-spacing: 0.02em;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-column-heading {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(237,232,228,0.3);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-column-entries {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #EDE8E4;
  opacity: 0.6;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.8;
  transition: opacity 0.4s;
  font-family: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
}

.footer-link:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer-brand {
  font-size: 16px;
  letter-spacing: 0.15em;
  color: rgba(237,232,228,0.5);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(237,232,228,0.25);
}

/* ---- Project Detail ---- */
.project-detail-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  width: 100%;
  color: #ffffff;
}

.project-detail-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 28px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(5,10,15,0.25);
}

.project-detail-back {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  font-family: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
  transition: background 0.3s, border-color 0.3s;
}

.project-detail-back:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.project-detail-meta {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.project-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6vw;
  padding: 6vh 5vw 12vh;
  align-items: start;
}

.project-detail-article {
  max-width: 560px;
}

.project-detail-location {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.project-detail-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.project-detail-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin: 0;
  margin-bottom: 48px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.project-detail-meta-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.project-detail-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.project-detail-meta-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.project-detail-meta-value {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.88);
  text-align: right;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.project-detail-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-detail-paragraphs p {
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.project-detail-image-wrap {
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 420px;
  justify-self: center;
}

.project-detail-image {
  width: 100%;
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
}

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

/* ---- Fashion Page ---- */
.fashion-page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  width: 100%;
  color: #ffffff;
}

.fashion-header {
  padding: 10vh 8vw 6vh;
  max-width: 900px;
}

.fashion-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.fashion-headline {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.fashion-subhead {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.fashion-looks {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 12vh;
}

.fashion-look {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 6vw;
  padding: 8vh 5vw;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fashion-look-left .fashion-look-image-wrap { order: 1; }
.fashion-look-left .fashion-look-content { order: 2; }

.fashion-look-right .fashion-look-image-wrap { order: 2; }
.fashion-look-right .fashion-look-content { order: 1; }

.fashion-look-image-wrap {
  width: 100%;
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  position: relative;
}

.fashion-look-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.fashion-look-image-wrap:hover img {
  transform: scale(1.03);
}

.fashion-look-content {
  max-width: 480px;
}

.fashion-look-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.fashion-look-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.fashion-look-designer {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #30B0D0;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.fashion-look-desc {
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin: 0;
  margin-bottom: 36px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.fashion-look-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.fashion-detail-heading {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.fashion-detail-text {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

/* ---- Culture Page ---- */
.culture-page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  width: 100%;
  color: #ffffff;
}

.culture-header {
  padding: 10vh 8vw 6vh;
  max-width: 900px;
}

.culture-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-headline {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-subhead {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-subject {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  padding: 6vh 8vw;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.culture-subject-image-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  justify-self: center;
}

.culture-subject-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.culture-subject-image-wrap:hover img {
  transform: scale(1.03);
}

.culture-subject-info {
  max-width: 480px;
}

.culture-subject-name {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-subject-title {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #30B0D0;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-subject-location {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-bio {
  padding: 8vh 8vw;
  max-width: 720px;
}

.culture-bio-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 2.2;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-interview {
  padding: 4vh 8vw 16vh;
  max-width: 760px;
}

.culture-interviewer {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 64px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-interview-image-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  margin: 8vh auto;
}

.culture-interview-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.culture-interview-image-wrap:hover img {
  transform: scale(1.03);
}

.culture-qa {
  margin-bottom: 64px;
}

.culture-question {
  margin-bottom: 28px;
}

.culture-question p {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-answer p {
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.culture-qa-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---- Beauty Page ---- */
.beauty-page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  width: 100%;
  color: #ffffff;
}

.beauty-header {
  padding: 10vh 8vw 6vh;
  max-width: 900px;
}

.beauty-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-headline {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-deck {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-byline {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 36px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-article-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 6vw;
  padding: 4vh 8vw 16vh;
  align-items: start;
}

.beauty-main {
  display: flex;
  flex-direction: column;
  gap: 12vh;
}

.beauty-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5vw;
  align-items: start;
}

.beauty-section:nth-child(even) .beauty-section-image-wrap { order: 2; }
.beauty-section:nth-child(even) .beauty-section-meta { order: 1; }

.beauty-section-image-wrap {
  width: 100%;
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  position: relative;
}

.beauty-section-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.beauty-section-image-wrap:hover img {
  transform: scale(1.03);
}

.beauty-section-meta {
  max-width: 440px;
  padding-top: 2vh;
}

.beauty-section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-section-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-section-body {
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin: 0;
  margin-bottom: 32px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-product {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.beauty-product-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #30B0D0;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-product-text {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-sidebar {
  position: relative;
}

.beauty-sidebar-sticky {
  position: sticky;
  top: 120px;
  padding-top: 2vh;
}

.beauty-sidebar-heading {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.beauty-sidebar-list li {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.beauty-sidebar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4vh;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-description,
  .hero-cta {
    margin-left: 0;
  }

  .philosophy-inner {
    flex-direction: column;
  }

  .philosophy-left,
  .philosophy-right {
    flex: 0 0 100%;
  }

  .philosophy-sticky {
    position: relative;
    height: auto;
    padding: 8vh 4vw;
  }

  .philosophy-ring-wrap {
    height: 60vh;
  }

  .gallery-project-left,
  .gallery-project-right {
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 8vh !important;
  }

  .gallery-project-inner {
    width: 90vw;
    max-width: 100%;
  }

  .mediums-section {
    flex-direction: column;
    padding: 8vh 4vw;
  }

  .mediums-left,
  .mediums-right {
    flex: 0 0 100%;
  }

  .project-detail-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-image-wrap {
    position: relative;
    top: 0;
    margin-top: 6vh;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .fashion-look {
    grid-template-columns: 1fr;
    padding: 6vh 4vw;
  }

  .fashion-look-image-wrap {
    max-width: 500px;
    margin-bottom: 6vh;
  }

  .fashion-header {
    padding: 8vh 4vw 4vh;
  }

  .culture-subject {
    grid-template-columns: 1fr;
    padding: 6vh 4vw;
  }

  .culture-subject-image-wrap {
    max-width: 360px;
    margin-bottom: 4vh;
  }

  .culture-header {
    padding: 8vh 4vw 4vh;
  }

  .culture-bio {
    padding: 6vh 4vw;
  }

  .culture-interview {
    padding: 4vh 4vw 10vh;
  }

  .culture-interview-image-wrap {
    max-width: 320px;
    margin: 6vh auto;
  }

  .beauty-article-grid {
    grid-template-columns: 1fr;
    padding: 4vh 4vw 10vh;
  }

  .beauty-sidebar {
    order: -1;
    margin-bottom: 6vh;
  }

  .beauty-sidebar-sticky {
    position: relative;
    top: 0;
  }

  .beauty-section {
    grid-template-columns: 1fr;
    gap: 4vh;
  }

  .beauty-section:nth-child(even) .beauty-section-image-wrap { order: 1; }
  .beauty-section:nth-child(even) .beauty-section-meta { order: 2; }

  .beauty-section-image-wrap {
    max-width: 480px;
  }

  .beauty-header {
    padding: 8vh 4vw 4vh;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 16px;
  }

  .nav-link {
    font-size: 12px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* ---- Living Page ---- */
.living-page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  width: 100%;
  color: #ffffff;
}

.living-header {
  padding: 10vh 8vw 6vh;
  max-width: 900px;
}

.living-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-headline {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-subhead {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-hero-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

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

.living-article {
  padding: 8vh 8vw 12vh;
}

.living-lead {
  max-width: 720px;
  margin: 0 auto 10vh;
}

.living-lead-text {
  font-size: 16px;
  line-height: 2.2;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-section {
  margin-bottom: 10vh;
}

.living-section-header {
  max-width: 720px;
  margin: 0 auto 6vh;
  text-align: center;
}

.living-section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #30B0D0;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-activity {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5vw;
  padding: 6vh 0;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.living-activity-reverse .living-activity-image-wrap { order: 2; }
.living-activity-reverse .living-activity-content { order: 1; }

.living-activity-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.living-activity-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.living-activity-image-wrap:hover img {
  transform: scale(1.03);
}

.living-activity-content {
  max-width: 480px;
}

.living-activity-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-activity-name {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-activity-desc {
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.living-closing-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  margin-top: 6vh;
}

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

.living-closing-caption {
  padding: 20px 8vw;
  text-align: center;
}

.living-closing-caption p {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
  .living-activity {
    grid-template-columns: 1fr;
    gap: 4vh;
    padding: 6vh 0;
  }

  .living-activity-reverse .living-activity-image-wrap { order: 1; }
  .living-activity-reverse .living-activity-content { order: 2; }

  .living-activity-image-wrap {
    max-width: 480px;
    aspect-ratio: 3 / 4;
  }

  .living-article {
    padding: 6vh 5vw 10vh;
  }

  .living-header {
    padding: 8vh 5vw 4vh;
  }
}
