:root {
  interpolate-size: allow-keywords;
  --bg: #F6F0E6;
  --surface: #EBE1D3;
  --surface-2: #E0D4C2;
  --ink: #2E2118;
  --ink-soft: #5A4A3C;
  --accent: #9E5A2C;
  --accent-2: #C89468;
  --line: rgba(46, 33, 24, 0.12);
  --line-strong: rgba(46, 33, 24, 0.28);
  --header-h: 72px;
  --container-px: clamp(1.25rem, 5vw, 3rem);
  --radius: 8px;
  --radius-lg: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p { max-width: 68ch; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

a:hover { color: var(--accent-2); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top 200ms;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection {
  background: var(--accent-2);
  color: var(--bg);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(246, 240, 230, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background: rgba(246, 240, 230, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 1;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1100;
}
.logo:hover { color: var(--accent); }
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}
.nav-desktop .nav-cta.is-active { color: var(--bg); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  width: 44px;
  height: 44px;
  padding: 8px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  position: absolute;
  left: 9px;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.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);
}

/* Mobile drawer */
.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;
}
.mobile-drawer {
  position: fixed; height: 100vh;
  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) + 24px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, transform 240ms;
}
.mobile-drawer a:hover {
  color: var(--accent);
  transform: translateX(6px);
}
.mobile-drawer a.is-active {
  color: var(--accent);
}
.mobile-drawer .drawer-cta {
  margin-top: 16px;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  border-radius: var(--radius);
  padding: 14px 24px;
  border: none;
  font-weight: 700;
}
.mobile-drawer .drawer-cta:hover {
  background: var(--accent);
  color: var(--bg);
}
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, color 200ms;
  z-index: 1;
}
.drawer-close:hover {
  background: var(--surface);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ── MAIN ── */
main {
  padding-top: var(--header-h);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-bg img {
  width: 100% !important;
  height: 100%;
  max-width: 1400px !important;
  object-fit: cover;
  will-change: transform;
  transform: none !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(46, 33, 24, 0.35) 0%,
    rgba(46, 33, 24, 0.55) 60%,
    rgba(46, 33, 24, 0.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 780px;
  padding: 0 var(--container-px);
}
.hero-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
  display: inline-block;
}
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.3);
}
.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charReveal 0.6s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes charReveal {
  to { opacity: 1; transform: none; }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 180ms, color 240ms;
}
.hero-cta:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
}
.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 240ms;
}
.hero-cta:hover svg { transform: translateX(4px); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
}
.trust-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .char {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
html.no-js .hero h1 .char { opacity: 1; transform: none; animation: none; }

/* ── SECTIONS ── */
section {
  padding: clamp(60px, 10vw, 120px) 0;
}
.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 20px;
}
.section-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.8;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 28px 0;
}

/* Fingerprint texture SVG separator */
.fingerprint-sep {
  text-align: center;
  padding: 20px 0;
  opacity: 0.15;
}

/* ── HIKAYE (Story) ── */
.hikaye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: 48px;
}
.hikaye-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hikaye-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.hikaye-img-wrap:hover img { transform: scale(1.04); }
.hikaye-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent-2);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 400ms;
}
.hikaye-img-wrap:hover::after { opacity: 0.4; }

.hikaye-text p {
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.hikaye-text p:first-of-type::first-letter {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.4em;
  float: left;
  line-height: 0.8;
  margin: 4px 12px 0 0;
  color: var(--accent);
}
.hikaye-quote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--accent);
  border-left: 3px solid var(--accent-2);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hikaye-grid { grid-template-columns: 1fr; }
  .hikaye-img-wrap { max-width: 480px; margin: 0 auto; }
}

/* ── GELENEK (Tradition) — dark band ── */
.gelenek {
  background: var(--ink);
  color: var(--bg);
}
.gelenek .section-eyebrow { color: var(--accent-2); }
.gelenek .section-title { color: var(--bg); }
.gelenek .section-lead { color: rgba(246,240,230,0.72); }
.gelenek .section-divider { background: var(--accent-2); }

.gelenek-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 48px;
}
.gelenek-text p {
  color: rgba(246,240,230,0.82);
  margin-bottom: 16px;
}

.gelenek-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.value-card {
  background: rgba(246,240,230,0.06);
  border: 1px solid rgba(246,240,230,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: background 280ms, transform 280ms;
}
.value-card:hover {
  background: rgba(246,240,230,0.1);
  transform: translateY(-4px);
}
.value-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.value-card h4 {
  font-size: 1rem;
  color: var(--bg);
  margin-bottom: 6px;
}
.value-card p {
  font-size: 0.88rem;
  color: rgba(246,240,230,0.65);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .gelenek-content { grid-template-columns: 1fr; }
  .gelenek-values { grid-template-columns: 1fr; }
}

/* ── SUREC (Process) — vertical timeline ── */
.surec-timeline {
  margin-top: 56px;
  position: relative;
}
.surec-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.surec-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
}
.surec-step:last-child { margin-bottom: 0; }
.step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 280ms, transform 280ms;
}
.surec-step:hover .step-marker {
  background: var(--accent);
  transform: scale(1.08);
}
.surec-step:hover .step-marker svg { color: var(--bg); }
.step-marker svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: color 280ms;
}
.step-time {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.step-body h3 {
  margin-bottom: 8px;
}
.step-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.step-img {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: clamp(300px, 60%, 540px);
}
.step-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.step-img:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .surec-timeline::before { left: 18px; }
  .surec-step { grid-template-columns: 40px 1fr; gap: 18px; }
  .step-marker { width: 40px; height: 40px; }
  .step-marker svg { width: 18px; height: 18px; }
}

/* ── THEME SIGNATURE: Pottery Sequence SVG ── */
.pottery-sequence {
  padding: clamp(40px, 8vw, 80px) 0;
  background: var(--surface);
}
.pottery-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.pottery-stage {
  text-align: center;
  flex: 0 0 auto;
}
.pottery-stage svg {
  width: clamp(56px, 8vw, 80px);
  height: clamp(56px, 8vw, 80px);
  display: block;
  margin: 0 auto 12px;
}
.pottery-stage svg path,
.pottery-stage svg circle,
.pottery-stage svg rect,
.pottery-stage svg polyline,
.pottery-stage svg line {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s cubic-bezier(.2,.7,.2,1);
}
.pottery-stage.is-drawn svg path,
.pottery-stage.is-drawn svg circle,
.pottery-stage.is-drawn svg rect,
.pottery-stage.is-drawn svg polyline,
.pottery-stage.is-drawn svg line {
  stroke-dashoffset: 0;
}
.pottery-stage-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.pottery-arrow {
  color: var(--accent-2);
  opacity: 0.5;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pottery-stages { gap: 16px; }
  .pottery-arrow { display: none; }
  .pottery-stages { display: grid; grid-template-columns: repeat(3, 1fr); }
}

/* ── KOLEKSIYON (Collection) ── */
.koleksiyon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(158,90,44,0.18);
}
.product-img {
  overflow: hidden;
  aspect-ratio: 1/1;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-info {
  padding: 22px 24px 26px;
}
.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.product-info .product-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.6;
}
.product-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}
.product-price small {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
}
.price-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 32px;
  font-style: italic;
}

@media (max-width: 640px) {
  .koleksiyon-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--surface);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(158,90,44,0.12);
}
.testimonial-text {
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.testimonial-text::before {
  content: '\201C';
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  color: var(--accent-2);
  line-height: 0;
  display: block;
  margin-bottom: 12px;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}
.testimonial-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── STATS / COUNTERS ── */
.stats-band {
  background: var(--accent);
  padding: clamp(40px, 7vw, 72px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 430px) {
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(158,90,44,0.16);
  border-color: var(--accent-2);
}
.price-card.featured {
  border-color: var(--accent);
  background: var(--bg);
  position: relative;
}
.price-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.price-card .price-amount {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}
.price-card .price-amount small {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.price-includes {
  list-style: none;
  margin-bottom: 14px;
}
.price-includes li {
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}
.price-includes li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}
.price-excludes {
  list-style: none;
  margin-top: 8px;
}
.price-excludes li {
  font-size: 0.82rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  opacity: 0.65;
}
.price-excludes li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.price-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 32px;
  font-style: italic;
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── ZIYARET (Visit) ── */
.ziyaret-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 48px;
}
.ziyaret-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.ziyaret-info-item:hover {
  transform: translateX(4px);
}
.ziyaret-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.ziyaret-info-item:hover svg {
  color: var(--accent-2);
  transform: scale(1.08);
}
.ziyaret-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ziyaret-value {
  font-size: 0.95rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.ziyaret-value a {
  color: var(--accent);
}

@media (max-width: 768px) {
  .ziyaret-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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: 26px;
}
.faq-body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ── PROCESS PAGE CARDS ── */
.process-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
}
.process-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 340px;
  align-items: stretch;
}
.process-card:nth-child(even) { direction: rtl; }
.process-card:nth-child(even) > * { direction: ltr; }
.process-card-img {
  overflow: hidden;
}
.process-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.process-card:hover .process-card-img img { transform: scale(1.04); }
.process-card-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.process-card:nth-child(even) .process-card-body { background: var(--bg); }
.process-card-body .step-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-2);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.process-card-body h3 { margin-bottom: 10px; }
.process-card-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-card { grid-template-columns: 1fr; }
  .process-card:nth-child(even) { direction: ltr; }
  .process-card-img { aspect-ratio: 16/9; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(246,240,230,0.7);
  padding: clamp(48px, 8vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
}
.footer-brand {
  max-width: 300px;
}
.footer-brand .logo {
  color: var(--bg);
  margin-bottom: 18px;
  font-size: 1.15rem;
}
.footer-brand .logo:hover { color: var(--accent-2); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(246,240,230,0.6);
}
.footer-col h4 {
  color: var(--bg);
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  color: rgba(246,240,230,0.6);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 200ms, transform 200ms;
}
.footer-col a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}
.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a {
  padding: 0;
  display: inline;
}
.footer-bottom {
  border-top: 1px solid rgba(246,240,230,0.1);
  padding: 24px 0;
  margin-top: clamp(40px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a {
  color: rgba(246,240,230,0.5);
  padding: 0;
}
.footer-bottom a:hover { color: var(--accent-2); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.35);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 1024px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 {
  font-size: 1rem;
  color: var(--bg);
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(246,240,230,0.72);
  margin-bottom: 18px;
  line-height: 1.6;
}
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: background 200ms, color 200ms;
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: #fff;
}
.cookie-actions .cookie-accept:hover { background: var(--accent-2); color: #fff; }
.cookie-actions .cookie-reject {
  background: rgba(246,240,230,0.12);
  color: var(--bg);
  border: 1px solid rgba(246,240,230,0.2);
}
.cookie-actions .cookie-reject:hover {
  background: rgba(246,240,230,0.2);
  color: var(--bg);
}
.cookie-actions .cookie-settings {
  background: transparent;
  color: rgba(246,240,230,0.6);
  border: 1px solid rgba(246,240,230,0.15);
}
.cookie-actions .cookie-settings:hover {
  background: rgba(246,240,230,0.08);
  color: var(--bg);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── NICHE ANIMATIONS ── */
@keyframes claySpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes glazeDrip {
  0% { transform: scaleY(0); transform-origin: top; }
  60% { transform: scaleY(1.05); }
  100% { transform: scaleY(1); transform-origin: top; }
}
@keyframes kilnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(158, 90, 44, 0); }
  50% { box-shadow: 0 0 32px 4px rgba(158, 90, 44, 0.25); }
}
@keyframes steamRise {
  0% { opacity: 0.7; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-28px) scale(1.4); }
}
@keyframes fingerprint {
  0% { stroke-dashoffset: 120; }
  100% { stroke-dashoffset: 0; }
}

.clay-spin { animation: claySpin 12s linear infinite; }
.kiln-glow { animation: kilnGlow 4s cubic-bezier(.4,0,.2,1) infinite; }

.steam-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: steamRise 3s ease-out infinite;
}
.steam-particle:nth-child(2) { animation-delay: 1s; left: 30%; }
.steam-particle:nth-child(3) { animation-delay: 2s; left: 60%; }

@media (prefers-reduced-motion: reduce) {
  .clay-spin, .kiln-glow, .steam-particle { animation: none !important; }
}

/* Card hover niche effect */
.product-card:hover,
.value-card:hover {
  box-shadow: 0 16px 40px -12px rgba(158, 90, 44, 0.18);
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 48px;
}
.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 4px;
}
.contact-channel:hover {
  transform: translateX(4px);
}
.contact-channel svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 240ms, transform 240ms;
}
.contact-channel:hover svg {
  color: var(--accent-2);
  transform: scale(1.08);
}
.channel-label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 2px;
}
.channel-value {
  font-size: 0.95rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-value a { color: var(--accent); }

/* ── FORM ── */
.form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
}
.form-wrap h3 {
  margin-bottom: 24px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(158, 90, 44, 0.12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-checkbox {
  display: flex;
  align-items: start;
  gap: 12px;
}
.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 label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.field-checkbox label a { text-decoration: underline; }
.field-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #c0392b;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.form-success.is-visible { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--accent); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--surface);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.1);
}
.team-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);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.team-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── POLICY PAGES ── */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) 0;
}
.policy-content h1 {
  margin-bottom: 12px;
}
.policy-content .policy-date {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.policy-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.policy-content p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.policy-content ul, .policy-content ol {
  margin: 12px 0 20px 24px;
  color: var(--ink-soft);
}
.policy-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ── TABLE SCROLL ── */
.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%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
th {
  font-weight: 700;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
td { color: var(--ink-soft); }

/* ── 404 ── */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--accent-2);
  opacity: 0.4;
  margin-bottom: 8px;
}
.page-404 h2 { margin-bottom: 16px; }
.page-404 p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SITEMAP PAGE ── */
.sitemap-list {
  list-style: none;
  margin-top: 32px;
}
.sitemap-list li { margin-bottom: 10px; }
.sitemap-list a {
  font-size: 1rem;
  padding: 8px 0;
  display: inline-block;
}
.sitemap-list ul {
  list-style: none;
  padding-left: 24px;
  margin-top: 6px;
}
.sitemap-list ul a {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ── PRINT ── */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ── PAGES HERO (inner pages) ── */
.page-hero {
  background: var(--surface);
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
}
.page-hero .section-eyebrow { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Wave SVG divider ── */
.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
}
.wave-divider path { fill: var(--bg); }
.wave-divider.wave-dark path { fill: var(--ink); }
.wave-divider.wave-surface path { fill: var(--surface); }

/* ── Cancellation tiers ── */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.cancel-tier {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--line);
}
.cancel-tier h4 { font-size: 1rem; margin-bottom: 6px; }
.cancel-tier .tier-pct {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.cancel-tier p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 6px; }

@media (max-width: 640px) {
  .cancel-tiers { grid-template-columns: 1fr; }
}

/* ── About page ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: 48px;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-text p {
  margin-bottom: 16px;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 420px; margin: 0 auto; }
}

/* drawer-close hidden — hamburger handles close */
.drawer-close { display: none !important; }
