/* ==========================================================================
   SELIN DUZGIDER - CONCEPT 3: FULLSCREEN COMPACT DARK VELVET ATELIER
   Theme: Fullscreen 100vh Immersive Canvas, Luminous Dark Velvet & Glass
   Font: Bricolage Grotesque & Plus Jakarta Sans
   ========================================================================== */

:root {
  --font-primary: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Concept 3 Color Tokens: Dark Velvet Atelier */
  --bg-primary: #09090c;
  --bg-secondary: #0e0e13;
  --bg-surface: #13131a;
  --bg-card: rgba(19, 19, 26, 0.75);
  --bg-glass: rgba(15, 15, 22, 0.72);
  
  --bordeaux-deep: #4a0408;
  --bordeaux: #80070e;
  --bordeaux-rich: #a80d17;
  --bordeaux-bright: #c91823;
  --bordeaux-glow: rgba(201, 24, 35, 0.35);
  --bordeaux-subtle: rgba(128, 7, 14, 0.15);
  
  --text-white: #ffffff;
  --text-primary: #f5f6fa;
  --text-secondary: #9ea1b5;
  --text-muted: #6b6e82;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-bordeaux: rgba(201, 24, 35, 0.35);
  --border-glow: rgba(201, 24, 35, 0.65);
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px rgba(201, 24, 35, 0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

::selection {
  background-color: var(--bordeaux-rich);
  color: var(--text-white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-bordeaux {
  color: var(--bordeaux-bright);
}

.text-gradient-bordeaux {
  background: linear-gradient(135deg, #ffffff 30%, var(--bordeaux-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dark Atelier Ambient Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.fluid-aura {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.fluid-aura-1 {
  width: 55vw;
  height: 55vw;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(168, 13, 23, 0.4) 0%, rgba(92, 6, 10, 0.15) 50%, transparent 75%);
}

.fluid-aura-2 {
  width: 50vw;
  height: 50vw;
  bottom: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(128, 7, 14, 0.35) 0%, rgba(30, 20, 40, 0.2) 60%, transparent 80%);
}

/* Custom Glowing Atelier Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--bordeaux-bright);
  box-shadow: 0 0 12px var(--bordeaux-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.3s ease, height 0.3s ease;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(201, 24, 35, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

body.cursor-hover .custom-cursor {
  width: 14px;
  height: 14px;
  background-color: var(--bordeaux-bright);
  box-shadow: 0 0 20px var(--bordeaux-glow);
}

body.cursor-hover .custom-cursor-follower {
  width: 54px;
  height: 54px;
  border-color: var(--bordeaux-bright);
  background: rgba(201, 24, 35, 0.12);
}

@media (pointer: coarse) {
  .custom-cursor, .custom-cursor-follower {
    display: none !important;
  }
}

/* Layout Containers */
.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   HEADER & NAVIGATION - EXTENDED DEEP BLACK GRADIENT FADE
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.8rem 0 7rem;
  transition: all var(--transition-smooth);
  background: linear-gradient(180deg, 
    #09090c 0%, 
    rgba(9, 9, 12, 0.96) 22%, 
    rgba(9, 9, 12, 0.85) 44%, 
    rgba(9, 9, 12, 0.58) 66%, 
    rgba(9, 9, 12, 0.28) 84%, 
    rgba(9, 9, 12, 0.08) 93%, 
    transparent 100%);
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.site-header .container,
.site-header .header-inner,
.site-header a,
.site-header button,
.site-header .nav-link,
.site-header .mobile-nav-toggle {
  pointer-events: auto;
}

.site-header.scrolled {
  padding: 1.1rem 0;
  background: rgba(9, 9, 12, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

/* ==========================================================================
   SUBPAGE ARTISTIC HERO STAGE & HORIZON CANOPY
   ========================================================================== */

.subpage-hero-banner {
  padding-top: 8.5rem;
  padding-bottom: 2.8rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 24, 35, 0.16) 0%, rgba(128, 7, 14, 0.04) 50%, transparent 100%);
  border-bottom: none;
}

.subpage-watermark {
  position: absolute;
  top: 42%;
  right: 2%;
  transform: translateY(-50%);
  font-family: var(--font-primary);
  font-size: clamp(5rem, 13vw, 10.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.subpage-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
}

.subpage-breadcrumb a {
  color: #c9ccd8;
  transition: color var(--transition-fast);
}

.subpage-breadcrumb a:hover {
  color: var(--bordeaux-bright);
}

.subpage-breadcrumb span.sep {
  color: rgba(255, 255, 255, 0.25);
}

.subpage-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.subpage-desc {
  font-size: 1.16rem;
  color: #c9ccd8;
  line-height: 1.75;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  transition: transform var(--transition-bounce);
}

.site-logo:hover {
  transform: scale(1.03);
}

.site-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-bounce), height var(--transition-fast);
}

.site-header.scrolled .site-logo img {
  height: 50px;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.8rem;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 1.02rem;
  font-weight: 600;
  color: #c9ccd8;
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--bordeaux-bright);
  box-shadow: 0 0 10px var(--bordeaux-bright);
  transition: width var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-pill {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-pill svg {
  width: 17px;
  height: 17px;
  transition: transform var(--transition-fast);
}

.social-pill:hover {
  color: var(--text-white);
  background-color: var(--bordeaux-bright);
  border-color: var(--bordeaux-bright);
  box-shadow: 0 0 18px var(--bordeaux-glow);
  transform: translateY(-2px) scale(1.06);
}

.social-pill:hover svg {
  transform: scale(1.1);
}

.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.lang-btn {
  font-family: var(--font-primary);
  font-size: 0.84rem;
  font-weight: 700;
  color: #c9ccd8;
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  cursor: pointer;
  background: transparent;
  border: none;
  line-height: 1;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  color: #ffffff;
  background: var(--bordeaux-bright);
  box-shadow: 0 0 10px var(--bordeaux-glow);
  font-weight: 800;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
}

.mobile-lang-wrap {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-lang-wrap .lang-btn {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.mobile-lang-wrap .lang-btn.active {
  background: var(--bordeaux-bright);
  border-color: var(--bordeaux-bright);
  box-shadow: 0 0 15px var(--bordeaux-glow);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-bright) 100%);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(168, 13, 23, 0.4), 0 0 15px rgba(201, 24, 35, 0.2);
  transition: all var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 24, 35, 0.6), 0 0 25px rgba(201, 24, 35, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--bordeaux-bright);
  background: rgba(201, 24, 35, 0.15);
  box-shadow: 0 0 15px var(--bordeaux-glow);
  transform: translateY(-2px);
}

.btn-text {
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #e5222f;
  transition: gap var(--transition-fast);
}

.btn-text:hover {
  gap: 0.8rem;
  color: #ffffff;
}

/* Mobile Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 9px;
  z-index: 110;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: all var(--transition-smooth);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.drawer-locked {
  overflow: hidden !important;
  touch-action: none !important;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #09090d radial-gradient(circle at top right, rgba(168, 17, 26, 0.25) 0%, #09090d 75%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem 1.4rem calc(1.5rem + env(safe-area-inset-bottom, 0px)) 1.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.3s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  touch-action: manipulation;
}

.mobile-drawer-logo img {
  height: 48px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}

.mobile-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: all var(--transition-fast);
}

.mobile-drawer-close:hover,
.mobile-drawer-close:active {
  background: var(--bordeaux-bright);
  border-color: var(--bordeaux-bright);
  box-shadow: 0 0 18px var(--bordeaux-glow);
  transform: rotate(90deg) scale(1.05);
}

/* Modern Card-Style Nav Items */
.mobile-nav-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.4rem 0 1.2rem 0;
}

.mobile-nav-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.mobile-nav-card * {
  pointer-events: none;
}

.mobile-nav-card:hover,
.mobile-nav-card:active {
  background: rgba(229, 34, 47, 0.08);
  border-color: rgba(229, 34, 47, 0.35);
  transform: translateX(4px);
}

.mobile-nav-card.active {
  background: linear-gradient(90deg, rgba(229, 34, 47, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(229, 34, 47, 0.45);
  box-shadow: inset 0 0 15px rgba(229, 34, 47, 0.1);
}

.mobile-nav-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.mobile-nav-card.active .mobile-nav-icon-wrap,
.mobile-nav-card:hover .mobile-nav-icon-wrap {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-bright) 100%);
  border-color: var(--bordeaux-bright);
  box-shadow: 0 0 12px var(--bordeaux-glow);
  color: #ffffff;
}

.mobile-nav-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.mobile-nav-title {
  font-family: var(--font-primary);
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.mobile-nav-sub {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.mobile-nav-arrow {
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-nav-card:hover .mobile-nav-arrow,
.mobile-nav-card.active .mobile-nav-arrow {
  color: var(--bordeaux-bright);
  transform: translateX(3px);
}

/* Modern Primary CTA Button in Drawer */
.mobile-drawer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #a8111a 0%, #e5222f 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px var(--bordeaux-glow);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  transition: all 0.25s ease;
}

.mobile-drawer-cta-btn:hover,
.mobile-drawer-cta-btn:active {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(229, 34, 47, 0.55);
}

.mobile-drawer-cta-btn .cta-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.mobile-drawer-cta-btn .cta-btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  margin-left: 0.85rem;
}

.mobile-drawer-cta-btn .cta-title {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.1;
}

.mobile-drawer-cta-btn .cta-sub {
  font-size: 0.74rem;
  color: #ffe6e8;
  font-weight: 500;
}

.mobile-drawer-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* ==========================================================================
   FULLSCREEN COMPACT ATELIER HERO (100VH IMMERSIVE CANVAS)
   ========================================================================== */

.fullscreen-atelier-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Fullscreen Background Slides Track */
.fullscreen-atelier-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fullscreen-atelier-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fullscreen-atelier-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.fullscreen-atelier-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 10s ease-out;
}

.fullscreen-atelier-slide.active .fullscreen-atelier-img {
  transform: scale(1.04);
}

/* Dark Ambient Gradient Mask (Ultra-chic Dark Atelier Vignette) */
.fullscreen-atelier-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 12, 0.4) 0%,
    rgba(9, 9, 12, 0.15) 30%,
    rgba(9, 9, 12, 0.75) 70%,
    rgba(9, 9, 12, 0.96) 100%
  );
}

/* Seamless Embedded Slide Information (No Separate Box) */
.fullscreen-atelier-dock {
  position: relative;
  z-index: 10;
  padding-bottom: 2.8rem;
  width: 100%;
}

.dock-embedded-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3.5rem;
  width: 100%;
}

.dock-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dock-meta-row {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.35rem 1rem;
  background: rgba(14, 14, 20, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(201, 24, 35, 0.35);
  border-radius: var(--radius-full);
  width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.dock-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 800;
  color: #e5222f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bordeaux-bright);
  box-shadow: 0 0 12px var(--bordeaux-bright);
  animation: pulseDot 2s infinite ease-in-out;
}

.dock-project-title {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

.dock-project-desc {
  font-size: 1.12rem;
  color: #e5e8f6;
  line-height: 1.65;
  max-width: 760px;
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dock-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.dock-counter-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 800;
}

.dock-cur-num {
  font-size: 3.6rem;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 25px rgba(201, 24, 35, 0.45);
}

.dock-slash {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.35);
}

.dock-tot-num {
  font-size: 1.6rem;
  color: #e5222f;
  font-weight: 700;
}

.dock-actions-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.dock-arrow-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(19, 19, 26, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.dock-arrow-btn:hover {
  background: var(--bordeaux-bright);
  border-color: var(--bordeaux-bright);
  box-shadow: 0 0 25px var(--bordeaux-glow);
  transform: scale(1.08);
}

/* Hero Scroll Down Hint to Uzmanlık Alanları */
.hero-scroll-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1.4rem;
  background: rgba(14, 14, 20, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: #c9ccd8;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-scroll-hint:hover {
  color: #ffffff;
  border-color: var(--bordeaux-bright);
  background: rgba(201, 24, 35, 0.2);
  box-shadow: 0 0 20px var(--bordeaux-glow);
  transform: translateY(2px);
}

.scroll-mouse-icon {
  width: 16px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
  display: inline-block;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--bordeaux-bright);
  border-radius: 2px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 6px); opacity: 0.2; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* ==========================================================================
   ULTRA-MODERN STUDIO CAPABILITIES & SERVICES TILES
   ========================================================================== */

.capabilities-strip {
  scroll-margin-top: 5rem;
  padding: 5.5rem 0;
  background: rgba(14, 14, 20, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.capabilities-top-header {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.capabilities-top-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.service-tile {
  background: rgba(19, 19, 26, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(201, 24, 35, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 24, 35, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.service-tile:hover::before {
  opacity: 1;
}

.service-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.tile-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  color: #e5222f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tile-arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.service-tile:hover .tile-arrow-icon {
  background: var(--bordeaux-bright);
  border-color: var(--bordeaux-bright);
  transform: translate(2px, -2px);
}

.tile-title {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
  line-height: 1.18;
}

.tile-desc {
  font-size: 0.96rem;
  color: #9ea1b5;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.tile-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tile-chip {
  font-size: 0.76rem;
  font-weight: 600;
  color: #c5c8dc;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   FEATURED WORKS / PROJECTS GRID
   ========================================================================== */

.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.section-tag {
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5222f;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-desc {
  max-width: 540px;
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* Project Cards Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.project-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--bordeaux-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.project-thumb-box {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #000000;
  cursor: zoom-in;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-thumb {
  transform: scale(1.06);
}

.project-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 12, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.project-thumb-box:hover .project-zoom-overlay {
  opacity: 1;
}

.zoom-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(14, 14, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6), var(--shadow-glow);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.project-thumb-box:hover .zoom-pill-badge {
  transform: translateY(0);
}

/* ==========================================================================
   LUXURY ATELIER IMAGE LIGHTBOX MODAL
   ========================================================================== */

.atelier-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(6, 6, 8, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}

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

.lightbox-content-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.atelier-lightbox.active .lightbox-content-wrap {
  transform: scale(1);
}

.lightbox-image {
  max-width: 86vw;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(201, 24, 35, 0.25);
  transition: opacity 0.25s ease;
}

.lightbox-caption-bar {
  margin-top: 1.2rem;
  background: rgba(16, 14, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  padding: 0.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.lightbox-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.lightbox-category {
  font-size: 0.85rem;
  color: #e5222f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lightbox-close-btn {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-close-btn:hover {
  background: var(--bordeaux-main);
  border-color: var(--bordeaux-bright);
  transform: rotate(90deg) scale(1.08);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(16, 14, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(15px);
  z-index: 10;
}

.lightbox-nav-btn.prev {
  left: 2rem;
}

.lightbox-nav-btn.next {
  right: 2rem;
}

.lightbox-nav-btn:hover {
  background: var(--bordeaux-main);
  border-color: var(--bordeaux-bright);
  transform: translateY(-50%) scale(1.08);
}

.project-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(19, 19, 26, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-medium);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  color: #e5222f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-info {
  padding: 2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  transition: color var(--transition-fast);
}

.project-card:hover .project-card-title {
  color: #e5222f;
}

.project-card-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
  flex-grow: 1;
}

/* ==========================================================================
   ABOUT / AWARDS - LUXURY ATELIER HONORS SHOWCASE
   ========================================================================== */

.award-atelier-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(20, 16, 24, 0.94) 0%, rgba(10, 10, 14, 0.98) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(246, 216, 140, 0.22);
  padding: 3rem 3.5rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-card), 0 0 50px rgba(201, 24, 35, 0.12);
  overflow: hidden;
}

.award-atelier-showcase::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(246, 216, 140, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Background Embedded Photo with Soft Feather Gradient */
.award-bg-photo-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.award-bg-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.65;
  filter: contrast(1.05) saturate(1.1);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 1) 100%),
                      linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 1) 100%),
              linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  transition: transform 1.2s ease, opacity 0.5s ease;
}

.award-atelier-showcase:hover .award-bg-photo-img {
  transform: scale(1.04);
  opacity: 0.78;
}

.award-bg-photo-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(246, 216, 140, 0.12), transparent 65%);
  pointer-events: none;
}

.award-atelier-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 560px;
  width: 100%;
  position: relative;
  z-index: 3;
}

/* ==========================================================================
   DESIGNER HERO SHOWCASE - FULL-BLEED LEFT-FLUSH LARGE FEATHERED PHOTO
   ========================================================================== */

.designer-hero-showcase {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.designer-hero-photo-fullbleed {
  position: absolute;
  top: 0;
  left: -8vw;
  width: 55vw;
  height: 100%;
  max-height: 850px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.designer-hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 20%;
  opacity: 0.92;
  filter: contrast(1.06) saturate(1.05);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 45%, rgba(0, 0, 0, 0.25) 80%, transparent 100%),
                      linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 45%, rgba(0, 0, 0, 0.25) 80%, transparent 100%),
              linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  transition: transform 1.2s ease, opacity 0.5s ease;
}

.designer-hero-showcase:hover .designer-hero-photo-img {
  transform: scale(1.03);
  opacity: 0.98;
}

.designer-hero-photo-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 24, 35, 0.12), transparent 65%);
  pointer-events: none;
}

.designer-hero-text-content {
  display: flex;
  flex-direction: column;
  max-width: 580px;
  margin-left: auto;
  width: 100%;
  position: relative;
  z-index: 3;
}

@media (max-width: 992px) {
  .designer-hero-showcase {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .designer-hero-photo-fullbleed {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 380px !important;
    max-height: 420px !important;
    border-radius: var(--radius-lg);
    margin-bottom: 1.8rem;
    overflow: hidden;
    display: block !important;
    order: -1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 13, 23, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .designer-hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 1 !important;
    filter: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    border-radius: var(--radius-lg);
  }

  .designer-hero-text-content {
    margin-left: 0;
    max-width: 100%;
    order: 1;
  }
}

@media (max-width: 540px) {
  .designer-hero-photo-fullbleed {
    height: 320px !important;
  }
}

.about-hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.about-hero-tagline {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #e5222f;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.about-hero-desc {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.about-hero-subdesc {
  font-size: clamp(0.85rem, 0.95vw, 0.92rem);
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.about-manifesto-card {
  background: transparent;
  border: none;
  border-left: 2.5px solid #e5222f;
  border-radius: 0;
  padding: 0.2rem 0 0.2rem 1.1rem;
  margin-bottom: 1.3rem;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-manifesto-title {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.25rem;
}

.about-manifesto-sub {
  font-size: 0.85rem;
  color: #a1a5b8;
  line-height: 1.5;
  margin: 0;
}

/* About Key Metrics Grid */
.about-metrics-wrap {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-metric-num {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-metric-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e5222f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .about-metrics-wrap {
    margin-top: 2.8rem;
    padding-top: 2.2rem;
  }

  .about-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem 1.2rem !important;
  }

  .about-metric-num {
    font-size: 2.2rem;
  }

  .about-metric-label {
    font-size: 0.82rem;
  }
}

@media (max-width: 992px) {
  .about-hero-atelier {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
  .about-hero-bg-photo-layer {
    width: 100%;
    opacity: 0.22;
  }
  .about-hero-content-box {
    margin-left: 0;
    max-width: 100%;
  }
}

.award-left-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
}

.award-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(246, 216, 140, 0.12);
  border: 1px solid rgba(246, 216, 140, 0.35);
  color: #ffcf55;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  align-self: flex-start;
}

.award-main-title {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  width: 100%;
}

.award-main-desc {
  font-size: 0.96rem;
  color: #c9ccd8;
  line-height: 1.6;
  margin-bottom: 1.1rem;
  width: 100%;
}

.award-ceremony-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
  width: 100%;
  box-sizing: border-box;
}

.ceremony-item {
  font-size: 0.86rem;
  color: #a0a3b5;
}

.ceremony-item strong {
  color: #ffcf55;
  font-weight: 700;
}

.award-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  width: 100%;
  box-sizing: border-box;
}

.award-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.award-stat-card:hover {
  border-color: rgba(201, 24, 35, 0.4);
  background: rgba(201, 24, 35, 0.08);
}

.award-stat-num {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.award-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: #9ea1b5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.award-actions-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  box-sizing: border-box;
}

.award-actions-row .btn-primary {
  flex: 1;
  justify-content: center;
  text-align: center;
}

.award-actions-row .btn-secondary {
  flex: 0 0 auto;
  min-width: 110px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1080px) {
  .award-atelier-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .award-atelier-showcase {
    padding: 3rem 2rem;
  }
}

@media (max-width: 992px) {
  .award-atelier-showcase {
    display: flex;
    flex-direction: column;
    padding: 2.2rem 1.8rem;
  }

  .award-bg-photo-layer {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 360px !important;
    max-height: 420px !important;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    overflow: hidden;
    display: block !important;
    order: -1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(246, 216, 140, 0.18);
    border: 1px solid rgba(246, 216, 140, 0.28);
    pointer-events: auto;
  }

  .award-bg-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 1 !important;
    filter: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    border-radius: var(--radius-lg);
  }

  .award-bg-photo-layer::after {
    background: linear-gradient(180deg, transparent 70%, rgba(10, 10, 14, 0.4) 100%);
  }

  .award-atelier-grid {
    max-width: 100%;
    width: 100%;
    order: 1;
    gap: 0;
  }
}

@media (max-width: 540px) {
  .award-atelier-showcase {
    padding: 1.5rem 1.25rem !important;
    margin: 2rem 0 !important;
  }

  .award-bg-photo-layer {
    height: 290px !important;
    margin-bottom: 1.5rem !important;
  }

  .award-main-title {
    font-size: 1.55rem !important;
  }
}

/* Capabilities Checklist Cards */
.capabilities-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

@media (max-width: 860px) {
  .capabilities-checklist-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .service-checklist-card {
    padding: 0.9rem 0.95rem !important;
    gap: 0.55rem !important;
    border-radius: var(--radius-sm) !important;
  }

  .service-checklist-icon {
    font-size: 0.9rem !important;
    flex-shrink: 0;
  }

  .service-checklist-text {
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  .capabilities-checklist-grid {
    gap: 0.55rem !important;
  }

  .service-checklist-card {
    padding: 0.75rem 0.75rem !important;
    gap: 0.45rem !important;
  }

  .service-checklist-icon {
    font-size: 0.8rem !important;
  }

  .service-checklist-text {
    font-size: 0.8rem !important;
  }
}

.service-checklist-card {
  background: rgba(19, 19, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), 
              background 0.3s ease, 
              border-color 0.3s ease, 
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-checklist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(229, 34, 47, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-checklist-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(26, 26, 38, 0.85);
  border-color: rgba(229, 34, 47, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), 0 0 25px rgba(229, 34, 47, 0.22);
}

.service-checklist-card:hover::before {
  opacity: 1;
}

.service-checklist-icon {
  color: #e5222f;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, filter 0.3s ease;
}

.service-checklist-card:hover .service-checklist-icon {
  transform: scale(1.35) rotate(18deg);
  color: #e5222f;
  filter: drop-shadow(0 0 8px rgba(229, 34, 47, 0.7));
}

.service-checklist-text {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.02rem;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-checklist-card:hover .service-checklist-text {
  color: #ffffff;
  transform: translateX(4px);
}

.service-checklist-card.is-highlight {
  border-color: rgba(229, 34, 47, 0.4);
}

.service-checklist-card.is-highlight .service-checklist-text {
  color: #e5222f;
}

.service-checklist-card.is-highlight:hover {
  border-color: rgba(229, 34, 47, 0.75);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(229, 34, 47, 0.4);
}

/* Philosophy Cards */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.philosophy-card {
  padding: 2.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.philosophy-card:hover {
  border-color: var(--bordeaux-bright);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.philosophy-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(128, 7, 14, 0.25);
  border: 1px solid var(--border-bordeaux);
  color: #e5222f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
}

.philosophy-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

/* ==========================================================================
   FORMS (CONTACT & TEKLIF AL)
   ========================================================================== */

.form-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-primary);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-label span.req {
  color: #e5222f;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 1.05rem 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--border-medium);
  color: var(--text-white);
  font-size: 1.02rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--bordeaux-bright);
  background: rgba(15, 15, 22, 0.95);
  box-shadow: 0 0 0 3px rgba(201, 24, 35, 0.25), 0 0 15px var(--bordeaux-glow);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.service-tag-label {
  cursor: pointer;
}

.service-tag-label input {
  display: none;
}

.service-tag-chip {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--border-medium);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.service-tag-label input:checked + .service-tag-chip {
  background: var(--bordeaux-bright);
  border-color: var(--bordeaux-bright);
  color: var(--text-white);
  box-shadow: 0 0 15px var(--bordeaux-glow);
}

.form-status {
  margin-top: 1.8rem;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-sm);
  display: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  align-items: center;
  gap: 0.8rem;
}

.form-status.success {
  display: flex;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #34d399;
}

.form-status.error {
  display: flex;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* Contact Cards */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  padding: 2.4rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-info-label {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #e5222f;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.contact-info-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
}



/* ==========================================================================
   FULL-WIDTH COMPACT HORIZONTAL CTA STRIP (MODERN, SLEEK & LOW-PROFILE)
   ========================================================================== */

.cta-fullwidth-strip {
  width: 100%;
  padding: 2.2rem 0;
  background: linear-gradient(90deg, #100e14 0%, #1f0e15 45%, #150e13 100%);
  border-top: 1px solid rgba(229, 34, 47, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 35px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-fullwidth-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #e5222f 50%, transparent 100%);
  box-shadow: 0 0 18px rgba(229, 34, 47, 0.9);
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.cta-strip-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.cta-strip-tag-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-strip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5222f;
  box-shadow: 0 0 8px #e5222f;
  animation: pulse-dot 2s infinite ease-in-out;
}

.cta-strip-tag {
  font-family: var(--font-primary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff7d88;
}

.cta-strip-title {
  font-family: var(--font-primary);
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
}

.cta-strip-features {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.82rem;
  color: #a6a9ba;
  font-weight: 500;
  margin-top: 0.2rem;
  flex-wrap: wrap;
}

.cta-strip-feat-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cta-strip-feat-item svg {
  color: #e5222f;
  flex-shrink: 0;
}

.cta-strip-feat-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

.cta-strip-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.cta-strip-right .btn-primary {
  padding: 0.75rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px var(--bordeaux-glow);
  white-space: nowrap;
}

.cta-strip-right .btn-secondary {
  padding: 0.75rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .cta-strip-right {
    width: 100%;
    flex-wrap: wrap;
  }
  .cta-strip-right .btn-primary,
  .cta-strip-right .btn-secondary {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-fullwidth-strip {
    padding: 1.8rem 0;
  }
  .cta-strip-features {
    gap: 0.5rem;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   LUXURY ATELIER SIGNATURE FOOTER (COMPACT, MODERN & ATMOSPHERIC)
   ========================================================================== */

.site-footer {
  margin-top: auto;
  padding: 3.8rem 0 2rem 0;
  background: linear-gradient(180deg, rgba(14, 12, 18, 0.95) 0%, rgba(8, 8, 11, 0.99) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 24, 35, 0.5) 50%, transparent 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 2.4rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.status-indicator-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.76rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.03em;
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite ease-in-out;
}

.footer-brand-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #a1a5b8;
  max-width: 500px;
  margin-bottom: 1.2rem;
}

.footer-email-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-full);
  align-self: flex-start;
  transition: all var(--transition-fast);
}

.footer-email-chip:hover {
  border-color: rgba(201, 24, 35, 0.4);
  background: rgba(201, 24, 35, 0.1);
}

.chip-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.chip-email {
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.chip-email:hover {
  color: #e5222f;
}.footer-col h5 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.35rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #d1d4e6;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.15rem 0;
  text-decoration: none;
}

.footer-links a .link-bullet {
  font-size: 0.75rem;
  color: #e5222f;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-links a:hover .link-bullet {
  color: #ff4a58;
  transform: scale(1.3);
}

.footer-links a.footer-quote-link {
  color: #ff4a58;
  font-weight: 700;
}

.footer-links a.footer-quote-link:hover {
  color: #ffffff;
}

/* Social cluster cards in footer */
.footer-social-cluster {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.footer-social-card:hover {
  background: rgba(229, 34, 47, 0.1);
  border-color: rgba(229, 34, 47, 0.35);
  transform: translateX(5px);
}

.social-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.footer-social-card:hover .social-icon-box {
  background: #e5222f;
  color: #ffffff;
}

.social-text-box {
  display: flex;
  flex-direction: column;
}

.social-title {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.social-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: #c9ccd8;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: #e5222f;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (ALL DESKTOPS, LAPTOPS, TABLETS & MOBILES)
   ========================================================================== */

/* 1. ULTRA-WIDE & 2K / 4K MONITORS (≥ 1920px) */
@media (min-width: 1920px) {
  .container {
    max-width: 1620px;
    padding: 0 3.5rem;
  }

  .dock-project-title {
    font-size: 3.5rem;
  }

  .dock-project-desc {
    font-size: 1.25rem;
    max-width: 860px;
  }

  .capabilities-grid {
    gap: 2.2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
  }
}

/* 2. STANDARD LARGE DESKTOPS (1441px - 1919px) */
@media (min-width: 1441px) and (max-width: 1919px) {
  .container {
    max-width: 1400px;
    padding: 0 2.5rem;
  }

  .dock-project-title {
    font-size: 3.1rem;
  }

  .dock-project-desc {
    font-size: 1.15rem;
    max-width: 760px;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}

/* 3. STANDARD LAPTOPS & 13"-15" MACBOOKS (1200px - 1440px) */
@media (min-width: 1200px) and (max-width: 1440px) {
  .container {
    max-width: 1220px;
    padding: 0 2rem;
  }

  .nav-list {
    gap: 2rem;
  }

  .dock-project-title {
    font-size: clamp(2rem, 2.7vw, 2.7rem);
  }

  .dock-project-desc {
    font-size: 1.05rem;
    max-width: 660px;
    line-height: 1.6;
  }

  .capabilities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
  }

  .service-tile {
    padding: 2rem 1.5rem;
  }

  .tile-title {
    font-size: 1.3rem;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

/* 4. COMPACT LAPTOPS, NETBOOKS & LANDSCAPE TABLETS (861px - 1199px) */
@media (min-width: 861px) and (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 1.8rem;
  }

  .site-header {
    padding: 1.1rem 0 3.2rem;
  }

  .site-logo img {
    height: 48px;
  }

  .nav-list {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.92rem;
  }

  .header-right {
    gap: 0.7rem;
  }

  .header-right .btn-primary {
    padding: 0.55rem 1.15rem;
    font-size: 0.86rem;
  }

  .social-pill {
    width: 34px;
    height: 34px;
  }

  .social-pill svg {
    width: 15px;
    height: 15px;
  }

  .dock-embedded-row {
    gap: 2rem;
  }

  .dock-project-title {
    font-size: clamp(1.75rem, 2.4vw, 2.2rem);
  }

  .dock-project-desc {
    font-size: 0.96rem;
    max-width: 520px;
    line-height: 1.55;
  }

  .dock-cur-num {
    font-size: 2.8rem;
  }

  .dock-arrow-btn {
    width: 48px;
    height: 48px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .about-award-grid, .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* 5. SHORT VIEWPORT LAPTOPS (e.g. 1366x768 / 1280x720 / 1440x900 screens) */
@media (min-width: 861px) and (max-height: 760px) {
  .site-header {
    padding: 0.8rem 0 2.2rem;
  }

  .site-header.scrolled {
    padding: 0.6rem 0;
  }

  .site-logo img {
    height: 46px;
  }

  .fullscreen-atelier-dock {
    padding-bottom: 1.6rem;
  }

  .dock-meta-row {
    margin-bottom: 0.4rem;
    padding: 0.25rem 0.8rem;
  }

  .dock-project-title {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
  }

  .dock-project-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .dock-cur-num {
    font-size: 2.6rem;
  }

  .hero-scroll-wrapper {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
  }
}

/* 6. TABLETS & LARGE MOBILE (≤ 860px) */
@media (max-width: 860px) {
  .site-header {
    padding: 1rem 0 2rem;
  }

  .site-header.scrolled {
    padding: 0.75rem 0;
  }

  .site-logo img {
    height: 44px;
  }

  .header-nav, .header-social, .lang-toggle {
    display: none;
  }

  .header-right {
    gap: 0.65rem;
  }

  .header-right .btn-primary {
    padding: 0.42rem 0.95rem;
    font-size: 0.82rem;
    white-space: nowrap;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(168, 13, 23, 0.4);
  }

  .hamburger-btn {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  /* Hero Slider Mobile Framed Stage with Top & Bottom Breathing Room */
  .fullscreen-atelier-hero {
    height: auto;
    min-height: calc(100dvh - 10px);
    padding-top: 4.6rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .fullscreen-atelier-track {
    position: relative;
    width: calc(100% - 1.2rem);
    max-width: 680px;
    height: 48vh;
    min-height: 300px;
    max-height: 460px;
    margin: 0.2rem auto 1.45rem auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.88), 0 0 30px rgba(201, 24, 35, 0.25);
    z-index: 2;
  }

  .fullscreen-atelier-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }

  .fullscreen-atelier-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    filter: brightness(1.04) contrast(1.03);
  }

  .fullscreen-atelier-mask {
    display: none;
  }

  .fullscreen-atelier-dock {
    position: relative;
    padding-bottom: 0;
    width: 100%;
    z-index: 10;
  }

  .dock-embedded-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .dock-meta-row {
    margin-bottom: 0.4rem;
    padding: 0.35rem 1rem;
  }

  .dock-cat-badge {
    font-size: 0.9rem;
    font-weight: 800;
  }

  .dock-project-title {
    font-size: clamp(1.8rem, 5.8vw, 2.4rem);
    margin-bottom: 0.4rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    white-space: normal;
  }

  .dock-project-desc {
    font-size: 1.05rem;
    line-height: 1.58;
    color: #e4e7f6;
    margin-bottom: 0.2rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .dock-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dock-cur-num {
    font-size: 2.3rem;
  }

  .dock-slash {
    font-size: 1.5rem;
  }

  .dock-tot-num {
    font-size: 1.2rem;
  }

  .dock-arrow-btn {
    width: 44px;
    height: 44px;
  }

  .hero-scroll-wrapper {
    margin-top: 1.25rem;
    padding-top: 1rem;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-wrapper {
    padding: 2.5rem 1.8rem;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-award-grid, .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 1rem;
  }

  .footer-social-cluster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .footer-social-card {
    padding: 0.65rem 0.75rem;
    gap: 0.65rem;
    box-sizing: border-box;
  }

  .social-icon-box {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .social-title {
    font-size: 0.88rem;
  }

  .social-sub {
    font-size: 0.75rem;
  }
}

/* 7. COMPACT MOBILE PHONES (≤ 540px) */
@media (max-width: 540px) {
  .container {
    padding: 0 1.2rem;
  }

  .site-header {
    padding: 0.75rem 0 1.2rem;
  }

  .site-header.scrolled {
    padding: 0.6rem 0;
  }

  .site-logo img {
    height: 38px;
  }

  .header-right {
    gap: 0.4rem;
  }

  .lang-switch-wrap {
    padding: 0.2rem 0.4rem;
    gap: 0.15rem;
  }

  .lang-btn {
    font-size: 0.74rem;
    padding: 0.18rem 0.32rem;
  }

  .header-right .btn-primary {
    padding: 0.35rem 0.68rem;
    font-size: 0.74rem;
    letter-spacing: 0.01em;
  }

  .hamburger-btn {
    width: 36px;
    height: 36px;
    padding: 7px;
  }

  .mobile-drawer-logo img {
    height: 40px;
  }

  .fullscreen-atelier-hero {
    padding-top: 4rem;
    padding-bottom: 0.8rem;
    min-height: auto;
  }

  .fullscreen-atelier-track {
    width: 100%;
    height: 40vh;
    min-height: 250px;
    max-height: 360px;
    margin: 0.1rem auto 1.35rem auto;
    border-radius: var(--radius-lg);
  }

  .dock-meta-row {
    padding: 0.3rem 0.85rem;
    margin-bottom: 0.35rem;
  }

  .dock-cat-badge {
    font-size: 0.82rem;
  }

  .dock-project-title {
    font-size: 1.65rem;
    line-height: 1.15;
    margin-bottom: 0.35rem;
  }

  .dock-project-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e8f6;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .dock-cur-num {
    font-size: 2rem;
  }

  .dock-slash {
    font-size: 1.3rem;
  }

  .dock-tot-num {
    font-size: 1.1rem;
  }

  .dock-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
    margin-top: 0.45rem;
    padding-top: 0.55rem;
  }

  .dock-actions-row {
    display: flex;
    gap: 0.6rem;
  }

  .dock-arrow-btn {
    width: 42px;
    height: 42px;
  }

  .hero-scroll-wrapper {
    margin-top: 1.15rem;
    padding-top: 0.95rem;
  }

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

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

/* 8. MOBILE RENDERING & GPU ACCELERATION (ELIMINATES ALL RENDERING LAG) */
@media (max-width: 860px) {
  .fluid-aura,
  .fluid-aura-1,
  .fluid-aura-2 {
    display: none !important;
  }
  
  .form-wrapper,
  .contact-info-card,
  .philosophy-card,
  .award-atelier-showcase,
  .about-manifesto-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #12121a !important;
  }
  
  .subpage-hero-banner {
    padding-top: 7.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .subpage-watermark {
    opacity: 0.05 !important;
    font-size: clamp(3.5rem, 10vw, 5rem) !important;
    top: 14% !important;
  }

  .subpage-title {
    font-size: clamp(2.4rem, 7.5vw, 3.4rem);
    margin-top: 0.5rem;
    margin-bottom: 1.1rem;
    line-height: 1.12;
  }

  .subpage-desc {
    font-size: 1.02rem;
    line-height: 1.72;
  }
}

@media (max-width: 540px) {
  .subpage-hero-banner {
    padding-top: 6.8rem !important;
    padding-bottom: 2rem !important;
  }

  .subpage-watermark {
    display: none !important;
  }

  .subpage-breadcrumb {
    margin-bottom: 0.8rem;
    font-size: 0.76rem;
    padding: 0.3rem 0.75rem;
  }

  .subpage-title {
    font-size: 2.35rem;
    margin-top: 0.4rem;
    margin-bottom: 0.95rem;
  }

  .subpage-desc {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}
