/* ============================================================
   Dilek Kuşadası Organizasyon — Boutique Event Design Studio
   ============================================================ */

:root {
  --cream:      #F5EFE6;
  --cream-2:    #EEE6D8;
  --paper:      #FBF8F2;            /* near-white card surface, replaces #fff */
  --sand:       #E0CFB5;
  --sand-deep:  #C9B594;
  --terra:      #B8593E;
  --terra-deep: #9B4730;
  --midnight:   #1B1B1F;
  --midnight-2: #2A2A30;
  --olive:      #6B7A4F;
  --line:       rgba(27,27,31,0.14);
  --line-soft:  rgba(27,27,31,0.08);
  --muted:      rgba(27,27,31,0.62);
  --midnight-shadow: rgba(27,27,31,0.45);  /* replaces rgba(0,0,0,...) */

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;

  --shadow-soft: 0 24px 60px -28px rgba(27,27,31,0.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--midnight);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease, color .2s ease;
}

button { font-family: inherit; cursor: pointer; }

/* ----- Typography ----- */
.serif    { font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
.eyebrow  {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
}
.eyebrow.muted { color: var(--muted); }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 128px);
  line-height: .96;
  letter-spacing: 0;
}
.display em { font-style: italic; font-weight: 300; color: var(--terra); }

h2.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}
h2.section-title em { font-style: italic; color: var(--terra); font-weight: 300; }

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--midnight);
}

p { margin: 0 0 1em; }
p.body-l { font-size: 17px; line-height: 1.65; }

::selection { background: var(--terra); color: var(--cream); }

/* ----- Layout helpers ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-wide { max-width: 1560px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

section { padding: clamp(72px, 11vw, 160px) 0; position: relative; }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(245,239,230,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--gutter);
  border-bottom-color: var(--line-soft);
}
.site-header .logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.site-header .logo small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.nav-primary {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-primary a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
}
.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--terra);
  transition: right .3s ease;
}
.nav-primary a:hover::after { right: 0; }

.header-right { display: flex; align-items: center; gap: 18px; }
.hamburger {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--midnight);
  background: transparent;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 14px; height: 1px;
  background: var(--midnight);
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--midnight);
}
.hamburger span::before { top: -5px; }
.hamburger span::after  { top: 5px; }

/* Hero on dark image — invert header */
.site-header.on-dark { color: var(--cream); }
.site-header.on-dark .logo small { color: rgba(245,239,230,0.7); }
.site-header.on-dark.scrolled { color: var(--midnight); }
.site-header.on-dark.scrolled .logo small { color: var(--muted); }
.site-header.on-dark .btn--ghost { border-color: rgba(245,239,230,0.5); color: var(--cream); }
.site-header.on-dark.scrolled .btn--ghost { border-color: var(--midnight); color: var(--midnight); }
.site-header.on-dark .hamburger { border-color: rgba(245,239,230,0.7); }
.site-header.on-dark .hamburger span,
.site-header.on-dark .hamburger span::before,
.site-header.on-dark .hamburger span::after { background: var(--cream); }
.site-header.on-dark.scrolled .hamburger { border-color: var(--midnight); }
.site-header.on-dark.scrolled .hamburger span,
.site-header.on-dark.scrolled .hamburger span::before,
.site-header.on-dark.scrolled .hamburger span::after { background: var(--midnight); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--terra); color: var(--cream); }
.btn--primary:hover { background: var(--terra-deep); }
.btn--dark { background: var(--midnight); color: var(--cream); }
.btn--dark:hover { background: var(--midnight-2); }
.btn--ghost { border-color: var(--midnight); color: var(--midnight); background: transparent; }
.btn--ghost:hover { background: var(--midnight); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--midnight); border-color: var(--cream); }
.btn--sm { padding: 11px 18px; font-size: 11px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--midnight);
  padding-bottom: 4px;
}
.text-link.terra { color: var(--terra); border-color: var(--terra); }
.text-link:hover { gap: 14px; }
.text-link .arrow { display: inline-block; transition: transform .25s ease; }
.text-link:hover .arrow { transform: translateX(4px); }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: clamp(72px, 10vh, 120px);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(27,27,31,0.20) 0%, rgba(27,27,31,0.10) 35%, rgba(27,27,31,0.55) 100%),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center 40%;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.10) translateY(-1.5%); }
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(40px, 6vh, 72px);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.78);
}
.hero .meta-row .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terra); display: inline-block; margin: 0 12px; vertical-align: middle; }
.hero h1.display {
  max-width: 18ch;
  color: var(--cream);
  font-weight: 300;
}
.hero h1.display em { color: var(--sand); font-style: italic; }
.hero .subhead {
  margin-top: 28px;
  max-width: 580px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: rgba(245,239,230,0.92);
}
.hero .cta-row {
  margin-top: clamp(36px, 5vh, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero .cta-row .text-link {
  color: var(--cream);
  border-color: rgba(245,239,230,0.6);
  margin-left: 10px;
}
.hero-corner {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(72px, 10vh, 120px);
  z-index: 2;
  max-width: 240px;
  text-align: right;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(245,239,230,0.78);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: .01em;
}
.hero-corner::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(245,239,230,0.5);
  margin: 0 0 12px auto;
}

/* ----- Trust strip ----- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 36px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--midnight);
  font-weight: 500;
}
.trust-inner .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--terra); }

/* ----- Definition section ----- */
.definition {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.definition .col-left .eyebrow { margin-bottom: 24px; display: block; }
.definition h2.section-title { max-width: 14ch; }
.definition p.lede { max-width: 56ch; }
.definition p.lede + p { margin-top: 1em; }

/* ----- Services grid ----- */
.services {
  background: var(--midnight);
  color: var(--cream);
}
.services .eyebrow { color: var(--sand); }
.services h2.section-title { color: var(--cream); max-width: 18ch; }
.services h2.section-title em { color: var(--terra); }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.services-head .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  color: rgba(245,239,230,0.78);
  max-width: 38ch;
  justify-self: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245,239,230,0.18);
  border: 1px solid rgba(245,239,230,0.18);
}
.svc-card {
  background: var(--midnight);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.svc-card .num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--sand);
  margin-bottom: 240px;
}
.svc-card .svc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .5s ease, transform 6s ease;
  z-index: 0;
}
.svc-card:hover .svc-img { opacity: .28; transform: scale(1.06); }
.svc-card > * { position: relative; z-index: 1; }
.svc-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 16px;
  max-width: 12ch;
}
.svc-card p {
  font-size: 14px;
  color: rgba(245,239,230,0.72);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 32ch;
}
.svc-card .svc-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand);
  border-top: 1px solid rgba(245,239,230,0.18);
  padding-top: 18px;
}
.svc-card:hover .svc-foot { color: var(--cream); }
.svc-card .svc-foot .arrow { transition: transform .3s ease; }
.svc-card:hover .svc-foot .arrow { transform: translateX(6px); }

.svc-secondary {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.svc-secondary .label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.55);
  margin-right: 12px;
}
.svc-chip {
  padding: 9px 16px;
  border: 1px solid rgba(245,239,230,0.28);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(245,239,230,0.85);
}

/* ----- Concept finder quiz ----- */
.quiz {
  background: var(--cream);
  position: relative;
}
.quiz-head { text-align: center; margin-bottom: 56px; }
.quiz-head h2.section-title { max-width: 18ch; margin: 12px auto 0; }
.quiz-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 56px);
}
.quiz-step {
  display: none;
  animation: fadeIn .4s ease;
}
.quiz-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.quiz-progress .bar {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.quiz-progress .bar > span {
  position: absolute;
  inset: 0;
  background: var(--terra);
  width: 33%;
  transition: width .4s ease;
}
.quiz-q {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 28px;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.quiz-opt {
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--midnight);
  transition: all .2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.quiz-opt:hover { background: var(--sand); border-color: var(--terra); }
.quiz-opt.selected { background: var(--midnight); color: var(--cream); border-color: var(--midnight); }
.quiz-opt .quiz-mark { opacity: 0; font-family: var(--serif); font-style: italic; }
.quiz-opt.selected .quiz-mark { opacity: 1; color: var(--sand); }
.quiz-nav { margin-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.quiz-nav .back {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 8px 0;
}
.quiz-result {
  display: none;
  text-align: center;
  padding: 12px 0;
}
.quiz-result.active { display: block; animation: fadeIn .4s ease; }
.quiz-result .eyebrow { display: block; margin-bottom: 16px; }
.quiz-result h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.quiz-result p { max-width: 50ch; margin: 0 auto 32px; color: var(--muted); }
.quiz-result .btn { margin: 0 6px 10px; }

/* ----- Why us ----- */
.why { background: var(--cream-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 64px;
}
.why-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.why-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 16ch;
}
.why-item p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ----- Gallery ----- */
.gallery-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 64px;
}
.gallery-head h2.section-title { max-width: 16ch; }
.gallery-head .gallery-meta {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 38ch;
  justify-self: end;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
}
.g-tile {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.g-tile:hover img { transform: scale(1.05); }
.g-tile .label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(245,239,230,0.92);
  color: var(--midnight);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 10px;
  font-weight: 500;
}
.g-tile .label.real { background: var(--terra); color: var(--cream); }
.g-tile .caption {
  position: absolute;
  left: 14px; bottom: 14px;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  text-shadow: 0 1px 12px var(--midnight-shadow);
}

.gallery-grid .t1 { grid-column: span 7; grid-row: span 2; }
.gallery-grid .t2 { grid-column: span 5; grid-row: span 1; }
.gallery-grid .t3 { grid-column: span 5; grid-row: span 1; }
.gallery-grid .t4 { grid-column: span 4; grid-row: span 1; }
.gallery-grid .t5 { grid-column: span 4; grid-row: span 1; }
.gallery-grid .t6 { grid-column: span 4; grid-row: span 1; }

/* ----- Process ----- */
.process { background: var(--midnight); color: var(--cream); }
.process h2.section-title { color: var(--cream); }
.process .eyebrow { color: var(--sand); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,239,230,0.3), rgba(245,239,230,0.3), transparent);
}
.process-step .marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.process-step.active .marker { background: var(--terra); color: var(--cream); }
.process-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,239,230,0.68);
  max-width: 28ch;
}

/* ----- FAQ ----- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-grid .faq-side { position: sticky; top: 120px; }
.faq-grid .faq-side .lede { max-width: 28ch; margin-top: 20px; }
.faq-grid .faq-side .btn { margin-top: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  color: var(--midnight);
}
.faq-q .plus {
  width: 28px; height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--midnight);
  border-radius: 50%;
  position: relative;
  transition: transform .3s ease, background .3s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--midnight);
  transition: opacity .3s, background .3s;
}
.faq-q .plus::before { width: 10px; height: 1px; transform: translate(-50%, -50%); }
.faq-q .plus::after  { width: 1px; height: 10px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus { background: var(--terra); border-color: var(--terra); transform: rotate(45deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--cream); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding-bottom: 28px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ----- Contact ----- */
.contact-block { background: var(--terra); color: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-grid h2.section-title { color: var(--cream); max-width: 14ch; }
.contact-grid h2.section-title em { color: var(--sand); }
.contact-grid .eyebrow { color: rgba(245,239,230,0.65); }
.contact-grid .lede { color: rgba(245,239,230,0.92); max-width: 32ch; }
.contact-channels { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.contact-channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(245,239,230,0.25);
  font-size: 14px;
}
.contact-channel:last-child { border-bottom: 1px solid rgba(245,239,230,0.25); }
.contact-channel .lbl { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,239,230,0.7); }
.contact-channel .val { font-family: var(--serif); font-style: italic; font-size: 22px; }

.contact-form {
  background: var(--cream);
  color: var(--midnight);
  padding: clamp(32px, 4vw, 48px);
}
.contact-form .form-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  background: var(--cream-2);
  padding: 14px 16px;
  margin-bottom: 28px;
  border-left: 2px solid var(--terra);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 500;
}
.field label .req { color: var(--terra); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--midnight);
  font-family: inherit;
  font-size: 16px;
  color: var(--midnight);
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--terra); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 16px 0 24px;
}
.consent input { width: auto; margin-top: 3px; }
.consent a { text-decoration: underline; }

/* ----- Footer ----- */
.site-footer {
  background: var(--midnight);
  color: rgba(245,239,230,0.78);
  padding: clamp(72px, 9vw, 120px) 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,239,230,0.16);
}
.footer-brand .logo {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; max-width: 32ch; }
.footer-col h5 {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(245,239,230,0.55);
}
.footer-bottom a:hover { color: var(--cream); }

/* ----- Mobile sticky bar ----- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--midnight);
  color: var(--cream);
  padding: 10px;
  gap: 8px;
  border-top: 1px solid rgba(245,239,230,0.18);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-bar a.wa { background: var(--terra); }
.mobile-bar a.ghost { border: 1px solid rgba(245,239,230,0.4); }

/* ----- Cookie banner ----- */
.cookie {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  background: var(--midnight);
  color: var(--cream);
  padding: 20px 22px;
  z-index: 70;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: var(--shadow-soft);
  display: none;
}
.cookie.show { display: block; animation: fadeIn .4s ease; }
.cookie h6 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--cream);
  font-weight: 400;
}
.cookie p { color: rgba(245,239,230,0.7); font-size: 12px; margin: 0 0 14px; }
.cookie .actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cookie .actions .btn { padding: 10px 18px; font-size: 11px; }
/* Cookie buttons — equal visual weight, no dark pattern */
.cookie .cookie-btn {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,239,230,0.55);
  min-width: 96px;
  text-align: center;
  justify-content: center;
}
.cookie .cookie-btn:hover {
  background: rgba(245,239,230,0.08);
  border-color: var(--cream);
}
.cookie .cookie-detail {
  color: var(--sand);
  border-bottom-color: rgba(224,207,181,0.6);
  margin-left: auto;
  font-size: 12px;
}
.cookie .cookie-detail:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* ----- Mobile nav drawer ----- */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; }
.drawer-close {
  width: 38px; height: 38px;
  border: 1px solid var(--midnight);
  background: transparent;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.drawer-close::before, .drawer-close::after {
  content: "";
  position: absolute;
  width: 14px; height: 1px;
  background: var(--midnight);
}
.drawer-close::before { transform: rotate(45deg); }
.drawer-close::after { transform: rotate(-45deg); }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-foot { margin-top: auto; padding-top: 32px; }
.drawer-foot .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

/* ----- Scroll reveal ----- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ----- Page hero (interior) ----- */
.page-hero {
  padding: 180px 0 80px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumb {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.page-hero .breadcrumb a { border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.page-hero .breadcrumb .sep { margin: 0 10px; color: var(--terra); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6.6vw, 92px);
  line-height: 1.0;
  letter-spacing: 0;
  max-width: 18ch;
}
.page-hero h1 em { color: var(--terra); font-style: italic; }
.page-hero .lede { max-width: 52ch; margin-top: 24px; color: var(--muted); }

/* ----- Service page packages ----- */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pkg {
  border: 1px solid var(--line);
  padding: 36px 32px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.pkg.featured { background: var(--midnight); color: var(--cream); border-color: var(--midnight); }
.pkg .pkg-tag {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.pkg.featured .pkg-tag { color: var(--sand); }
.pkg h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.pkg p.pkg-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.pkg.featured p.pkg-desc { color: rgba(245,239,230,0.7); }
.pkg ul { list-style: none; padding: 0; margin: 0 0 28px; }
.pkg li {
  padding: 12px 0;
  font-size: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 10px;
}
.pkg.featured li { border-color: rgba(245,239,230,0.12); }
.pkg li::before {
  content: "·";
  color: var(--terra);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.pkg .pkg-foot { margin-top: auto; font-size: 12px; color: var(--muted); font-style: italic; font-family: var(--serif); }
.pkg.featured .pkg-foot { color: rgba(245,239,230,0.55); }

/* ----- Two-column include/exclude ----- */
.inex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.inex .col h4 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 400;
}
.inex ul { list-style: none; padding: 0; margin: 0; }
.inex li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.inex li:last-child { border-bottom: 1px solid var(--line); }
.inex .in li::before { content: "+"; color: var(--olive); font-weight: 500; font-family: var(--serif); font-size: 20px; line-height: 1; }
.inex .ex li::before { content: "—"; color: var(--muted); font-weight: 500; }
.inex .ex li { color: var(--muted); }

/* ----- Pricing note ----- */
.pricing-note {
  border-left: 2px solid var(--terra);
  padding: 24px 28px;
  background: var(--cream-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  max-width: 60ch;
  margin: 48px 0;
}

/* ----- Big quote / closing ----- */
.closing {
  text-align: center;
  background: var(--cream);
  padding: clamp(96px, 14vw, 200px) 0;
}
.closing .quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 20ch;
  margin: 0 auto 32px;
}
.closing .sig { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .definition { grid-template-columns: 1fr; gap: 32px; }
  .services-head { grid-template-columns: 1fr; gap: 16px; }
  .services-head .tagline { justify-self: start; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-head { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .faq-side { position: static; margin-bottom: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .packages { grid-template-columns: 1fr; }
  .inex { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid .t1, .gallery-grid .t2, .gallery-grid .t3,
  .gallery-grid .t4, .gallery-grid .t5, .gallery-grid .t6 {
    grid-column: span 6; grid-row: auto;
  }
  .gallery-grid { grid-auto-rows: 200px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .site-header { padding: 14px var(--gutter); }
  .site-header .logo { font-size: 16px; }
  .site-header .logo small { display: none; }
  .nav-primary { display: none; }
  .header-right .btn { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-bar { display: flex; }
  .hero { padding-top: 100px; }
  .hero-corner { display: none; }
  .hero .meta-row {
    flex-wrap: wrap;
    gap: 6px 0;
    font-size: 10px;
    letter-spacing: .16em;
  }
  .hero .meta-row > span:last-child { display: none; }
  .hero .cta-row { gap: 10px; width: 100%; }
  .hero .cta-row .btn,
  .hero .cta-row .text-link { width: 100%; justify-content: center; margin-left: 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid .t1, .gallery-grid .t2, .gallery-grid .t3,
  .gallery-grid .t4, .gallery-grid .t5, .gallery-grid .t6 {
    grid-column: span 12; grid-row: auto;
  }
  .gallery-grid { grid-auto-rows: 240px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .drawer-nav a { font-size: 32px; }
  .quiz-options { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .display { font-size: clamp(40px, 12vw, 76px); }
  .hero h1.display { max-width: none; }
  .trust-inner { flex-direction: column; gap: 8px; padding: 8px 0; }
  .trust-inner .sep { display: none; }
  .cookie { left: 8px; right: 8px; bottom: 84px; padding: 16px; }
  /* Mobile sticky bar — prevent "Katalog" cutoff */
  .mobile-bar { padding: 8px 6px; gap: 6px; }
  .mobile-bar a {
    padding: 11px 4px;
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: none;
    font-weight: 600;
    min-width: 0;
    white-space: nowrap;
  }
}

/* Extra-narrow screens (iPhone SE / 360px) — keep everything inside the viewport */
@media (max-width: 380px) {
  .mobile-bar a { font-size: 9.5px; padding: 11px 2px; letter-spacing: 0; }
  .hero .meta-row { font-size: 9.5px; letter-spacing: .12em; }
  .btn { padding: 14px 18px; font-size: 12px; letter-spacing: .06em; }
  .btn--sm { padding: 10px 14px; font-size: 10.5px; }
}
