@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('../font/inter-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('../font/inter-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Fraunces';font-style:normal;font-weight:100 900;font-display:swap;src:url('../font/fraunces-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Fraunces';font-style:normal;font-weight:100 900;font-display:swap;src:url('../font/fraunces-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}

/* ============================================================
   Burcum Dekorasyon â SÄ±cak AhÅap / AtÃ¶lye Zarafeti
   Tek stil dosyasÄ± Â· mobile-first Â· CSS deÄiÅkenleri Â· @layer
   ============================================================ */

@layer reset, base, layout, components, utilities;

:root {
  /* Palet */
  --bg: #F6F0E7;
  --surface: #FBF7F0;
  --ink: #2B2722;
  --muted: #6F6052;
  --wood: #7A5638;
  --accent: #B07A4A;
  --line: #E3D8C8;
  --wood-dark: #5E4128;
  --accent-soft: rgba(176, 122, 74, 0.12);

  /* Tipografi */
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;

  /* BoÅluk */
  --space-2xs: 0.375rem;
  --space-xs: 0.625rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* YarÄ±Ã§ap */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* DiÄer */
  --maxw: 1240px;
  --shadow-soft: 0 14px 40px -22px rgba(43, 39, 34, 0.45);
  --shadow-card: 0 8px 24px -18px rgba(43, 39, 34, 0.55);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
  body { min-height: 100svh; }
  img, picture, svg, video { display: block; max-width: 100%; height: auto; }
  input, button, textarea, select { font: inherit; color: inherit; }
  button { cursor: pointer; background: none; border: none; }
  ul, ol { list-style: none; }
  a { color: inherit; text-decoration: none; }
}

/* ---------- BASE ---------- */
@layer base {
  body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    font-feature-settings: "kern" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.12;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  h1 { font-size: clamp(2.3rem, 1.4rem + 4.4vw, 4.4rem); font-weight: 600; }
  h2 { font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.9rem); }
  h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem); }
  h4 { font-size: 1.15rem; }

  p { text-wrap: pretty; }

  a { color: var(--wood); transition: color var(--transition); }
  a:hover { color: var(--accent); }

  strong { font-weight: 600; }

  :focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
  }

  ::selection { background: var(--accent); color: #fff; }
}

/* ---------- LAYOUT ---------- */
@layer layout {
  .container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--space-md);
  }
  .container--narrow { max-width: 820px; }

  .section { padding-block: var(--space-xl); }
  @media (min-width: 1024px) { .section { padding-block: var(--space-2xl); } }

  .stack > * + * { margin-top: var(--space-sm); }

  main { display: block; }

  .skip-link {
    position: absolute;
    left: var(--space-sm);
    top: -100px;
    z-index: 200;
    background: var(--wood);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    transition: top var(--transition);
  }
  .skip-link:focus { top: var(--space-sm); color: #fff; }
}

/* ---------- COMPONENTS ---------- */
@layer components {

  /* BakÄ±r ayraÃ§ / kicker */
  .kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--accent);
  }

  .rule {
    border: 0;
    height: 1px;
    background: var(--line);
    margin-block: var(--space-lg);
  }
  .rule--copper { background: linear-gradient(90deg, var(--accent), transparent); height: 2px; }

  .lead {
    font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
    color: var(--muted);
    max-width: 60ch;
  }

  /* Butonlar */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
    border: 1.5px solid transparent;
  }
  .btn--primary { background: var(--wood); color: #fff; }
  .btn--secondary { background: transparent; color: var(--wood); border-color: var(--line); }
  .btn--ghost { background: var(--surface); color: var(--wood); border-color: var(--line); }
  @media (hover: hover) {
    .btn--primary:hover { background: var(--wood-dark); color: #fff; transform: translateY(-2px); }
    .btn--secondary:hover { border-color: var(--accent); color: var(--accent); }
    .btn--ghost:hover { border-color: var(--accent); transform: translateY(-2px); }
  }

  /* ----- Header / Nav ----- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: 70px;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .brand:hover { color: var(--ink); }
  .brand__mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--wood);
    color: var(--bg);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .brand__sub { display: block; font-family: var(--font-body); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    align-items: center;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform var(--transition), opacity var(--transition);
  }
  .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-menu {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
  }
  .nav-menu[hidden] { display: none; }
  .nav-menu a,
  .nav-menu .nav-disabled {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    font-weight: 500;
    color: var(--ink);
    border-radius: var(--radius-sm);
    min-height: 44px;
  }
  .nav-menu a[aria-current="page"] { color: var(--wood); font-weight: 600; }
  @media (hover: hover) { .nav-menu a:hover { color: var(--accent); background: var(--accent-soft); } }
  .nav-disabled {
    color: var(--muted);
    cursor: not-allowed;
  }
  .badge {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
  }
  .nav-cta { margin-top: var(--space-2xs); }

  @media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .nav-menu {
      position: static;
      inset: auto;
      flex-direction: row;
      align-items: center;
      gap: 0.35rem;
      background: none;
      border: 0;
      box-shadow: none;
      padding: 0;
    }
    .nav-menu[hidden] { display: flex; }
    .nav-menu a, .nav-menu .nav-disabled { padding: 0.5rem 0.85rem; min-height: auto; }
    .nav-cta { margin-top: 0; margin-left: 0.5rem; }
  }

  /* ----- Hero ----- */
  .hero { position: relative; }
  .hero__media { position: relative; }
  .hero__media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }
  .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43,39,34,0.18) 0%, rgba(43,39,34,0.05) 40%, rgba(43,39,34,0.66) 100%);
  }
  .hero__body {
    position: relative;
    margin-top: -3.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--space-lg) var(--space-md);
  }
  .hero__body h1 { margin-top: var(--space-sm); }
  .hero__sub { margin-top: var(--space-sm); font-size: 1.05rem; color: var(--muted); }
  .hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }

  @media (min-width: 1024px) {
    .hero__media img { aspect-ratio: 21 / 9; max-height: 78vh; }
    .hero__body {
      margin-top: -7rem;
      margin-inline: auto;
      max-width: 880px;
      padding: var(--space-xl);
    }
  }

  /* ----- Genel bÃ¶lÃ¼m baÅlÄ±ÄÄ± ----- */
  .section-head { max-width: 64ch; }
  .section-head h2 { margin-top: var(--space-sm); }
  .section-head p { margin-top: var(--space-sm); }
  .section-head--center { margin-inline: auto; text-align: center; }
  .section-head--center .kicker { justify-content: center; }

  /* ----- Ãz / Marka cÃ¼mlesi Åeridi ----- */
  .pledge {
    background: var(--wood);
    color: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
  }
  .pledge h2 { color: var(--bg); }
  .pledge p { color: rgba(246, 240, 231, 0.85); margin-top: var(--space-sm); max-width: 56ch; margin-inline: auto; }
  .pledge .btn--ghost { margin-top: var(--space-md); }
  @media (min-width: 1024px) { .pledge { padding: var(--space-xl); } }

  /* ----- Hizmet kartlarÄ± grid ----- */
  .grid { display: grid; gap: var(--space-md); }
  @media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 640px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

  .card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
  }
  @media (hover: hover) {
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent); }
  }
  .card__num {
    font-family: var(--font-head);
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
  }
  .card h3 { margin-top: var(--space-2xs); }
  .card p { margin-top: var(--space-xs); color: var(--muted); font-size: 0.95rem; }

  /* ----- Foto + metin (editÃ¶ryal asimetrik) ----- */
  .feature {
    display: grid;
    gap: var(--space-md);
    align-items: center;
  }
  .feature__media img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
  @media (min-width: 1024px) {
    .feature { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-xl); }
    .feature--reverse .feature__media { order: 2; }
  }

  /* ----- Hizmet satÄ±rÄ± (neler-yapiyoruz) ----- */
  .svc { display: grid; gap: var(--space-md); align-items: center; padding-block: var(--space-lg); border-top: 1px solid var(--line); }
  .svc__media img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
  .svc__body h3 { margin-bottom: var(--space-xs); }
  .svc__body p { color: var(--muted); }
  @media (min-width: 1024px) {
    .svc { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
    .svc:nth-child(even) .svc__media { order: 2; }
  }

  /* ----- AdÄ±m / SÃ¼reÃ§ ----- */
  .steps { display: grid; gap: var(--space-md); counter-reset: step; }
  @media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
  .step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: var(--space-md); }
  .step__n {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--wood);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
  }
  .step h3 { font-size: 1.2rem; }
  .step p { color: var(--muted); margin-top: var(--space-2xs); font-size: 0.95rem; }

  /* ----- DeÄer kartÄ± ----- */
  .value h3 { color: var(--wood); }

  /* ----- Etiket listesi (malzeme) ----- */
  .tags { display: flex; flex-wrap: wrap; gap: var(--space-2xs); }
  .tag {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.9rem;
    color: var(--ink);
  }

  /* ----- Ãne Ã§Ä±kan galeri (anasayfa) ----- */
  .gallery-strip { display: grid; gap: var(--space-sm); }
  @media (min-width: 640px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
  .shot {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.5s ease; }
  @media (hover: hover) { .shot:hover img { transform: scale(1.05); } }
  .shot figcaption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1.4rem 1rem 0.8rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    background: linear-gradient(transparent, rgba(43,39,34,0.78));
  }

  /* ----- Galeri filtre ----- */
  .filter { display: flex; flex-wrap: wrap; gap: var(--space-2xs); margin-bottom: var(--space-lg); }
  .filter button {
    min-height: 44px;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all var(--transition);
  }
  .filter button[aria-pressed="true"] { background: var(--wood); color: #fff; border-color: var(--wood); }
  @media (hover: hover) { .filter button:hover { border-color: var(--accent); color: var(--accent); } }
  .filter button[aria-pressed="true"]:hover { color: #fff; }

  /* ----- Galeri grid ----- */
  .gallery { display: grid; gap: var(--space-sm); grid-template-columns: repeat(2, 1fr); }
  @media (min-width: 768px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1200px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
  .gallery__item { margin: 0; }
  .gallery__item[hidden] { display: none; }
  .gallery__btn {
    display: block;
    width: 100%;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  .gallery__btn img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
  @media (hover: hover) {
    .gallery__btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--accent); }
  }

  /* ----- Lightbox ----- */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    grid-template-rows: 1fr auto;
    place-items: center;
    padding: var(--space-md);
    background: rgba(43, 39, 34, 0.92);
  }
  .lightbox[hidden] { display: none; }
  .lightbox__fig { display: grid; gap: var(--space-sm); place-items: center; max-width: 1100px; }
  .lightbox__fig img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  }
  .lightbox__cap { color: rgba(246,240,231,0.92); font-size: 0.95rem; text-align: center; }
  .lightbox__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    line-height: 1;
  }
  .lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-size: 1.6rem;
    display: grid;
    place-items: center;
    line-height: 1;
  }
  .lightbox__nav--prev { left: var(--space-md); }
  .lightbox__nav--next { right: var(--space-md); }
  @media (hover: hover) {
    .lightbox__close:hover, .lightbox__nav:hover { background: var(--accent); color: #fff; }
  }

  /* ----- Ä°letiÅim ----- */
  .contact-grid { display: grid; gap: var(--space-lg); }
  @media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: var(--space-xl); } }

  .info-block { border-top: 2px solid var(--accent); padding-top: var(--space-sm); margin-bottom: var(--space-md); }
  .info-block h3 { font-size: 1.15rem; margin-bottom: var(--space-2xs); }
  .info-block address { font-style: normal; color: var(--muted); line-height: 1.8; }
  .info-block a { font-weight: 500; }
  .hours { color: var(--muted); }
  .hours li { display: flex; justify-content: space-between; gap: var(--space-md); padding: 0.35rem 0; border-bottom: 1px solid var(--line); }
  .hours li:last-child { border-bottom: 0; }
  .hours strong { color: var(--ink); }

  /* ----- Form ----- */
  .form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: var(--space-md); }
  @media (min-width: 768px) { .form { padding: var(--space-lg); } }
  .form fieldset { border: 0; }
  .form legend { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: var(--space-sm); }
  .field { margin-bottom: var(--space-sm); }
  .field label { display: block; font-weight: 500; font-size: 0.92rem; margin-bottom: 0.35rem; }
  .field .req { color: var(--accent); }
  .field input,
  .field textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    font-size: 1rem;
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
  }
  .field input:focus,
  .field textarea:focus { outline: none; border-color: var(--accent); }
  .field textarea { resize: vertical; min-height: 130px; }
  .field-row { display: grid; gap: var(--space-sm); }
  @media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
  .form-note { font-size: 0.85rem; color: var(--muted); margin-top: var(--space-2xs); }
  .form-status {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    color: var(--wood-dark);
    font-weight: 500;
  }
  .form-status[hidden] { display: none; }

  .map-link {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: var(--space-md);
  }
  .map-link img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
  .map-link span {
    display: block;
    padding: var(--space-sm);
    background: var(--surface);
    color: var(--wood);
    font-weight: 600;
    text-align: center;
  }

  /* ----- CTA Åeridi ----- */
  .cta-band {
    display: grid;
    gap: var(--space-md);
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
  }
  .cta-band .hero__actions { justify-content: center; }
  @media (min-width: 1024px) { .cta-band { padding: var(--space-xl); } }

  /* ----- Footer ----- */
  .site-footer {
    background: var(--ink);
    color: rgba(246, 240, 231, 0.78);
    padding-block: var(--space-xl) var(--space-lg);
    margin-top: var(--space-2xl);
  }
  .footer-grid { display: grid; gap: var(--space-lg); }
  @media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
  .site-footer h2, .site-footer h3 { color: var(--bg); }
  .site-footer .brand { color: var(--bg); }
  .site-footer .brand__mark { background: var(--accent); color: var(--ink); }
  .site-footer a { color: rgba(246, 240, 231, 0.78); }
  .site-footer a:hover { color: #fff; }
  .footer-col h3 { font-size: 1.05rem; margin-bottom: var(--space-sm); font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; }
  .footer-col li { margin-bottom: 0.45rem; }
  .footer-col address { font-style: normal; line-height: 1.9; }
  .footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(246, 240, 231, 0.16);
    font-size: 0.85rem;
    color: rgba(246, 240, 231, 0.6);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: space-between;
  }

  /* ----- Reveal animasyonu ----- */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }

  .breadcrumb { font-size: 0.85rem; color: var(--muted); padding-top: var(--space-md); }
  .breadcrumb a { color: var(--muted); }
  .breadcrumb a:hover { color: var(--accent); }
}

/* ---------- UTILITIES ---------- */
@layer utilities {
  .text-center { text-align: center; }
  .mt-lg { margin-top: var(--space-lg); }
  .mt-md { margin-top: var(--space-md); }
  .mt-sm { margin-top: var(--space-sm); }
  .center-x { margin-inline: auto; }
  .measure { max-width: 38ch; }
  .surface-bg { background: var(--surface); }
  .on-wood { color: var(--bg); }
  .pt-0 { padding-top: 0; }
  .pb-0 { padding-bottom: 0; }
  .pb-lg { padding-bottom: var(--space-lg); }
  .no-border-top { border-top: 0; }
  .footer-about { margin-top: var(--space-sm); max-width: 38ch; }
  .kicker--center { justify-content: center; }
  .visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
}

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

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .filter, .lightbox, .hero__media::after, .cta-band, .map-link { display: none !important; }
  * { color: #000 !important; background: #fff !important; box-shadow: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555; }
  h1, h2, h3 { break-after: avoid; }
  img, figure { break-inside: avoid; }
  body { font-size: 12pt; }
  @page { margin: 2cm; }
}
