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

:root {
  --black: #0a0a08;
  --black-mid: #111110;
  --black-soft: #1a1a17;
  --white: #ffffff;
  --off-white: #f5f2ec;
  --cream: #ede9e0;
  --yellow: #f5c400;
  --yellow-dark: #c49a00;
  --yellow-glow: rgba(245, 196, 0, 0.15);
  --gray-mid: #3a3a36;
  --gray-light: #7a7a72;
  --mono: 'DM Mono', monospace;
  --display: 'Bebas Neue', sans-serif;
  --serif: 'Cormorant Garamond', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(245, 196, 0, 0.12);
  background: rgba(10, 10, 8, 0.92);
  backdrop-filter: blur(14px);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-logo span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  border: none;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--yellow-dark);
  color: var(--black);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 8, 0.98);
  border-bottom: 1px solid rgba(245, 196, 0, 0.15);
  z-index: 99;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 196, 0, 0.07);
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--yellow);
}

.mobile-menu .mobile-wa {
  color: var(--yellow) !important;
  border-bottom: none !important;
  margin-top: 0.5rem;
}

/* ===================== HERO ===================== */
.hero {
  height: 100svh;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 3rem 9rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--yellow);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(4.8rem, 9.2vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-title em {
  color: var(--yellow);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-light);
  max-width: 340px;
  line-height: 1.8;
  margin-bottom: 2.4rem;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  font-weight: 400;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  color: var(--black);
}

.btn-ghost {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  background: transparent;
  border: 1px solid rgba(245, 196, 0, 0.25);
  padding: 1rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* Hero Right — Video */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 35%);
  z-index: 2;
  pointer-events: none;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 16:9 aspect */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.08);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.15), rgba(10, 10, 8, 0.6)),
    rgba(10, 10, 8, 0.18);
  z-index: 1;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 6px;
  mix-blend-mode: screen;
  opacity: 0.28;
}

/* Placeholder shown when no video src */
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-direction: column;
}

.hvp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.5;
}

.hvp-logo {
  width: 80px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.hvp-label {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
}

.hvp-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.hero-video-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 10;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  background: rgba(10, 10, 8, 0.7);
  border: 1px solid rgba(245, 196, 0, 0.25);
  padding: 0.3rem 0.7rem;
}

.hero-video-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--yellow);
  border-radius: 50%;
  margin-right: 0.55rem;
  box-shadow: 0 0 18px rgba(245, 196, 0, 0.75);
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245, 196, 0, 0.1);
  z-index: 10;
  background: rgba(10, 10, 8, 0.7);
  backdrop-filter: blur(8px);
}

.hero-stat {
  padding: 1.5rem 3rem;
  border-right: 1px solid rgba(245, 196, 0, 0.1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--white);
  display: block;
  line-height: 1;
}

.hero-stat-num span {
  color: var(--yellow);
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 0.3rem;
  display: block;
}

/* ===================== TICKER ===================== */
.ticker {
  background: var(--yellow);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--black);
  padding: 0 2rem;
}

.ticker-sep {
  color: rgba(10, 10, 8, 0.35);
  padding: 0 0.5rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===================== ATELIER SHOWCASE ===================== */
.atelier-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 82vh;
  padding: 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.atelier-showcase-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.atelier-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.06);
}

.atelier-showcase-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 8, 0.12), rgba(10, 10, 8, 0.02) 48%, rgba(10, 10, 8, 0.54)),
    linear-gradient(180deg, rgba(10, 10, 8, 0), rgba(10, 10, 8, 0.42));
  pointer-events: none;
}

.atelier-showcase-mark {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  background: rgba(10, 10, 8, 0.76);
  border: 1px solid rgba(245, 196, 0, 0.28);
  backdrop-filter: blur(12px);
}

.atelier-showcase-mark span {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  line-height: 1;
}

.atelier-showcase-mark small {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--off-white);
}

.atelier-showcase-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 3rem;
  background:
    linear-gradient(180deg, rgba(245, 196, 0, 0.08), transparent 46%),
    var(--black-mid);
  overflow: hidden;
}

.atelier-showcase-copy::before {
  content: 'MODA';
  position: absolute;
  top: -1.2rem;
  right: -0.5rem;
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 1;
  color: rgba(245, 196, 0, 0.045);
  pointer-events: none;
}

.atelier-showcase-title {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(3.8rem, 6vw, 6.3rem);
  line-height: 0.9;
  color: var(--white);
  margin: 0 0 1.5rem;
}

.atelier-showcase-title em {
  color: var(--yellow);
  font-style: normal;
}

.atelier-showcase-copy p {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--gray-light);
  max-width: 460px;
  margin-bottom: 1.8rem;
}

.atelier-showcase-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.atelier-showcase-points span {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--yellow);
  border: 1px solid rgba(245, 196, 0, 0.2);
  padding: 0.45rem 0.65rem;
}

.atelier-showcase-copy .btn-ghost {
  position: relative;
  z-index: 1;
}

/* ===================== GALLERY ===================== */
.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0e0e0c 0%, var(--black-mid) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-page-hero {
  min-height: 70vh;
}

.gallery-page-section {
  padding-top: 5rem;
}

.gallery-section::before {
  content: 'GALERI';
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 0.8;
  color: rgba(245, 196, 0, 0.035);
  pointer-events: none;
}

.gallery-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.gallery-title {
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

.gallery-title em {
  color: var(--yellow);
  font-style: normal;
}

.gallery-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.gallery-intro p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.85;
  max-width: 460px;
}

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, 16vw);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black-soft);
  color: var(--off-white);
  text-decoration: none;
  isolation: isolate;
}

.gallery-item-large {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(0.92) contrast(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 35%, rgba(10, 10, 8, 0.82) 100%),
    linear-gradient(90deg, rgba(245, 196, 0, 0.15), transparent 38%);
  opacity: 0.8;
  transition: opacity 0.35s ease;
}

.gallery-item-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08);
}

.gallery-item:hover::after {
  opacity: 0.55;
}

.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  background: rgba(6, 6, 5, 0.92);
  backdrop-filter: blur(14px);
  padding: 4rem;
}

.gallery-lightbox.open {
  display: grid;
}

.gallery-lightbox-img {
  max-width: min(1100px, 86vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(245, 196, 0, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.35);
  background: rgba(10, 10, 8, 0.75);
  color: var(--yellow);
  font-family: var(--mono);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.gallery-lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.gallery-lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-count {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===================== BLOG ===================== */
.blog-page-hero,
.blog-article-hero {
  min-height: 70vh;
}

.blog-list-section,
.blog-article-section {
  background: var(--black-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-list-header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.blog-card {
  position: relative;
  min-height: 330px;
  padding: 3rem;
  color: var(--off-white);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: background 0.25s, color 0.25s;
}

.blog-card:nth-child(even) {
  border-right: none;
}

.blog-card:hover {
  background: rgba(245, 196, 0, 0.045);
}

.blog-card-num {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(245, 196, 0, 0.07);
}

.blog-card-label,
.blog-card-meta,
.blog-article-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.blog-card h3 {
  max-width: 520px;
  margin: 1.2rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}

.blog-card p {
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--gray-light);
  font-size: 12px;
  line-height: 1.8;
}

.blog-card-meta {
  position: absolute;
  left: 3rem;
  bottom: 2.5rem;
  color: rgba(245, 196, 0, 0.72);
}

.blog-article {
  max-width: 920px;
  margin: 0 auto;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.blog-article h2 {
  margin: 3rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--yellow);
}

.blog-article p {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.95;
  color: var(--cream);
}

.blog-article p:first-of-type::first-letter {
  float: left;
  padding: 0.2rem 0.7rem 0 0;
  font-family: var(--display);
  font-size: 5.8rem;
  line-height: 0.78;
  color: var(--yellow);
}

.blog-article-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===================== SECTIONS ===================== */
section {
  padding: 7rem 3rem;
}

.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--yellow);
}

/* ===================== PAGE HERO ===================== */
.page-hero {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  border-bottom: 1px solid rgba(245, 196, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245, 196, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 1rem 0 2rem;
}

.page-hero-title em {
  color: var(--yellow);
  font-style: normal;
}

.page-hero-sub {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-light);
  max-width: 460px;
  line-height: 1.8;
  font-weight: 300;
}

.page-hero-deco {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding-top: 1rem;
}

.page-hero-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 196, 0, 0.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: block;
  padding-right: 1rem;
}

/* ===================== SERVICES ===================== */
#hizmetler {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.services-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.services-desc {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.9;
  font-weight: 300;
  max-width: 420px;
  align-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card {
  padding: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

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

.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card:hover {
  background: rgba(245, 196, 0, 0.05);
}

.service-num {
  font-family: var(--display);
  font-size: 4rem;
  color: rgba(245, 196, 0, 0.06);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-num {
  color: rgba(245, 196, 0, 0.14);
}

.service-icon-line {
  width: 2.5rem;
  height: 2px;
  background: var(--yellow);
  margin-bottom: 1.5rem;
  transition: width 0.3s;
}

.service-card:hover .service-icon-line {
  width: 4rem;
}

.service-name {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.service-detail {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* Services full page card */
.services-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 0;
}

.service-card-full {
  padding: 3.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.service-card-full:nth-child(even) {
  border-right: none;
}

.service-card-full:hover {
  background: rgba(245, 196, 0, 0.04);
}

.service-card-full .service-num {
  font-size: 5rem;
  opacity: 1;
  color: rgba(245, 196, 0, 0.06);
}

.service-card-full .service-name {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.service-card-full .service-detail {
  font-size: 13px;
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.service-tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245, 196, 0, 0.3);
  padding: 0.25rem 0.7rem;
}

.services-cta {
  margin-top: 3rem;
  text-align: right;
}

/* ===================== CTA STRIP ===================== */
.cta-strip {
  background: var(--yellow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 6rem 3rem;
  gap: 4rem;
  align-items: center;
}

.cta-strip-left .section-label {
  color: rgba(10, 10, 8, 0.5);
}

.cta-strip-left .section-label::before {
  background: rgba(10, 10, 8, 0.4);
}

.cta-strip-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--black);
}

.cta-strip-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-strip-desc {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(10, 10, 8, 0.7);
  line-height: 1.7;
  font-weight: 300;
  max-width: 400px;
}

.cta-strip .btn-primary {
  background: var(--black);
  color: var(--yellow);
  align-self: flex-start;
}

.cta-strip .btn-primary:hover {
  background: var(--black-soft);
  color: var(--yellow);
}

.cta-strip .btn-ghost {
  border-color: rgba(10, 10, 8, 0.3);
  color: var(--black);
  align-self: flex-start;
}

.cta-strip .btn-ghost:hover {
  border-color: var(--black);
  color: var(--black);
}

/* ===================== ABOUT ===================== */
.about-strip {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  overflow: hidden;
}

.about-strip-left {
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip-left .section-label {
  color: rgba(10, 10, 8, 0.45);
}

.about-strip-left .section-label::before {
  background: rgba(10, 10, 8, 0.3);
}

.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.25;
  font-style: italic;
  margin: 1.5rem 0 2rem;
}

.about-sig {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 8, 0.5);
}

.about-strip-right {
  background: var(--yellow);
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.about-strip-right::before {
  content: 'MODA';
  position: absolute;
  top: -2rem;
  right: -1rem;
  font-family: var(--display);
  font-size: 14rem;
  color: rgba(10, 10, 8, 0.08);
  line-height: 1;
  pointer-events: none;
}

.about-contact-title {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 2rem;
}

.about-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.about-contact-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 8, 0.5);
  min-width: 70px;
  padding-top: 2px;
}

.about-contact-val {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--black);
  line-height: 1.5;
  text-decoration: none;
}

.about-contact-val:hover {
  text-decoration: underline;
}

.about-strip-right .btn-ghost {
  color: var(--black);
  border-color: rgba(10, 10, 8, 0.3);
}

.about-strip-right .btn-ghost:hover {
  border-color: var(--black);
  color: var(--black);
}

/* About Details */
.about-details-section {
  background: var(--black-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.about-detail-card {
  padding: 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
}

.about-detail-card:last-child {
  border-right: none;
}

.about-detail-card:hover {
  background: rgba(245, 196, 0, 0.04);
}

.about-detail-num {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.about-detail-num span {
  font-size: 2.5rem;
  color: rgba(245, 196, 0, 0.6);
}

.about-detail-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.about-detail-desc {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ===================== PROCESS ===================== */
#surec {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black-mid);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 4rem;
}

.process-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: background 0.3s;
}

.process-step:hover {
  background: rgba(245, 196, 0, 0.03);
}

.process-step:last-child {
  border-right: none;
}

.step-num {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  display: block;
  margin-bottom: 1.5rem;
}

.step-name {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.step-desc {
  font-size: 11px;
  color: var(--gray-light);
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: 3.5rem;
  right: -1px;
  width: 1px;
  height: 1.5rem;
  background: var(--yellow);
  opacity: 0.35;
}

.process-step:last-child .step-connector {
  display: none;
}

/* Process Page — Vertical Steps */
.process-steps-vertical {
  max-width: 900px;
  margin: 0 auto;
}

.process-step-v {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.process-step-v:last-child {
  border-bottom: none;
}

.process-step-v-num {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  padding-top: 0.5rem;
  position: sticky;
  top: 6rem;
  align-self: flex-start;
}

.process-step-v-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.process-step-v-desc {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.process-step-v-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.process-step-v-tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245, 196, 0, 0.3);
  padding: 0.25rem 0.7rem;
}

/* ===================== CONTACT ===================== */
#iletisim {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 80vh;
}

.contact-left {
  padding: 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.contact-title span {
  color: var(--yellow);
  display: block;
}

.contact-info-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-row:last-of-type {
  border-bottom: none;
  margin-bottom: 3rem;
}

.c-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  min-width: 80px;
  padding-top: 3px;
}

.c-val {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.6;
  font-weight: 300;
  text-decoration: none;
}

.c-val:hover {
  color: var(--yellow);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.wa-btn:hover {
  background: var(--yellow-dark);
  color: var(--black);
}

.map-action-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 1rem;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 196, 0, 0.45);
  padding-bottom: 0.35rem;
  transition: color 0.2s, border-color 0.2s;
}

.map-action-link:hover {
  color: var(--off-white);
  border-color: var(--off-white);
}

.wa-dot {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
}

.contact-right {
  position: relative;
  overflow: hidden;
  background: var(--black-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: 7rem 4rem;
}

.contact-map-placeholder {
  width: 100%;
  flex: 1;
  border: 1px solid rgba(245, 196, 0, 0.1);
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
}

.map-open-label {
  position: absolute;
  left: 1.25rem;
  bottom: 1.1rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  background: rgba(10, 10, 8, 0.84);
  border: 1px solid rgba(245, 196, 0, 0.35);
  padding: 0.55rem 0.8rem;
  transition: background 0.2s, color 0.2s;
}

.map-open-label:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ===================== FOOTER ===================== */
footer {
  background: #060605;
  border-top: 2px solid var(--yellow);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 3rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-logo em {
  color: var(--yellow);
  font-style: normal;
}

.footer-logo-img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.8;
}

.footer-nav-col {
  padding-top: 0.5rem;
}

.footer-nav-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-nav-title::before {
  content: '';
  display: inline-block;
  width: 1.2rem;
  height: 1px;
  background: var(--yellow);
}

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

.footer-nav-list li {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.5;
}

.footer-nav-list a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: var(--yellow);
}

.footer-contact-list li {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 0.3rem;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.2s;
}

.footer-wa-btn:hover {
  background: var(--yellow-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 3rem;
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-credit strong {
  color: var(--yellow);
  font-weight: 400;
}

.footer-credit:hover {
  color: var(--yellow);
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== CURSOR ===================== */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s;
}

/* ===================== UTILITIES ===================== */
.h-rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0;
  border: none;
}

/* MAP */
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 196, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 196, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pin-dot {
  width: 16px;
  height: 16px;
  background: var(--yellow);
  border-radius: 50%;
  position: relative;
}

.pin-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s ease infinite;
}

.pin-dot::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 2s ease infinite 0.5s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.pin-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.5;
}

.working-hours {
  margin-top: 2rem;
  width: 100%;
}

.wh-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wh-title::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--yellow);
}

.wh-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.wh-day {
  color: var(--gray-light);
}

.wh-time {
  color: var(--off-white);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
    min-width: auto;
    gap: 0;
    padding-top: 68px !important;
  }

  .hero-right {
    order: 1;
    display: block;
    position: relative;
    inset: auto;
    z-index: 2;
    opacity: 1;
    flex: 0 0 auto;
    width: calc(100% - 2rem);
    height: min(36svh, calc((100vw - 2rem) * 0.5625));
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border: 1px solid rgba(245, 196, 0, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  }

  .hero-video {
    object-fit: contain;
    object-position: center center;
    background: #050505;
    filter: saturate(1.18) contrast(1.12) brightness(1.05);
  }

  .hero-right::after {
    background:
      linear-gradient(180deg, rgba(10, 10, 8, 0.04), rgba(10, 10, 8, 0.24)),
      linear-gradient(90deg, rgba(10, 10, 8, 0.18), transparent 42%, rgba(10, 10, 8, 0.18));
    pointer-events: none;
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 8, 0.02), rgba(10, 10, 8, 0.2));
  }

  .hero-video-wrap::after {
    opacity: 0.12;
  }

  .hero-left {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 1.35rem 1.5rem 1.25rem;
    justify-content: flex-start;
    background:
      linear-gradient(180deg, rgba(10, 10, 8, 0.05), rgba(10, 10, 8, 0.78));
  }

  .hero-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    bottom: 0.8rem;
    right: 0.8rem;
    background: rgba(10, 10, 8, 0.82);
    backdrop-filter: blur(10px);
  }

  .hero-bottom-bar {
    order: 3;
    width: 100%;
    flex: 0 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .hero-stat {
    padding: 0.85rem 0.75rem;
  }

  .hero-stat-num {
    font-size: 1.75rem;
  }

  .hero-stat-label {
    font-size: 8px;
    letter-spacing: 0.08em;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .services-header,
  .gallery-header,
  .blog-list-header,
  #iletisim {
    grid-template-columns: 1fr;
  }

  .atelier-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .atelier-showcase-media {
    min-height: 0;
    height: min(62svh, 560px);
  }

  .atelier-showcase-copy {
    padding: 4rem 1.5rem;
  }

  .atelier-showcase-copy p {
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item {
    grid-column: span 1;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-lightbox {
    padding: 4.5rem 1rem;
  }

  .gallery-lightbox-img {
    max-width: 94vw;
    max-height: 74vh;
  }

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

  .service-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

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

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

  .blog-card {
    border-right: none;
    min-height: 300px;
    padding: 2.2rem;
  }

  .blog-card-meta {
    left: 2.2rem;
  }

  .service-card-full {
    border-right: none;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-details-grid {
    grid-template-columns: 1fr;
  }

  .about-detail-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step-v {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-left {
    border-right: none;
    padding: 4rem 1.5rem;
  }

  .contact-right {
    display: flex;
    padding: 0 1.5rem 4rem;
  }

  .contact-map-frame {
    min-height: 280px;
  }

  section {
    padding: 4rem 1.5rem;
  }

  #iletisim {
    display: block;
  }

  .process-title {
    font-size: 2.5rem;
  }

  .page-hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
  }

  .page-hero-deco {
    display: none;
  }

  .cta-strip {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0.42em;
    row-gap: 0;
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 0.95;
    margin-bottom: 0.9rem;
  }

  .hero-title br {
    display: none;
  }

  .hero-title em {
    display: inline;
  }

  .hero-tag {
    font-size: 8px;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
    gap: 0.6rem;
  }

  .hero-tag::before {
    width: 1.15rem;
  }

  .hero-sub {
    font-size: 0.94rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: row;
    align-items: stretch;
    gap: 0.65rem;
  }

  .btn-primary,
  .btn-ghost {
    flex: 1;
    min-width: 0;
    padding: 0.76rem 0.65rem;
    text-align: center;
    font-size: 9px;
  }

  .hero-left {
    padding: 0.95rem 1rem 0.8rem;
  }

  .hero-right {
    width: calc(100% - 1.5rem);
    height: min(31svh, calc((100vw - 1.5rem) * 0.5625));
  }

  .hero-stat {
    padding: 0.58rem 0.4rem;
  }

  .hero-stat-num {
    font-size: 1.32rem;
  }

  .hero-stat-label {
    font-size: 6.7px;
    letter-spacing: 0.04em;
  }

  .atelier-showcase-media {
    height: 54svh;
  }

  .atelier-showcase-media img {
    object-position: center center;
  }

  .atelier-showcase-mark {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .atelier-showcase-copy {
    padding: 3rem 1rem;
  }

  .atelier-showcase-title {
    font-size: clamp(3.1rem, 14vw, 4.2rem);
    margin-bottom: 1rem;
  }

  .atelier-showcase-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .atelier-showcase-points {
    gap: 0.45rem;
  }

  .atelier-showcase-points span {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-info-row {
    flex-direction: column;
    gap: 0.6rem;
  }

  .blog-card h3 {
    font-size: 2.5rem;
  }

  .blog-article p {
    font-size: 1.05rem;
    line-height: 1.85;
  }

  @media (max-height: 700px) {
    .hero {
      padding-top: 62px !important;
    }

    .hero-right {
      height: min(28svh, calc((100vw - 1.5rem) * 0.5625));
    }

    .hero-title {
      font-size: clamp(2rem, 9vw, 2.55rem);
      margin-bottom: 0.65rem;
    }

    .hero-tag {
      margin-bottom: 0.5rem;
    }

    .hero-sub {
      font-size: 0.86rem;
      line-height: 1.35;
      margin-bottom: 0.7rem;
    }

    .hero-left {
      padding: 0.65rem 1rem 0.55rem;
    }

    .hero-stat {
      padding: 0.46rem 0.35rem;
    }
  }

  .blog-article-cta {
    flex-direction: column;
  }
}
