:root {
  --bg: #f5f2ec;
  --text: #556047;
  --deep: #434d48;
  --muted: rgba(85, 96, 71, 0.78);
  --line: rgba(126, 135, 96, 0.28);
  --button: #7f8965;
  --button-dark: #687350;
  --card: rgba(255, 253, 248, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at center 22%, rgba(255,255,255,0.56), transparent 42rem),
    var(--bg);
  font-family: Georgia, "Times New Roman", serif;
}

.botanical-frame {
  position: fixed;
  inset: 0 0 auto 0;
  height: 360px;
  background: url("assets/floral-header.png") center top / 100% auto no-repeat;
  pointer-events: none;
  z-index: 0;
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 260px;
  text-align: center;
}

.logo {
  width: min(420px, 82vw);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 50px);
  flex-wrap: wrap;
  margin-top: 16px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
}

.nav a.active,
.nav a:hover {
  border-color: var(--text);
}

.hero {
  width: min(760px, calc(100% - 32px));
  margin: 48px auto 0;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  font-weight: 400;
}

.hero p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.button {
  min-width: 210px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 19px;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--button), #687350);
  box-shadow: 0 12px 24px rgba(85, 96, 71, 0.14);
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--button);
  background: rgba(255,255,255,0.28);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 70px auto 34px;
  width: min(260px, 80%);
}

.divider span {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.divider img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.72;
}

.features,
.pricing {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.features h2,
.pricing h2 {
  font-size: clamp(23px, 2.7vw, 34px);
  font-weight: 400;
  margin: 0 0 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-grid article {
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.feature-grid article:last-child {
  border-right: 0;
}

.icon-box {
  height: 56px;
  font-size: 40px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 18px;
}

.feature-grid h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 10px;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  align-items: stretch;
}

.price-card {
  position: relative;
  min-height: 400px;
  padding: 38px 34px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  text-align: left;
}

.price-card.popular {
  border-color: rgba(85, 96, 71, 0.62);
  box-shadow: 0 18px 52px rgba(85, 96, 71, 0.10);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--button);
  color: #fff;
  border-radius: 6px;
  padding: 6px 36px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-card h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 12px;
}

.price-card .for {
  text-align: center;
  min-height: 44px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.price {
  text-align: center;
  font-size: 27px;
  margin-bottom: 26px;
}

.price span {
  font-size: 16px;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.price-card li {
  margin: 12px 0;
  color: var(--muted);
  font-size: 15px;
}

.price-card li::before {
  content: "✓";
  color: var(--text);
  margin-right: 10px;
}

.price-card a {
  min-height: 42px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--button);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
}

.price-card.popular a {
  background: var(--button);
  color: white;
}

.footer {
  width: min(980px, calc(100% - 32px));
  margin: 70px auto 0;
  padding: 44px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-logo img {
  width: 200px;
  mix-blend-mode: multiply;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}

.footer a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 8px 0;
}

.socials {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 22px;
  color: var(--text);
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin: 16px 0 0;
  font-size: 13px;
}

@media (max-width: 850px) {
  .botanical-frame {
    height: 300px;
    background-size: 135% auto;
  }

  .site-header {
    padding-top: 220px;
  }

  .feature-grid,
  .price-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article:last-child {
    border-bottom: 0;
  }

  .footer {
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .socials {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .botanical-frame {
    height: 250px;
    background-size: 210% auto;
    background-position: center top;
  }

  .site-header {
    padding-top: 185px;
  }

  .logo {
    width: min(340px, 92vw);
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero {
    margin-top: 38px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .price-grid {
    gap: 26px;
  }
}


/* Blog cards */
.blog {
  padding-bottom: 20px;
}

.blog-intro {
  max-width: 700px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  text-align: center;
}

.blog-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  text-align: left;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

.blog-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--button);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform 160ms ease, background 160ms ease;
}

.blog-card a:hover {
  transform: translateY(-1px);
  background: rgba(127, 137, 101, 0.08);
}

/* Blog post pages */
.post-body {
  background: var(--bg);
}

.site-header.compact {
  padding-top: 42px;
}

.logo-link {
  display: inline-block;
}

.post-main {
  width: min(900px, calc(100% - 32px));
  margin: 30px auto 70px;
}

.post-card {
  padding: 38px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  text-decoration: none;
}

.post-card h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--text);
}

.post-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 850px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* Güncel blog yazısı düzeni */
.post-card h2 {
  margin: 38px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--text);
}

.post-card h3 {
  margin: 28px 0 10px;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--text);
}

.post-bullet {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  color: var(--text) !important;
}

.post-bullet::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--button);
}

.post-image {
  margin: 30px auto;
}

.post-image img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 560px) {
  .post-card {
    padding: 28px 20px;
  }

  .post-card p {
    font-size: 17px;
    line-height: 1.7;
  }
}


/* Referanslar / Google yorumları */
.references {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  padding-bottom: 24px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.references h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 400;
  color: var(--text);
}

.references-intro {
  max-width: 650px;
  margin: 16px auto 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.google-reviews-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  text-align: left;
}

.google-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.google-reviews-copy h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 23px;
  font-weight: 400;
}

.google-reviews-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.google-reviews-button {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--button);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease;
}

.google-reviews-button:hover {
  transform: translateY(-1px);
  background: var(--button-dark);
}

@media (max-width: 680px) {
  .google-reviews-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .google-reviews-button {
    width: 100%;
  }
}


/* İletişim formu */
button {
  font: inherit;
}

.contact-trigger {
  cursor: pointer;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact a {
  margin: 5px 0;
}

.footer-message-button {
  margin-top: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  transition: opacity 160ms ease;
}

.contact-modal.is-open {
  opacity: 1;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 51, 46, 0.56);
  backdrop-filter: blur(4px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(590px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
  box-shadow: 0 28px 80px rgba(44, 51, 46, 0.24);
  transform: translateY(12px) scale(0.985);
  transition: transform 160ms ease;
}

.contact-modal.is-open .contact-dialog {
  transform: translateY(0) scale(1);
}

.contact-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(127, 137, 101, 0.1);
  color: var(--text);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.contact-dialog h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--text);
}

.contact-dialog-intro {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
}

.contact-form label:nth-of-type(4) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--button);
  box-shadow: 0 0 0 3px rgba(127, 137, 101, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.contact-submit {
  grid-column: 1 / -1;
  min-height: 50px;
  border: 0;
  border-radius: 9px;
  background: var(--button);
  color: #fff;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--button-dark);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  text-align: center;
  font-size: 14px;
}

.contact-status.success {
  color: #506843;
}

.contact-status.error {
  color: #9b4d45;
}

.contact-direct {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 17px;
}

.contact-direct a {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 850px) {
  .footer-contact {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .contact-dialog {
    padding: 30px 20px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-of-type(4) {
    grid-column: auto;
  }
}


/* Sabit Givlon üst menüsü */
html {
  scroll-padding-top: 112px;
}

section[id],
footer[id] {
  scroll-margin-top: 112px;
}

.site-header,
.site-header.compact {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px clamp(18px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
  background: rgba(245, 242, 236, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(67, 77, 72, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header > .logo,
.site-header .logo-link {
  flex: 0 0 auto;
}

.site-header .logo {
  width: min(225px, 31vw);
  max-height: 72px;
  margin: 0;
  object-fit: contain;
}

.site-header .nav {
  margin: 0;
  flex-wrap: nowrap;
  gap: clamp(15px, 2.8vw, 38px);
}

.site-header .nav a {
  padding: 10px 0 8px;
  white-space: nowrap;
}

/* Davetiye yazısındaki giriş, normal blog metni boyutunda */
.post-card .post-lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

/* Gerçek sosyal medya hesapları */
.socials {
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.28);
  transition: transform 160ms ease, background 160ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(127, 137, 101, 0.12);
}

.socials svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

@media (max-width: 850px) {
  html {
    scroll-padding-top: 126px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 126px;
  }

  .site-header,
  .site-header.compact {
    padding: 9px 14px 8px;
    flex-direction: column;
    gap: 5px;
  }

  .site-header .logo {
    width: min(190px, 56vw);
    max-height: 58px;
  }

  .site-header .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    padding: 0 4px 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .site-header .nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav a {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 7px 0 6px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.compact {
    padding-top: 8px;
  }

  .site-header .logo {
    width: min(170px, 58vw);
  }

  .post-card .post-lead {
    font-size: 17px;
    line-height: 1.7;
  }
}


/* Logo ve menü: eski düzende ortalı, kaydırmada sabit */
html {
  scroll-padding-top: 138px;
}

section[id],
footer[id] {
  scroll-margin-top: 138px;
}

.site-header,
.site-header.compact {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 11px 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  overflow: hidden;
}

.site-header > .logo,
.site-header .logo-link {
  width: 100%;
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}

.site-header .logo {
  width: min(225px, 68vw);
  max-height: 66px;
  margin: 0 auto;
  object-fit: contain;
}

.site-header .nav {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px clamp(15px, 3vw, 38px);
  overflow: visible;
}

.site-header .nav a {
  flex: 0 0 auto;
  padding: 8px 0 7px;
  white-space: nowrap;
}

@media (max-width: 850px) {
  html {
    scroll-padding-top: 142px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 142px;
  }

  .site-header,
  .site-header.compact {
    padding: 8px 10px 7px;
    gap: 4px;
  }

  .site-header .logo {
    width: min(190px, 60vw);
    max-height: 55px;
  }

  .site-header .nav {
    width: min(100%, 620px);
    justify-content: center;
    gap: 2px 18px;
    overflow: visible;
  }

  .site-header .nav a {
    font-size: 12px;
    padding: 6px 0 5px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 154px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 154px;
  }

  .site-header .logo {
    width: min(168px, 62vw);
    max-height: 50px;
  }

  .site-header .nav {
    max-width: 390px;
    column-gap: 16px;
    row-gap: 0;
  }

  .site-header .nav a {
    font-size: 11px;
    letter-spacing: 0.01em;
  }
}


/* Logo eski boyutuna daha yakın, menü yine ortalı ve sabit */
.site-header .logo {
  width: min(310px, 78vw);
  max-height: 92px;
}

@media (max-width: 850px) {
  .site-header .logo {
    width: min(250px, 72vw);
    max-height: 76px;
  }
}

@media (max-width: 560px) {
  .site-header .logo {
    width: min(220px, 74vw);
    max-height: 68px;
  }
}


/* Daha büyük ve arka planı üst menüyle tamamen bütünleşen logo */
.site-header .logo {
  width: min(390px, 84vw);
  max-height: 116px;
  background: transparent;
}

@media (max-width: 850px) {
  .site-header .logo {
    width: min(315px, 80vw);
    max-height: 94px;
  }
}

@media (max-width: 560px) {
  .site-header .logo {
    width: min(275px, 82vw);
    max-height: 82px;
  }
}


/* Ana sayfada daha güçlü marka alanı */
.site-header:not(.compact) {
  padding: 20px 18px 19px;
  gap: 13px;
  min-height: 142px;
  background: var(--bg);
}

.site-header:not(.compact) .logo {
  width: min(470px, 88vw);
  max-height: 128px;
}

.site-header .nav a {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.025em;
  padding: 10px 0 9px;
}

.site-header:not(.compact) .nav {
  gap: 6px clamp(20px, 3.4vw, 44px);
}

/* Blog sayfalarında logo biraz daha büyük, başlık ise daha kompakt */
.site-header.compact .logo {
  width: min(410px, 84vw);
  max-height: 108px;
}

/* LCV blogundaki ilk görsel iletişim çağrısı */
.contact-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  cursor: pointer;
}

.contact-image-link img {
  display: block;
  width: 100%;
  transition: transform 180ms ease, filter 180ms ease;
}

.contact-image-link:hover img,
.contact-image-link:focus-visible img {
  transform: scale(1.012);
  filter: brightness(0.92);
}

.contact-image-link:focus-visible {
  outline: 3px solid var(--button);
  outline-offset: 4px;
}

.contact-image-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  color: #fff;
  background: rgba(67, 77, 72, 0.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(39, 48, 43, 0.22);
  pointer-events: none;
}

@media (min-width: 851px) {
  html {
    scroll-padding-top: 165px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 165px;
  }
}

@media (max-width: 850px) {
  .site-header:not(.compact) {
    padding: 13px 12px 12px;
    gap: 7px;
    min-height: 124px;
  }

  .site-header:not(.compact) .logo {
    width: min(360px, 84vw);
    max-height: 102px;
  }

  .site-header.compact .logo {
    width: min(325px, 80vw);
    max-height: 88px;
  }

  .site-header .nav a {
    font-size: 12px;
    font-weight: 700;
    padding: 7px 0 6px;
  }
}

@media (max-width: 560px) {
  .site-header:not(.compact) {
    min-height: 116px;
    padding-top: 11px;
  }

  .site-header:not(.compact) .logo {
    width: min(300px, 84vw);
    max-height: 86px;
  }

  .site-header.compact .logo {
    width: min(285px, 80vw);
    max-height: 78px;
  }

  .site-header .nav {
    column-gap: 15px;
  }

  .site-header .nav a {
    font-size: 11px;
  }

  .contact-image-hint {
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 12px;
  }
}


/* Menü yazıları: orta kalınlık */
.site-header .nav a {
  font-weight: 500;
}

@media (max-width: 850px) {
  .site-header .nav a {
    font-weight: 500;
  }
}

@media (max-width: 560px) {
  .site-header .nav a {
    font-weight: 500;
  }
}
