:root {
  --bg: #F2F0EC;
  --surface: #E5E0D8;
  --surface-2: #D8D2C8;
  --ink: #262220;
  --ink-soft: #5A5450;
  --accent: #6B584A;
  --accent-2: #A89070;
  --line: rgba(38,34,32,0.12);
  --line-strong: rgba(38,34,32,0.25);
  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 14px;
  --font-heading: 'EB Garamond', 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --container-max: 1180px;
  --container-pad: clamp(16px, 4vw, 32px);
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 240ms; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--accent-2); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
a:focus-visible, button:focus-visible { border-radius: 4px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.008em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.section {
  padding: clamp(48px, 8vw, 96px) 0;
  position: relative;
}
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.section-divider {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--line-strong);
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.ornament-spiral {
  display: block;
  margin: 0 auto 24px;
  opacity: 0.45;
}

.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
  background: var(--ink); color: var(--bg);
  padding: 8px 16px; z-index: 99999;
  font-size: 0.85rem; border-radius: 4px;
}
.skip-link:focus {
  position: fixed; left: 16px; top: 16px;
  width: auto; height: auto;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(242, 240, 236, 0.92);
  transition: background 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(242,240,236,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.logo:hover { color: var(--accent); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}
.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 240ms;
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; }
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a.is-active { color: var(--ink); font-weight: 500; }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 8px 20px;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 240ms, color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent); color: var(--bg) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
  transition: background 200ms;
}
.nav-toggle:hover { background: rgba(38,34,32,0.06); }
.nav-toggle:active { background: rgba(38,34,32,0.1); }
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 240ms, transform 240ms;
}
.drawer a:hover { color: var(--accent); transform: translateX(4px); }
.drawer a.is-active { color: var(--accent); font-weight: 500; }
.drawer-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  border-bottom: none !important;
  transition: background 240ms, color 240ms;
}
.drawer-cta:hover { background: var(--accent); color: var(--bg) !important; transform: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__inner {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  min-height: min(calc(100vh - var(--header-h)), 780px);
  padding: clamp(24px, 4vw, 48px) 0;
}
.hero__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  will-change: transform;
}
.hero__img-placeholder {
  aspect-ratio: 760/920;
  max-height: min(80vh, 700px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.hero__text { padding: clamp(16px, 3vw, 32px) 0; }
.hero__text h1 { margin: 12px 0 20px; }
.hero__sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 36ch;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(107,88,74,0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.trust-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding: 6px 12px;
  background: var(--surface);
  border-radius: 20px;
  white-space: nowrap;
}
.trust-badge svg { flex-shrink: 0; color: var(--accent-2); }

.section--surface { background: var(--surface); }
.section--band { background: var(--ink); color: var(--bg); }
.section--band h2 { color: var(--bg); }
.section--band .eyebrow { color: var(--accent-2); }
.section--band p { color: rgba(242,240,236,0.7); }

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 5vw, 48px) 0;
}
.stat-item { text-align: center; min-width: 120px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}
.stat-number small { font-size: 0.55em; opacity: 0.7; }
.stat-label { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }

.section--hikaye .hikaye-content {
  max-width: 720px;
  margin: 0 auto;
}
.section--hikaye .hikaye-content p {
  margin-bottom: 1.5em;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  color: var(--ink-soft);
}
.section--hikaye .hikaye-content p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.2em;
  float: left;
  line-height: 0.85;
  margin: 4px 10px 0 0;
  color: var(--accent);
}
.hikaye-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--accent);
  text-align: center;
  max-width: 600px;
  margin: clamp(32px, 5vw, 56px) auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.35;
}

.gallery-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(300px, 78vw);
  gap: clamp(16px, 2.5vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 24px 0 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 3px; }
.gallery-item {
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 36px -8px rgba(168,144,112,0.25), 0 0 0 1px rgba(168,144,112,0.08);
}
.gallery-item__img {
  aspect-ratio: 3/4;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.gallery-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover .gallery-item__img img { transform: scale(1.04); }
.gallery-item__wheel {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  opacity: 0.45;
  transition: opacity 320ms;
}
.gallery-item:hover .gallery-item__wheel { opacity: 0.8; }
.gallery-item__info { padding: 16px 18px; }
.gallery-item__info h4 { font-size: 1rem; margin-bottom: 4px; }
.gallery-item__info p { font-size: 0.82rem; color: var(--ink-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(32px, 5vw, 48px);
}
.testimonial-card {
  padding: clamp(20px, 3vw, 28px);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(107,88,74,0.15);
  border-color: rgba(168,144,112,0.25);
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.testimonial-card cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
}
.testimonial-card .cite-detail {
  font-size: 0.76rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.price-card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px -8px rgba(168,144,112,0.2);
}
.price-card--featured {
  border-color: var(--accent);
  background: var(--surface);
}
.price-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: 0.04em;
}
.price-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 16px;
  color: var(--accent-2);
}
.price-card h3 { margin-bottom: 8px; }
.price-card .price {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--accent);
  margin-bottom: 6px;
}
.price-card .price-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.price-card ul { margin-bottom: 16px; }
.price-card li {
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}
.price-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}
.dahil-degil li::before { background: var(--line-strong); }
.dahil-degil li { text-decoration: line-through; opacity: 0.7; }
.price-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 24px;
  font-style: italic;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(107,88,74,0.08);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.availability-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6B8A5E;
}

.process-timeline {
  position: relative;
  padding-left: 44px;
  max-width: 700px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 1.5px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 40px);
}
.process-step::before {
  content: '';
  position: absolute;
  left: -33px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.process-step .step-time {
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body { height: auto; padding-block-end: 20px; }
.faq-item .faq-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 640px;
}
.form-grid .field--full { grid-column: 1 / -1; }
.field { position: relative; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107,88,74,0.1), 0 4px 16px -4px rgba(168,144,112,0.15);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.field--checkbox label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0;
  cursor: pointer;
}
.form-submit { margin-top: 8px; }

.cancel-tiers { display: grid; gap: 12px; max-width: 500px; }
.cancel-tier {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 0.88rem;
  align-items: center;
}
.cancel-tier strong { color: var(--accent); }

.demand-badge {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 16px;
}

.site-footer {
  background: var(--ink);
  color: rgba(242,240,236,0.7);
  padding: clamp(40px, 6vw, 72px) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(32px, 5vw, 48px);
}
.footer__col h4 { color: var(--bg); font-size: 1rem; margin-bottom: 16px; }
.footer__col p,
.footer__col a { font-size: 0.85rem; line-height: 1.7; color: rgba(242,240,236,0.6); }
.footer__col a { transition: color 240ms; }
.footer__col a:hover { color: var(--accent-2); }
.footer__col ul li { margin-bottom: 8px; }
.footer__col .footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px;
}
.footer__col .footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-2); }
.atelier-notes { margin-top: 16px; }
.atelier-notes .note-item {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
}
.atelier-notes .note-item:last-child { border-bottom: none; }
.atelier-notes .note-date {
  white-space: nowrap;
  color: var(--accent-2);
  font-weight: 500;
  min-width: 80px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(242,240,236,0.4);
}
.footer__bottom a { color: rgba(242,240,236,0.5); }
.footer__bottom a:hover { color: var(--accent-2); }

.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(242,240,236,0.85);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.3);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { color: var(--bg); font-size: 0.95rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; line-height: 1.55; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-banner p a:hover { color: var(--bg); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-banner__actions button {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 44px;
  cursor: pointer;
  transition: background 240ms, color 240ms;
}
.cookie-btn-accept { background: var(--accent-2); color: var(--ink); font-weight: 600; }
.cookie-btn-accept:hover { background: var(--bg); color: var(--ink); }
.cookie-btn-reject { background: rgba(255,255,255,0.12); color: rgba(242,240,236,0.85); font-weight: 400; }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.15); color: var(--bg); }
.cookie-btn-settings { background: transparent; color: rgba(242,240,236,0.5); border: 1px solid rgba(255,255,255,0.12); font-weight: 400; }
.cookie-btn-settings:hover { background: rgba(255,255,255,0.06); color: var(--bg); }
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms cubic-bezier(.16,.73,.2,1),
              transform 680ms cubic-bezier(.16,.73,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
.hero .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: none;
  animation: hero-enter 750ms cubic-bezier(.16,.73,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms + 200ms);
}
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; animation: none; }

@keyframes kiln-glow {
  0%, 100% { box-shadow: 0 4px 16px -4px rgba(168,144,112,0.05); }
  50% { box-shadow: 0 12px 36px -4px rgba(168,144,112,0.3); }
}
@keyframes wheel-turn { to { transform: rotate(360deg); } }
@keyframes clay-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.012); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes warm-glow {
  0%, 100% { box-shadow: 0 2px 8px rgba(168,144,112,0); }
  50% { box-shadow: 0 4px 20px rgba(168,144,112,0.15); }
}
.availability-badge .dot { animation: pulse-dot 2s ease infinite; }
.price-card { transition: transform 380ms cubic-bezier(.16,.73,.2,1), box-shadow 380ms cubic-bezier(.16,.73,.2,1); }
.price-card:hover { animation: kiln-glow 2.8s ease infinite; }
.testimonial-card { transition: transform 380ms cubic-bezier(.16,.73,.2,1), box-shadow 380ms cubic-bezier(.16,.73,.2,1), border-color 380ms; }
.gallery-item { transition: transform 380ms cubic-bezier(.16,.73,.2,1), box-shadow 380ms cubic-bezier(.16,.73,.2,1); }
.channel-card { transition: transform 380ms cubic-bezier(.16,.73,.2,1), box-shadow 380ms cubic-bezier(.16,.73,.2,1), border-color 380ms; }
.team-card { transition: transform 380ms cubic-bezier(.16,.73,.2,1), box-shadow 380ms cubic-bezier(.16,.73,.2,1); }
.btn-primary { transition: background 260ms cubic-bezier(.16,.73,.2,1), color 260ms, transform 220ms cubic-bezier(.16,.73,.2,1), box-shadow 260ms; }
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 8px 24px -6px rgba(107,88,74,0.4);
}
.btn-ghost { transition: background 260ms cubic-bezier(.16,.73,.2,1), color 260ms, border-color 260ms, transform 220ms cubic-bezier(.16,.73,.2,1); }
.nav-desktop a:not(.nav-cta)::after {
  transition: width 320ms cubic-bezier(.16,.73,.2,1);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__media { animation: clay-breathe 10s ease-in-out infinite; }
  .gallery-item:hover .gallery-item__wheel { animation: wheel-turn 4s linear infinite; }
  .process-step { transition: transform 280ms cubic-bezier(.16,.73,.2,1); }
  .process-step:hover { transform: translateX(4px); }
  .faq-item summary { transition: color 240ms, padding-left 280ms cubic-bezier(.16,.73,.2,1); }
  .faq-item summary:hover { padding-left: 4px; }
  .credential-badge { transition: transform 240ms cubic-bezier(.16,.73,.2,1), box-shadow 240ms; }
  .credential-badge:hover { transform: translateY(-2px); box-shadow: 0 4px 12px -4px rgba(107,88,74,0.15); }
  .cancel-tier { transition: transform 240ms cubic-bezier(.16,.73,.2,1), box-shadow 240ms; }
  .cancel-tier:hover { transform: translateY(-2px); box-shadow: 0 4px 12px -4px rgba(107,88,74,0.1); }
  .footer__col a { transition: color 240ms, transform 200ms cubic-bezier(.16,.73,.2,1); }
  .footer__col a:hover { transform: translateX(2px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media, .price-card:hover { animation: none; }
  .hero .reveal { animation: none; opacity: 1; transform: none; }
  .gallery-item:hover .gallery-item__wheel { animation: none; }
  .availability-badge .dot { animation: none; }
  .process-step:hover { transform: none; }
  .faq-item summary:hover { padding-left: 0; }
  .credential-badge:hover { transform: none; }
  .cancel-tier:hover { transform: none; }
  .footer__col a:hover { transform: none; }
}

.scroll-spiral {
  position: fixed;
  left: 12px; top: 0;
  width: 28px; height: 100vh;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 1280px) { .scroll-spiral { display: none; } }

.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
.table-scroll th,
.table-scroll td {
  padding: 10px 14px;
  font-size: 0.88rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table-scroll th { font-weight: 500; color: var(--ink); background: var(--surface); }
.table-scroll td { color: var(--ink-soft); }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.contact-hero {
  padding: calc(var(--header-h) + clamp(40px, 6vw, 80px)) 0 clamp(40px, 6vw, 64px);
  text-align: center;
}
.contact-hero h1 { margin: 12px 0 16px; }
.contact-hero .hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--ink-soft);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}
.channel-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(18px, 3vw, 24px);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(107,88,74,0.15);
  border-color: rgba(168,144,112,0.3);
}
.channel-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background 300ms cubic-bezier(.16,.73,.2,1), color 300ms, box-shadow 300ms;
}
.channel-card:hover .channel-card__icon { background: var(--accent); color: var(--bg); box-shadow: 0 4px 16px -4px rgba(107,88,74,0.3); }
.channel-card h4 { font-size: 0.95rem; }
.channel-card a { color: var(--accent); font-size: 0.9rem; word-break: break-all; }
.channel-card a:hover { color: var(--ink); }
.channel-card .channel-note { font-size: 0.78rem; color: var(--ink-soft); }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.hours-day {
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
}
.hours-day strong { display: block; font-size: 0.78rem; color: var(--accent); margin-bottom: 2px; }
.hours-day.is-today { border: 1.5px solid var(--accent); background: rgba(107,88,74,0.06); }

.thankyou-section {
  padding: calc(var(--header-h) + clamp(60px, 10vw, 120px)) 0 clamp(60px, 10vw, 120px);
  text-align: center;
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.thankyou-section h1 { margin-bottom: 16px; }
.thankyou-section p { color: var(--ink-soft); margin-bottom: 28px; max-width: 400px; }

.policy-hero {
  padding: calc(var(--header-h) + clamp(40px, 6vw, 64px)) 0 clamp(24px, 4vw, 40px);
}
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: clamp(48px, 8vw, 80px);
}
.policy-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: clamp(1.3rem, 2vw, 1.6rem); }
.policy-content h3 { margin-top: 28px; margin-bottom: 12px; }
.policy-content p { margin-bottom: 14px; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.7; }
.policy-content ul { margin: 12px 0 18px 20px; list-style: disc; }
.policy-content li { margin-bottom: 6px; font-size: 0.9rem; color: var(--ink-soft); }
.policy-content .last-updated { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; margin-bottom: 24px; }

.page-404 {
  padding: calc(var(--header-h) + 80px) 0 80px;
  text-align: center;
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.page-404 h1 { font-size: clamp(4rem, 10vw, 4.5rem); color: var(--surface); }
.page-404 h2 { margin-bottom: 12px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 24px; }

.sitemap-list { margin: 24px 0; }
.sitemap-list li { margin-bottom: 10px; }
.sitemap-list a { font-size: 0.95rem; color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 240ms; }
.sitemap-list a:hover { border-color: var(--accent); }

.about-hero { padding: calc(var(--header-h) + clamp(40px, 6vw, 80px)) 0 clamp(32px, 5vw, 56px); }
.about-content { max-width: 800px; margin: 0 auto; }
.about-content p { margin-bottom: 1.3em; color: var(--ink-soft); font-size: 0.95rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(24px, 4vw, 40px);
}
.team-card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(107,88,74,0.15);
}
.team-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface);
  margin-bottom: 16px;
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .team-role { font-size: 0.82rem; color: var(--accent); margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

.credentials-list {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 20px;
}
.credential-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.credential-badge svg { color: var(--accent-2); flex-shrink: 0; }

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 0 40px;
  }
  .hero__media { max-width: 100%; order: -1; }
  .hero__img-placeholder { aspect-ratio: 16/10; }
  .hero__sub { max-width: none; }
  .contact-form-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .stats-row { gap: 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .section { padding: clamp(36px, 8vw, 56px) 0; }
  .gallery-scroll { grid-auto-columns: min(270px, 85vw); }
  .price-card { padding: 20px; }
  .process-timeline { padding-left: 32px; }
  .process-step::before { left: -22px; width: 10px; height: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px 18px; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions button { width: 100%; }
}
@media (max-width: 430px) {
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 5px 10px; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .drawer { padding-left: 20px; padding-right: 20px; }
}

@keyframes reveal-ensure {
  to { opacity: 1; transform: translateY(0); }
}
.js .reveal:not(.is-in):not([data-hero-reveal]) {
  animation: reveal-ensure 0.5s 1.2s both;
  animation-timing-function: cubic-bezier(.16,.73,.2,1);
}
.js .reveal.is-in { animation: none; }

@media (prefers-reduced-motion: no-preference) {
  .stat-item { transition: transform 280ms cubic-bezier(.16,.73,.2,1); cursor: default; }
  .stat-item:hover { transform: translateY(-2px); }
  .trust-badge { transition: transform 200ms cubic-bezier(.16,.73,.2,1), background 200ms; }
  .trust-badge:hover { transform: translateY(-1px); background: var(--surface-2); }
  .gallery-item:hover {
    box-shadow: 0 14px 36px -8px rgba(168,144,112,0.3), 0 0 20px -4px rgba(168,144,112,0.12);
  }
  .testimonial-card:hover {
    box-shadow: 0 8px 24px -8px rgba(107,88,74,0.18), 0 0 16px -4px rgba(168,144,112,0.1);
  }
  .btn-primary:active { transform: translateY(0) scale(0.98); }
  .btn-ghost:active { transform: translateY(0) scale(0.98); }
}

@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .scroll-spiral, .skip-link { display: none !important; }
  body { color: #000; background: #fff; }
  .section { page-break-inside: avoid; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
