:root {
  --bg: #ffffff;
  --ink: #101010;
  --muted: #686868;
  --line: #e9e9e9;
  --dark: #050505;
  --white: #ffffff;
  --sans: Inter, Arial, Helvetica, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* Centered premium navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0;
}
.nav-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 22px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
}
.nav .brand { margin-right: 10px; }
.brand {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .18em;
  white-space: nowrap;
}
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}
.menu a,
.lang-switch {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  white-space: nowrap;
}
.menu a { opacity: .52; transition: opacity .25s ease, color .25s ease; }
.menu a:hover,
.menu a.active { opacity: 1; color: #000; font-weight: 700; }
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--ink);
  opacity: .38;
  cursor: pointer;
  padding: 4px 0;
  font: inherit;
  letter-spacing: inherit;
}
.lang-switch button.active { opacity: 1; }
.lang-switch span { opacity: .35; }

/* Opening hero */
.upper-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.hero-fullscreen,
.hero-fullscreen-FIX,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.top-shadow.light {
  display: none;
}
.hero-bg {
  background: #fff center / cover no-repeat;
  opacity: 0;
  animation: heroFade 18s infinite;
}
.hero-bg-1 { background-image: url('../img/fashion/hero-01.jpg'); animation-delay: 0s; }
.hero-bg-2 { background-image: url('../img/fashion/hero-02.jpg'); animation-delay: 6s; }
.hero-bg-3 { background-image: url('../img/fashion/hero-03.jpg'); animation-delay: 12s; }

/* Separate mobile hero slider images
   Desktop: img/fashion/hero-01.jpg, hero-02.jpg, hero-03.jpg — recommended 1920x1080
   Mobile:  img/fashion/hero-01-mobile.jpg, hero-02-mobile.jpg, hero-03-mobile.jpg — recommended 1080x1920 */
@media (max-width: 700px) {
  .hero-bg-1 { background-image: url('../img/fashion/hero-01-mobile.jpg'); }
  .hero-bg-2 { background-image: url('../img/fashion/hero-02-mobile.jpg'); }
  .hero-bg-3 { background-image: url('../img/fashion/hero-03-mobile.jpg'); }
}

@keyframes heroFade {
  0%, 30% { opacity: 1; }
  36%, 94% { opacity: 0; }
  100% { opacity: 1; }
}
/* Replace hero-01/02/03.jpg files in img/fashion/ with your slider photos. */
.center-container {
  position: relative;
  z-index: 6;
  display: table;
  width: 100%;
  height: 100vh;
  text-align: center;
}
.center-block {
  display: table-cell;
  vertical-align: middle;
  padding: 118px 5vw 70px;
}
.home-page-title.dark {
  color: #101010;
  text-transform: uppercase;
  text-shadow: none;
}
h1.home-page-title.dark {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.8vw, 72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .08em;
}
.home-page-subtitle-carousel {
  position: relative;
  height: 34px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}
.home-page-subtitle-carousel h2 {
  position: absolute;
  inset: 0;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(11px, 1.25vw, 18px);
  line-height: 34px;
  font-weight: 300;
  letter-spacing: .18em;
  color: #101010;
  opacity: 0;
  animation: subtitleCycle 16s infinite;
}
.home-page-subtitle-carousel h2:nth-child(1) { animation-delay: 0s; }
.home-page-subtitle-carousel h2:nth-child(2) { animation-delay: 4s; }
.home-page-subtitle-carousel h2:nth-child(3) { animation-delay: 8s; }
.home-page-subtitle-carousel h2:nth-child(4) { animation-delay: 12s; }
.hero-intro-line {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #555;
}
@keyframes subtitleCycle {
  0%, 21% { opacity: 1; transform: translateY(0); }
  25%, 96% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Main sections */
section { padding: 110px 5vw; }
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 82px);
  line-height: .95;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.04em;
}
.section-title p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}
.eyebrow {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .32em;
}
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 6vw;
  align-items: start;
}
.big-stat {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 160px);
  line-height: .8;
}
.about-text {
  color: #111;
  font-size: clamp(18px, 2vw, 22px);
}
.about-text p:first-child { margin-top: 0; }
.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  min-height: 260px;
  padding: 34px;
  background: var(--bg);
}
.service span {
  font-family: var(--serif);
  font-size: 48px;
  color: #111;
}
.service h3,
.step h3 {
  margin: 26px 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.service p,
.step p { margin: 0; color: var(--muted); }
.service p { font-size: 14px; }

.featured { background: var(--dark); color: var(--white); }
.featured .section-title { border-color: #2a2a2a; }
.featured .section-title p,
.featured .eyebrow { color: #aaa; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #222;
}
.feature-image {
  position: relative;
  min-height: 620px;
  background: #fff center / cover no-repeat;
}
.feature-image::after {
  content: 'IMAGE PLACEHOLDER / add: img/fashion/editorial-01.jpg';
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #111;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .58;
}
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
  background: #090909;
}
.feature-copy h3 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1;
  font-weight: 400;
}
.feature-copy p { max-width: 470px; color: #c8c8c8; }
.meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #252525;
}
.meta b {
  display: block;
  color: #888;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.meta span { font-size: 14px; }

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.shot {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #fff center / cover no-repeat;
  border: 1px solid var(--line);
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .25s ease, border-color .25s ease;
}
.shot:hover,
.shot:focus-visible {
  transform: translateY(-2px);
  border-color: #111;
  outline: none;
}
.shot::after {
  content: attr(data-label) ' / add image';
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  color: #111;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.shot:nth-child(1) { grid-column: span 7; }
.shot:nth-child(2) { grid-column: span 5; }
.shot:nth-child(3),
.shot:nth-child(4),
.shot:nth-child(5) { grid-column: span 4; }
.shot:nth-child(6),
.shot:nth-child(7) { grid-column: span 6; }

.feature-image { background-image: url('../img/fashion/editorial-01.jpg'); }
.shot:nth-child(1) { background-image: url('../img/fashion/project-01-01.jpg'); }
.shot:nth-child(2) { background-image: url('../img/fashion/project-02-01.jpg'); }
.shot:nth-child(3) { background-image: url('../img/fashion/project-03-01.jpg'); }
.shot:nth-child(4) { background-image: url('../img/fashion/project-04-01.jpg'); }
.shot:nth-child(5) { background-image: url('../img/fashion/project-05-01.jpg'); }
.shot:nth-child(6) { background-image: url('../img/fashion/project-06-01.jpg'); }
.shot:nth-child(7) { background-image: url('../img/fashion/project-07-01.jpg'); }

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.94);
  padding: 72px 5vw;
}
.gallery-modal.is-open { display: flex; }
.gallery-image {
  max-width: min(1120px, 88vw);
  max-height: 82vh;
  object-fit: contain;
  background: #fff;
}
.gallery-close,
.gallery-arrow {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: var(--serif);
  line-height: 1;
}
.gallery-close {
  top: 24px;
  right: 30px;
  font-size: 46px;
}
.gallery-arrow {
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(46px, 8vw, 92px);
  padding: 12px 18px;
}
.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }
.gallery-caption {
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.gallery-count {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.step {
  padding-top: 22px;
  border-top: 1px solid var(--ink);
}
.step b {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
}

.contact {
  background: #111;
  color: #fff;
  text-align: center;
}
.contact h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(46px, 8vw, 110px);
  line-height: .9;
  font-weight: 400;
  text-transform: uppercase;
}
.contact p {
  max-width: 590px;
  margin: 0 auto 36px;
  color: #c8c8c8;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  padding: 12px 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.btn.dark { background: #fff; color: #111; border-color: #fff; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 5vw;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}


@media (max-width: 1100px) {
  .nav-inner { gap: 38px; }
  .menu { gap: 16px; }
  .menu a, .lang-switch { font-size: 10px; letter-spacing: .13em; }
}

@media (max-width: 900px) {
  .nav-inner {
    padding: 16px 5vw 14px;
    flex-wrap: wrap;
    gap: 14px 20px;
  }
  .brand { width: 100%; text-align: center; font-size: 14px; }
  .menu { order: 2; width: 100%; flex-wrap: wrap; gap: 10px 16px; }
  .lang-switch { position: absolute; right: 5vw; top: 16px; }
  .center-block { padding-top: 150px; }
  section { padding: 90px 5vw; }
  .section-title { display: block; }
  .section-title p { margin-top: 18px; }
  .about-grid,
  .feature-grid,
  .process { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .feature-image { min-height: 520px; }
  .shot,
  .shot:nth-child(n) { grid-column: span 12; }
  .footer { display: block; }
  .footer div + div { margin-top: 10px; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 14px 6vw 12px; }
  .brand { font-size: 13px; letter-spacing: .16em; }
  .menu { gap: 8px 12px; }
  .menu a { font-size: 9px; letter-spacing: .11em; }
  .lang-switch { right: 6vw; top: 14px; font-size: 9px; }
  .center-block { padding: 150px 6vw 60px; }
  h1.home-page-title.dark { font-size: clamp(28px, 9vw, 44px); letter-spacing: .06em; }
  .home-page-subtitle-carousel { height: 52px; }
  .home-page-subtitle-carousel h2 { line-height: 26px; padding: 0 18px; }
  .hero-intro-line { font-size: 9px; line-height: 1.8; letter-spacing: .22em; }
  section { padding: 78px 6vw; }
  .services { grid-template-columns: 1fr; }
  .service { min-height: auto; padding: 28px; }
  .feature-image { min-height: 420px; }
  .feature-copy { padding: 54px 8vw; }
  .meta { grid-template-columns: 1fr; gap: 14px; }
  .shot { min-height: 360px; }
  .contact-links { display: grid; }
  .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-page-subtitle-carousel h2 { animation: none; opacity: 0; }
  .home-page-subtitle-carousel h2:first-child { opacity: 1; }
}

/* External Wedding link stays after Contact and never receives section-active state. */
.menu a[href^="https://wedding.emircansivri.com"] { opacity: .62; }
.menu a[href^="https://wedding.emircansivri.com"]:hover { opacity: 1; }

/* Premium loading intro */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #fff;
  color: #050505;
  transition: opacity .55s ease, visibility .55s ease;
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-mark {
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 34px);
  letter-spacing: .22em;
  text-transform: uppercase;
}
.preloader-line {
  width: 170px;
  height: 1px;
  overflow: hidden;
  background: #e7e7e7;
}
.preloader-line span {
  display: block;
  width: 55%;
  height: 100%;
  background: #050505;
  animation: preloaderLine 1.1s ease-in-out infinite alternate;
}
@keyframes preloaderLine {
  from { transform: translateX(-80%); }
  to { transform: translateX(175%); }
}

/* Project detail inside lightbox */
.gallery-caption {
  width: min(760px, 76vw);
  text-align: center;
  line-height: 1.4;
}
.gallery-description {
  position: absolute;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  width: min(680px, 80vw);
  color: rgba(255,255,255,.74);
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .08em;
}
.gallery-count { bottom: 22px; }
.gallery-arrow { opacity: .82; transition: opacity .2s ease; }
.gallery-arrow:hover { opacity: 1; }

@media (max-width: 700px) {
  .gallery-modal { padding: 64px 0 88px; }
  .gallery-image {
    max-width: 100vw;
    max-height: 68vh;
    width: 100vw;
    object-fit: contain;
  }
  .gallery-caption {
    top: 20px;
    width: 78vw;
    font-size: 10px;
  }
  .gallery-description {
    bottom: 54px;
    font-size: 10px;
    line-height: 1.5;
    width: 84vw;
  }
  .gallery-count { bottom: 24px; }
  .gallery-arrow {
    top: auto;
    bottom: 12px;
    transform: none;
    font-size: 44px;
    padding: 4px 22px;
  }
  .gallery-prev { left: 14px; }
  .gallery-next { right: 14px; }
}
