/* Kanpolat Dekorasyon — Design System */
:root {
  --cream: #f7f4ef;
  --cream-dark: #ebe4d9;
  --gold: #c69a4a;
  --gold-dark: #9b7434;
  --gold-light: #e2c07a;
  --gold-muted: rgba(198, 154, 74, 0.16);
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-soft: #1f1f1f;
  --text: #2b2b2b;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 10, 10, 0.14);
  --radius: 4px;
  --radius-lg: 6px;
  --radius-pill: 999px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --header-height: 88px;
  --container: 1200px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(198, 154, 74, 0.04) 49.5%, rgba(198, 154, 74, 0.04) 50.5%, transparent 50.5%) 0 0 / 48px 48px,
    var(--cream);
  -webkit-font-smoothing: antialiased;
}



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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 144, 77, 0.18);
  box-shadow: 0 8px 32px rgba(10, 10, 10, 0.06);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
  justify-self: start;
  position: relative;
  padding-left: 1rem;
}

.logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 2.25rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}

.logo__mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  /* Intentionally left empty: logo sizing is handled in the main 768px block below */
}





.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo__name {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  line-height: 1;
}

.logo__tagline {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-dark);
  line-height: 1;
}

.logo__img {
  height: auto;
  width: auto;
}

.logo__img--footer {
  height: 120px;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  justify-self: center;
  padding: 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(198, 154, 74, 0.22);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.nav a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform var(--transition);
}

.nav a:hover {
  color: var(--gold-dark);
  background: var(--gold-muted);
}

.nav a:hover::after {
  transform: translateX(-50%) scale(1);
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  justify-self: end;
}

.header__cta {
  flex-shrink: 0;
  border-radius: 999px;
  padding-inline: 1.35rem;
  box-shadow: 0 4px 14px rgba(198, 154, 74, 0.28);
}

.header__cta:hover {
  box-shadow: 0 6px 18px rgba(198, 154, 74, 0.34);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  padding-top: var(--header-height);
  background: var(--cream);
}

.hero__layout {
  position: relative;
  min-height: clamp(480px, 62vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: var(--header-height) 0 0 28%;
  z-index: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    var(--cream) 0%,
    rgba(247, 244, 239, 0.85) 14%,
    rgba(247, 244, 239, 0.35) 28%,
    transparent 42%
  );
}

.hero__frame {
  position: absolute;
  inset: 1.5rem 1.5rem 1.5rem 0;
  border: 1px solid rgba(198, 154, 74, 0.35);
  border-left: none;
  pointer-events: none;
  z-index: 2;
}

.hero__frame::before,
.hero__frame::after {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-color: var(--gold);
  border-style: solid;
}

.hero__frame::before {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.hero__frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(3rem, 6vw, 5rem);
  padding-inline: 2rem;
}

.hero__content {
  max-width: 36rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 154, 74, 0.2);
  border-left: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(10, 10, 10, 0.08);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(198, 154, 74, 0.3);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.hero__text {
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 30rem;
  line-height: 1.75;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero__actions .btn {
  border-radius: 999px;
}




/* Quick Services */
.quick-services {
  padding: 0;
  background: var(--charcoal);
  position: relative;
}

.quick-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.quick-services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.quick-service {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 1.35rem 1.75rem;
  border-right: 1px solid rgba(198, 154, 74, 0.2);
  transition: color var(--transition), background var(--transition);
}

.quick-service:last-child {
  border-right: none;
}

.quick-service:hover {
  color: var(--gold-light);
  background: rgba(198, 154, 74, 0.08);
}

.quick-service__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(198, 154, 74, 0.12);
  border: 1px solid rgba(198, 154, 74, 0.25);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.quick-service__icon svg {
  width: 18px;
  height: 18px;
  transform: rotate(-45deg);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section__label--center {
  display: flex;
  justify-content: center;
}

.section__label--center::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3rem;
  max-width: 640px;
  line-height: 1.15;
}

.section__title--center {
  text-align: center;
  margin-inline: auto;
}

/* Services */
.services {
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  counter-reset: service;
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 2rem 2rem 2.5rem;
  border-radius: var(--radius-lg);
  border: none;
  border-top: 3px solid var(--gold);
  box-shadow: 0 1px 0 rgba(198, 154, 74, 0.15);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  counter-increment: service;
  grid-column: span 2;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card::before {
  content: counter(service, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-muted);
  pointer-events: none;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-top-color: var(--gold-dark);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding: 0.5rem;
  background: var(--gold-muted);
  border-radius: var(--radius);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-right: 2rem;
}

.service-card__link {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.service-card__link:hover {
  transform: translateX(4px);
}


/* About */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__media {
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin: 1.5rem 0 1.5rem 1.5rem;
}

.about__media::before {
  content: '';
  position: absolute;
  inset: -1.25rem 1.25rem 1.25rem -1.25rem;
  border: 1px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}

.about__media::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: -0.75rem;
  width: 4rem;
  height: 4rem;
  background: var(--gold-muted);
  z-index: -1;
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.about__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.feature p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Projects */
.projects {
  background: var(--cream);
}

.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.projects__header .section__title {
  margin-bottom: 0;
}

.projects__all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}

.projects__all-link:hover {
  color: var(--gold-dark);
}

.projects__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.project-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card--featured {
  grid-row: span 2;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card__image {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  height: 100%;
  min-height: 220px;
}

.project-card--featured .project-card__image {
  min-height: 100%;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.03);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 10, 10, 0.55) 70%,
    rgba(10, 10, 10, 0.85) 100%
  );
  transition: background var(--transition);
}

.project-card:hover .project-card__overlay {
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(10, 10, 10, 0.65) 65%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

.project-card__index {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.project-card__overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.project-card--featured .project-card__overlay h3 {
  font-size: 1.5rem;
}

.project-card__overlay p {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

/* Process */
.process {
  background: var(--white);
}


.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  padding-top: 1rem;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 8px,
    transparent 8px,
    transparent 16px
  );
}

.process-step {
  text-align: left;
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(198, 154, 74, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.process-step__icon {
  width: 48px;
  height: 48px;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process-step__icon svg {
  width: 24px;
  height: 24px;
}

.process-step__number {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
  margin-inline: 0;
}

/* CTA Banner */
.cta-banner {
  background:
    linear-gradient(115deg, rgba(10, 10, 10, 0.94) 55%, rgba(155, 116, 52, 0.85) 55%),
    url('assets/cta-bg.jpg') center / cover no-repeat;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 55%;
  width: 1px;
  height: 100%;
  background: rgba(226, 192, 122, 0.4);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Footer */
.footer {
  background:
    linear-gradient(180deg, var(--charcoal-soft) 0%, var(--black) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  border-top: none;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__col a,
.footer__col li {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer__bottom p {
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .projects__grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card--featured {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    gap: 0.15rem;
    padding: 0.25rem 0.35rem;
  }

  .nav a {
    font-size: 0.62rem;
    padding: 0.4rem 0.65rem;
  }


  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__media {
    max-width: 480px;
  }

  .process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .process__timeline::before {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    position: static;
    inset: auto;
    top: auto;
    flex-direction: row;
    justify-content: center;
    padding: 0.25rem 0.35rem;
    gap: 0.15rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(198, 154, 74, 0.22);
    transform: none;
    z-index: auto;
  }

  .nav a::after {
    display: none;
  }

  .header__actions .nav-toggle {
    display: none;
  }

  .header__cta {
    display: none;
  }
}



@media (max-width: 768px) {
  .nav {
    gap: 0.1rem;
    padding: 0.2rem 0.25rem;
  }

  .nav a {
    font-size: 0.5rem;
    padding: 0.35rem 0.45rem;
    letter-spacing: 0.03em;
  }

  .hero__content {
    margin-left: 0;
    padding: 1.5rem;
    border-left-width: 3px;
  }

  .hero__layout {
    min-height: auto;
    display: grid;
    grid-template-rows: auto auto;
  }

  .hero__image-wrap {
    position: relative;
    inset: auto;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    aspect-ratio: 16 / 9;
    max-height: clamp(220px, 48vw, 340px);
    clip-path: none;
  }

  .hero__frame {
    display: none;
  }

  .hero__image-wrap::before {
    background: linear-gradient(
      180deg,
      rgba(247, 244, 239, 0) 72%,
      var(--cream) 100%
    );
  }

  .hero__content-wrap {
    padding-block: 1.5rem 2rem;
  }

  .hero__content {
    max-width: none;
  }


  :root {
    --header-height: 76px;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .logo__text {
    display: none;
  }




  .logo__mark {
    width: 56px;
    height: 56px;
  }









  .header__cta {
    display: none;
  }

.header__actions .nav-toggle {
    display: none;
  }


  .about__media {
    max-width: none;
    margin: 1rem 0 1rem 1rem;
  }

  .about__media img {
    aspect-ratio: 4 / 3;
  }

  .project-card--featured {
    grid-column: span 1;
  }

  .project-card__image img {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }

  .quick-services__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-service {
    border-right: none;
    border-bottom: 1px solid rgba(198, 154, 74, 0.2);
    justify-content: center;
  }

  .quick-service:last-child {
    border-bottom: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .services__grid,
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .cta-banner {
    background:
      linear-gradient(rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.92)),
      url('assets/cta-bg.jpg') center / cover no-repeat;
  }

  .cta-banner::before {
    display: none;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .projects__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .quick-service {
    padding: 1rem 1.25rem;
  }

  .process__timeline {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* Placeholder styling when images are missing */
img:not([src]),
img[src=''] {
  background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
  min-height: 200px;
}

/* =============================================
   HAMBURGER MENU — MOBILE NAV
   ============================================= */

@media (max-width: 768px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  /* Show hamburger button */
  .nav-toggle {
    display: flex !important;
  }

  /* Hide desktop CTA in header */
  .header__cta {
    display: none !important;
  }

  /* Mobile nav panel */
  .nav {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: min(320px, 80vw);
    height: 100dvh;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 !important;
    background: var(--white) !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    z-index: 200;
    transition: right 0.3s ease !important;

    overflow-y: auto;
  }

  .nav::before {
    content: 'MENÜ';
    display: block;
    width: 100%;
    padding: 1.5rem 1.75rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold);
    border-bottom: 1px solid rgba(198,154,74,0.18);
    margin-bottom: 0.5rem;
  }

  .nav.nav--open {
    right: 0;
  }

  .nav a {
    width: 100%;
    font-size: 0.9rem !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 1rem 1.75rem !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(198,154,74,0.1);
    color: var(--charcoal) !important;
    transition: background var(--transition), color var(--transition);
  }

  .nav a:hover {
    background: var(--gold-muted) !important;
    color: var(--gold-dark) !important;
  }

  .nav a::after {
    display: none !important;
  }

  /* Hamburger → X animation */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Nav overlay (dim background) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 10, 10, 0.45);
}

body.nav-open .nav-overlay {
  display: block;
}

/* Also hide nav on tablet if not open (override existing 1024px rules) */
@media (max-width: 768px) {
  .nav:not(.nav--open) {
    right: -100%;
  }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* =============================================
   RESPONSIVE FIXES
   ============================================= */

/* Tablet (769px – 1024px): keep horizontal nav, hide hamburger */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-toggle {
    display: none !important;
  }

  .header__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .header__cta {
    display: inline-flex !important;
  }

  .nav {
    position: static !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    flex-direction: row !important;
    padding: 0.25rem 0.35rem !important;
    background: rgba(255,255,255,0.65) !important;
    border: 1px solid rgba(198,154,74,0.22) !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: none !important;
    overflow: visible;
  }

  .nav::before {
    display: none;
  }

  .nav a {
    width: auto !important;
    font-size: 0.62rem !important;
    padding: 0.4rem 0.65rem !important;
    border-bottom: none !important;
    border-radius: var(--radius-pill) !important;
  }
}

/* Small mobile (<480px) extra tweaks */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* =============================================
   İLETİŞİM & HARİTA BÖLÜMÜ
   ============================================= */
.contact-section {
  background: var(--white);
  padding: 5rem 0;
  border-top: 3px solid var(--gold);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-section__info .section__title {
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition);
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-item__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border: 1px solid rgba(198,154,74,0.25);
  color: var(--gold);
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--gold-dark);
}

.contact-section__cta {
  border-radius: 999px;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(198,154,74,0.28);
}

.contact-section__map {
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(198,154,74,0.2);
}

.contact-section__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-section__map {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3.5rem 0;
  }

  .contact-section__map {
    height: 280px;
  }
}
