:root {
  --bg: #0A0A0B;
  --surface: #141416;
  --primary: #D4A853;
  --secondary: #3A3A40;
  --accent: #F5E6C8;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.55);
  --font-display: 'Montserrat', 'Inter';
  --font-body: 'Inter', 'Montserrat';
  --container: 1320px;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(212, 168, 83, 0.3);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 300;
  background: var(--primary);
  color: #0A0A0B;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 24px;
}

.notice {
  background: #121214;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(10, 10, 11, 0.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 11, 0.9);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.24em;
  text-decoration: none;
  color: var(--accent);
}

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

.desktop-nav {
  display: none;
  align-items: center;
  gap: 36px;
}

.desktop-nav .nav-link,
.mobile-menu .nav-link {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--accent);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 150;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(10, 10, 11, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-menu .nav-link {
  font-size: 24px;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.mobile-menu .nav-link.active {
  color: var(--primary);
}

.mobile-menu .btn {
  margin-top: 12px;
}

.scroll-progress {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.scroll-progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-primary {
  background: var(--primary);
  color: #0A0A0B;
}

.btn-primary:hover {
  background: #e0ba6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.25);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.scene {
  min-height: 100vh;
  min-height: 100svh;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  max-height: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg,
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.1);
}

.hero-overlay,
.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, rgba(10, 10, 11, 0.2) 40%, rgba(10, 10, 11, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 10, 11, 0.45) 0%, rgba(10, 10, 11, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero .eyebrow {
  color: var(--primary);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 24px;
}

.line {
  display: block;
  overflow: hidden;
}

.line-inner {
  display: block;
}

.js .line-inner {
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-title.is-loaded .line-inner {
  transform: translateY(0);
}

.hero-lead {
  max-width: 560px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 56px;
  display: flex;
  justify-content: center;
}

.scroll-cue span {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: scrollCue 2.4s ease-in-out infinite;
}

@keyframes scrollCue {
  0% {
    top: -100%;
  }
  60%,
  100% {
    top: 100%;
  }
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.services-section::before {
  content: "Etkinlik";
  position: absolute;
  top: 60px;
  left: -20px;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(90px, 20vw, 280px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  white-space: nowrap;
}

.services-intro {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 64px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-sub {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.service {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

.service-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js .clip-reveal {
  clip-path: inset(0 0 100% 0);
}

.js .clip-reveal.is-visible {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.2s ease-out;
}

.service::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.3) 0%,
    rgba(10, 10, 11, 0.1) 40%,
    rgba(10, 10, 11, 0.9) 100%
  );
}

.service-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 6vw, 120px);
  bottom: clamp(48px, 8vh, 96px);
  max-width: 600px;
}

.service-index {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--primary);
  text-transform: uppercase;
}

.service-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--accent);
  margin: 12px 0 16px;
}

.service-content p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  position: relative;
  padding-bottom: 6px;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.about {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 clamp(24px, 6vw, 120px);
}

.about-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--accent);
  margin-bottom: 24px;
}

.about-content > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.about-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 32px;
}

.rating {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
}

.rating small {
  font-size: 1rem;
  color: var(--muted);
}

.rating-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.contact-section {
  position: relative;
  padding: 120px clamp(24px, 6vw, 120px);
  background: var(--bg);
  overflow: hidden;
}

.contact-section::before {
  content: "İletişim";
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 20vw, 280px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  white-space: nowrap;
}

.contact-layout {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.contact-info {
  position: relative;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--accent);
  margin-bottom: 24px;
}

.contact-info > p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

address {
  font-style: normal;
}

.info-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-info address,
.contact-phone,
.contact-whatsapp {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 28px;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.contact-rating {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-rating .rating {
  font-size: 2.2rem;
}

.contact-form-wrap {
  position: relative;
  background: var(--surface);
  padding: 48px clamp(24px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 12px 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.form-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-status {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--primary);
  min-height: 20px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer p + p {
  margin-top: 8px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .scroll-progress {
    display: block;
  }
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
  }

  .contact-info {
    position: sticky;
    top: 120px;
  }
}

@media (max-width: 900px) {
  .scroll-progress {
    display: none;
  }
}

@media (max-width: 768px) {
  .service {
    height: 90vh;
    height: 90svh;
    min-height: 560px;
  }

  .service-content {
    left: 24px;
    bottom: 40px;
    max-width: calc(100% - 48px);
  }

  .about-content h2,
  .section-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

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

  .contact-form-wrap {
    padding: 40px 24px;
  }

  .services-intro {
    padding: 80px 24px 40px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .about-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .about-actions .btn {
    width: 100%;
  }

  .service-content h3 {
    font-size: clamp(1.8rem, 11vw, 2.8rem);
  }

  .contact-info h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .contact-rating,
  .about-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .js .clip-reveal {
    clip-path: none !important;
  }

  .js .line-inner {
    transform: none !important;
  }

  .scroll-cue span::after {
    display: none;
  }
}

/* Outreach demo disclosure — otomatik kaldırmayın. */
.outreach-demo-notice{position:relative;z-index:9999;width:100%;padding:8px 16px;background:#111;color:#fff;font:600 12px/1.4 Arial,sans-serif;text-align:center;letter-spacing:.01em}
