:root {
  --ink: #171413;
  --muted: #746965;
  --paper: #fbfaf7;
  --cream: #eef4ee;
  --rose: #c96b76;
  --wine: #702d39;
  --sage: #6c806b;
  --gold: #c99a48;
  --charcoal: #211c1a;
  --line: rgba(23, 20, 19, .14);
  --shadow: 0 24px 70px rgba(30, 20, 18, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.guard-veil::before {
  content: "Güzellik Durağı koruma modu";
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(20, 13, 12, .9);
  font-size: clamp(26px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 245, .78);
  border-bottom: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--rose));
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(112,45,57,.26);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: #3c3431;
  font-size: 14px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: var(--charcoal);
  transform: translateY(-2px);
}

main { overflow: hidden; }

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 48px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18,12,10,.80), rgba(18,12,10,.22), rgba(18,12,10,.68)),
    var(--hero) center/cover;
}

.hero.narrow { min-height: 64vh; }

.hero-content {
  max-width: 850px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 112px);
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 { font-size: 22px; }

.lead {
  max-width: 680px;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2vw, 24px);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section.alt { background: var(--cream); }
.section.dark { color: #fff; background: var(--charcoal); }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--wine);
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(112,45,57,.25);
  background: var(--rose);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
}

.btn.light {
  color: var(--ink);
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, filter .35s ease;
}

.photo-stack img:first-child {
  inset: 0 15% 18% 0;
}

.photo-stack img:last-child {
  inset: 38% 0 0 35%;
  border: 10px solid var(--paper);
}

.photo-stack:hover img:first-child { transform: rotate(-2deg) scale(1.02); }
.photo-stack:hover img:last-child { transform: rotate(2deg) scale(1.04); }

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

.service-card,
.team-card,
.post-card,
.price-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(43, 30, 25, .09);
}

.service-card img,
.team-card img,
.post-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform .45s ease;
}

.service-card:hover img,
.team-card:hover img,
.post-card:hover img {
  transform: scale(1.08);
}

.card-pad { padding: 24px; }

.service-card .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(23,20,19,.82);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ribbon div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.ribbon strong {
  display: block;
  font-size: 32px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .35s ease, filter .35s ease;
}

.mosaic img:hover {
  transform: scale(.985);
  filter: saturate(1.18) contrast(1.05);
}

.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

.price-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.price-list {
  display: grid;
  gap: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.price-row span { color: var(--muted); }

.appointment {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 760px;
  background: var(--charcoal);
}

.appointment-media {
  background: var(--hero) center/cover;
}

.appointment-form {
  padding: clamp(34px, 6vw, 76px);
  color: #fff;
}

form {
  display: grid;
  gap: 14px;
}

input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: inherit;
  background: rgba(255,255,255,.08);
  font: inherit;
  outline: none;
  transition: border .2s ease, background .2s ease;
}

textarea { min-height: 135px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.13);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-tile {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.map {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(23,20,19,.18), rgba(23,20,19,.18)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=85") center/cover;
}

.about-band {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: end;
}

.about-band img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.about-band img:first-child { grid-column: span 7; }
.about-band img:last-child { grid-column: span 5; height: 390px; }

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

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.look {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 8px;
  background: #222;
}

.look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.look:hover img { transform: scale(1.08); }

.look span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(0,0,0,.45);
  border-radius: 999px;
  font-weight: 800;
}

.bridal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.bridal-layout > div {
  min-height: 650px;
  padding: clamp(36px, 6vw, 80px);
}

.bridal-photo {
  background: var(--hero) center/cover;
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 22px 22px 22px 74px;
  border-radius: 8px;
  background: #fff;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border-radius: 50%;
  font-weight: 900;
}

.site-footer {
  color: #fff;
  background: #151110;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 32px;
  padding: 52px clamp(18px, 5vw, 72px);
}

.cg-signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(201,154,72,.28), rgba(201,107,118,.18));
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.1);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (max-width: 980px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .hero { padding-top: 64px; min-height: 78vh; }
  .split,
  .price-layout,
  .appointment,
  .contact-wrap,
  .bridal-layout,
  .footer-inner { grid-template-columns: 1fr; }
  .service-grid,
  .team-grid,
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ribbon { grid-template-columns: repeat(2, 1fr); }
  .lookbook { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .photo-stack { min-height: 440px; }
}

@media (max-width: 640px) {
  .nav a { font-size: 13px; padding: 7px 9px; }
  .service-grid,
  .team-grid,
  .blog-grid,
  .ribbon,
  .lookbook,
  .mosaic { grid-template-columns: 1fr; }
  .mosaic .wide { grid-column: auto; }
  .mosaic .tall { grid-row: auto; }
  .about-band { display: block; }
  .about-band img { height: 360px; margin-bottom: 14px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .footer-bottom { flex-direction: column; }
}
