:root {
  --bg: #0D0D0D;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --ink: #F2E9DC;
  --ink-soft: rgba(242,233,220,0.55);
  --accent: #C5A880;
  --accent-2: #8B6F4E;
  --line: rgba(197,168,128,0.22);
  --line-strong: rgba(197,168,128,0.5);
  --header-h: 72px;
  --container-pad: clamp(16px, 4vw, 32px);
  interpolate-size: allow-keywords;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body { font-family: 'Raleway', 'Segoe UI', Tahoma, sans-serif; font-weight: 300; font-size: 1rem; line-height: 1.7; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; background: var(--surface-2); }
a { color: var(--accent); text-decoration: none; transition: color 240ms ease; }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }

h1,h2,h3,h4 { font-family: 'Bodoni Moda', 'Didot', 'Bodoni MT', Georgia, serif; font-weight: 400; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Raleway', sans-serif; font-weight: 500; }
p { margin-bottom: 1em; }
strong { font-weight: 600; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); }
main { padding-top: var(--header-h); }
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.section { padding: clamp(64px, 10vw, 120px) 0; }

.skip-link { position: absolute; top: -100px; left: 16px; background: var(--accent); color: var(--bg); padding: 8px 16px; z-index: 9999; font-weight: 500; border-radius: 0 0 4px 4px; transition: top 200ms; }
.skip-link:focus { top: 0; }

.eyebrow { font-family: 'Raleway', sans-serif; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 16px; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1080; background: rgba(13,13,13,0.85); transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease; padding: 0; }
.site-header.is-scrolled { background: rgba(13,13,13,0.98); box-shadow: 0 8px 24px -16px rgba(0,0,0,.18); }
.header__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; padding: 0 var(--container-pad); height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo__mark { width: 32px; height: 32px; color: var(--accent); }
.logo__text { font-family: 'Bodoni Moda', serif; font-size: 1.25rem; letter-spacing: 0.04em; color: var(--ink); }

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop .nav__link { font-family: 'Raleway', sans-serif; font-weight: 400; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; position: relative; padding: 4px 0; transition: color 240ms ease; }
.nav-desktop .nav__link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform 320ms cubic-bezier(.2,.7,.2,1); }
.nav-desktop .nav__link:hover { color: var(--ink); }
.nav-desktop .nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-desktop .nav__link.is-active { color: var(--accent); }
.nav-desktop .nav__link.is-active::after { transform: scaleX(1); }
.nav-desktop .nav-cta { font-family: 'Raleway', sans-serif; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 24px; border: 1px solid var(--accent); color: var(--ink); background: transparent; text-decoration: none; transition: background 240ms ease, color 240ms ease, transform 240ms ease; }
.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:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.nav-toggle { display: none; position: relative; z-index: 1100; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease; transform-origin: center; border-radius: 2px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.drawer { position: fixed; inset: 0; z-index: 1050; pointer-events: none; visibility: hidden; }
.drawer.is-open { pointer-events: auto; visibility: visible; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; transition: opacity 240ms ease; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 92vw); background: var(--surface); transform: translateX(100%); transition: transform 320ms cubic-bezier(.2,.7,.2,1); padding: calc(var(--header-h) + 40px) 32px 40px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__panel nav { display: flex; flex-direction: column; gap: 4px; }
.drawer__panel nav a { font-family: 'Raleway', sans-serif; font-weight: 400; font-size: 1.1rem; color: var(--ink-soft); padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: color 240ms ease, padding-left 240ms ease; }
.drawer__panel nav a:hover { color: var(--ink); padding-left: 8px; }
.drawer__panel nav a.is-active { color: var(--accent); }
.drawer__panel .btn-primary { margin-top: 16px; text-align: center; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; font-family: 'Raleway', sans-serif; font-weight: 500; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 32px; background: var(--accent); color: var(--bg); border: none; cursor: pointer; text-decoration: none; transition: background 240ms ease, color 240ms ease, transform 240ms ease, box-shadow 240ms ease; }
.btn-primary::after { content: '\2192'; display: inline-block; transition: transform 240ms ease; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--ink); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(197,168,128,0.3), 0 0 0 1px rgba(197,168,128,0.1); }
.btn-primary:hover::after { transform: translateX(4px); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; font-family: 'Raleway', sans-serif; font-weight: 500; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 32px; background: transparent; color: var(--ink); border: 1px solid var(--line-strong); cursor: pointer; text-decoration: none; transition: background 240ms ease, color 240ms ease, border-color 240ms ease; }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.hero__parallax { position: absolute; inset: -20% 0 0 0; width: 100%; height: 120%; }
.hero__media { position: absolute; inset: 0; overflow: hidden;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'%3E%3Cpath d='M50 2C35 8 12 30 8 58 5 80 22 115 50 138 78 115 95 80 92 58 88 30 65 8 50 2Z' fill='%23fff'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'%3E%3Cpath d='M50 2C35 8 12 30 8 58 5 80 22 115 50 138 78 115 95 80 92 58 88 30 65 8 50 2Z' fill='%23fff'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: 80%; mask-size: 80%;
  animation: leafReveal 1.6s cubic-bezier(.2,.7,.2,1) 0.1s forwards;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 12s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 1; pointer-events: none; }
.hero__petals { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.petal { position: absolute; top: -40px; opacity: 0; animation: petalDrift var(--dur, 10s) cubic-bezier(.4,0,.2,1) var(--delay, 0s) infinite; }
.hero__content { position: relative; z-index: 3; text-align: center; padding: 0 var(--container-pad); max-width: 900px; }
.hero__content .eyebrow { color: var(--accent); margin-bottom: 20px; font-size: 0.8rem; letter-spacing: 0.12em; opacity: 0; animation: fadeUp 700ms cubic-bezier(.16,.73,.2,1) 0.2s forwards; }
.hero__content h1 { font-size: clamp(36px, 5vw, 72px); max-width: min(20ch, 90%); margin-left: auto; margin-right: auto; letter-spacing: -0.012em; color: #fff; margin-bottom: 20px; opacity: 0; animation: fadeUp 700ms cubic-bezier(.16,.73,.2,1) 0.4s forwards; }
.hero__content .hero__sub { font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--ink-soft); margin-bottom: 36px; font-weight: 300; opacity: 0; animation: fadeUp 700ms cubic-bezier(.16,.73,.2,1) 0.6s forwards; }
.hero__content .btn-primary { opacity: 0; animation: fadeUp 700ms cubic-bezier(.16,.73,.2,1) 0.8s forwards; }

@keyframes leafReveal {
  from { -webkit-mask-size: 80%; mask-size: 80%; }
  to { -webkit-mask-size: 350%; mask-size: 350%; }
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
@keyframes petalDrift {
  0% { transform: translate(0,0) rotate(0deg); opacity: 0; }
  8% { opacity: 0.5; }
  85% { opacity: 0.4; }
  100% { transform: translate(calc(var(--dx,60) * 1px), 100vh) rotate(calc(var(--rot,180) * 1deg)); opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
@keyframes goldShimmer {
  0% { left: -75%; }
  100% { left: 150%; }
}
@keyframes stemDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media { -webkit-mask-size: 350% !important; mask-size: 350% !important; animation: none !important; }
  .hero__media img { animation: none !important; }
  .petal { animation: none !important; display: none; }
  .hero__content .eyebrow, .hero__content h1, .hero__content .hero__sub, .hero__content .btn-primary { opacity: 1 !important; animation: none !important; transform: none !important; }
  .trust-strip { opacity: 1 !important; animation: none !important; transform: none !important; }
  .marquee__track { animation: none !important; }
}

.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 40px; opacity: 0; animation: fadeUp 700ms cubic-bezier(.16,.73,.2,1) 1s forwards; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.trust-badge svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.marquee { overflow: hidden; white-space: nowrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; background: var(--surface); }
.marquee__track { display: inline-flex; gap: 40px; animation: marqueeScroll 30s linear infinite; }
.marquee__track span { font-family: 'Bodoni Moda', serif; font-size: clamp(0.9rem, 1.5vw, 1.1rem); color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }
.marquee__track .dot { color: var(--accent); font-size: 0.6rem; }

.stats-strip { padding: 60px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat__number { font-family: 'Bodoni Moda', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--accent); line-height: 1; display: block; margin-bottom: 8px; }
.stat__label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 600ms cubic-bezier(.16,.73,.2,1), transform 600ms cubic-bezier(.16,.73,.2,1); transition-delay: calc(var(--i, 0) * 80ms); animation: revealFallback 600ms cubic-bezier(.16,.73,.2,1) calc(var(--i, 0) * 80ms + 0.4s) both; }
.reveal.is-in { opacity: 1; transform: none; animation: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; } }
html.no-js .reveal { opacity: 1; transform: none; animation: none; }

.section h2 { position: relative; display: inline-block; }
.section h2::after { content: ''; display: block; width: 60px; height: 1px; background: var(--accent); margin-top: 16px; transform: scaleX(0); transform-origin: left; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-in.section-heading::after, .section h2.is-in::after, .section h2:not(.reveal)::after { transform: scaleX(1); }

.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: 48px; }
.portfolio-tile { position: relative; display: block; overflow: hidden; border: 1px solid var(--line); text-decoration: none; }
.portfolio-tile__media { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.portfolio-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.portfolio-tile__media::after { content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(197,168,128,0.12), transparent); transform: skewX(-25deg); pointer-events: none; }
.portfolio-tile:hover .portfolio-tile__media::after { animation: goldShimmer 0.8s ease forwards; }
.portfolio-tile:hover .portfolio-tile__media img { transform: scale(1.04); }
.portfolio-tile__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 24px; background: linear-gradient(transparent, rgba(0,0,0,0.75)); opacity: 0; visibility: hidden; transform: translateY(10px); }
.portfolio-tile:hover .portfolio-tile__info { opacity: 1; visibility: visible; transform: none; transition: opacity 360ms ease, transform 360ms ease; }
.portfolio-tile__info h3 { font-size: 1.3rem; color: #fff; margin-bottom: 4px; }
.portfolio-tile__info span { font-size: 0.8rem; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; }
.portfolio-tile:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (hover: none), (max-width: 1024px) {
  .portfolio-tile__info { opacity: 1; transform: none; background: linear-gradient(transparent, rgba(0,0,0,0.8)); }
}

.vine-divider { text-align: center; padding: 32px 0; color: var(--accent); }
.vine-divider svg { max-width: 180px; margin: 0 auto; }
.vine-path { stroke-dasharray: 300; stroke-dashoffset: 300; }
.vine-divider.is-in .vine-path { animation: stemDraw 1.4s cubic-bezier(.2,.7,.2,1) forwards; }
@media (prefers-reduced-motion: reduce) { .vine-path { stroke-dashoffset: 0 !important; animation: none !important; } }

.yaklas { position: relative; }
.yaklas__content { padding-bottom: 48px; max-width: 800px; }
.manifesto { font-family: 'Bodoni Moda', serif; font-style: italic; font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.5; color: var(--ink); border-left: 2px solid var(--accent); padding-left: 32px; margin: 24px 0 0; }
.yaklas__media { max-width: clamp(900px, 90%, 1280px); margin: 0 auto; padding: 0 var(--container-pad); }
.yaklas__media img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border: 1px solid var(--line); }

.testimonials { margin-top: 48px; display: flex; flex-direction: column; gap: 40px; }
.testimonial { border-left: 2px solid var(--accent); padding: 24px 0 24px 32px; position: relative; }
.testimonial::before { content: '\201C'; font-family: 'Bodoni Moda', serif; font-size: 4rem; color: var(--accent); opacity: 0.3; position: absolute; top: -10px; left: 8px; line-height: 1; }
.testimonial p { font-size: 1.05rem; line-height: 1.8; color: var(--ink); margin-bottom: 16px; padding-left: 8px; }
.testimonial footer { padding-left: 8px; }
.testimonial cite { font-style: normal; font-weight: 500; color: var(--ink); display: block; margin-bottom: 2px; }
.testimonial footer span { font-size: 0.8rem; color: var(--accent); letter-spacing: 0.04em; }

.palette-track { display: flex; gap: clamp(16px, 2vw, 24px); overflow-x: auto; scroll-snap-type: x mandatory; padding: 48px var(--container-pad) 16px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--accent-2) var(--surface); }
.palette-track::-webkit-scrollbar { height: 6px; }
.palette-track::-webkit-scrollbar-track { background: var(--surface); }
.palette-track::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 3px; }
.palette-item { flex: 0 0 auto; width: clamp(180px, 22vw, 260px); scroll-snap-align: start; text-align: center; }
.palette-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border: 1px solid var(--line); margin-bottom: 12px; transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms ease; }
.palette-item:hover img { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(197,168,128,0.15); }
.palette-item span { font-family: 'Bodoni Moda', serif; font-size: 0.95rem; color: var(--ink-soft); letter-spacing: 0.04em; }

.timeline { position: relative; padding-left: 60px; margin-top: 48px; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline__item { position: relative; padding-bottom: 48px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before { content: ''; position: absolute; left: -48px; top: 6px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--accent); background: var(--bg); transition: background 360ms ease; }
.timeline__item.is-in::before { background: var(--accent); }
.timeline__marker { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-2); display: block; margin-bottom: 6px; }
.timeline__item h3 { margin-bottom: 8px; }
.timeline__item p { color: var(--ink-soft); font-size: 0.95rem; max-width: 600px; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: 48px; }
.pricing-card { border: 1px solid var(--line); padding: 0; transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms ease, border-color 360ms ease; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(197,168,128,0.18), 0 0 60px rgba(197,168,128,0.06); border-color: var(--accent); }
.pricing-card__header { padding: 32px 28px 24px; border-bottom: 1px solid var(--line); }
.pricing-card__header h3 { margin-bottom: 12px; font-size: 1.2rem; }
.pricing-card__price { font-family: 'Bodoni Moda', serif; font-size: clamp(2rem, 3vw, 2.5rem); color: var(--accent); line-height: 1; }
.pricing-card__price span { font-size: 0.9rem; color: var(--ink-soft); font-family: 'Raleway', sans-serif; font-weight: 300; }
.pricing-card__body { padding: 24px 28px 32px; }
.pricing-card__body h4 { margin-bottom: 12px; font-size: 0.75rem; color: var(--accent); }
.pricing-card__body ul { margin-bottom: 20px; }
.pricing-card__body li { font-size: 0.9rem; color: var(--ink-soft); padding: 6px 0; padding-left: 20px; position: relative; }
.pricing-card__body li::before { content: '+'; position: absolute; left: 0; color: var(--accent); font-weight: 500; }
.pricing-card__body .excluded li::before { content: '\2013'; color: var(--accent-2); }
.pricing-card__timeline { font-size: 0.8rem; color: var(--ink-soft); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); margin-bottom: 0; }
.pricing-disclaimer { text-align: center; margin-top: 24px; font-size: 0.8rem; color: var(--ink-soft); font-style: italic; }

.faq-list { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-family: 'Bodoni Moda', serif; font-size: 1.05rem; color: var(--ink); transition: color 240ms ease; gap: 16px; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'Raleway', sans-serif; font-size: 1.4rem; color: var(--accent); display: inline-block; transition:transform 520ms cubic-bezier(.16,1,.3,1); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { height: 0; padding: 0 0; overflow: hidden; transition:height 520ms cubic-bezier(.16,1,.3,1),padding-block-end 520ms cubic-bezier(.16,1,.3,1); }
.faq-item[open] .faq-body { height: auto; padding-block-end: 22px; }
.faq-body p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .faq-body { transition: none; } }

.teklif { background: var(--surface); text-align: center; }
.teklif-content { max-width: 640px; margin: 0 auto; }
.teklif-content p { color: var(--ink-soft); margin-bottom: 32px; }

.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer__brand .logo__text { display: block; margin-bottom: 12px; }
.footer__brand p { font-size: 0.85rem; color: var(--ink-soft); max-width: 280px; }
.site-footer h4 { margin-bottom: 16px; color: var(--accent); font-size: 0.75rem; }
.site-footer nav a, .footer__nav a, .footer__legal a { display: block; font-size: 0.85rem; color: var(--ink-soft); padding: 4px 0; text-decoration: none; transition: color 240ms ease; }
.site-footer nav a:hover, .footer__nav a:hover, .footer__legal a:hover { color: var(--ink); }
.footer__contact p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 6px; }
.footer__contact a { color: var(--ink-soft); }
.footer__contact a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--line); padding: 20px 0; text-align: center; }
.footer__bottom p { font-size: 0.75rem; color: var(--ink-soft); margin: 0; }

.cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); padding: 24px; z-index: 9999; transform: translateY(140%); opacity: 0; transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms; }
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1rem; margin-bottom: 8px; }
.cookie-banner > p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner > p a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions button { flex: 1; min-width: 100px; min-height: 44px; font-size: 0.8rem; padding: 10px 16px; }

.contact-form { max-width: 640px; margin: 0 auto; }
.field { margin-bottom: 24px; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); color: var(--ink); font-family: 'Raleway', sans-serif; font-size: 0.95rem; padding: 14px 16px; transition: border-color 240ms ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.field textarea { min-height: 140px; resize: vertical; }
.field select { cursor: pointer; }
.field-checkbox { display: flex; align-items: flex-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 { margin-bottom: 0; font-size: 0.85rem; text-transform: none; letter-spacing: 0; line-height: 1.5; }
.field-checkbox a { color: var(--accent); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-msg { padding: 16px; margin-bottom: 24px; font-size: 0.9rem; }
.form-msg--success { background: rgba(197,168,128,0.1); border: 1px solid var(--accent); color: var(--accent); }
.form-msg--error { background: rgba(200,60,60,0.1); border: 1px solid #c83c3c; color: #e06060; }

.contact-channels { display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; align-items: start; }
.contact-channel { display: contents; transition: color 240ms cubic-bezier(.4,0,.2,1); }
.contact-channel:hover .channel-icon { color: var(--accent); transform: scale(1.08); }
.contact-channel:hover .channel-content { transform: translateX(4px); }
.channel-icon { width: 20px; height: 20px; color: var(--ink-soft); flex-shrink: 0; margin-top: 2px; transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1); }
.channel-content { transition: transform 240ms cubic-bezier(.4,0,.2,1); }
.channel-content h4 { font-size: 0.75rem; margin-bottom: 4px; }
.channel-content p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0; }
.channel-content a { color: var(--ink-soft); text-decoration: none; }
.channel-content a:hover { color: var(--accent); }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

.page-hero { padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 6vw, 64px); text-align: center; background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: var(--ink-soft); margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }

.policy-content { max-width: 740px; margin: 0 auto; padding: 48px var(--container-pad); }
.policy-content h2 { margin: 48px 0 16px; font-size: 1.5rem; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { margin: 32px 0 12px; font-size: 1.15rem; }
.policy-content p { color: var(--ink-soft); margin-bottom: 16px; }
.policy-content ul, .policy-content ol { margin-bottom: 16px; padding-left: 24px; }
.policy-content li { color: var(--ink-soft); padding: 4px 0; font-size: 0.95rem; }
.policy-content ol { list-style: decimal; }
.policy-content ul { list-style: disc; }
.policy-content a { color: var(--accent); text-decoration: underline; }

.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: 500; color: var(--accent); font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; background: var(--surface); }
td { color: var(--ink-soft); }

.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; gap: 24px; padding: 64px var(--container-pad); }
.error-page h1 { font-size: clamp(4rem, 10vw, 8rem); color: var(--accent); opacity: 0.3; }
.error-page h2 { font-size: 1.5rem; }
.error-page p { color: var(--ink-soft); max-width: 400px; }

.sitemap-list { margin-top: 32px; }
.sitemap-list h3 { margin-bottom: 12px; }
.sitemap-list ul { margin-bottom: 32px; }
.sitemap-list li { padding: 6px 0; }
.sitemap-list a { font-size: 0.95rem; }

.about-story { max-width: 800px; }
.about-story p { color: var(--ink-soft); }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.value-card { border: 1px solid var(--line); padding: 32px 24px; text-align: center; transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms ease, border-color 360ms ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(197,168,128,0.15), 0 0 48px rgba(197,168,128,0.05); border-color: var(--accent); }
.value-card svg { width: 36px; height: 36px; color: var(--accent); margin-bottom: 16px; }
.value-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.value-card p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.team-card { border: 1px solid var(--line); overflow: hidden; transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(197,168,128,0.15), 0 0 48px rgba(197,168,128,0.05); }
.team-card__photo { aspect-ratio: 3/4; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__info { padding: 24px; }
.team-card__info h3 { margin-bottom: 4px; font-size: 1.15rem; }
.team-card__info .role { font-size: 0.75rem; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.team-card__info p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0; line-height: 1.6; }

.gold-rule { display: block; width: 60px; height: 1px; background: var(--accent); margin: 32px 0; }
.gold-rule--center { margin-left: auto; margin-right: auto; }

.section--alt { background: var(--surface); }

.word-break { word-break: break-word; overflow-wrap: anywhere; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media print {
  .site-header, .drawer, .cookie-banner, .nav-toggle, .hero__petals, .marquee, .trust-strip { display: none !important; }
  body { background: #fff; color: #111; }
  .hero { height: auto; min-height: 0; }
  .section { padding: 24px 0; }
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; }
  .about-values { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .timeline { padding-left: 48px; }
  .timeline::before { left: 14px; }
  .timeline__item::before { left: -40px; width: 12px; height: 12px; }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__content h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .manifesto { font-size: clamp(1.2rem, 3vw, 1.6rem); padding-left: 20px; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-strip { flex-direction: column; align-items: center; gap: 12px; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 18px; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions button { width: 100%; }
  .hero { min-height: 500px; }
}

@media (max-width: 430px) {
  :root { --header-h: 60px; }
  .logo__text { font-size: 1.05rem; }
  .section { padding: clamp(48px, 8vw, 80px) 0; }
}

@media (min-width: 1024px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.drawer-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; z-index: 10; transition: color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms cubic-bezier(.4,0,.2,1); }
.drawer-close:hover { color: var(--accent); border-color: var(--accent); }

.cookie-btn { display: inline-flex; align-items: center; justify-content: center; font-family: 'Raleway', 'Segoe UI', Tahoma, sans-serif; font-weight: 500; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 32px; background: transparent; color: var(--ink); border: 1px solid var(--line-strong); cursor: pointer; transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms cubic-bezier(.4,0,.2,1); }
.cookie-btn:hover { background: var(--surface-2); border-color: var(--accent); }
.cookie-btn--accept { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-btn--accept:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.scroll-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--accent); width: 0%; pointer-events: none; z-index: 1; }
