/* ============================================================
   ÇETİNKAYA — Fine Art Wedding Photography
   Editorial Style — v3
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #fafafafa;
  --gray-light: #f5f5f5;
  --gray-mid: #999;
  --gray-dark: #333;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-ready {
  cursor: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- CURSOR ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 20000;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 19999;
  transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), border-color 0.3s;
}

.cursor-ring.is-hovering {
  width: 64px;
  height: 64px;
  border-color: rgba(0, 0, 0, 0.7);
}

/* ---------- PAGE TRANSITION ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  transform-origin: top;
  pointer-events: none;
}

/* ---------- LANGUAGE SPLASH ---------- */
.lang-splash {
  position: fixed;
  inset: 0;
  z-index: 15000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: auto;
}

.lang-splash-bg {
  position: absolute;
  inset: 0;
}

.lang-splash-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: splashZoom 8s ease-out forwards;
}

@keyframes splashZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

.lang-splash-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.7) 100%);
}

.lang-splash-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 32px;
  animation: splashFadeIn 1.2s var(--ease-expo) forwards;
  opacity: 0;
}

@keyframes splashFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-splash-logo {
  font-family: var(--font-serif);
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  line-height: 1;
}

.lang-splash-tagline {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 40px;
}

.lang-splash-divider {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 40px;
}

.lang-splash-prompt {
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 36px;
}

.lang-splash-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-splash-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 16px 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-expo);
  min-width: 130px;
}

.lang-splash-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
}

.lang-splash-btn-code {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
}

.lang-splash-btn-name {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.65;
}

.lang-splash-or {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

.lang-splash-footer {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.lang-splash.is-hidden {
  pointer-events: none;
  animation: splashExit 0.8s var(--ease-expo) forwards;
}

@keyframes splashExit {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(1.04);
  }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  mix-blend-mode: difference;
  transition: transform 0.5s var(--ease-expo);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--white);
  cursor: default;
}

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

.nav-link {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.4s var(--ease-expo);
}

.nav-link:hover::after {
  width: 100%;
}

/* ---------- LANG SWITCHER ---------- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--white);
  cursor: none;
  opacity: 0.4;
  transition: opacity 0.3s;
  padding: 2px 0;
}

.lang-btn:hover,
.lang-btn.active {
  opacity: 1;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
}

/* ---------- HAMBURGER (mobile) ---------- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.4s, opacity 0.3s;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease-expo);
}

.mobile-menu.is-open {
  transform: scaleY(1);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s var(--ease-expo);
}

.mobile-menu.is-open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.is-open .mobile-link:nth-child(2) {
  transition-delay: 0.18s;
}

.mobile-menu.is-open .mobile-link:nth-child(3) {
  transition-delay: 0.26s;
}

.mobile-menu.is-open .mobile-link:nth-child(4) {
  transition-delay: 0.34s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  will-change: opacity, transform;
}

.hero-bg-photo.visible {
  opacity: 0.85; /* Increased from 0.42 to make it lively */
  transform: scale(1);
}

.hero-bg-photo {
  transition: opacity 1.6s var(--ease-expo), transform 2.2s var(--ease-expo);
  filter: contrast(1.05) saturate(1.02); /* Pop the colors */
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 44px 56px;
}

.hero-name-wrap {
  display: flex;
  flex-direction: column;
  line-height: 0.82;
  overflow: hidden;
}

.hero-line-outer {
  overflow: hidden;
}

.hero-line-outer--right {
  align-self: flex-end;
}

.hero-name-line {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--white);
  display: block;
  transform: translateY(110%);
  will-change: transform;
}

#heroLine1 {
  font-size: clamp(60px, 14vw, 180px);
  letter-spacing: -0.02em;
  line-height: 0.9;
}

#heroLine2 {
  font-size: clamp(24px, 4.5vw, 56px);
  letter-spacing: 0.4em;
  opacity: 0.8;
  margin-top: 10px;
  text-transform: uppercase;
}

.hero-line-outer--right .hero-name-line {
  padding-right: 0;
}

.hero-sub {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s 1.3s var(--ease-expo), transform 0.9s 1.3s var(--ease-expo);
}

.hero-sub.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tag,
.hero-location {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-tag {
  opacity: 0.75;
}

.hero-location {
  opacity: 0.38;
}

.hero-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 2s var(--ease-expo) forwards;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  animation: scrollPulse 2.5s ease-in-out 2.5s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- STATEMENT ---------- */
.statement {
  padding: 130px 48px 110px;
  position: relative;
}

.statement-ticker {
  position: absolute;
  top: 48px;
  right: 48px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
}

.statement-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 300;
  line-height: 1.12;
}

.statement-text em {
  font-style: italic;
  color: var(--gray-dark);
}

.statement-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  padding-bottom: 8px;
}

.statement-aside-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 110px;
}

.aside-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.aside-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
}

/* Spirit/NY item removed — only 2 items now */

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

.gallery-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 48px 36px;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.gallery-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.gallery-drag-hint {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.gallery-count {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--gray-mid);
}

/* Draggable gallery */
.gallery-drag-wrap {
  overflow: hidden;
  cursor: grab;
  padding: 0 48px;
  user-select: none;
}

.gallery-drag-wrap.is-dragging {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: 20px;
  will-change: transform;
}

/* Item sizes */
.gallery-item {
  flex-shrink: 0;
  height: 65vh; /* Consistent height for the horizontal row */
  width: auto;
  overflow: hidden;
}

/* Remove fixed width/height constraints to allow original aspect ratios */
.gallery-item--large,
.gallery-item--tall,
.gallery-item--small,
.gallery-item--wide {
  width: auto;
  height: 65vh;
}

/* Progress bar + CTA */
.gallery-progress-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px 0;
}

.gallery-progress-bar {
  flex: 1;
  height: 1px;
  background: var(--gray-light);
  margin-right: 32px;
}

.gallery-progress-fill {
  height: 100%;
  background: var(--black);
  width: 0%;
  transition: width 0.08s linear;
}

.gallery-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.gallery-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.4s var(--ease-expo);
}

.gallery-cta:hover::after {
  width: 100%;
}

/* Gallery image hover effects */
.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: none;
}

.gallery-img-wrap img {
  width: auto;
  height: 100%;
  object-fit: contain; /* No cropping, keep original aspect ratio */
  object-position: center;
  transform: scale(1);
  transition: transform 0.9s var(--ease-expo);
  filter: brightness(1); /* Removed darkening */
  filter: contrast(1.02) saturate(1.05); /* Livelier tones */
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s;
}

.gallery-overlay span {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s var(--ease-expo);
}

.gallery-img-wrap:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.22);
}

.gallery-img-wrap:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Grain on hover */
.gallery-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 0.5s;
  pointer-events: none;
}

.gallery-img-wrap:hover::after {
  opacity: 0.12; /* More subtle grain */
}

/* ---------- MASONRY ---------- */
.masonry-section {
  padding: 100px 48px 110px;
}

.masonry-header {
  margin-bottom: 48px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 18px;
  align-items: start;
}

.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.masonry-col--center {
  margin-top: 70px;
}

.masonry-item {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.masonry-item--tall {
  aspect-ratio: 2/3;
}

.masonry-item--offset {
  margin-top: 36px;
}

/* ---------- SECTION LABEL ---------- */
.section-label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

/* ---------- MARQUEE ---------- */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 300;
  padding-right: 18px;
  color: var(--gray-dark);
}

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 48px 120px;
  background: var(--black);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: center;
}

.about-photo-col {
  position: relative;
}

.about-photo-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-expo);
  filter: contrast(1.05) saturate(1.05); /* Healthier tones */
}

.about-photo-frame:hover img {
  transform: scale(1.04);
}

.about-photo-accent {
  position: absolute;
  right: -14px;
  top: 24px;
  width: 1px;
  height: 55%;
  background: rgba(255, 255, 255, 0.15);
}

.about-photo-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
}

.about .section-label {
  color: rgba(255, 255, 255, 0.3);
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 300;
  line-height: 1.04;
  margin-bottom: 32px;
}

.about-body {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin-bottom: 56px;
}

.about-stats {
  display: flex;
  gap: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- SERVICES ---------- */
.services {
  padding: 120px 0 0;
  background: var(--black);
}

.services-top {
  padding: 0 48px 40px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.service-item {
  height: 80vh;
  position: relative;
  overflow: hidden;
  cursor: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.5s;
}

.service-item:last-child {
  border-right: none;
}

.service-img-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.65;
  transition: opacity 0.7s var(--ease-expo), transform 1.2s var(--ease-expo);
  filter: contrast(1.05); /* Removed grayscale */
}

.service-img-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.service-item:hover .service-img-preview {
  opacity: 0.8;
  transform: scale(1.02);
  filter: grayscale(0%);
}

.service-item:hover .service-img-preview img {
  transform: scale(1.15);
}

.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
  opacity: 0.6;
  transition: opacity 0.5s;
}

.service-item:hover::after {
  opacity: 0.9;
}

.service-num {
  position: relative;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.service-content {
  position: relative;
  z-index: 3;
}

.service-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.6s var(--ease-expo);
}

.service-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.1s var(--ease-expo), transform 0.6s 0.1s var(--ease-expo);
}

.service-item:hover .service-name,
.service-item:hover .service-desc {
  transform: translateY(0);
  opacity: 1;
}

.service-arrow {
  display: none;
  /* Removed for this layout style */
}

/* ---------- JOURNAL / BLOG ---------- */
.journal {
  padding: 100px 48px 110px;
  background: var(--off-white);
}

.journal-header {
  margin-bottom: 56px;
}

.journal-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.journal-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s;
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.journal-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.journal-card--featured .journal-card-img {
  aspect-ratio: 3/2;
}

.journal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}

.journal-card:hover .journal-card-img img {
  transform: scale(1.05);
}

.journal-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.journal-card-body {
  padding: 28px 26px 30px;
}

.journal-date {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  margin-bottom: 10px;
}

.journal-card-title {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}

.journal-card--featured .journal-card-title {
  font-size: clamp(22px, 2.2vw, 32px);
}

.journal-card-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray-dark);
  margin-bottom: 22px;
}

.journal-read-more {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.journal-read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.4s var(--ease-expo);
}

.journal-read-more:hover::after {
  width: 100%;
}

/* ---------- STORIES ---------- */
.stories {
  padding: 120px 48px;
}

.stories-header {
  margin-bottom: 70px;
}

.stories .section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.stories-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stories-interactive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.stories-interactive-left {
  position: sticky;
  top: 15vh;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
}

.stories-scroll-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding-right: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stories-scroll-nav::-webkit-scrollbar {
  display: none;
}

.story-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 300;
  color: var(--black);
  opacity: 0.3;
  text-align: left;
  transition: opacity 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.story-btn:hover {
  opacity: 0.6;
}

.story-btn.active {
  opacity: 1;
  transform: translateX(20px);
}

.story-btn.active::before {
  content: "—";
  position: absolute;
  left: -30px;
  opacity: 1;
}

.stories-interactive-right {
  position: relative;
  display: flex;
  flex-direction: column;
}

.story-covers {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
}

.story-cover-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
  transform: translateY(20px);
}

.story-cover-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.story-cover-item .gallery-img-wrap {
  border-radius: 4px;
}

.stories .story-meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

@media (max-width: 991px) {
  .stories-interactive {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stories-interactive-left {
    position: relative;
    top: 0;
    max-height: none;
    padding-bottom: 0;
  }

  .stories-scroll-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 0 20px;
    gap: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .story-btn {
    font-size: 16px;
    padding: 8px 0;
    flex-shrink: 0;
  }

  .story-btn.active {
    transform: none;
    opacity: 1;
    border-bottom: 1.5px solid var(--black);
  }

  .story-btn.active::before {
    display: none;
  }

  .story-covers {
    aspect-ratio: 3/4;
    max-width: 100%;
    height: 60vh;
  }

  .story-cover-item .gallery-img-wrap {
    height: 100%;
  }

  .story-cover-item img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .stories {
    padding: 80px 24px;
  }
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.contact-inner {
  max-width: 680px;
}

.contact .section-label {
  color: rgba(255, 255, 255, 0.3);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7.5vw, 110px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

.contact-line {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 44px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 52px;
}

.contact-link {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.5s var(--ease-expo);
}

.contact-link:hover {
  color: var(--white);
}

.contact-link:hover::after {
  width: 100%;
}

.contact-location {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

.contact-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  opacity: 0.92; /* More presence */
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.05); /* Livelier look */
}

/* ---------- TRUST ---------- */
.trust {
  padding: 80px 48px;
  background: #fbfaf8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-label {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.45;
}

.trust-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--black);
}

.trust-desc {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gray-mid);
}

.trust-awards {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.4s var(--ease-expo);
}

.award-badge:hover {
  transform: translateY(-8px);
}

.award-year {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--gray-mid);
  margin-bottom: 6px;
}

.award-logo-svg {
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
}

.award-badge:nth-child(2) .award-logo-svg {
  background: var(--black);
  color: var(--white);
  border-bottom: none;
  padding: 5px 10px;
  border-radius: 2px;
}

.award-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-awards {
    gap: 32px;
    margin-bottom: 48px;
  }
  .award-logo-svg {
    width: 110px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 60px 48px 40px;
  color: rgba(255, 255, 255, 0.28);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 32px;
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.area-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}

.area-item {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.2);
}

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

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 9.5px;
  letter-spacing: 0.14em;
}

.footer-right {
  align-items: flex-end;
}

.footer-right a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-right a:hover {
  color: var(--white);
}

.footer-center {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer {
    padding: 60px 24px 40px;
  }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 88vw;
  max-height: 88vh;
}

.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 0.5s var(--ease-expo);
}

.lightbox.is-open .lightbox-img-wrap img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: none;
  opacity: 0.4;
  transition: opacity 0.3s;
  padding: 14px;
  font-size: 16px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 28px;
  right: 36px;
}

.lightbox-prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.lightbox-next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.js-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
}

.js-reveal-delay {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s 0.15s var(--ease-expo), transform 0.85s 0.15s var(--ease-expo);
}

.js-reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
}

.js-reveal.visible,
.js-reveal-delay.visible,
.js-reveal-left.visible {
  opacity: 1;
  transform: none;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--black);
}

::selection {
  background: var(--black);
  color: var(--white);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  z-index: 5000;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.6s var(--ease-expo), opacity 0.6s, background 0.3s;
  color: var(--black);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.back-to-top.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.back-to-top:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    display: none;
  }

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

  .journal-card:last-child {
    display: none;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .masonry-col:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }

  .nav-center {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-name-line {
    font-size: clamp(80px, 20vw, 130px);
  }

  .hero-content {
    padding: 0 24px 44px;
  }

  .hero-scroll-hint {
    right: 24px;
    bottom: 24px;
  }

  .statement {
    padding: 80px 24px 80px;
  }

  .statement-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .gallery-header {
    padding: 0 24px 28px;
  }

  .gallery-drag-wrap {
    padding: 0 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .gallery-track {
    gap: 16px;
    padding-bottom: 20px;
  }

  .gallery-item,
  .gallery-item--large,
  .gallery-item--tall,
  .gallery-item--small,
  .gallery-item--wide {
    width: auto;
    height: 50vh;
  }

  .gallery-progress-wrap {
    padding: 20px 24px 0;
  }

  .masonry-section {
    padding: 80px 24px;
  }

  .about {
    padding: 80px 24px;
  }

  .services {
    padding-top: 80px;
  }

  .services-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-item {
    height: 60vh;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-item:nth-child(2n) {
    border-right: none;
  }

  .service-name {
    transform: none;
    font-size: 28px;
  }

  .service-desc {
    opacity: 1;
    transform: none;
    font-size: 11px;
    line-height: 1.4;
  }

  .journal {
    padding: 80px 24px;
  }

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

  .journal-card:last-child {
    display: block;
  }

  .contact {
    padding: 80px 24px;
  }

  .footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 22px;
  }

  .footer-right {
    align-items: center;
  }

  .service-img-preview {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    height: 50vh;
    border-right: none;
  }

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

  .masonry-col:last-child {
    display: flex;
  }

  .about-stats {
    gap: 24px;
  }

  .lang-switcher {
    gap: 3px;
  }
}