/* Tüm sayfalarda kullanılan ortak üst menü, mobil menü ve footer */
:root {
  --layout-brown: #2d2119;
  --layout-brown-deep: #1f1813;
  --layout-gold: #c99659;
  --layout-cream: #f2ede5;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 86px;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(84px, 9vw, 176px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  transition: height .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(36, 27, 21, .94);
  box-shadow: 0 8px 30px rgba(20, 13, 8, .14);
  backdrop-filter: blur(16px);
}

.site-header > .logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  z-index: 2;
}

.layout-logo {
  display: inline-block;
  text-decoration: none;
}

.layout-logo img {
  width: 204px;
  height: auto;
  display: block;
  transition: width .3s ease;
}

.site-header .layout-logo img {
  width: 90px;
}

.site-header.scrolled .layout-logo img {
  width: 74px;
}

.footer-brand .layout-logo img {
  width: 248px;
}

.primary-nav {
  display: contents;
}

.nav-left,
.nav-right {
  grid-row: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  grid-column: 1;
  justify-self: start;
  gap: clamp(18px, 2vw, 32px);
}

.nav-right {
  grid-column: 3;
  justify-self: end;
  gap: clamp(18px, 1.7vw, 28px);
}

.nav-left > a,
.nav-right > a {
  position: relative;
  padding: 9px 0;
  color: #fff;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-left > a::after,
.nav-right > a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--layout-gold);
  transition: right .25s ease;
}

.nav-left > a:hover::after,
.nav-right > a:hover::after,
.nav-left > a[aria-current="page"]::after,
.nav-right > a[aria-current="page"]::after {
  right: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 2px;
}

.social-link {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}

.social-link::after {
  display: none;
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link svg .icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-link svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
}

.site-footer {
  padding: 72px 6vw 26px;
  display: grid;
  grid-template-columns: minmax(230px, .42fr) minmax(0, 1.58fr);
  gap: 58px clamp(44px, 5vw, 76px);
  align-items: start;
  color: #e8dfd5;
  background: var(--layout-brown-deep);
}

.footer-brand .layout-logo {
  color: #fff;
}

.footer-brand > p {
  max-width: 340px;
  margin: 24px 0 0;
  color: #aaa096;
  font-size: 12px;
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  grid-template-columns:
    minmax(105px, .72fr)
    minmax(155px, 1.08fr)
    minmax(145px, 1fr)
    minmax(210px, 1.35fr);
  gap: clamp(22px, 2.5vw, 44px);
}

.site-footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
}

.site-footer .footer-column > span {
  margin-bottom: 8px;
  color: #a8896d;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .17em;
}

.site-footer .footer-column a,
.site-footer .footer-column p {
  margin: 0;
  color: #e8dfd5;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer .footer-column a {
  overflow-wrap: anywhere;
}

.site-footer .footer-column a:hover {
  color: var(--layout-gold);
}

.footer-column-placeholder {
  min-height: 42px;
}

.site-footer .footer-social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8cec4;
  font-size: 11px;
  white-space: nowrap;
}

.footer-social-item i {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  font-style: normal;
}

.footer-social-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-item svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-column-map {
  min-width: 0;
}

.footer-map-frame {
  width: 100%;
  max-width: 220px;
  min-width: 0;
  height: 155px;
  border: 1px solid rgba(223, 189, 145, .28);
  filter: saturate(.75) contrast(.95);
}

.site-footer .footer-projects,
.site-footer .footer-services {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0 24px;
  align-items: start;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-projects-heading,
.footer-services-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}

.footer-projects-heading > span,
.footer-services-heading > span {
  color: #a8896d;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .17em;
}

.footer-projects-grid,
.footer-services-grid {
  display: grid;
}

.footer-projects-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px clamp(22px, 3vw, 52px);
}

.footer-projects-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 52px);
}

.footer-services-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-projects-grid a,
.footer-services-grid a {
  color: #e8dfd5;
  font-size: 11px;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-projects-grid a:hover,
.footer-services-grid a:hover {
  color: var(--layout-gold);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #9f958b;
  font-size: 9px;
  letter-spacing: .08em;
}

.site-footer .footer-bottom p {
  margin: 0;
  font-size: 11px;
}

.site-footer .footer-bottom a {
  color: inherit;
  font-size: 11px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.7vw, 48px);
}

.footer-legal-separator {
  width: 1px;
  height: 13px;
  flex: 0 0 1px;
  background: rgba(223, 189, 145, .42);
}

.footer-signature {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  column-gap: clamp(28px, 3.8vw, 68px);
}

.footer-signature > p {
  grid-column: 1;
}

.footer-signature > .footer-legal {
  grid-column: 2;
}

.footer-signature > .footer-producer {
  grid-column: 3;
  justify-self: end;
}

.site-footer .footer-bottom .footer-legal a {
  font-size: 10px;
}

.site-footer .footer-bottom a:hover {
  color: var(--layout-gold);
}

@media (max-width: 1080px) and (min-width: 901px) {
  .site-header {
    padding-inline: 6vw;
    column-gap: clamp(84px, 9vw, 98px);
  }

  .nav-left,
  .nav-right {
    gap: 14px;
  }

  .nav-left > a,
  .nav-right > a {
    font-size: 12px;
    font-weight: 600;
  }

  .site-header .layout-logo img {
    width: 82px;
  }

  .social-links {
    gap: 7px;
  }
}

@media (max-width: 1240px) and (min-width: 901px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: auto minmax(280px, 560px);
    align-items: end;
    gap: 34px;
  }

  .footer-brand > p {
    max-width: 560px;
    margin: 0;
  }

  .footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 74px;
    padding: 0 18px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    column-gap: 0;
  }

  .site-header::before {
    content: "";
    position: fixed;
    z-index: 0;
    inset: 0;
    background: rgba(20, 14, 11, .48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .32s ease, visibility .32s ease;
  }

  body.menu-open .site-header::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.scrolled {
    height: 68px;
  }

  .site-header > .logo {
    grid-column: 2;
  }

  .site-header .layout-logo img {
    width: 78px;
  }

  .site-header.scrolled .layout-logo img {
    width: 70px;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle i {
    width: 23px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform .3s ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0 0 0 auto;
    width: min(82vw, 380px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding: 108px 30px 38px;
    overflow-y: auto;
    color: #fff;
    background: var(--layout-brown);
    visibility: hidden;
    box-shadow: -24px 0 55px rgba(18, 12, 9, .26);
    transform: translateX(100%);
    pointer-events: none;
    transition: visibility .34s ease, transform .34s ease;
  }

  .primary-nav.open {
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-left,
  .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 17px;
  }

  .nav-left > a,
  .nav-right > a {
    padding: 3px 0 7px;
    font: 500 clamp(25px, 6.5vw, 34px) / 1.1 'Marcellus', serif;
    letter-spacing: -.025em;
  }

  .nav-left > a::after,
  .nav-right > a::after {
    bottom: 0;
  }

  .social-links {
    margin: 8px 0 0;
    gap: 16px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
  }

  .social-link svg {
    width: 22px;
    height: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 62px 24px 24px;
  }

  .footer-columns {
    width: 100%;
    max-width: 680px;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    grid-template-areas:
      "menu contact"
      "social map";
    gap: 46px 32px;
  }

  .footer-column-menu { grid-area: menu; }
  .footer-column-social { grid-area: social; }
  .footer-column-contact { grid-area: contact; }
  .footer-column-map { grid-area: map; }

  .footer-map-frame {
    min-width: 0;
  }

  .site-footer .footer-projects,
  .site-footer .footer-services {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 28px;
  }

  .footer-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 28px;
  }

  .footer-services-column {
    display: contents;
  }

  .footer-bottom {
    grid-column: auto;
  }

  .footer-signature {
    column-gap: clamp(14px, 2vw, 20px);
  }

  .footer-legal {
    gap: clamp(14px, 2vw, 22px);
  }

  .site-footer .footer-bottom p,
  .site-footer .footer-bottom a {
    font-size: 10px;
  }

  .site-footer .footer-bottom .footer-legal a {
    font-size: 9px;
  }
}

@media (max-width: 760px) {
  .footer-signature {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px 28px;
  }

  .footer-signature > .footer-legal {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1px auto 1px auto;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .footer-signature > p {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-signature > .footer-producer {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 520px) {
  .site-header .layout-logo img {
    width: 72px;
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 22px;
  }

  .footer-bottom {
    padding-top: 24px;
  }

  .footer-signature {
    gap: 24px 20px;
  }

  .footer-signature > .footer-legal {
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .footer-signature {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }

  .footer-signature > .footer-legal {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
    margin-bottom: 7px;
  }

  .site-footer .footer-bottom .footer-legal a {
    font-size: 8.5px;
    letter-spacing: .03em;
  }

  .footer-signature > p {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-signature > .footer-producer {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .primary-nav,
  .menu-toggle i,
  .social-link,
  .et-scroll-top,
  .et-phone-widget,
  .et-wa-widget,
  .et-wa-widget-label,
  .et-wa-widget-icon,
  .et-wa-chat {
    transition: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.et-contact-widgets {
  position: fixed;
  z-index: 1100;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
}

.et-scroll-top {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #2d2119;
  border: 1px solid rgba(45, 33, 25, .18);
  border-radius: 50%;
  background: #f5eee5;
  box-shadow: 0 9px 25px rgba(45, 33, 25, .22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.92);
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .25s ease, color .25s ease;
}

.et-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.et-scroll-top:hover,
.et-scroll-top:focus-visible {
  color: #fff;
  background: #8a6341;
  outline: none;
  transform: translateY(-2px);
}

.et-scroll-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.et-phone-widget {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 56px;
}

.et-phone-widget-label {
  width: 0;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  color: #fff;
  border-radius: 28px 0 0 28px;
  background: #2d2119;
  box-shadow: 0 12px 30px rgba(31, 24, 19, .22);
  opacity: 0;
  text-decoration: none;
  transform: translateX(12px);
  transition: width .35s cubic-bezier(.22, .61, .36, 1), padding .35s ease, opacity .25s ease, transform .35s ease;
}

.et-phone-widget-label span {
  color: #dfbd91;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
  white-space: nowrap;
}

.et-phone-widget-label strong {
  margin-top: 4px;
  font: 500 15px/1 'Marcellus', Georgia, serif;
  white-space: nowrap;
}

.et-phone-widget-button {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
}

.et-phone-widget-button {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #765437, #2d2119);
  box-shadow: 0 9px 25px rgba(45, 33, 25, .3);
  transition: background .25s ease, border-radius .35s ease, transform .25s ease;
}

.et-phone-widget-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.et-phone-widget.is-expanded .et-phone-widget-label {
  width: 181px;
  padding: 0 18px;
  opacity: 1;
  transform: none;
}

.et-phone-widget.is-expanded .et-phone-widget-button {
  border-radius: 0 50% 50% 0;
}

.et-phone-widget:hover .et-phone-widget-button,
.et-phone-widget-button:focus-visible {
  background: #8a6341;
  outline: none;
  transform: translateY(-2px);
}

.et-phone-widget-label:hover,
.et-phone-widget-label:focus-visible {
  color: #fff;
  background: #403027;
  outline: 2px solid #d9b17e;
  outline-offset: 2px;
}

.et-wa-widget {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 56px;
  padding: 0;
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.et-wa-widget-label {
  width: 0;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  color: #fff;
  border-radius: 28px 0 0 28px;
  background: #128c7e;
  box-shadow: 0 12px 30px rgba(18, 140, 126, .22);
  opacity: 0;
  text-align: left;
  transform: translateX(12px);
  transition: width .35s cubic-bezier(.22, .61, .36, 1), padding .35s ease, opacity .25s ease, transform .35s ease;
}

.et-wa-widget-label span {
  color: #c3f5d5;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .13em;
  white-space: nowrap;
}

.et-wa-widget-label strong {
  margin-top: 5px;
  font: 500 16px/1.2 'Marcellus', Georgia, serif;
  white-space: nowrap;
}

.et-wa-widget-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  flex: 0 0 56px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 26px rgba(37, 211, 102, .38);
  transition: border-radius .35s ease, box-shadow .24s ease, transform .24s ease;
}

.et-wa-widget-icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -5px;
  border-radius: inherit;
  background: rgba(37, 211, 102, .24);
  animation: et-wa-pulse 2.2s infinite;
}

.et-wa-brand-icon {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
  stroke: none;
}

.et-wa-widget:hover .et-wa-widget-icon,
.et-wa-widget:focus-visible .et-wa-widget-icon {
  box-shadow: 0 11px 32px rgba(37, 211, 102, .52);
  transform: scale(1.07);
}

.et-wa-widget:focus-visible { outline: none; }

.et-wa-widget.is-expanded .et-wa-widget-label {
  width: 220px;
  padding: 0 18px;
  opacity: 1;
  transform: none;
}

.et-wa-widget.is-expanded .et-wa-widget-icon {
  border-radius: 0 50% 50% 0;
}

.et-wa-widget.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.76);
  transition: opacity .24s ease, transform .24s ease;
}

.et-wa-header button,
.et-wa-input-area button {
  border: 0;
  cursor: pointer;
}

.et-wa-chat {
  position: fixed;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 500px;
  max-height: calc(100dvh - 54px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #25221f;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(22, 16, 12, .3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(.96);
  transition: opacity .28s ease, transform .28s ease;
}

.et-wa-chat.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.et-wa-header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 14px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.et-wa-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .21);
}

.et-wa-header > div { min-width: 0; flex: 1; }
.et-wa-header strong { display: block; font-size: 15px; }
.et-wa-header small { display: flex; align-items: center; gap: 6px; margin-top: 3px; font-size: 11px; }
.et-wa-header small i { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: #b8f5cf; box-shadow: 0 0 0 3px rgba(184, 245, 207, .19); }
.et-wa-header button { width: 31px; height: 31px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: rgba(255, 255, 255, .16); font-size: 20px; line-height: 1; }
.et-wa-header button:hover, .et-wa-header button:focus-visible { background: rgba(255, 255, 255, .3); outline: none; }

.et-wa-body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: #f5f8f6;
}

.et-wa-message {
  position: relative;
  width: fit-content;
  max-width: 88%;
  padding: 12px 13px 20px;
  border-radius: 15px 15px 15px 4px;
  background: #fff;
  box-shadow: 0 2px 9px rgba(20, 31, 24, .1);
}

.et-wa-message p { margin: 0; font-size: 13px; line-height: 1.5; }
.et-wa-message time { position: absolute; right: 10px; bottom: 5px; color: #9a9a9a; font-size: 9px; }

.et-wa-input-area {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding: 11px;
  border-top: 1px solid #e8ece9;
  background: #fff;
}

.et-wa-input-area textarea {
  min-height: 40px;
  max-height: 96px;
  flex: 1;
  resize: none;
  padding: 10px 13px;
  color: #302c27;
  border: 1px solid #e0e4e1;
  border-radius: 21px;
  outline: none;
  font: 13px/1.4 'DM Sans', sans-serif;
}

.et-wa-input-area textarea:focus { border-color: #25d366; box-shadow: 0 0 0 3px rgba(37, 211, 102, .12); }
.et-wa-input-area button { width: 40px; height: 40px; display: grid; flex: 0 0 auto; place-items: center; color: #fff; border-radius: 50%; background: #25d366; }
.et-wa-input-area button:hover, .et-wa-input-area button:focus-visible { background: #128c7e; outline: none; }
.et-wa-input-area button svg { width: 19px; height: 19px; fill: currentColor; }
.et-wa-footer { padding: 8px 12px; color: #7e837f; background: #f8faf9; font-size: 10px; text-align: center; }
.et-wa-footer span { display: inline-flex; align-items: center; justify-content: center; gap: 5px; }
.et-wa-footer svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

body.menu-open .et-contact-widgets { opacity: 0; pointer-events: none; }

/* 27 · Elmas İçinde Ok */
.diamond-arrow {
  width: 32px;
  height: 32px;
  display: inline-grid;
  flex: 0 0 auto;
  align-self: center;
  place-items: center;
  border: 1px solid currentColor;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
  transform: rotate(45deg);
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.diamond-arrow::before {
  content: '›';
  display: block;
  font: 400 25px/.7 Georgia, 'Times New Roman', serif;
  transform: translateY(-1px) rotate(-45deg);
}

.diamond-arrow-small {
  width: 22px;
  height: 22px;
}

.diamond-arrow-small::before { font-size: 19px; }

a:hover .diamond-arrow,
a:focus-visible .diamond-arrow,
button:hover .diamond-arrow,
button:focus-visible .diamond-arrow {
  color: var(--brown, #2d2119);
  border-color: var(--gold, #c99659);
  background: var(--gold, #c99659);
  transform: translate(3px, -3px) rotate(45deg);
}

.button-gold:hover .diamond-arrow,
.button-gold:focus-visible .diamond-arrow,
.page-cta > a:hover .diamond-arrow,
.page-cta > a:focus-visible .diamond-arrow,
.references-cta > a:hover .diamond-arrow,
.references-cta > a:focus-visible .diamond-arrow,
.project-detail-cta > a:hover .diamond-arrow,
.project-detail-cta > a:focus-visible .diamond-arrow {
  color: var(--gold, #c99659);
  border-color: var(--brown, #2d2119);
  background: var(--brown, #2d2119);
}

.view:has(.diamond-arrow) {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.error-directory-grid .diamond-arrow {
  width: 22px;
  height: 22px;
}

.error-directory-grid .diamond-arrow::before { font-size: 19px; }

@keyframes et-wa-pulse {
  0% { transform: scale(.9); opacity: .75; }
  100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 520px) {
  .et-contact-widgets { right: 12px; bottom: 12px; gap: 9px; }
  .et-scroll-top { width: 46px; height: 46px; }
  .et-scroll-top svg { width: 19px; height: 19px; }
  .et-phone-widget, .et-phone-widget-label { height: 46px; }
  .et-phone-widget-label { border-radius: 23px 0 0 23px; }
  .et-phone-widget-button { width: 46px; height: 46px; flex-basis: 46px; }
  .et-phone-widget-button svg { width: 19px; height: 19px; }
  .et-phone-widget.is-expanded .et-phone-widget-label { width: min(160px, calc(100vw - 82px)); padding-inline: 12px; }
  .et-phone-widget-label span, .et-wa-widget-label span { font-size: 7px; }
  .et-phone-widget-label strong { font-size: 13px; }
  .et-wa-widget, .et-wa-widget-label { height: 46px; }
  .et-wa-widget-label { border-radius: 23px 0 0 23px; }
  .et-wa-widget-icon { width: 46px; height: 46px; flex-basis: 46px; }
  .et-wa-brand-icon { width: 22px; height: 22px; }
  .et-wa-widget.is-expanded .et-wa-widget-label { width: min(188px, calc(100vw - 82px)); padding-inline: 12px; }
  .et-wa-widget-label strong { font-size: 13px; }
  .et-wa-chat { right: 14px; bottom: 14px; width: min(340px, calc(100vw - 28px)); height: min(465px, calc(100dvh - 50px)); border-radius: 15px; }
  .et-wa-header { padding: 12px; }
  .et-wa-avatar { width: 37px; height: 37px; }
  .et-wa-body { padding: 13px; }
  .et-wa-message { max-width: 92%; }
  .diamond-arrow { width: 28px; height: 28px; }
  .diamond-arrow::before { font-size: 22px; }
  .diamond-arrow-small,
  .error-directory-grid .diamond-arrow { width: 20px; height: 20px; }
  .diamond-arrow-small::before,
  .error-directory-grid .diamond-arrow::before { font-size: 17px; }
}

@media (max-width: 380px) {
  .et-contact-widgets { right: 10px; bottom: 10px; gap: 8px; }
  .et-scroll-top,
  .et-phone-widget, .et-phone-widget-label,
  .et-wa-widget, .et-wa-widget-label { height: 44px; }
  .et-scroll-top,
  .et-phone-widget-button,
  .et-wa-widget-icon { width: 44px; height: 44px; flex-basis: 44px; }
  .et-phone-widget.is-expanded .et-phone-widget-label { width: min(148px, calc(100vw - 74px)); padding-inline: 11px; }
  .et-wa-widget.is-expanded .et-wa-widget-label { width: min(176px, calc(100vw - 74px)); padding-inline: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .et-wa-widget-icon::before { animation: none; }
}

/* 02 · Editoryal Bölünmüş mobil menü */
.nav-editorial-visual,
.nav-left > a > small,
.nav-right > a > small,
.nav-consultation .diamond-arrow {
  display: none;
}

@media (max-width: 900px) {
  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    background: linear-gradient(180deg, rgba(31, 20, 13, .72), transparent);
    box-shadow: none;
    backdrop-filter: none;
  }

  .primary-nav {
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--layout-brown-deep);
    background: #e3d8c9;
    box-shadow: none;
    transform: translateY(-100%);
    transition: visibility .42s ease, transform .42s cubic-bezier(.7, 0, .2, 1);
  }

  .primary-nav.open { transform: none; }

  .nav-editorial-visual {
    position: relative;
    isolation: isolate;
    min-height: clamp(215px, 32dvh, 285px);
    display: flex;
    flex: 0 0 clamp(215px, 32dvh, 285px);
    align-items: flex-end;
    padding: 92px 24px 24px;
    overflow: hidden;
    color: #fff;
    background: url('../images/ofis-dekorasyon-lounge-01.jpeg') center 43% / cover no-repeat;
  }

  .nav-editorial-visual::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 19, 12, .88), rgba(30, 19, 12, .25)), linear-gradient(0deg, rgba(25, 15, 9, .45), transparent 62%);
  }

  .nav-editorial-visual p {
    margin: 0;
    font: 500 clamp(17px, 5.1vw, 24px) / 1.18 'Marcellus', sans-serif;
    letter-spacing: -.035em;
  }

  .primary-nav .nav-left,
  .primary-nav .nav-right {
    width: 100%;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: 24px;
    color: var(--layout-brown-deep);
    background: #e3d8c9;
  }

  .primary-nav .nav-left { padding-top: 13px; }
  .primary-nav .nav-right {
    display: grid;
    flex: 1 0 auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto minmax(24px, 1fr) auto auto;
    align-items: center;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }

  .primary-nav .nav-right::before {
    content: '';
    z-index: 0;
    grid-column: 1 / -1;
    grid-row: 5 / 7;
    align-self: stretch;
    border-top: 2px solid var(--layout-gold);
    background: linear-gradient(135deg, #34251d 0%, #211812 100%);
    box-shadow: 0 16px 34px rgba(35, 23, 16, .18);
  }

  .primary-nav .nav-left > a,
  .primary-nav .nav-right > a:not(.nav-consultation) {
    width: 100%;
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    color: var(--layout-brown-deep);
    border-bottom: 1px solid rgba(45, 33, 25, .18);
    font: 500 clamp(15px, 4.7vw, 21px) / 1.1 'Marcellus', sans-serif;
    letter-spacing: -.035em;
    opacity: 0;
    transform: translateY(12px);
    transition: color .22s ease, opacity .32s ease, transform .32s ease;
  }

  .primary-nav .nav-right > a:not(.nav-consultation) {
    grid-column: 1 / -1;
  }

  .primary-nav .nav-right > a:nth-child(1) { grid-row: 1; }
  .primary-nav .nav-right > a:nth-child(2) { grid-row: 2; }
  .primary-nav .nav-right > .nav-faq { grid-row: 3; }

  .primary-nav .nav-left > a::after,
  .primary-nav .nav-right > a::after { display: none; }

  .primary-nav .nav-left > a > small,
  .primary-nav .nav-right > a > small {
    display: block;
    color: #9b7651;
    font: 600 8px/1 'DM Sans', sans-serif;
    letter-spacing: .12em;
  }

  .primary-nav .nav-left > a[aria-current="page"] > span,
  .primary-nav .nav-right > a[aria-current="page"] > span,
  .primary-nav .nav-left > a:hover > span,
  .primary-nav .nav-right > a:not(.nav-consultation):hover > span {
    color: #9a693e;
  }

  .primary-nav .nav-consultation {
    z-index: 1;
    grid-column: 1 / -1;
    grid-row: 5;
    min-width: 0;
    min-height: 46px;
    height: 46px;
    margin: 12px 12px 0;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--layout-brown-deep);
    border: 1px solid var(--layout-gold);
    background: var(--layout-gold);
    font: 600 clamp(9px, 2.8vw, 11px) / 1.2 'Marcellus', sans-serif;
    letter-spacing: -.02em;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px);
    transition: color .25s ease, background-color .25s ease, opacity .32s ease, transform .32s ease;
  }

  .primary-nav .nav-consultation:hover,
  .primary-nav .nav-consultation:focus-visible {
    color: #fff;
    border-color: #fff;
    background: transparent;
  }

  .primary-nav .nav-consultation .diamond-arrow {
    width: 22px;
    height: 22px;
    display: inline-grid;
    flex: 0 0 22px;
  }

  .primary-nav .nav-consultation .diamond-arrow::before {
    font-size: 18px;
  }

  .primary-nav .social-links {
    z-index: 1;
    grid-column: 1 / -1;
    grid-row: 6;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    min-height: 56px;
    gap: 8px;
    margin: 0;
    padding: 8px 12px 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .32s ease, transform .32s ease;
  }

  .primary-nav .social-links::before {
    content: 'BİZİ TAKİP EDİN';
    margin-right: auto;
    color: #c8aa89;
    font: 600 8px/1 'DM Sans', sans-serif;
    letter-spacing: .17em;
  }

  .primary-nav .social-link {
    width: 36px;
    height: 36px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    opacity: 1;
  }

  .primary-nav .social-link:hover,
  .primary-nav .social-link:focus-visible {
    color: var(--layout-brown-deep);
    border-color: var(--layout-gold);
    background: var(--layout-gold);
  }

  .primary-nav .social-link svg { width: 18px; height: 18px; }

  .primary-nav.open .nav-left > a,
  .primary-nav.open .nav-right > a,
  .primary-nav.open .social-links {
    opacity: 1;
    transform: none;
  }

  .primary-nav.open .nav-left > a:nth-child(1) { transition-delay: .12s; }
  .primary-nav.open .nav-left > a:nth-child(2) { transition-delay: .16s; }
  .primary-nav.open .nav-left > a:nth-child(3) { transition-delay: .20s; }
  .primary-nav.open .nav-left > a:nth-child(4) { transition-delay: .24s; }
  .primary-nav.open .nav-right > a:nth-child(1) { transition-delay: .28s; }
  .primary-nav.open .nav-right > a:nth-child(2) { transition-delay: .32s; }
  .primary-nav.open .nav-right > .nav-faq { transition-delay: .36s; }
  .primary-nav.open .nav-consultation { transition-delay: .40s; }
  .primary-nav.open .social-links { transition-delay: .44s; }
}

@media (max-width: 520px) {
  .nav-editorial-visual {
    min-height: clamp(205px, 30dvh, 245px);
    flex-basis: clamp(205px, 30dvh, 245px);
    padding: 84px 20px 20px;
  }

  .primary-nav .nav-left,
  .primary-nav .nav-right { padding-inline: 20px; }

  .primary-nav .nav-left > a,
  .primary-nav .nav-right > a:not(.nav-consultation) { min-height: 45px; }
}

@media (prefers-reduced-motion: reduce) {
  .primary-nav .nav-left > a,
  .primary-nav .nav-right > a,
  .primary-nav .social-links { opacity: 1; transform: none; }
}

/* 28 · Footer sade proje dizini */
.footer-projects-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px clamp(22px, 3vw, 52px);
}

@media (min-width: 901px) {
  .site-footer .footer-projects { grid-template-columns: 54px minmax(0, 1fr); }
}

.footer-projects-grid a:focus-visible {
  outline: 1px solid var(--layout-gold);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .footer-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-projects-column { display: contents; }
}

/* 29 · Tüm sayfalarda ortak menü, mobil menü ve footer normalizasyonu */
html body .site-header,
html body .primary-nav,
html body .site-footer {
  font-family: 'DM Sans', sans-serif;
}

html body .site-header {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .24);
}

html body .site-header.scrolled {
  background: rgba(36, 27, 21, .94);
}

html body .site-header a,
html body .site-footer a {
  text-decoration: none;
}

@media (min-width: 901px) {
  html body .site-header .primary-nav .social-links .social-link {
    position: relative;
    overflow: visible;
  }

  html body .site-header .primary-nav .social-links .social-link::after {
    content: '';
    position: absolute;
    right: 100%;
    bottom: -3px;
    left: 0;
    height: 1px;
    display: block;
    background: var(--layout-gold);
    opacity: 0;
    pointer-events: none;
    transition: right .25s ease, opacity .25s ease;
  }

  html body .site-header .primary-nav .social-links .social-link:hover::after,
  html body .site-header .primary-nav .social-links .social-link:focus-visible::after {
    right: 0;
    opacity: 1;
  }
}

@media (max-width: 900px) {
  html body .site-header .primary-nav {
    background: var(--layout-brown);
  }
}

/* 30 · Tüm sayfalarda üst bilgi şeridi ve yatay beyaz menü logosu */
html body .site-header {
  height: 114px;
  padding-top: 28px;
  box-sizing: border-box;
}

html body .site-header.scrolled {
  height: 100px;
}

.top-info-bar {
  position: absolute;
  z-index: 3;
  inset: 0 6vw auto;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1;
}

.top-info-bar p,
.top-info-bar div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.top-info-bar p span {
  color: #fff;
}

.top-info-bar p small {
  color: rgba(255, 255, 255, .62);
  font: inherit;
}

html body .site-header .top-info-bar a {
  padding: 3px 0;
  color: #fff;
  font: inherit;
  letter-spacing: inherit;
}

html body .site-header .top-info-bar a:hover,
html body .site-header .top-info-bar a:focus-visible {
  color: var(--layout-gold);
}

.top-info-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 18px !important;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.top-info-mobile-label {
  display: none;
}

html body .site-header .top-info-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  padding-right: 0;
  border-right: 0;
  text-transform: none;
  letter-spacing: .05em;
}

.top-info-location svg,
.top-info-email svg {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html body .site-header .top-info-bar .top-info-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.top-info-phone svg {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html body .site-header .layout-logo img {
  width: clamp(142px, 12vw, 172px);
  filter: brightness(0) invert(1) drop-shadow(0 0 .28px rgba(255, 255, 255, .72));
  backface-visibility: hidden;
}

html body .site-header.scrolled .layout-logo img {
  width: clamp(132px, 11vw, 158px);
}

.footer-map-link {
  width: 100%;
  max-width: 220px;
  display: grid;
  gap: 8px;
}

.footer-map-link .footer-map-frame {
  pointer-events: none;
}

@media (max-width: 900px) {
  html body .site-header {
    height: 102px;
    padding-top: 28px;
  }

  html body .site-header.scrolled {
    height: 96px;
  }

  .top-info-bar {
    inset-inline: 18px;
  }

  html body .site-header .layout-logo img {
    width: clamp(160px, 38vw, 184px);
  }

  html body .site-header.scrolled .layout-logo img {
    width: clamp(154px, 36vw, 174px);
  }

  .site-header .menu-toggle {
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .top-info-bar > p {
    display: flex;
  }

  .top-info-bar > div {
    width: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .top-info-bar > p small {
    display: none;
  }

  .top-info-desktop-label {
    display: none;
  }

  .top-info-mobile-label {
    display: inline;
  }

  .top-info-location,
  html body .site-header .top-info-email {
    padding-right: 0 !important;
  }

  .top-info-location {
    padding-right: 10px !important;
    border-right: 1px solid rgba(255, 255, 255, .25);
  }

  html body .site-header .top-info-bar .top-info-phone {
    padding-right: 0;
    border-right: 0;
  }

  html body .site-header .top-info-email {
    display: none;
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .top-info-bar {
    gap: 12px;
    font-size: 8px;
    letter-spacing: .1em;
  }
}
