:root {
  color-scheme: light;
  --ink: #10231f;
  --ink-2: #253c37;
  --muted: #64736e;
  --paper: #fbfaf5;
  --soft: #f2efe6;
  --line: #d9d2c3;
  --green: #2f6d5c;
  --green-dark: #143d34;
  --amber: #d9912b;
  --blue: #dfeef2;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(16, 35, 31, 0.18);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 35, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 31, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1rem, calc((100vw - var(--content)) / 2));
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(251, 250, 245, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(16, 35, 31, 0.12);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--white);
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a,
.nav-toggle {
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: currentColor;
}

.nav-phone {
  background: var(--amber);
  color: #19120a;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 8rem max(1rem, calc((100vw - var(--content)) / 2)) 2.25rem;
  color: var(--white);
}

.hero-media,
.mesh-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(16, 35, 31, 0.94), rgba(16, 35, 31, 0.58) 45%, rgba(16, 35, 31, 0.16)),
    url("images/hero-sineklik-montaji.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.mesh-overlay {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: 4.9rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 1.15rem 0 0;
  font-size: 1.28rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button,
.inline-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
}

.button-primary {
  background: var(--amber);
  color: #1c1306;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button:hover,
.button:focus-visible,
.inline-call:hover,
.inline-call:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(16, 35, 31, 0.18);
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 920px;
  margin: 3rem 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts div {
  padding: 1rem;
  background: rgba(16, 35, 31, 0.36);
}

.hero-facts dt {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--amber);
}

.hero-facts dd {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.band,
.service-map,
.gallery,
.faq,
.contact-band {
  padding: 5rem max(1rem, calc((100vw - var(--content)) / 2));
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.process-copy h2,
.choice h2,
.contact-band h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.intro > p,
.gallery-heading p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.1rem;
}

.service-map {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-grid article {
  min-height: 230px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.service-grid article:nth-child(2n) {
  background: var(--blue);
}

.service-number {
  color: var(--amber);
  font-weight: 900;
}

.service-grid h3 {
  margin: 1.1rem 0 0.45rem;
  font-size: 1.32rem;
  letter-spacing: 0;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.process-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-copy p,
.process-copy li {
  color: rgba(255, 255, 255, 0.86);
}

.steps {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
}

.steps strong {
  color: var(--white);
}

.inline-call {
  margin-top: 1.4rem;
  background: var(--amber);
  color: #1b1206;
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.gallery button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery button:hover img,
.gallery button:focus-visible img {
  transform: scale(1.035);
}

.gallery figcaption {
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  color: var(--ink-2);
  font-weight: 800;
}

.choice {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  background: var(--soft);
}

.choice-list {
  display: grid;
  gap: 0.8rem;
}

.choice-list p {
  margin: 0;
  padding: 1rem;
  border-left: 4px solid var(--amber);
  background: rgba(255, 255, 255, 0.62);
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 860px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 900;
}

.faq details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--green);
  color: var(--white);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem 1rem 5.25rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer img {
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--amber);
  font-weight: 900;
}

.site-footer .footer-secondary-phone {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.sticky-call {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 14;
  transform: translateX(-50%);
  display: none;
  justify-content: center;
  width: min(92vw, 360px);
  min-height: 50px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--amber);
  color: #1b1206;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(16, 35, 31, 0.28);
}

.lightbox {
  width: min(94vw, 1040px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(16, 35, 31, 0.78);
}

.lightbox img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.lightbox p {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(16, 35, 31, 0.84);
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.7rem 1rem;
  }

  .brand {
    overflow: hidden;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a:not(.nav-phone) {
    display: none;
  }

  .site-nav .nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0.7rem 0.75rem;
    min-width: 58px;
    font-size: 0;
  }

  .site-nav .nav-phone::after {
    content: "Ara";
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .intro,
  .process,
  .choice,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band {
    display: grid;
  }

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

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

@media (max-width: 620px) {
  .brand span {
    max-width: 8.5rem;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    min-height: 92svh;
    padding-top: 7rem;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(16, 35, 31, 0.9), rgba(16, 35, 31, 0.72) 46%, rgba(16, 35, 31, 0.32)),
      url("images/hero-sineklik-montaji.webp") center / cover no-repeat;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 2.85rem;
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .band,
  .service-map,
  .gallery,
  .faq,
  .contact-band {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .intro h2,
  .section-heading h2,
  .process-copy h2,
  .choice h2,
  .contact-band h2 {
    font-size: 2rem;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .button,
  .inline-call,
  .contact-actions a {
    width: 100%;
  }

  .sticky-call.is-visible {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
