@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Quicksand:wght@400;600;700&display=swap');

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

:root {
  --bg: #f4f1ec;
  --fg: #111111;
  --fg-dim: rgba(17, 17, 17, 0.5);
  --gold: #9a7a4a;
  --gold-dim: rgba(154, 122, 74, 0.12);
  --overlay: rgba(0, 0, 0, 0.35);
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  --ease-fast: 0.35s cubic-bezier(0.77, 0, 0.175, 1);

  /* Fallback definitions for people detail views and dark-theme selectors */
  --color-bg: #f4f1ec;
  --color-text: #111111;
}


body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

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

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

/* =====================
   CUSTOM CURSOR
===================== */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--fg);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}

#cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.3s ease, height 0.3s ease;
}

body.cursor-hover #cursor {
  width: 6px;
  height: 6px;
}

body.cursor-hover #cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}

/* Hide custom cursor completely on touch screens and mobile devices */
@media (pointer: coarse),
(max-width: 1024px) {

  #cursor,
  #cursor-follower {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }

  a,
  button,
  [role="button"],
  .people-card,
  .thumb-dot,
  .proj-dot,
  .h-panel.img-panel,
  .mobile-img-wrapper {
    cursor: pointer !important;
  }
}

/* Hide custom cursor when Lightbox or Search is open */
body.lightbox-open #cursor,
body.lightbox-open #cursor-follower,
body.search-open #cursor,
body.search-open #cursor-follower {
  display: none !important;
}

body.lightbox-open,
body.search-open {
  cursor: auto !important;
}

body.search-open #search-btn,
body.search-open .search-close-btn,
body.search-open .search-result-item,
body.search-open a,
body.search-open button {
  cursor: pointer !important;
}

body.search-open #search-input {
  cursor: text !important;
}

/* =====================
   HEADER / NAV
===================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Keep menu button on the right */
  padding: 0 40px;
  height: 120px; /* Solid fixed height for perfect vertical alignment */
  background: var(--bg); /* Solid cream background by default for subpages */
  border-bottom: 1px solid rgba(17, 17, 17, 0.08); /* thin bottom line */
  transition: background 0.4s ease, backdrop-filter 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}

/* Scrolled state — added via JS */
#header.scrolled {
  background: rgba(244, 241, 236, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 90px; /* Shrunk height on scroll */
}

/* Change child colors to dark gray in scrolled state */
#header.scrolled .header-back-btn {
  color: var(--fg);
  opacity: 0.9;
}

#header.scrolled ~ #menu-btn,
#header.scrolled ~ #search-btn {
  top: 23px;
  mix-blend-mode: normal;
}

#header.scrolled ~ #menu-btn span {
  background: var(--fg);
}

#header.scrolled ~ #search-btn {
  color: var(--fg);
}

/* =====================
   LOGO — EAA-style monogram
 ===================== */
.logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  text-decoration: none;

  /* Dark gray by default (for subpages) */
  color: var(--fg);
  mix-blend-mode: normal;

  /* Center it perfectly in the viewport as a fixed element to bypass header stacking context */
  position: fixed;
  top: 26px; /* Centered vertically inside 120px: (120-68)/2 = 26px */
  left: 50%;
  transform: translate3d(-50%, -20px, 0);
  opacity: 0;
  width: max-content;
  z-index: 101;
  /* Place above the header layer */

  /* Smooth transitions */
  transition: opacity 1.2s ease 0.6s, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s, color 0.4s ease, top 0.4s ease;
}

body.page-loaded .logo {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

/* Enable blend mode and white color ONLY on the homepage slider */
body:has(#home-slider) .logo {
  color: #ffffff !important;
  mix-blend-mode: difference !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Style the sibling logo when the header is scrolled */
#header.scrolled~.logo {
  color: var(--fg);
  mix-blend-mode: normal;
  top: 11px; /* Centered vertically inside 90px: (90-68)/2 = 11px */
}

/* =====================
   HEADER BACK BUTTON
 ===================== */
.header-back-btn {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--fg);
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-back-btn:hover {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* Homepage Slider Header Overrides */
body:has(#home-slider) #header {
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
}
body:has(#home-slider) #header.scrolled {
  background: rgba(244, 241, 236, 0.95) !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
}
body:has(#home-slider) #menu-btn {
  mix-blend-mode: difference !important;
}
body:has(#home-slider) #menu-btn span {
  background: #ffffff !important;
}
body:has(#home-slider) #search-btn {
  color: #ffffff !important;
  mix-blend-mode: difference !important;
}
body:has(#home-slider) #header.scrolled ~ #menu-btn {
  mix-blend-mode: normal !important;
}
body:has(#home-slider) #header.scrolled ~ #menu-btn span {
  background: var(--fg) !important;
}
body:has(#home-slider) #header.scrolled ~ #search-btn {
  color: var(--fg) !important;
  mix-blend-mode: normal !important;
}

/* DDS geometric monogram */
.logo-monogram {
  font-family: 'Quicksand', sans-serif;
  /* Soft, rounded corners */
  font-weight: 700;
  font-size: 68px;
  /* Enlarged */
  letter-spacing: -0.02em;
  /* Tighter spacing looks better with Quicksand */
  color: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  align-self: stretch;
}

/* Thin vertical divider line */
.logo-divider {
  width: 1px;
  align-self: stretch;
  background: currentColor;
  opacity: 0.25;
  flex-shrink: 0;
}

/* 3-line text stack on the right */
.logo-text-stack {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.logo-text-stack span {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14.5px;
  /* Enlarged to match the new 68px monogram height */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  line-height: 1.55;
  white-space: nowrap;
}

/* Keep old classes in case referenced elsewhere */
.logo-main,
.logo-sub,
.logo-light {
  display: none;
}


/* Hamburger */
#menu-btn {
  position: fixed;
  top: 38px;
  right: 40px;
  z-index: 101;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  cursor: none;
  background: none;
  border: none;
  padding: 6px;
  mix-blend-mode: normal;
  transition: top 0.4s ease, mix-blend-mode 0.4s ease;
}

#menu-btn span {
  display: block;
  height: 2px;
  background: var(--fg);
  transition: var(--ease-fast);
}

#menu-btn span:nth-child(1) {
  width: 28px;
}

#menu-btn span:nth-child(2) {
  width: 20px;
}

#menu-btn span:nth-child(3) {
  width: 24px;
}

#menu-btn.active span:nth-child(1) {
  width: 24px;
  transform: translateY(9px) rotate(45deg);
}

#menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#menu-btn.active span:nth-child(3) {
  width: 24px;
  transform: translateY(-9px) rotate(-45deg);
}

/* =====================
   FULLSCREEN MENU OVERLAY
===================== */
#nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

#nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-menu {
  list-style: none;
  text-align: center;
}

.nav-menu li {
  overflow: hidden;
  margin-bottom: 16px;
}

.nav-menu li a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.1;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1), color 0.3s ease;
  transition-delay: 0s;
  letter-spacing: -0.02em;
}

.nav-menu li a:hover {
  color: var(--gold);
}

#nav-overlay.open .nav-menu li a {
  transform: translateY(0);
}

#nav-overlay.open .nav-menu li:nth-child(1) a {
  transition-delay: 0.1s;
}

#nav-overlay.open .nav-menu li:nth-child(2) a {
  transition-delay: 0.17s;
}

#nav-overlay.open .nav-menu li:nth-child(3) a {
  transition-delay: 0.24s;
}

#nav-overlay.open .nav-menu li:nth-child(4) a {
  transition-delay: 0.31s;
}

.nav-footer {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* =====================
   HOMEPAGE SLIDER
===================== */
#home-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.slide.waiting-right {
  transform: translateX(100%);
  transition: none;
}

.slide.waiting-left {
  transform: translateX(-100%);
  transition: none;
}

.slide.active {
  transform: translateX(0);
  pointer-events: all;
  cursor: pointer;
  z-index: 2;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.exit-left {
  transform: translateX(-100%);
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.exit-right {
  transform: translateX(100%);
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide-bg {
  position: absolute;
  inset: -5%;
  transition: transform 8s ease;
  transform: scale(1.05);
}

.slide-bg img,
.slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active .slide-bg {
  transform: scale(1.0);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
}

.slide-content {
  position: absolute;
  bottom: 120px;
  left: 60px;
}

.slide-number {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.slide.active .slide-number {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
  color: #ffffff;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-category {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.55s, transform 0.6s ease 0.55s;
}

.slide.active .slide-category {
  opacity: 1;
  transform: translateY(0);
}

.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.slide.active .slide-link {
  opacity: 1;
  transform: translateY(0);
}

.slide-link::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.slide-link:hover::after {
  width: 70px;
}

/* Slider Controls — Bottom Left (EAA style) */
#slider-controls {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: none;
  color: #ffffff;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.slider-arrow:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.slider-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Progress bar */
.slider-progress {
  width: 22.5vw;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.slider-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #ffffff;
  width: 0%;
  transition: width linear;
}

/* Slide counter */
.slide-counter {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

/* Right side: slide thumbnails */
#slider-thumbs {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.thumb-dot {
  width: 2px;
  height: 24px;
  background: rgba(17, 17, 17, 0.15);
  cursor: none;
  transition: background 0.3s, height 0.3s;
}

.thumb-dot.active {
  background: var(--gold);
  height: 40px;
}

/* =====================
   BIG STYLE PROJECTS FILTER BAR
===================== */
.projects-filter-bar {
  width: 100%;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  background: var(--bg);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center horizontally */
  gap: 24px;
  z-index: 10;
  position: relative;
}

.filter-primary {
  display: flex;
  justify-content: center;
  /* Center items */
  flex-wrap: wrap;
  gap: 64px;
}

.filter-primary .filter-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--fg);
  opacity: 0.35;
  cursor: pointer;
  padding: 8px 0;
  transition: opacity 0.3s ease;
  outline: none;
}

.filter-primary .filter-btn:hover {
  opacity: 0.7;
}

.filter-primary .filter-btn.active {
  opacity: 1;
}

.filter-secondary {
  display: flex;
  justify-content: center;
  /* Center items */
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 12px;
  min-height: 20px;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.filter-secondary.show {
  opacity: 1;
  transform: translateY(0);
}

.filter-secondary .filter-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--fg);
  opacity: 0.4;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity 0.3s ease;
  outline: none;
}

.filter-secondary .filter-btn:hover {
  opacity: 0.75;
}

.filter-secondary .filter-btn.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .projects-filter-bar {
    padding: 24px 24px;
    gap: 16px;
  }

  .filter-primary {
    gap: 24px;
  }

  .filter-primary .filter-btn {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .filter-secondary {
    column-gap: 16px;
    row-gap: 8px;
  }

  .filter-secondary .filter-btn {
    font-size: 10px;
  }
}

/* =====================
   PROJECTS PAGE — BIG style + horizontal swipe
===================== */
.projects-page {
  padding-top: 100px;
  min-height: 100vh;
}

.projects-list {
  width: 100%;
}

/* Each project row: single block container, horizontal track inside */
.project-row {
  display: block;
  width: 100%;
  min-height: 380px;
  position: relative;

  /* Unframed elegant look by default */
  padding: 80px 0;
  background: transparent;
  border-top: none;
  transition: padding 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  cursor: pointer;
  /* Indicates it can be clicked to expand */
}


/* Expanded state */
.project-row.expanded {
  padding: 0;
  cursor: default;
  /* Remove pointer on the row itself when expanded */
}

.project-row.expanded:first-child {
  border-top: none;
}

/* Left: Info panel (Now inside the flex track!) */
.project-left {
  width: 260px;
  flex-shrink: 0;
  padding: 40px 48px 0 0; /* Ensures it starts a bit lower but never clips the top */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Stops tall content from overflowing upwards */
  align-items: flex-end;
  text-align: right;
  border-right: none;
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.proj-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  margin-bottom: 20px;
}

.proj-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 4px;
  color: var(--fg);
}

.proj-location {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 36px;
}

.proj-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.proj-meta-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proj-meta-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.proj-meta-value {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

/* Slide indicator dots (in left panel) */
.proj-dots {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 32px;
}

.proj-dot {
  width: 16px;
  height: 1px;
  background: rgba(17, 17, 17, 0.12);
  transition: background 0.3s, width 0.3s;
  cursor: none;
}

.proj-dot.active {
  background: var(--gold);
  width: 28px;
}

/* Progress bar style for large galleries like Baia Restaurant */
.proj-progress-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 32px;
}

.proj-progress-bar {
  width: 100%;
  height: 1px;
  background: rgba(17, 17, 17, 0.1);
  position: relative;
  overflow: hidden;
}

.proj-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proj-progress-text {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

/* Right: native horizontal scroll container */
.project-h-outer {
  width: 100vw;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  position: relative;
  cursor: ew-resize;
}


.project-h-outer::-webkit-scrollbar {
  display: none;
}

.project-h-track {
  display: flex;
  height: 40vh;
  gap: 24px;
  /* Centering calculation:
     Main image (35vw) needs to be centered.
     Left of main image is .project-left (260px) + gap (24px) = 284px.
     Center of screen = 50vw. Left edge of 35vw = 32.5vw.
     So the start of .project-h-track needs to be at (32.5vw - 284px). */
  margin-left: calc(32.5vw - 284px);
  transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1), margin-left 1.2s ease-in-out;
}

/* Hover: Shift the ENTIRE track (Text AND Image) to the LEFT by 6vw to make room for gallery! */
.project-row:not(.expanded):hover .project-h-track {
  margin-left: calc(26.5vw - 284px);
}

.project-row.expanded .project-h-track {
  height: 82vh;
  /* Shift to left boundary padding (40px) instead of negative margin so text is never cut off */
  margin-left: 40px;
}

/* Mobile-only info card — hidden on desktop */
.h-panel.mobile-info-card {
  display: none;
}

/* Each horizontal panel — variable widths */
.h-panel {
  flex-shrink: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Hide mobile-specific header and details panel on desktop */
@media (min-width: 901px) {

  .mobile-project-meta,
  .mobile-project-header,
  .mobile-cover-meta,
  .h-panel.mobile-meta-panel,
  .accordion-icon {
    display: none !important;
  }

  .accordion-content,
  .accordion-inner {
    display: flex;
    height: 100%;
    flex-shrink: 0;
  }

  .project-h-track {
    width: max-content !important;
  }
}

/* Main Cover Image on desktop: 35vw */
.h-panel.main-cover-panel {
  width: 35vw !important;
  box-sizing: border-box;
  position: relative;
  transition: width 1.2s ease-in-out;
}

.project-row.expanded .h-panel.main-cover-panel {
  width: 70vw !important;
}

.mobile-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.mobile-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Hover effect removed from img to prevent cropping/zoom-in effect */

/* Pinterest-style Expand Icon Overlay */
.expand-icon-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  /* Rounded square */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
  pointer-events: none;
  /* Pass clicks to parent */
  color: #111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.expand-icon-overlay svg {
  width: 20px;
  height: 20px;
}

.project-row:hover .expand-icon-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Kept visible in expanded state so user knows they can click to open lightbox */

/* Subsequent Gallery Images: 0 initially, reveals on hover */
.h-panel.img-panel.narrow {
  width: 0 !important;
  opacity: 0;
  box-sizing: border-box;
  transition: width 1.2s ease-in-out, opacity 1s ease-in-out;
  /* Changed to ease-in-out for a soft, slow start */
}

.project-row:hover .h-panel.img-panel.narrow,
.project-row.expanded .h-panel.img-panel.narrow {
  width: 45vw !important;
  opacity: 1;
}

.h-panel.img-panel.narrow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Narrow images don't need hover zoom in expanded state */

/* Description Card on desktop */
.h-panel.info-panel {
  width: 0 !important;
  opacity: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  background: var(--bg);
  box-sizing: border-box;
  overflow: hidden;
  transition: width 1.2s ease-in-out, padding 1.2s ease-in-out, opacity 1s ease-in-out;
  /* Soft start */
}

.project-row:hover .h-panel.info-panel,
.project-row.expanded .h-panel.info-panel {
  width: 35vw !important;
  padding: 60px 72px;
  opacity: 1;
}

/* Quote Card on desktop: uses original 36% width */
.h-panel.quote-panel {
  width: 0 !important;
  opacity: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: var(--fg);
  color: var(--bg);
  box-sizing: border-box;
  overflow: hidden;
  transition: width 0.8s cubic-bezier(0.77, 0, 0.175, 1), padding 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.project-row.expanded .h-panel.quote-panel {
  width: 35vw !important;
  padding: 60px 80px;
  opacity: 1;
}

.proj-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--fg-dim);
  max-width: 520px;
  margin-bottom: 40px;
}

.proj-quote {
  border-left: 1px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 40px;
  max-width: 480px;
}

.proj-quote p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 14px;
}

.proj-quote cite {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-style: normal;
}

.proj-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  padding-bottom: 6px;
  transition: border-color 0.3s, gap 0.3s;
  align-self: flex-start;
}

.proj-cta-link:hover {
  border-color: var(--gold);
  gap: 18px;
}

.proj-cta-link::after {
  content: '→';
  color: var(--gold);
}

/* Swipe hint overlay */
.swipe-hint {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity 0.4s;
}

.swipe-hint svg {
  width: 18px;
  opacity: 0.5;
}

.project-row.swiped .swipe-hint {
  opacity: 0;
}

/* ─── Desktop Project Navigation Buttons ─── */
.proj-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); /* Belirgin beyaz cam arka plan */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(17, 17, 17, 0.15);
  color: #111111; /* Siyah ok simgesi */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.proj-nav-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.proj-nav-btn:hover {
  background: var(--fg); /* Üstüne gelince siyah renge döner */
  color: var(--bg); /* Krem rengi ok */
  border-color: var(--fg);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.proj-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.proj-nav-btn.proj-nav-prev {
  left: 40px;
}

.proj-nav-btn.proj-nav-prev:hover svg {
  transform: translateX(-2px);
}

.proj-nav-btn.proj-nav-next {
  right: 40px;
}

.proj-nav-btn.proj-nav-next:hover svg {
  transform: translateX(2px);
}

/* Masaüstünde navigasyon butonları görünür yap ve yanıp sönme animasyonunu başlat (hover bağımsız) */
@media (min-width: 901px) {
  .proj-nav-btn.visible {
    pointer-events: auto;
    animation: navPulse 2.5s infinite ease-in-out;
  }

  /* Butonun tam üstüne gelindiğinde animasyonu durdur ve tam görünür yap */
  .proj-nav-btn.visible:hover {
    animation: none;
    opacity: 1;
  }
}

@keyframes navPulse {
  0% {
    opacity: 0.75; /* Belirgin olması için yüksek opaklık ile başlar */
    transform: translateY(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  50% {
    opacity: 0.95;
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  100% {
    opacity: 0.75;
    transform: translateY(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 900px) {

  /* Mobil görünümde okları tamamen gizle */
  .proj-nav-btn {
    display: none !important;
  }

  /* ─── Row Container ─── */
  .project-row {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 0 0 28px;
    /* No top padding: scroll track goes edge-to-edge */
    background: transparent;
    border-top: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    position: relative;
    transition: padding 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .project-row.expanded {
    padding: 0 0 35px;
  }

  /* ─── Desktop left panel: COMPLETELY HIDDEN on mobile ─── */
  /* It lives INSIDE the overflow:scroll container, so any positioning trick
     either gets clipped by the scroll container or still takes flex space.
     The mobile-info-card (first swipeable card) replaces it entirely. */
  .project-left {
    display: none !important;
  }

  /* ─── Dots: inside project-left so also hidden — 
     we'll relay on the mobile-info-card's swipe hint instead ─── */
  .proj-dots {
    display: none !important;
  }

  /* ─── Progress bar (if any) ─── */
  .proj-progress-container {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    pointer-events: none;
  }

  .proj-progress-bar {
    width: 40px;
    height: 1.5px;
    background: rgba(17, 17, 17, 0.12);
  }

  .proj-progress-text {
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--fg-dim);
  }

  /* ─── Scroll Container ─── */
  .project-h-outer {
    width: 100vw;
    height: 200px !important;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    position: static;
    /* NOT relative — keeps absolutely positioned children out of this container */
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .project-row.expanded .project-h-outer {
    height: 300px !important;
  }

  .project-h-outer::-webkit-scrollbar {
    display: none;
  }

  /* ─── Track ─── */
  .project-h-track {
    display: flex;
    flex-direction: row;
    height: 100% !important;
    width: max-content !important;
    gap: 10px;
    margin-left: 0 !important;
    padding: 0 12px !important;
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1) !important;
    align-items: stretch;
  }

  .project-row:not(.expanded):hover .project-h-track,
  .project-row.expanded .project-h-track {
    margin-left: 0 !important;
  }

  /* ─── ALL panels default ─── */
  .h-panel {
    min-height: 0;
    height: 100% !important;
    width: 72vw !important;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: width 0.8s cubic-bezier(0.77, 0, 0.175, 1) !important;
  }

  .project-row.expanded .h-panel {
    width: 82vw !important;
  }

  /* ─── Mobile Info Card: first swipeable card (replaces project-left) ─── */
  .h-panel.mobile-info-card {
    display: flex !important;
    width: 36vw !important;
    flex-shrink: 0;
    background: transparent;
    border-right: 1px solid rgba(17, 17, 17, 0.08);
    align-items: stretch;
  }

  .project-row.expanded .h-panel.mobile-info-card {
    width: 36vw !important;
  }

  .mobile-info-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 10px;
    width: 100%;
    gap: 6px;
  }

  .mobile-proj-num {
    font-size: 8px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .mobile-info-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0 0 2px;
    line-height: 1.3;
    font-family: var(--font-sans);
  }

  .mobile-info-location {
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--fg-dim);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .mobile-info-divider {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 8px;
    opacity: 0.6;
  }

  .mobile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
  }

  .mobile-info-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--fg-dim);
    text-transform: uppercase;
  }

  .mobile-info-value {
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--fg);
    text-align: right;
  }

  .mobile-info-swipe-hint {
    font-size: 7px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.7;
  }

  /* ─── Image panels ─── */
  .h-panel.img-panel,
  .h-panel.img-panel.narrow {
    padding: 0;
    height: 100% !important;
    width: 93vw !important;
    opacity: 1 !important;
  }

  .h-panel.main-cover-panel {
    padding: 0;
    height: 100% !important;
    width: 93vw !important;
    opacity: 1 !important;
  }

  .project-row.expanded .h-panel.img-panel,
  .project-row.expanded .h-panel.img-panel.narrow {
    width: 93vw !important;
  }

  .project-row.expanded .h-panel.main-cover-panel {
    width: 93vw !important;
  }

  .h-panel.img-panel img,
  .h-panel.img-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ─── Description & Quote Cards ─── */
  .h-panel.info-panel,
  .h-panel.quote-panel {
    width: 72vw !important;
    padding: 14px;
    background: rgba(17, 17, 17, 0.02);
    border: 1px solid rgba(17, 17, 17, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1 !important;
  }

  .project-row.expanded .h-panel.info-panel,
  .project-row.expanded .h-panel.quote-panel {
    width: 82vw !important;
  }

  .proj-desc {
    font-size: 10px;
    line-height: 1.55;
    margin-bottom: 10px;
    color: var(--fg-dim);
  }

  .proj-cta-link {
    font-size: 9px;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    width: fit-content;
  }

  .proj-quote p {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .proj-quote cite {
    font-size: 8px;
    color: var(--fg-dim);
  }
}



/* =====================
   ABOUT PAGE
===================== */
#about-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-visual {
  position: relative;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.about-content {
  padding: 140px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.about-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--fg-dim);
  max-width: 440px;
  margin-bottom: 60px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 40px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* =====================
   CONTACT PAGE
===================== */
#contact-page {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  padding-bottom: 0;
}

.contact-info {
  padding: 120px 80px 20px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.detail-value {
  font-size: 18px;
  color: var(--fg);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.detail-value:hover {
  color: var(--gold) !important;
}

.contact-form-wrap {
  padding: 120px 80px 20px 80px;
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 32px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  padding: 8px 0 12px;
  outline: none;
  resize: none;
  cursor: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 80px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: 1px solid rgba(17, 17, 17, 0.25);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: none;
  transition: border-color 0.3s, background 0.3s;
}

.btn-submit:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.btn-submit .paper-plane-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.btn-submit:hover .paper-plane-icon {
  transform: translate(3px, -3px) scale(1.1);
}



/* Newsletter Form Styling */
.newsletter-wrap {
  margin-top: 48px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 40px;
}

body.light-theme .newsletter-wrap {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.newsletter-title {
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.newsletter-text {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 32px;
  line-height: 1.6;
  color: var(--fg);
}

.newsletter-form {
  display: flex;
  position: relative;
  border-bottom: 2px solid rgba(17, 17, 17, 0.25);
  max-width: 520px;
  transition: border-color 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}

body.light-theme .newsletter-form {
  border-bottom: 2px solid rgba(17, 17, 17, 0.25);
}

.newsletter-form:focus-within {
  border-bottom: 2px solid var(--gold);
}

#newsletter-email {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 50px 16px 0;
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--fg);
  outline: none;
  cursor: none;
}

#newsletter-email::placeholder {
  color: var(--fg-dim);
  opacity: 0.55;
}

.newsletter-submit {
  background: none;
  border: none;
  color: var(--fg);
  cursor: none;
  padding: 16px 0;
  font-size: 22px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-submit:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.newsletter-msg {
  font-size: 13px;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.newsletter-msg.active {
  opacity: 0.8;
  transform: translateY(0);
}

.newsletter-msg.success {
  color: #55a855;
}

.newsletter-msg.error {
  color: #d9534f;
}


/* Map Scroll Indicator */
.map-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  z-index: 10;
}

.map-scroll-indicator:hover {
  opacity: 1;
  color: var(--gold);
  transform: translate(-50%, 5px);
}

.map-scroll-text {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Office Map Section Styling */
.contact-map-wrap {
  width: 100%;
  height: 55vh;
  min-height: 480px;
  background-color: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

body.light-theme .contact-map-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(90%) contrast(1.2);
  /* Breathtaking sleek dark-mode map contrast! */
  opacity: 0.8;
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.contact-map-wrap iframe:hover {
  opacity: 1;
}

body.light-theme .contact-map-wrap iframe {
  filter: grayscale(100%) contrast(1.1);
  /* Grayscale but light for light mode! */
  opacity: 0.85;
}

@media (max-width: 768px) {
  .contact-map-wrap {
    height: 320px;
  }
}

/* =====================
   PAGE TRANSITION
===================== */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* =====================
   PRELOADER (ENTRANCE ANIMATION)
===================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: top;
  /* Slides up to top */
}

#preloader.loaded {
  transform: scaleY(0);
  pointer-events: none;
}

.preloader-brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.15em;
  color: var(--fg);
  animation: pulse 1.5s infinite;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

#preloader.loaded .preloader-brand {
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.98);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.98);
    opacity: 0.5;
  }
}

/* Header entrance animation */
#header {
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 1.2s ease 0.6s, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s, background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

body.page-loaded #header {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   FOOTER
===================== */
footer {
  padding: 32px 60px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* =====================
   SCROLL INDICATOR
===================== */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
    transform-origin: top;
  }

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

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  #header {
    padding: 0 24px;
    height: 80px;
  }

  #header.scrolled {
    height: 60px;
  }

  .logo {
    top: 17px;
    gap: 9px;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  body.page-loaded .logo {
    transform: translate3d(-50%, 0, 0);
  }

  #header.scrolled~.logo {
    top: 7px;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  #menu-btn {
    top: 18px;
    right: 24px;
  }

  #search-btn {
    top: 18px;
    right: 78px;
  }

  #header.scrolled ~ #menu-btn,
  #header.scrolled ~ #search-btn {
    top: 8px;
  }

  .logo-monogram {
    font-size: 46px;
    padding: 2px 6px 2px 5px;
  }

  .logo-divider {
    height: 46px;
  }

  .header-back-btn {
    left: 24px;
    font-size: 10px;
  }

  .header-back-btn span {
    display: none;
    /* Hide text on mobile, just arrow */
  }

  .logo-text-stack span {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .slide-content {
    left: 28px;
    bottom: 100px;
  }

  .slide-title {
    font-size: 36px;
  }

  #slider-controls {
    left: 28px;
  }

  #about-page,
  #contact-page {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 50vh;
    position: relative;
  }

  .about-content {
    padding: 60px 28px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 60px 28px;
  }

  .contact-form-wrap {
    border-left: none;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .project-info {
    padding: 0 28px;
  }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ==========================================================================
   PEOPLE PAGE STYLES (Emre Arolat Inspired Grid & Biography Details)
   ========================================================================== */

#people-page {
  background-color: var(--color-bg);
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}

/* Grid View styling */
.people-grid-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: calc(100vh - 160px);
  /* Subtract header and footer height */
  width: 100%;
  display: none;
  /* Controlled by active class */
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.people-grid-view.active {
  display: grid;
  opacity: 1;
}

/* Cards styling */
.people-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

.people-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(70%) brightness(0.92) contrast(1.0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease, brightness 1s ease;
}

.people-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  opacity: 0.55;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.people-card .card-content {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 2;
  color: white;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.people-card .card-name {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.people-card .card-role {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.85;
}

/* Hover effects */
.people-card:hover .card-bg {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1.0) contrast(1.0);
  /* Full color bright splash on hover! */
}

.people-card:hover .card-overlay {
  opacity: 0.25;
}

.people-card:hover .card-content {
  transform: translateY(-5px);
}

/* DETAIL VIEW STYLES */
.people-detail-view {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 120px 80px;
  min-height: calc(100vh - 160px);
}

.people-detail-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.detail-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  column-gap: 80px;
}

/* Left side details */
.detail-left {
  width: 100%;
}

.detail-portrait-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-portrait-wrapper img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.8s ease;
}

.detail-portrait-wrapper img:hover {
  filter: grayscale(0%);
}

.detail-meta {
  margin-top: 36px;
}

.detail-meta h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--color-text);
}

.detail-path {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-top: 8px;
}

.detail-title-block {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.light-theme .detail-title-block {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-role-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
}

#detail-role-value {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* Right side details */
.detail-right {
  width: 100%;
}

.detail-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
  margin-bottom: 40px;
}

body.light-theme .detail-header-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-headline {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 0.02em;
  margin: 0;
}

.back-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

body.light-theme .back-btn {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.back-btn:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.back-arrow {
  transition: transform 0.3s ease;
}

.back-btn:hover .back-arrow {
  transform: translateX(-4px);
}

/* Bio Text style */
.detail-bio {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.85;
}

.detail-bio p {
  margin: 0 0 28px 0;
}

.detail-bio p:last-child {
  margin-bottom: 0;
}

/* Tabular listings for team members & consultants */
.team-list-section {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 36px;
}

body.light-theme .team-list-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.team-list-section h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.team-table {
  width: 100%;
  border-collapse: collapse;
}

.team-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
  font-size: 14px;
}

body.light-theme .team-table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.team-table tr:last-child td {
  border-bottom: none;
}

.team-table td strong {
  font-weight: 500;
  color: var(--color-text);
}

.team-table td:last-child {
  text-align: right;
  font-weight: 200;
  opacity: 0.7;
}

/* RESPONSIVE STYLING FOR PEOPLE PAGE */
@media (max-width: 992px) {
  .detail-container {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .detail-left {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .people-grid-view {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .people-card {
    height: 320px;
  }

  .people-card .card-content {
    bottom: 32px;
    left: 32px;
  }

  .people-card .card-name {
    font-size: 22px;
  }

  .people-detail-view {
    padding: 80px 24px;
  }

  .detail-header-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }

  .back-btn {
    align-self: flex-end;
  }
}

/* =====================
   LIGHTBOX & GALLERY
===================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 17, 17, 0.98);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  z-index: 10001;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.lightbox-counter {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.lightbox-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.lightbox-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 17, 17, 0.6);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
  opacity: 1;
  background: rgba(17, 17, 17, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-content {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 40px 100px 40px;
  /* Space for topbar and thumbnails */
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: scale-down;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Thumbnails */
.lightbox-thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  overflow-x: auto;
  scrollbar-width: none;
}

.lightbox-thumbnails::-webkit-scrollbar {
  display: none;
}

.lightbox-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid transparent;
}

.lightbox-thumb:hover {
  opacity: 0.8;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: #fff;
  transform: scale(1.1);
}

/* Hover effect on project track images */
.h-panel.img-panel,
.mobile-img-wrapper {
  position: relative;
  cursor: pointer;
}

/* =====================
   SITE-WIDE SEARCH SYSTEM
===================== */
#search-btn {
  position: fixed;
  top: 38px;
  right: 94px;
  z-index: 101;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--fg);
  transition: top 0.4s ease, opacity 0.3s ease, color 0.3s ease, mix-blend-mode 0.4s ease;
  mix-blend-mode: normal;
}

#search-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

#search-btn:hover svg {
  transform: scale(1.15);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999; /* must be on top of everything */
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 140px 20px 60px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Close Button */
.search-close-btn {
  position: fixed;
  top: 30px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #ffffff;
  opacity: 0.6;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10000;
}

.search-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.search-close-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5px;
}

/* Search Container */
.search-container {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-overlay.open .search-container {
  transform: translateY(0);
}

/* Input Wrapper */
.search-input-wrapper {
  position: relative;
  width: 100%;
}

#search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #ffffff;
  outline: none;
  transition: border-color 0.4s ease;
}

#search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-bar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#search-input:focus ~ .search-bar-line {
  transform: scaleX(1);
}

/* Section Header */
.search-section-header {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 25px;
  margin-bottom: 10px;
  padding-left: 12px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Results list */
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: calc(100vh - 320px);
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom scrollbar for results */
.search-results-list::-webkit-scrollbar {
  width: 4px;
}
.search-results-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}
.search-results-list::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.3);
}
.search-results-list::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Result Item */
.search-result-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: #ffffff;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: none;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
}

.search-result-thumb {
  width: 90px;
  height: 60px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
}

.search-result-thumb.circle {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.search-result-thumb.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-result-monogram {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  opacity: 0.6;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.search-result-item:hover .search-result-thumb img {
  transform: scale(1.1);
}

.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.search-result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #ffffff;
  transition: color 0.3s ease;
}

.search-result-item:hover .search-result-title {
  color: var(--gold);
}

.search-result-meta {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.search-no-results {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  padding: 30px 0;
  text-align: center;
}

/* Mobile Adjustments for Search */
@media (max-width: 768px) {
  .search-overlay {
    padding: 100px 15px 40px 15px;
  }
  
  .search-close-btn {
    top: 20px;
    right: 20px;
  }
  
  #search-input {
    font-size: 24px;
  }
  
  .search-result-item {
    gap: 15px;
    padding: 10px;
  }
  
  .search-result-thumb {
    width: 75px;
    height: 50px;
  }

  .search-result-thumb.circle {
    width: 50px;
    height: 50px;
  }
  
  .search-result-title {
    font-size: 17px;
  }
}

/* Mobile Project Meta (BIG style) */
.mobile-project-meta {
  display: none;
}

@media (max-width: 900px) {
  .mobile-project-meta {
    display: block;
    padding: 14px 12px 0;
    text-align: left;
  }

  .mobile-meta-title {
    font-size: 13px;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .mobile-meta-location {
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--fg-dim);
    text-transform: uppercase;
  }

  #search-btn {
    display: none !important;
  }
}

/* Menu Overlay Search Icon & Item Styles */
.menu-search-icon {
  width: clamp(20px, 3.5vw, 40px);
  height: clamp(20px, 3.5vw, 40px);
  margin-right: clamp(8px, 1.5vw, 18px);
  vertical-align: middle;
  stroke: currentColor;
  stroke-width: 1.5px;
  fill: none;
}

@media (min-width: 769px) {
  .nav-search-item {
    display: none !important;
  }
}

#nav-overlay.open .nav-menu li:nth-child(5) a {
  transition-delay: 0.38s;
}
#nav-overlay.open .nav-menu li:nth-child(6) a {
  transition-delay: 0.45s;
}

/* Masaüstü girişlerinde görsel altındaki başlığı gizle */
@media (hover: hover) and (pointer: fine) {
  .mobile-project-meta {
    display: none !important;
  }
}

/* Lazy Load Görsel Geçişi */
.lazy-image {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lazy-image.loaded {
  opacity: 1;
}

/* End of CSS */