:root {
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --ink: #2e372d;
  --muted: #6e7568;
  --olive: #66735a;
  --olive-dark: #3e4c39;
  --sage: #b8c0a9;
  --terra: #b96343;
  --terra-light: #d99373;
  --sand: #e8d8bf;
  --line: rgba(46, 55, 45, .14);
  --shadow: 0 24px 70px rgba(54, 49, 38, .14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; transform: translateY(-150%); padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.prototype-strip {
  min-height: 30px;
  padding: 6px 4vw;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #f8f2e8;
  background: var(--olive-dark);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.prototype-strip span + span::before { content: "•"; margin-right: 12px; color: var(--terra-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 124px;
  padding: 0 clamp(20px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(247, 241, 231, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(57, 55, 44, .05); }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 56px; height: 56px; object-fit: contain; display: block; }
.header-brand { justify-content: center; }
.header-brand .brand-logo { width: 68px; height: 108px; }
.brand-name { color: var(--olive-dark); font-family: "Fraunces", serif; font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: .03em; }
.header-links { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 25px); margin-left: auto; color: var(--muted); font-size: 14px; font-weight: 600; white-space: nowrap; }
.header-links a:hover { color: var(--terra); }
.cart-button {
  min-height: 44px;
  padding: 8px 9px 8px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}
.cart-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { min-width: 27px; height: 27px; padding: 4px; display: grid; place-items: center; color: var(--ink); background: var(--sand); border-radius: 50%; font-size: 12px; }

.hero {
  min-height: 680px;
  padding: 72px clamp(22px, 7vw, 116px) 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 112px);
  overflow: hidden;
}
.hero-copy { max-width: 680px; }
.eyebrow { margin: 0 0 15px; color: var(--terra); font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: "Fraunces", serif; font-weight: 500; line-height: 1.08; }
h1 { margin-bottom: 24px; font-size: clamp(47px, 6.6vw, 92px); letter-spacing: -.055em; }
h1 i { color: var(--terra); font-weight: 500; }
.hero-intro { max-width: 560px; margin: 0 0 30px; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.button { min-height: 48px; padding: 13px 20px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform .18s, background .18s, box-shadow .18s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--terra); box-shadow: 0 10px 24px rgba(185, 99, 67, .22); }
.button-primary:hover { background: #a95135; }
.button-secondary { color: var(--ink); background: var(--sand); }
.button-wide { width: 100%; }
.button-disabled { color: #85887e; background: #e6e3dc; cursor: not-allowed; box-shadow: none; }
.button-disabled:hover { transform: none; }
.text-button { padding: 7px 1px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid currentColor; font-weight: 700; cursor: pointer; }
.trust-list { margin: 38px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 21px; list-style: none; color: var(--muted); font-size: 12px; font-weight: 600; }
.trust-list span { margin-right: 4px; color: var(--terra); }

.hero-still-life {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(46,55,45,.1);
  border-radius: 38px;
  background: #7d815c;
  box-shadow: var(--shadow);
}
.hero-still-life::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 55%, rgba(31,39,27,.22)); pointer-events: none; }
.hero-craft-photo { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.hero-photo-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(255,246,222,.08), transparent 48%); pointer-events: none; }

.catalog-section { padding: 92px clamp(22px, 7vw, 116px) 116px; background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.section-heading h2, .story-section h2 { margin-bottom: 0; font-size: clamp(36px, 4.5vw, 58px); letter-spacing: -.035em; }
.catalog-tools { display: flex; align-items: center; gap: 10px; }
.search-box { min-width: 210px; height: 44px; padding: 0 14px; display: flex; align-items: center; gap: 8px; color: var(--muted); background: white; border: 1px solid var(--line); border-radius: 999px; }
.search-box:focus-within { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(185, 99, 67, .1); }
.search-box svg, .edit-prices-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.search-box input { width: 100%; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 13px; }
.edit-prices-button { height: 44px; padding: 0 15px; display: inline-flex; align-items: center; gap: 7px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; cursor: pointer; }
.edit-prices-button:hover { color: var(--terra); border-color: var(--terra); }
.category-tabs { display: flex; gap: 8px; margin-bottom: 34px; overflow-x: auto; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab { flex: 0 0 auto; min-height: 39px; padding: 9px 17px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; cursor: pointer; }
.category-tab.active { color: #fff; background: var(--olive-dark); border-color: var(--olive-dark); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 22px; }
.product-card { min-width: 0; }
.product-image { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.product-image::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(145deg, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.product-image, .cart-thumb, .detail-image { background: #efe8dc !important; }
.product-photo { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-photo { transform: scale(1.025); }
.product-placeholder { position: absolute; inset: 16px; display: grid; place-content: center; gap: 6px; color: #959386; border: 1px dashed rgba(46,55,45,.2); border-radius: 17px; text-align: center; }
.product-placeholder span { font-family: "Fraunces", serif; font-size: 16px; }
.product-placeholder small { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.cart-thumb .product-placeholder { inset: 7px; border-radius: 9px; }
.cart-thumb .product-placeholder span { font-size: 10px; }
.cart-thumb .product-placeholder small { display: none; }
.detail-image .product-placeholder { inset: 28px; }
.product-image .shadow { position: absolute; left: 18%; right: 18%; bottom: 12%; height: 9%; background: rgba(58, 45, 33, .18); border-radius: 50%; filter: blur(13px); }
.product-image .art { position: absolute; inset: 11%; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .art { transform: translateY(-7px) rotate(1deg); }
.card-badge { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 7px 10px; color: var(--olive-dark); background: rgba(255,253,248,.88); border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(6px); }
.quick-add { position: absolute; z-index: 2; right: 14px; bottom: 14px; width: 45px; height: 45px; display: grid; place-items: center; color: white; background: var(--ink); border: 0; border-radius: 50%; font-size: 23px; cursor: pointer; box-shadow: 0 9px 22px rgba(45, 55, 45, .24); transition: transform .18s, background .18s; }
.quick-add:hover { transform: scale(1.08); background: var(--terra); }
.product-info { padding: 15px 4px 0; display: grid; grid-template-columns: 1fr auto; gap: 4px 15px; }
.product-name { margin: 0; font-family: "Fraunces", serif; font-size: 21px; font-weight: 600; cursor: pointer; }
.product-name:hover { color: var(--terra); }
.product-subtitle { margin: 0; color: var(--muted); font-size: 12px; }
.product-price { grid-row: 1 / span 2; grid-column: 2; margin-top: 2px; font-weight: 700; }
.empty-state { padding: 70px 20px; text-align: center; color: var(--muted); }

.scene-1 { background: #d8c3a6; }.scene-2 { background: #c3cbb8; }.scene-3 { background: #e7d3c0; }.scene-4 { background: #aeb9a3; }.scene-5 { background: #d9b49e; }.scene-6 { background: #c9b69f; }.scene-7 { background: #6f7563; }.scene-8 { background: #d2c2aa; }
.mug-art::before { content: ""; position: absolute; width: 45%; height: 56%; left: 24%; top: 18%; border-radius: 13% 13% 30% 30%; background: var(--ceramic, #eee2cf); box-shadow: inset -18px -10px 26px rgba(77,56,38,.11), 0 18px 25px rgba(60,44,33,.16); }
.mug-art::after { content: ""; position: absolute; width: 22%; height: 28%; left: 61%; top: 28%; border: 14px solid var(--ceramic, #eee2cf); border-left-width: 9px; border-radius: 50%; }
.mug-art .motif { position: absolute; z-index: 2; left: 38%; top: 37%; color: var(--motif, var(--terra)); font-size: clamp(35px, 4vw, 56px); }
.cupset-art::before, .cupset-art::after { content: ""; position: absolute; width: 34%; height: 34%; bottom: 23%; border-radius: 12% 12% 34% 34%; background: var(--ceramic, #f1e8db); box-shadow: 0 15px 21px rgba(60,44,33,.16); }
.cupset-art::before { left: 18%; transform: rotate(-5deg); }.cupset-art::after { right: 18%; transform: rotate(6deg); }
.cupset-art .motif { position: absolute; z-index: 2; inset: auto 14% 10% 14%; height: 14%; border-radius: 50%; background: var(--motif, var(--terra)); box-shadow: 0 10px 18px rgba(60,44,33,.15); }
.plate-art::before { content: ""; position: absolute; width: 72%; height: 65%; left: 14%; top: 14%; border-radius: 50%; background: radial-gradient(ellipse, var(--center, #d5c09d) 0 48%, var(--ceramic, #f5ebdb) 49% 67%, var(--motif, var(--terra)) 68% 71%, var(--ceramic, #f5ebdb) 72%); box-shadow: inset -10px -12px 22px rgba(68,47,30,.1), 0 21px 28px rgba(60,44,33,.18); transform: rotate(-8deg); }
.plate-art .motif { display: none; }
.bowl-art::before { content: ""; position: absolute; width: 70%; height: 49%; left: 15%; top: 24%; border-radius: 8% 8% 50% 50%; background: linear-gradient(var(--ceramic, #f2e7d5) 0 22%, var(--motif, #68775e) 23% 29%, var(--ceramic, #f2e7d5) 30%); box-shadow: inset -18px -12px 24px rgba(68,47,30,.12), 0 22px 27px rgba(60,44,33,.18); }
.bowl-art::after { content: ""; position: absolute; width: 70%; height: 15%; left: 15%; top: 19%; border-radius: 50%; background: var(--center, #80624b); border: 8px solid var(--ceramic, #f2e7d5); }
.bowl-art .motif { display: none; }
.pendant-art::before { content: ""; position: absolute; width: 3px; height: 36%; left: calc(50% - 1px); top: -12%; background: #3d4339; box-shadow: 0 0 0 5px rgba(61,67,57,.08); }
.pendant-art::after { content: ""; position: absolute; width: 66%; height: 45%; left: 17%; top: 24%; background: linear-gradient(145deg, var(--ceramic, #c97958), #aa5c41); border-radius: 48% 48% 18% 18% / 65% 65% 18% 18%; box-shadow: inset -16px -10px 24px rgba(70,44,33,.16), 0 24px 34px rgba(43,39,31,.28), 0 38px 55px rgba(245,213,166,.22); }
.pendant-art .motif { position: absolute; z-index: 2; left: 36%; top: 36%; width: 28%; color: var(--motif, #f5d5a6); font-size: clamp(34px, 4vw, 54px); letter-spacing: 7px; text-align: center; text-shadow: 26px 13px 0 currentColor, -25px 14px 0 currentColor; }
.lamp-art::before { content: ""; position: absolute; width: 31%; height: 39%; left: 34.5%; bottom: 13%; background: linear-gradient(135deg, var(--ceramic, #ede3d2), #d5c5ad); border-radius: 42% 42% 20% 20% / 28% 28% 18% 18%; box-shadow: inset -12px -7px 20px rgba(72,51,36,.13), 0 18px 24px rgba(55,43,33,.2); }
.lamp-art::after { content: ""; position: absolute; width: 62%; height: 34%; left: 19%; top: 13%; background: linear-gradient(150deg, #f2e5cf, #cdbb9f); clip-path: polygon(23% 0, 77% 0, 100% 100%, 0 100%); filter: drop-shadow(0 12px 12px rgba(56,44,33,.18)); }
.lamp-art .motif { position: absolute; z-index: 2; left: 47%; top: 44%; width: 6%; height: 14%; color: transparent; background: var(--center, #73533e); border-radius: 999px; }

.story-section { padding: 100px clamp(22px, 7vw, 116px); display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(310px, .55fr); gap: 48px 36px; background: var(--olive-dark); color: #f5efe4; }
.story-card { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; }
.story-logo-wrap { width: 138px; }
.story-logo-wrap img { width: 100%; height: auto; display: block; }
.story-copy > p { max-width: 680px; margin: 22px 0 0; color: rgba(245,239,228,.68); line-height: 1.75; }
.story-copy blockquote { margin: 27px 0; padding: 18px 20px; color: #f7d9c8; border-left: 2px solid var(--terra-light); background: rgba(255,255,255,.05); border-radius: 0 14px 14px 0; font-family: "Fraunces", serif; font-size: 19px; line-height: 1.45; }
.workshop-process { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.workshop-process div { min-width: 0; padding: 14px 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 13px; }
.workshop-process span { display: block; margin-bottom: 11px; color: var(--terra-light); font-family: "Fraunces", serif; font-size: 12px; }
.workshop-process b { display: block; margin-bottom: 5px; color: #fff; font-size: 12px; }
.workshop-process small { display: block; color: rgba(245,239,228,.56); font-size: 9px; line-height: 1.45; }
.brand-values { margin: 19px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.brand-values li { padding: 7px 10px; color: rgba(245,239,228,.75); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.story-section .eyebrow { color: var(--terra-light); }
.workshop-film { align-self: start; padding: 22px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); box-shadow: 0 24px 55px rgba(21,27,19,.15); }
.workshop-film-copy h3 { margin-bottom: 12px; font-size: clamp(27px, 2.3vw, 37px); }
.workshop-film-copy > p:last-child { margin: 0 0 20px; color: rgba(245,239,228,.64); font-size: 12px; line-height: 1.65; }
.film-frame { position: relative; width: min(100%, 355px); margin-inline: auto; overflow: hidden; background: #20271f; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; box-shadow: 0 18px 38px rgba(15,19,14,.26); }
.film-frame video { width: 100%; aspect-ratio: 9 / 16; display: block; object-fit: cover; background: #20271f; }
.film-note { margin: 15px 0 0; color: rgba(245,239,228,.58); font-size: 10px; text-align: center; }
.film-note span { margin-right: 5px; color: var(--terra-light); }
#atolyem-video, #nasil-uretiyoruz-video { scroll-margin-top: 120px; }
.order-path { grid-column: 1 / -1; padding: 34px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.order-path ol { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; list-style: none; }
.order-path li { padding: 16px; display: grid; grid-template-columns: 40px 1fr; align-items: start; gap: 12px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 15px; }
.order-path li strong { color: var(--terra-light); font-family: "Fraunces", serif; font-size: 15px; }
.order-path li span { display: grid; gap: 3px; color: rgba(245,239,228,.64); font-size: 12px; }
.order-path li b { color: #fff; font-size: 14px; }
.shopier-status { margin: 20px 0 0; display: flex; align-items: center; gap: 8px; color: rgba(245,239,228,.56); font-size: 11px; }
.shopier-status span { width: 7px; height: 7px; background: #d7a269; border-radius: 50%; box-shadow: 0 0 0 4px rgba(215,162,105,.12); }
.shopier-status.shopier-active span { background: #9fbd83; box-shadow: 0 0 0 4px rgba(159,189,131,.14); }
.shopier-status a { color: #f5efe4; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.shopier-button { text-align: center; }

.production-section { padding: 104px clamp(22px, 7vw, 116px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr); align-items: stretch; gap: clamp(42px, 7vw, 94px); background: var(--cream); }
.production-copy { min-width: 0; display: flex; flex-direction: column; }
.production-copy h2 { margin-bottom: 18px; font-size: clamp(40px, 4.8vw, 62px); letter-spacing: -.04em; }
.production-copy > p:last-of-type { max-width: 650px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.production-steps { flex: 1; margin: 35px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 10px; list-style: none; }
.production-steps li { min-height: 150px; padding: 24px; display: grid; grid-template-columns: 40px 1fr; align-content: center; gap: 14px; background: rgba(236,227,213,.7); border: 1px solid rgba(46,55,45,.11); border-radius: 15px; box-shadow: inset 0 1px rgba(255,255,255,.45); }
.production-steps li > span { color: var(--terra); font-family: "Fraunces", serif; font-size: 18px; }
.production-steps div { display: grid; gap: 7px; }
.production-steps b { font-size: 17px; line-height: 1.3; }
.production-steps small { color: var(--muted); font-size: 14px; line-height: 1.55; }
.production-section .workshop-film { width: min(100%, 440px); height: 100%; justify-self: end; color: #f5efe4; background: var(--olive-dark); }
.production-section .workshop-film .eyebrow { color: var(--terra-light); }

.events-section { padding: 104px clamp(22px, 7vw, 116px); background: var(--paper); }
.content-heading { max-width: 760px; margin-bottom: 42px; }
.content-heading h2, .about-copy h2 { margin-bottom: 18px; font-size: clamp(38px, 4.8vw, 62px); letter-spacing: -.04em; }
.content-heading > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.event-card { position: relative; min-height: 300px; padding: 30px; display: flex; flex-direction: column; overflow: hidden; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.event-card-featured { color: #fff; background: var(--terra); border-color: var(--terra); }
.event-number { position: absolute; right: 22px; top: 17px; color: rgba(185,99,67,.13); font-family: "Fraunces", serif; font-size: 78px; line-height: 1; }
.event-card-featured .event-number { color: rgba(255,255,255,.13); }
.event-status { width: max-content; margin: 0 0 54px; padding: 7px 10px; color: var(--terra); background: rgba(185,99,67,.09); border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.event-card-featured .event-status { color: #fff; background: rgba(255,255,255,.15); }
.event-card h3 { margin-bottom: 13px; font-size: 28px; }
.event-card > p:not(.event-status) { margin: 0 0 25px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.event-card-featured > p:not(.event-status) { color: rgba(255,255,255,.75); }
.event-card small { margin-top: auto; color: var(--olive); font-size: 10px; font-weight: 700; }
.event-card-featured small { color: rgba(255,255,255,.78); }
.events-note { margin: 25px 0 0; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }
.events-note span { width: 8px; height: 8px; background: var(--terra); border-radius: 50%; box-shadow: 0 0 0 5px rgba(185,99,67,.1); }

.about-section { padding: 104px clamp(22px, 7vw, 116px); display: grid; grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(44px, 7vw, 100px); background: #ece3d5; }
.about-visual { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.about-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.about-visual span { position: absolute; left: 20px; bottom: 20px; padding: 8px 12px; color: #fff; background: rgba(46,55,45,.68); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; backdrop-filter: blur(8px); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.about-copy { max-width: 720px; }
.about-copy > p { margin: 19px 0 0; color: var(--muted); line-height: 1.75; }
.about-copy blockquote { margin: 29px 0; padding: 0 0 0 20px; color: var(--terra); border-left: 2px solid var(--terra); font-family: "Fraunces", serif; font-size: 22px; line-height: 1.45; }
.about-signature { display: flex; align-items: center; gap: 13px; }
.about-signature img { width: 56px; height: 56px; }
.about-signature span { display: grid; gap: 3px; }
.about-signature b { font-family: "Fraunces", serif; font-size: 17px; }
.about-signature small { color: var(--muted); font-size: 10px; }

.contact-section { padding: 104px clamp(22px, 7vw, 116px); display: grid; grid-template-columns: minmax(0, .8fr) minmax(380px, 1fr); align-items: center; gap: clamp(42px, 7vw, 94px); color: #f5efe4; background: var(--olive-dark); scroll-margin-top: 125px; }
.contact-copy { max-width: 620px; }
.contact-copy .eyebrow { color: var(--terra-light); }
.contact-copy h2 { margin-bottom: 18px; color: #fff; font-size: clamp(40px, 4.8vw, 62px); letter-spacing: -.04em; }
.contact-copy > p { margin: 0; color: rgba(245,239,228,.7); font-size: 15px; line-height: 1.75; }
.contact-details { margin-top: 34px; display: grid; gap: 12px; }
.contact-card { padding: 20px 22px; display: grid; gap: 7px; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; transition: background .2s ease, transform .2s ease; }
a.contact-card:hover { background: rgba(255,255,255,.11); transform: translateY(-2px); }
.contact-card small { color: var(--terra-light); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { font-size: 16px; line-height: 1.55; }
address.contact-card { font-style: normal; }
.map-frame { padding: 12px; overflow: hidden; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 26px; box-shadow: 0 22px 50px rgba(15,19,14,.25); }
.map-frame iframe { width: 100%; min-height: 420px; display: block; border: 0; border-radius: 17px; }
.map-actions { min-height: 64px; padding: 10px 8px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.map-actions > span { display: grid; gap: 2px; }
.map-actions b { color: #fff; font-size: 14px; }
.map-actions small { color: rgba(245,239,228,.58); font-size: 12px; }
.map-link { min-height: 44px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: var(--terra); border-radius: 999px; font-size: 13px; font-weight: 700; white-space: nowrap; }

footer { padding: 45px clamp(22px, 7vw, 116px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; color: var(--muted); font-size: 12px; background: #ece3d5; }
.footer-logo { width: 58px; height: 58px; }.footer-note { max-width: 390px; text-align: right; }

.overlay { position: fixed; inset: 0; z-index: 70; background: rgba(32,37,30,.48); backdrop-filter: blur(3px); }
.cart-drawer { position: fixed; z-index: 80; top: 0; right: 0; width: min(460px, 100%); height: 100%; padding: 28px; display: flex; flex-direction: column; background: var(--paper); box-shadow: -20px 0 60px rgba(38,42,35,.17); transform: translateX(105%); transition: transform .32s cubic-bezier(.2,.7,.2,1); }
.cart-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0; font-size: 31px; }.drawer-header .eyebrow { margin-bottom: 7px; }
.icon-button { width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 25px; line-height: 1; cursor: pointer; }
.icon-button:hover { color: var(--terra); border-color: var(--terra); }
.cart-items { flex: 1; overflow-y: auto; }
.cart-line { padding: 18px 0; display: grid; grid-template-columns: 74px 1fr auto; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); }
.cart-thumb { position: relative; width: 74px; height: 78px; overflow: hidden; border-radius: 13px; }
.cart-thumb .art { position: absolute; inset: 2%; transform: scale(.88); }
.cart-line h3 { margin: 0 0 5px; font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 700; }
.cart-line-price { margin: 0 0 9px; color: var(--muted); font-size: 12px; }
.quantity { width: max-content; display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; }
.quantity button { width: 29px; height: 27px; color: var(--ink); background: transparent; border: 0; cursor: pointer; }
.quantity span { min-width: 23px; text-align: center; font-size: 11px; font-weight: 700; }
.remove-item { align-self: start; padding: 3px; color: #989b93; background: transparent; border: 0; font-size: 18px; cursor: pointer; }
.remove-item:hover { color: var(--terra); }
.cart-empty { margin: auto; padding: 40px 20px; text-align: center; }
.empty-cup { font-size: 42px; filter: grayscale(1); opacity: .55; }.cart-empty h3 { margin: 14px 0 6px; font-size: 23px; }.cart-empty p { color: var(--muted); }
.cart-footer { padding-top: 20px; border-top: 1px solid var(--line); }.total-line { margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }.total-line strong { font-family: "Fraunces", serif; font-size: 27px; }.cart-footer > p, .cart-footer small { color: var(--muted); font-size: 10px; line-height: 1.5; }.cart-footer small { display: block; margin-top: 10px; text-align: center; }

.modal { position: fixed; inset: 50% auto auto 50%; width: min(840px, calc(100% - 32px)); max-height: calc(100dvh - 36px); padding: 0; color: var(--ink); background: var(--paper); border: 0; border-radius: var(--radius); box-shadow: var(--shadow); transform: translate(-50%, -50%); overflow: auto; }
.modal::backdrop { background: rgba(32,37,30,.52); backdrop-filter: blur(3px); }
.modal-close { position: absolute; z-index: 3; top: 18px; right: 18px; background: rgba(255,253,248,.86); backdrop-filter: blur(5px); }
.product-modal { width: min(940px, calc(100% - 32px)); }
.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 570px; }
.detail-image { position: relative; min-height: 0; aspect-ratio: 3 / 4; overflow: hidden; }
.detail-image .art { position: absolute; inset: 12%; }.detail-image .shadow { position: absolute; left: 18%; right: 18%; bottom: 12%; height: 9%; background: rgba(58,45,33,.18); border-radius: 50%; filter: blur(15px); }
.detail-copy { padding: 70px 50px 44px; display: flex; flex-direction: column; }.detail-copy h2 { margin: 0 0 8px; font-size: 45px; }.detail-price { margin: 0 0 27px; color: var(--terra); font-size: 20px; font-weight: 700; }.detail-description { margin: 0 0 24px; color: var(--muted); line-height: 1.7; }.detail-facts { margin: 0 0 34px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; }.detail-facts li { padding: 12px; background: var(--cream); border-radius: 12px; font-size: 11px; }.detail-facts strong { display: block; margin-bottom: 3px; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }.detail-add { margin-top: auto; display: grid; grid-template-columns: auto 1fr; gap: 10px; }.detail-add .quantity { height: 48px; }.detail-add .quantity button { width: 40px; height: 46px; }
.modal-heading { padding: 45px 50px 18px; }.modal-heading h2 { margin-bottom: 8px; font-size: 38px; }.modal-heading > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }.price-modal, .order-modal { width: min(650px, calc(100% - 32px)); padding-bottom: 34px; }
.price-fields { padding: 5px 50px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.price-field { padding: 12px 13px; display: grid; grid-template-columns: 1fr 110px; align-items: center; gap: 12px; background: var(--cream); border-radius: 13px; }.price-field span { font-size: 12px; font-weight: 700; }.currency-input { height: 38px; display: flex; align-items: center; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 8px; }.currency-input b { padding-left: 10px; color: var(--muted); }.currency-input input { width: 100%; min-width: 0; padding: 8px; background: transparent; border: 0; outline: 0; font-weight: 700; }.modal-actions { padding: 0 50px; display: flex; justify-content: space-between; align-items: center; gap: 15px; }.danger-text { color: var(--terra); }
.form-grid { padding: 4px 50px 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }.form-grid label { display: grid; gap: 7px; color: var(--muted); font-size: 11px; font-weight: 700; }.form-grid input, .form-grid textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 11px; outline: none; resize: vertical; }.form-grid input:focus, .form-grid textarea:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(185,99,67,.1); }.full-width { grid-column: 1/-1; }.order-modal form > .button { width: calc(100% - 100px); margin: 0 50px; }.order-result { padding: 0 50px 18px; text-align: center; }.success-icon { width: 48px; height: 48px; margin: 0 auto 12px; display: grid; place-items: center; color: white; background: var(--olive); border-radius: 50%; font-size: 24px; }.order-result h3 { margin-bottom: 15px; font-size: 26px; }.order-result pre { max-height: 230px; margin: 0 0 16px; padding: 16px; overflow: auto; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 13px; font: 12px/1.65 "DM Sans", sans-serif; text-align: left; white-space: pre-wrap; }.result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.disabled-explainer { margin: 10px 0 0; color: var(--muted); font-size: 10px; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 25px; padding: 11px 17px; color: white; background: var(--ink); border-radius: 999px; box-shadow: 0 9px 25px rgba(0,0,0,.2); font-size: 12px; font-weight: 700; transform: translate(-50%, 90px); opacity: 0; transition: .25s; }.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 920px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 60px; }.hero-copy { max-width: 760px; }.hero-still-life { width: min(600px, 100%); margin: 10px auto 0; }.product-grid { grid-template-columns: repeat(2, 1fr); }.story-section { grid-template-columns: 1fr; }.story-card { padding-right: 0; }.workshop-film { width: min(520px, 100%); justify-self: center; }.order-path { grid-column: auto; }.order-path ol { grid-template-columns: 1fr; }.production-section { grid-template-columns: 1fr; }.production-section .workshop-film { justify-self: center; }.event-grid { grid-template-columns: 1fr 1fr; }.event-card:last-child { grid-column: 1 / -1; }.about-section, .contact-section { grid-template-columns: 1fr; }.about-visual { width: min(560px, 100%); aspect-ratio: 1; }.map-frame { width: min(680px, 100%); }.product-detail { grid-template-columns: 1fr; }.detail-image { min-height: 390px; }.detail-copy { padding-top: 42px; }.product-modal { width: min(620px, calc(100% - 28px)); }.price-fields { grid-template-columns: 1fr; } footer { grid-template-columns: 1fr auto; }.footer-note { grid-column: 1/-1; text-align: left; margin-top: 0; }
}
@media (max-width: 640px) {
  .prototype-strip { justify-content: center; text-align: center; font-size: 9px; }.prototype-strip span:first-child { display: none; }.prototype-strip span + span::before { display: none; }.site-header { height: auto; min-height: 106px; padding: 7px 17px 8px; flex-wrap: wrap; gap: 5px 10px; }.brand-logo { width: 50px; height: 50px; }.header-links { order: 3; width: 100%; margin: 0; padding: 2px 0 1px; display: flex; gap: 19px; overflow-x: auto; font-size: 11px; scrollbar-width: none; }.header-links::-webkit-scrollbar { display: none; }.cart-button > span { display: none; }.cart-button { margin-left: auto; padding-left: 11px; }.hero { padding: 42px 20px 65px; gap: 44px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }.trust-list { gap: 10px 17px; }.hero-still-life { border-radius: 28px; }.hero-craft-photo { object-position: center 48%; }.catalog-section { padding: 65px 17px 80px; }.section-heading { align-items: start; flex-direction: column; gap: 22px; }.catalog-tools { width: 100%; }.search-box { flex: 1; min-width: 0; }.edit-prices-button { width: 44px; padding: 0; justify-content: center; }.edit-prices-button span { display: none; }.edit-prices-button { font-size: 0; }.edit-prices-button svg { width: 18px; }.product-grid { grid-template-columns: 1fr 1fr; gap: 27px 10px; }.product-image { height: 235px; border-radius: 18px; }.product-info { grid-template-columns: 1fr; gap: 3px; }.product-name { font-size: 17px; }.product-price { grid-row: auto; grid-column: auto; margin-top: 5px; font-size: 13px; }.product-subtitle { font-size: 10px; }.card-badge { top: 9px; left: 9px; font-size: 8px; }.quick-add { right: 9px; bottom: 9px; width: 39px; height: 39px; }.story-section { padding: 68px 20px; gap: 38px; }.story-card { grid-template-columns: 1fr; }.story-logo-wrap { width: 112px; }.workshop-process { grid-template-columns: 1fr; }.workshop-film { padding: 17px; }.order-path { padding: 26px 20px; }.production-section, .events-section, .about-section, .contact-section { padding: 68px 20px; }.production-steps { grid-template-columns: 1fr; }.event-grid { grid-template-columns: 1fr; }.event-card:last-child { grid-column: auto; }.event-card { min-height: 275px; padding: 25px; }.about-visual { border-radius: 26px; }.map-frame iframe { min-height: 340px; }.map-actions { align-items: stretch; flex-direction: column; }.map-link { width: 100%; } footer { padding: 36px 20px; grid-template-columns: 1fr; gap: 8px; }.footer-logo { width: 58px; height: 58px; }.footer-note { grid-column: auto; }.cart-drawer { padding: 22px 17px; }.detail-image { min-height: 320px; }.detail-copy { padding: 34px 22px 26px; }.detail-copy h2 { font-size: 36px; }.detail-facts { gap: 8px; }.modal-heading { padding: 43px 22px 16px; }.price-fields, .form-grid { padding-left: 22px; padding-right: 22px; }.modal-actions { padding: 0 22px; align-items: stretch; flex-direction: column-reverse; }.order-modal form > .button { width: calc(100% - 44px); margin-inline: 22px; }.order-result { padding-inline: 22px; }.result-actions { grid-template-columns: 1fr; }
}
@media (max-width: 920px) { .detail-image { min-height: 0; } .production-section .workshop-film { height: auto; } }
@media (max-width: 1050px) { .site-header { height: auto; min-height: 122px; padding: 7px 20px 8px; flex-wrap: wrap; gap: 5px 10px; } .header-brand .brand-logo { width: 62px; height: 62px; } .header-links { order: 3; width: 100%; margin: 0; padding: 2px 0 1px; gap: 21px; overflow-x: auto; font-size: 13px; scrollbar-width: none; } .header-links::-webkit-scrollbar { display: none; } .cart-button { margin-left: auto; } }
@media (max-width: 640px) { .site-header { min-height: 122px; } .header-brand .brand-logo { width: 62px; height: 62px; } .brand-name { font-size: 11px; } .header-links { gap: 21px; font-size: 12px; } .product-image { height: auto; } .production-steps { grid-template-rows: none; } .production-steps li { min-height: 140px; padding: 22px 18px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
@media (max-width: 640px) { .prototype-strip span:first-child { display: inline; } .prototype-strip span:last-child { display: none; } }
@media (max-width: 1050px) { .site-header { min-height: 142px; } .header-brand .brand-logo { width: 55px; height: 89px; } }
@media (max-width: 640px) { .site-header { min-height: 142px; } .header-brand .brand-logo { width: 55px; height: 89px; } }
.site-header { height: 148px; }
.header-brand .brand-logo { width: 82px; height: 132px; }
@media (max-width: 1050px) { .site-header { min-height: 158px; } .header-brand .brand-logo { width: 68px; height: 110px; } }
@media (max-width: 640px) { .site-header { min-height: 158px; } .header-brand .brand-logo { width: 68px; height: 110px; } }
