:root {
  --bg: #080b0f;
  --bg-soft: #10151c;
  --surface: rgba(21, 27, 36, 0.92);
  --surface-strong: #161d26;
  --paper: #f6f0e7;
  --ink: #f8f4ee;
  --muted: #c7c0b7;
  --line: rgba(255, 255, 255, 0.12);
  --red: #d7242f;
  --red-dark: #8d171f;
  --orange: #ff8a2a;
  --steel: #9ba8b7;
  --charcoal: #0f141b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(215, 36, 47, 0.16), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 138, 42, 0.12), transparent 24%),
    linear-gradient(180deg, #080b0f 0%, #10151c 45%, #080b0f 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.button,
.eyebrow,
.section-kicker,
.stat-number {
  letter-spacing: -0.035em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(8, 11, 15, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(190px, 20vw, 276px);
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.38));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(248, 244, 238, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 10px 16px;
  transition: 180ms ease;
}

body[data-page="home"] .site-nav a[data-nav="home"],
body[data-page="services"] .site-nav a[data-nav="services"],
body[data-page="gallery"] .site-nav a[data-nav="gallery"],
body[data-page="contact"] .site-nav a[data-nav="contact"],
.site-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px clamp(18px, 5vw, 72px);
  color: white;
  background: linear-gradient(90deg, var(--red-dark), var(--red), #f05c28);
  box-shadow: 0 16px 45px rgba(215, 36, 47, 0.2);
}

.promo-banner p {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.promo-label,
.promo-banner a {
  flex: 0 0 auto;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-label {
  padding: 6px 10px;
  color: #22090c;
  background: white;
}

.promo-banner a {
  padding: 8px 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  min-height: calc(92vh - 92px);
  overflow: hidden;
  background: #07090d;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: #07090d;
  background-image:
    linear-gradient(90deg, rgba(8, 11, 15, 0.96) 0%, rgba(8, 11, 15, 0.76) 46%, rgba(8, 11, 15, 0.2) 100%),
    url("../assets/kapak.png");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: 100% 100%, auto 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 700ms ease, transform 5000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.96) 0%, rgba(8, 11, 15, 0.78) 44%, rgba(8, 11, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 11, 15, 0.6), rgba(8, 11, 15, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 100%);
  padding: clamp(72px, 9vw, 132px) clamp(20px, 7vw, 92px);
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffd4c7;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 7.8vw, 6.4rem);
  line-height: 0.92;
}

.hero-lead,
.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.cta-strip,
.contact-actions,
.btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-badges,
.hero-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.profile-badges {
  margin: 24px 0;
}

.profile-badges span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-dots {
  margin-top: 28px;
}

.hero-dots button {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 64px;
  background: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  transition: 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--red), #ff6a2b);
  box-shadow: 0 18px 44px rgba(215, 36, 47, 0.25);
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: white;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #ff8a78;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.intro-grid,
.process-band,
.gallery-summary,
.contact-layout,
.split-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.intro-copy,
.section-copy,
.service-card p,
.service-detail p,
.service-detail li,
.contact-list dt,
.map-placeholder p {
  color: var(--muted);
}

.intro-copy {
  font-size: 1.08rem;
}

.card,
.service-card,
.service-detail,
.contact-panel,
.contact-form,
.stat-card,
.testimonial-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(25, 32, 42, 0.94), rgba(13, 17, 23, 0.96));
  box-shadow: var(--shadow);
  color: var(--ink);
}

.service-preview,
.stats-strip,
.testimonial-grid,
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.service-detail,
.contact-panel,
.contact-form,
.testimonial-card,
.value-card {
  padding: clamp(24px, 4vw, 34px);
}

.service-card {
  min-height: 250px;
}

.service-card span,
.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-size: 0.84rem;
  font-weight: 950;
}

.stats-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.stat-card {
  padding: 26px;
}

.stat-number {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.process-band,
.cta-strip,
.map-placeholder {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 7vw, 92px);
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 36, 47, 0.2), transparent 28%),
    linear-gradient(135deg, #141a22, #090c11);
  color: white;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  color: rgba(255, 255, 255, 0.72);
}

.home-gallery,
.services-layout {
  display: grid;
  gap: 22px;
}

.home-gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.home-gallery-head h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.home-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
}

.home-gallery-grid img,
.work-photo img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery-grid img,
.work-photo,
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.page-hero {
  padding: clamp(72px, 10vw, 124px) clamp(20px, 7vw, 92px);
  color: white;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.96), rgba(8, 11, 15, 0.58)),
    url("../assets/workshop-hero.png") center / cover no-repeat;
}

.page-hero.compact {
  padding-block: clamp(64px, 8vw, 96px);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.service-detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
}

.service-detail ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.gallery-grid,
.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item,
.work-photo {
  position: relative;
  min-height: 220px;
  margin: 0;
  background: var(--surface-strong);
}

.gallery-item.large,
.work-photo.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.work-photo.wide {
  grid-column: span 2;
}

.gallery-item::after,
.work-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04));
}

.gallery-item span,
.gallery-item figcaption,
.work-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: white;
  font-weight: 900;
}

.gallery-item span {
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  text-align: center;
}

.accent-red,
.accent-dark,
.accent-steel,
.accent-blue {
  background: linear-gradient(135deg, #1a2029, #090c11);
}

.accent-red {
  background: linear-gradient(135deg, var(--red), #361016);
}

.accent-steel {
  background: linear-gradient(135deg, #7f8995, #1a2028);
}

.accent-blue {
  background: linear-gradient(135deg, #263545, #10151c);
}

.testimonial-stars {
  color: #ffcf65;
  letter-spacing: 0.08em;
}

.testimonial-copy {
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
}

.testimonial-meta span {
  color: var(--muted);
}

.cta-strip {
  justify-content: space-between;
  margin-top: clamp(28px, 5vw, 64px);
}

.cta-strip h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  color: white;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
  resize: vertical;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 0;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-status:not(:empty) {
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.form-status[data-status="success"] {
  color: #dcfce7;
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.12);
}

.form-status[data-status="error"] {
  color: #fee2e2;
  border-color: rgba(248, 113, 113, 0.38);
  background: rgba(185, 28, 28, 0.18);
}

.form-status[data-status="pending"] {
  color: #ffedd5;
  border-color: rgba(251, 146, 60, 0.34);
  background: rgba(251, 146, 60, 0.12);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.map-placeholder {
  min-height: 290px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 7vw, 92px);
  color: rgba(255, 255, 255, 0.72);
  background: #05070a;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: white;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 850;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 78px;
  }

  .promo-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .promo-label,
  .promo-banner a {
    align-self: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(13, 17, 23, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 72px;
  }

  .intro-grid,
  .service-preview,
  .process-band,
  .contact-layout,
  .gallery-summary,
  .split-card,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .home-gallery-head {
    align-items: start;
    flex-direction: column;
  }

  .home-gallery-grid,
  .gallery-grid,
  .work-gallery,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand img {
    width: 138px;
  }

  .site-nav {
    top: 70px;
  }

  .promo-banner {
    padding: 10px 14px 12px;
  }

  .promo-banner p {
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 64px 20px;
  }

  .hero h1,
  h1 {
    font-size: 2.65rem;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, var(--container));
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-gallery-grid,
  .gallery-grid,
  .work-gallery,
  .testimonial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
