@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600&family=Marck+Script&display=swap');

:root {
  --ink: #141414;
  --ink-soft: #24231f;
  --paper: #ffffff;
  --warm: #f3f0e9;
  --warm-deep: #ebe7df;
  --muted: #74716c;
  --line: #d8d5ce;
  --line-dark: rgba(255,255,255,.34);
  --shadow: 0 28px 80px rgba(0,0,0,.19);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --script: "Marck Script", "Segoe Script", cursive;
  --container: 1180px;
  --ease: cubic-bezier(.22,.7,.16,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: #262626; color: #fff; }

.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;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  height: 90px;
  background: rgba(247,244,239,.96);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(44,40,35,.08);
  box-shadow: 0 10px 24px rgba(20,20,20,.04);
}
.site-header.is-overlay {
  position: absolute;
  inset: 0 0 auto;
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__inner {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 0 auto;
  line-height: 1;
}
.brand__name {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.brand__tagline {
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: .08em;
  opacity: .7;
  text-align: center;
}

.brand--logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  min-width: 176px;
}
.brand__logo {
  display: block;
  width: auto;
  height: 78px;
  object-fit: contain;
}
.site-header .brand--logo {
  min-width: 176px;
}
.site-header .brand__logo {
  width: 176px;
  height: 78px;
}
.site-footer .brand__logo {
  width: 220px;
  height: auto;
}
.menu-drawer__brand .brand__logo {
  height: 68px;
}


.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 35px;
}
.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .015em;
  opacity: .78;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s var(--ease);
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.icon-button {
  width: 49px;
  height: 49px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.icon-button svg { width: 29px; height: 29px; }
.icon-button:hover { opacity: .72; }
.hamburger { display: none; }
.header-cta,
.button {
  min-height: 40px;
  padding: 0 29px;
  border: 1px solid currentColor;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .045em;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.header-cta {
  min-width: 173px;
  min-height: 42px;
  padding-inline: 30px;
  font-size: 10.5px;
  border-color: rgba(44,40,35,.75);
  background: transparent;
}
.header-cta:hover {
  background: var(--ink-soft);
  color: #fff;
  border-color: var(--ink-soft);
  transform: translateY(-1px);
}

.button--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.button--dark:hover { background: #2b2b2b; transform: translateY(-1px); }
.button--light { background: #fff; color: var(--ink); border-color: #fff; }
.button--light:hover { background: transparent; color: #fff; }
.button--outline { background: transparent; }
.home-hero .button--light {
  min-height: 54px;
  padding-inline: 39px;
  font-size: 13px;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #2a2824 url("assets/images/hero-home.jpg") center center / cover no-repeat;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.68) 0%, rgba(10,10,10,.34) 48%, rgba(10,10,10,.18) 100%),
    linear-gradient(0deg, rgba(8,8,8,.28), transparent 55%);
}
.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 64px));
  margin: 138px auto 0;
}
.home-hero__copy { max-width: 570px; }
.home-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.script-word {
  display: inline-block;
  margin-left: .04em;
  font-family: var(--script);
  font-size: .72em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transform: rotate(-3deg) translateY(-.05em);
}
.home-hero p {
  max-width: 450px;
  margin: 26px 0 30px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255,255,255,.88);
}

.section {
  position: relative;
  padding: 106px 0;
}
.section--warm { background: var(--warm); }
.section-heading {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 67px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading .section-script {
  position: absolute;
  left: 5px;
  top: -28px;
  font-family: var(--script);
  font-size: 31px;
  text-transform: none;
  letter-spacing: 0;
  transform: rotate(-5deg);
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 56px;
  align-items: stretch;
}
.featured-product {
  min-width: 0;
}
.featured-product__image-wrap {
  position: relative;
  overflow: hidden;
  background: #e7e3dd;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1.38 / 1;
}
.featured-product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .78s var(--ease), transform .8s var(--ease);
}
.featured-product__image-wrap:hover .featured-product__image { transform: scale(1.018); }
.featured-product__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-top: 20px;
}
.featured-product__title {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.featured-product__price {
  font-size: 12px;
  font-weight: 600;
}
.circle-actions { display: flex; gap: 10px; }
.circle-button {
  width: 38px;
  height: 38px;
  border: 1px solid #77736d;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.circle-button:hover { background: var(--ink); color: #fff; }
.circle-button svg { width: 15px; height: 15px; }
.mission-card {
  background: var(--warm);
  min-height: 100%;
  padding: 72px 62px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mission-card h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
.mission-card p {
  max-width: 390px;
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
}
.signature {
  margin-top: 32px;
  align-self: flex-end;
  font-family: var(--script);
  font-size: 26px;
  line-height: 1.1;
  transform: rotate(-5deg);
}

.event-banner {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(17,17,17,.38), rgba(17,17,17,.38)),
    url("assets/images/event-bg.jpg") center / cover no-repeat;
}

.event-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14,14,13,.52);
}
.event-banner__content {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding: 48px 24px;
  text-align: center;
}
.event-banner h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}
.event-banner p {
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}
.event-banner__line {
  width: 1px;
  height: 62px;
  background: rgba(255,255,255,.8);
  margin: 28px auto -48px;
}

.workshop {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.workshop__date {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--muted);
}
.workshop h2 {
  margin: 0 0 28px;
  max-width: 790px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: .97;
  font-weight: 400;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.workshop__image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}
.workshop__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.workshop__copy p {
  margin: 0 0 25px;
  max-width: 490px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}
.workshop__price {
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 600;
}
.workshop__controls {
  margin-top: 18px;
  align-self: flex-end;
}

.delivery-head {
  margin-bottom: 55px;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.delivery-item {
  position: relative;
  padding: 8px 40px;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
}
.delivery-item + .delivery-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: var(--ink);
}
.delivery-item strong { font-family: var(--sans); font-size: 13px; }

.site-footer {
  padding: 42px 0;
  background: #f4efe8;
  color: var(--ink-soft);
  border-top: 1px solid rgba(44,40,35,.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 11px;
  opacity: .76;
}
.footer-copy { font-size: 10px; opacity: .48; }

/* Catalog */
.catalog-page { background: var(--paper); }
.catalog-scene {
  position: relative;
  min-height: 100vh;
  padding: 0 0 120px;
  overflow: hidden;
  background: var(--paper);
}
.catalog-scene::before { display: none; }
.catalog-scene__label,
.decor-note { display: none; }
.catalog-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  box-shadow: none;
  background: var(--paper);
}
.catalog-frame .site-header {
  position: sticky;
  top: 0;
  z-index: 35;
}
.catalog-frame .site-header__inner {
  width: min(var(--container), calc(100% - 64px));
}
.catalog-cover {
  height: 340px;
  background: #6c655a url("assets/images/hero-lilac.jpg") center center / cover no-repeat;
}
.catalog-paper {
  min-height: auto;
  padding: 73px 84px 142px;
  background: var(--paper);
}
.catalog-heading {
  position: relative;
  width: max-content;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-size: 68px;
  line-height: .95;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.035em;
}
.catalog-heading span {
  position: absolute;
  right: -24px;
  top: -25px;
  font-family: var(--script);
  font-size: 29px;
  text-transform: none;
  letter-spacing: 0;
  transform: rotate(-7deg);
}
.category-tabs {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 26px;
}
.category-tabs button {
  position: relative;
  padding: 0 0 5px;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .012em;
  cursor: pointer;
}
.category-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right .2s var(--ease);
}
.category-tabs button:hover::after,
.category-tabs button.is-active::after { right: 0; }
.catalog-toolbar {
  margin-top: 55px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.filter-toggle { display: none; }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  min-width: 195px;
  height: 32px;
  padding: 0 34px 0 14px;
  border: 1px solid #a8a59f;
  background: #fff;
  color: #5f5d58;
  font-size: 9px;
  cursor: pointer;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.product-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 70px;
}
.product-card {
  min-width: 0;
  text-align: center;
  transition: opacity .24s var(--ease), transform .35s var(--ease);
}
.product-card[hidden] { display: none; }
.product-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  background: #e8e5df;
  aspect-ratio: .84 / 1;
  cursor: pointer;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .65s var(--ease);
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(18,18,18,.47);
  color: #fff;
  opacity: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: opacity .3s var(--ease);
}
.product-card__media:hover img { transform: scale(1.035); }
.product-card__media:hover .product-card__overlay { opacity: 1; }
.product-card h3 {
  margin: 15px 0 3px;
  min-height: 34px;
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 500;
  text-transform: uppercase;
}
.product-card__price {
  font-size: 11px;
  font-weight: 600;
}
/* Success page */
.success-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(12,12,12,.37), rgba(12,12,12,.37)),
    url("assets/images/hero-home.jpg") center / cover no-repeat;
  color: var(--ink);
}
.success-main {
  min-height: calc(100vh - 78px);
  padding: 86px 24px;
  display: grid;
  place-items: center;
}
.success-card {
  width: min(520px, 100%);
  min-height: 390px;
  padding: 60px 54px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 32px 90px rgba(0,0,0,.32);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.success-card h1 {
  margin: 0 0 19px;
  font-family: var(--serif);
  font-size: 53px;
  line-height: .9;
  font-weight: 400;
  text-transform: uppercase;
}
.success-card p {
  max-width: 340px;
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}
.success-card .signature { align-self: center; margin-top: 27px; }

/* Drawer and modal */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,.54);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.overlay.is-open { opacity: 1; visibility: visible; }
.menu-drawer {
  position: fixed;
  z-index: 90;
  inset: 0 0 0 auto;
  width: min(420px, 92vw);
  background: var(--paper);
  color: var(--ink);
  transform: translateX(105%);
  transition: transform .38s var(--ease);
  box-shadow: -25px 0 70px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
}
.menu-drawer.is-open { transform: translateX(0); }
.menu-drawer__head {
  min-height: 96px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.menu-drawer__brand .brand__name { font-size: 25px; }
.menu-drawer__body {
  padding: 45px 30px 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.menu-drawer nav { display: flex; flex-direction: column; gap: 19px; }
.menu-drawer nav a {
  width: max-content;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}
.menu-drawer__footer { margin-top: auto; }
.menu-drawer__footer .button { width: 100%; }
.close-button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.close-button svg { width: 22px; height: 22px; }

.modal {
  position: fixed;
  z-index: 100;
  inset: 50% auto auto 50%;
  width: min(900px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.32);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -47%) scale(.985);
  transition: opacity .25s var(--ease), visibility .25s var(--ease), transform .3s var(--ease);
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal__close { position: absolute; z-index: 2; top: 14px; right: 14px; }
.product-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
}
.product-modal__image {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}
.product-modal__content {
  padding: 74px 58px 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-modal__eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .05em;
}
.product-modal h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 46px;
  line-height: .95;
  font-weight: 400;
  text-transform: uppercase;
}
.product-modal__desc {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
}
.product-modal__price {
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 600;
}
.product-modal__actions {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.product-modal__actions .button {
  flex: 1 1 auto;
  padding-inline: 18px;
  white-space: nowrap;
}
.product-modal__bag {
  border-color: rgba(20,20,20,.45);
  background: transparent;
  color: var(--ink);
}
.product-modal__bag:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}
.product-modal__note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 10px;
}
.contact-form { width: 100%; display: grid; gap: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  outline: none;
  font-family: var(--serif);
  font-size: 17px;
}
.contact-form textarea { min-height: 90px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--ink); }

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 18px 20px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

.filter-drawer {
  position: fixed;
  z-index: 95;
  inset: auto 0 0;
  max-height: 76vh;
  overflow: auto;
  padding: 28px 22px 34px;
  background: #fff;
  transform: translateY(105%);
  transition: transform .32s var(--ease);
}
.filter-drawer.is-open { transform: translateY(0); }
.filter-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.filter-drawer h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
}
.filter-drawer .category-tabs {
  display: grid;
  justify-content: stretch;
  gap: 0;
}
.filter-drawer .category-tabs button {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 11px;
}
.filter-drawer .category-tabs button::after { display: none; }
.filter-drawer .category-tabs button.is-active { font-weight: 600; }

/* Motion system */
.site-header .brand__logo {
  transition: opacity .3s var(--ease), transform .45s var(--ease), filter .45s var(--ease);
}
.site-header .brand--logo:hover .brand__logo {
  transform: translateY(-2px) scale(1.025);
  filter: drop-shadow(0 8px 14px rgba(20,20,20,.12));
}
.button,
.header-cta {
  transition: background .85s var(--ease), color .72s var(--ease), border-color .72s var(--ease), box-shadow .45s var(--ease), transform .3s var(--ease);
}
.button:hover,
.header-cta:hover {
  box-shadow: 0 10px 24px rgba(20,20,20,.12);
}
.button:active,
.header-cta:active,
.icon-button:active,
.circle-button:active {
  transform: translateY(1px) scale(.98);
}
.icon-button,
.circle-button,
.close-button {
  transition: background .75s var(--ease), color .68s var(--ease), opacity .28s var(--ease), transform .28s var(--ease), box-shadow .4s var(--ease);
}
.icon-button:hover,
.close-button:hover {
  transform: rotate(3deg) scale(1.06);
}
.circle-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(20,20,20,.12);
}
.product-card:hover { transform: translateY(-7px); }
.product-card__price,
.featured-product__price {
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.product-card:hover .product-card__price,
.featured-product:hover .featured-product__price {
  transform: translateY(-2px);
}
.mission-card,
.delivery-item {
  transition: transform .55s var(--ease);
}
.mission-card:hover {
  transform: translateY(-5px);
}
.delivery-item:hover { transform: translateY(-4px); }
.contact-form input,
.contact-form textarea {
  transition: border-color .3s var(--ease), padding-left .3s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus { padding-left: 8px; }
.workshop__image {
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.workshop:hover .workshop__image {
  transform: scale(1.015);
  filter: saturate(1.04);
}
.event-banner::before {
  transition: background .7s var(--ease);
}
.event-banner:hover::before { background: rgba(14,14,13,.44); }
.menu-drawer nav a {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .38s var(--ease), transform .45s var(--ease), color .25s var(--ease);
}
.menu-drawer.is-open nav a { opacity: 1; transform: translateX(0); }
.menu-drawer.is-open nav a:nth-child(1) { transition-delay: .08s; }
.menu-drawer.is-open nav a:nth-child(2) { transition-delay: .12s; }
.menu-drawer.is-open nav a:nth-child(3) { transition-delay: .16s; }
.menu-drawer.is-open nav a:nth-child(4) { transition-delay: .2s; }
.menu-drawer.is-open nav a:nth-child(5) { transition-delay: .24s; }
.modal .product-modal__image {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .45s var(--ease), transform .65s var(--ease);
}
.modal.is-open .product-modal__image { opacity: 1; transform: scale(1); }
.modal .product-modal__content > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.modal.is-open .product-modal__content > * { opacity: 1; transform: translateY(0); }
.modal.is-open .product-modal__content > :nth-child(1) { transition-delay: .08s; }
.modal.is-open .product-modal__content > :nth-child(2) { transition-delay: .12s; }
.modal.is-open .product-modal__content > :nth-child(3) { transition-delay: .16s; }
.modal.is-open .product-modal__content > :nth-child(4) { transition-delay: .2s; }
.modal.is-open .product-modal__content > :nth-child(5) { transition-delay: .24s; }
.modal.is-open .product-modal__content > :nth-child(6) { transition-delay: .28s; }

html.motion-ready .site-header {
  opacity: 0;
  transform: translateY(-18px);
}
html.motion-ready.page-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s var(--ease), transform .8s var(--ease);
}
html.motion-ready .home-hero__copy > * {
  opacity: 0;
  transform: translateY(24px);
}
html.motion-ready.page-loaded .home-hero__copy > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s var(--ease), transform .85s var(--ease);
}
html.motion-ready.page-loaded .home-hero__copy > :nth-child(1) { transition-delay: .15s; }
html.motion-ready.page-loaded .home-hero__copy > :nth-child(2) { transition-delay: .28s; }
html.motion-ready.page-loaded .home-hero__copy > :nth-child(3) { transition-delay: .4s; }

html.motion-ready .reveal-item {
  opacity: 0;
  transition: opacity .72s var(--ease), transform .82s var(--ease), box-shadow .55s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.motion-ready .reveal-from-up { transform: translateY(34px); }
html.motion-ready .reveal-from-left { transform: translateX(-38px); }
html.motion-ready .reveal-from-right { transform: translateX(38px); }
html.motion-ready .reveal-item.is-revealed {
  opacity: 1;
  transform: translate(0, 0);
  will-change: auto;
}
html.motion-ready .reveal-item.is-revealed.product-card:hover { transform: translateY(-7px); }
html.motion-ready .reveal-item.is-revealed.mission-card:hover { transform: translateY(-5px); }
html.motion-ready .reveal-item.is-revealed.delivery-item:hover { transform: translateY(-4px); }
html.motion-ready .footer-inner > * {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .site-nav { gap: 22px; }
  .site-nav a { font-size: 13px; }
  .header-cta { min-width: 135px; padding-inline: 20px; }
  .featured-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mission-card { padding-inline: 38px; }
  .catalog-paper { padding-inline: 50px; }
  .product-grid { column-gap: 24px; }
}

@media (max-width: 820px) {
  .container,
  .site-header__inner,
  .home-hero__content,
  .catalog-frame { width: 100%; }
  .site-header { height: 80px; }
  .site-nav,
  .header-cta { display: none; }
  .header-actions { margin-left: auto; gap: 5px; }
  .hamburger { display: inline-grid; }
  .brand__name { font-size: 21px; }
  .brand__tagline { font-size: 6px; }
  .brand__logo { height: 58px; max-width: 150px; }
  .site-header .brand--logo { min-width: 126px; }
  .site-header .brand__logo { width: 126px; height: 64px; }
  .site-footer .brand__logo { width: 200px; height: auto; max-width: 100%; }
  .home-hero { min-height: 620px; }
  .home-hero__content { margin-top: 94px; }
  .home-hero h1 { font-size: 58px; }
  .featured-layout { grid-template-columns: 1fr; }
  .mission-card { min-height: 420px; }
  .workshop { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; gap: 28px; }
  .delivery-item + .delivery-item::before { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .catalog-frame { margin-top: 0; }
  .catalog-cover { height: 240px; }
  .catalog-paper { padding: 62px 36px 110px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  body { font-size: 13px; }
  .container,
  .site-header__inner,
  .home-hero__content { width: calc(100% - 28px); }
  .site-header__inner { gap: 10px; }
  .site-header.is-overlay { position: absolute; }
  .home-hero {
    min-height: 500px;
    align-items: flex-end;
    background-image: url("assets/images/hero-home.jpg");
    background-position: center 42%;
  }
  .home-hero::before {
    background:
      linear-gradient(0deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.28) 78%),
      linear-gradient(90deg, rgba(8,8,8,.22), rgba(8,8,8,.08));
  }
  .home-hero__content { margin: 0 auto 46px; }
  .home-hero__copy { max-width: 390px; }
  .home-hero h1 { font-size: clamp(38px, 12.5vw, 52px); line-height: .92; }
  .home-hero p { max-width: 340px; margin: 15px 0 22px; font-size: 15px; }
  .button { min-height: 38px; padding-inline: 21px; font-size: 9px; }
  .home-hero .button--light { min-height: 51px; padding-inline: 28px; font-size: 12px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 30px; font-size: 43px; }
  .section-heading .section-script { top: -23px; font-size: 25px; }
  .featured-product__image-wrap { aspect-ratio: 1 / 1.12; }
  .featured-product__meta { gap: 14px; padding-top: 14px; }
  .featured-product__title { font-size: 10px; }
  .featured-product__price { font-size: 11px; }
  .circle-button { width: 34px; height: 34px; }
  .mission-card { min-height: 355px; padding: 50px 28px 42px; }
  .mission-card h2 { font-size: 38px; }
  .mission-card p { font-size: 15px; }
  .signature { font-size: 22px; }
  .event-banner {
  background-image: linear-gradient(rgba(17,17,17,.35), rgba(17,17,17,.35)), url("assets/images/event-bg.jpg");
  background-size: cover;
  background-position: center; min-height: 350px; }
  .event-banner h2 { font-size: 43px; }
  .event-banner p { font-size: 15px; }
  .workshop { gap: 27px; }
  .workshop h2 { font-size: 39px; margin-bottom: 22px; }
  .workshop__image { aspect-ratio: 1.36 / 1; }
  .workshop__copy p { font-size: 15px; }
  .workshop__controls { margin-top: 8px; }
  .delivery-head { margin-bottom: 34px; }
  .delivery-item { padding: 0 20px; font-size: 15px; }
  .site-footer { padding: 34px 0; }
  .footer-links { gap: 16px; flex-wrap: wrap; }
  .toast { left: 14px; right: 14px; bottom: 14px; max-width: none; }

  .catalog-scene { padding-bottom: 0; }
  .catalog-scene::before,
  .catalog-scene__label,
  .decor-note { display: none; }
  .catalog-frame {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .catalog-frame .site-header { position: sticky; top: 0; z-index: 40; }
  .catalog-frame .site-header__inner { width: calc(100% - 28px); }
  .catalog-cover { height: 174px; background-position: center; }
  .catalog-paper { min-height: auto; padding: 46px 14px 92px; }
  .catalog-heading { margin-bottom: 29px; font-size: 49px; }
  .catalog-heading span { right: -14px; top: -22px; font-size: 24px; }
  .catalog-paper > .category-tabs { display: none; }
  .catalog-toolbar { margin-top: 0; justify-content: space-between; }
  .filter-toggle {
    height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid #8e8a84;
    background: #fff;
    text-transform: uppercase;
    font-size: 9px;
    cursor: pointer;
  }
  .filter-toggle svg { width: 14px; height: 14px; }
  .select-wrap select { min-width: 158px; height: 32px; font-size: 8px; }
  .product-grid { margin-top: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 10px; row-gap: 34px; }
  .product-card h3 { min-height: 38px; margin-top: 10px; font-size: 8.5px; }
  .product-card__price { font-size: 10px; }
  .product-card__overlay { display: none; }
  .product-modal__layout { grid-template-columns: 1fr; }
  .product-modal__image { min-height: 360px; max-height: 48vh; }
  .product-modal__content { padding: 36px 25px 32px; }
  .product-modal h2 { font-size: 37px; }
  .product-modal__desc { font-size: 15px; }
  .product-modal__actions { flex-wrap: wrap; }
  .product-modal__actions .button { flex-basis: 130px; }

  .menu-drawer { width: min(320px, 78vw); }
  .menu-drawer__body { padding-top: 36px; }
  .menu-drawer nav { gap: 16px; }

  .success-main { min-height: calc(100vh - 80px); padding: 44px 16px; }
  .success-card { min-height: 310px; padding: 44px 28px; }
  .success-card h1 { font-size: 42px; }
  .success-card p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
