/** Shopify CDN: Minification failed

Line 36:0 All "@import" rules must come first

**/
/* ============================================
   PEN — PENELOPE SLANEY | SHOPIFY THEME
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:     #ffffff;
  --off-white: #faf9f7;
  --light:     #f4f2ef;
  --rule:      #e2deda;
  --mid:       #9e9590;
  --stone:     #6e6560;
  --charcoal:  #3a3330;
  --ink:       #1a1614;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  margin: 0;
}

/* ── TYPOGRAPHY ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

h1, h2, h3 { font-weight: 300; }
em { font-style: italic; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s;
}
.site-header.scrolled { padding: 18px 60px; }

.site-header__logo {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.3rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.site-header__logo img { height: 30px; width: auto; display: block; }

.site-nav { display: flex; gap: 40px; list-style: none; }
.site-nav a {
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--ink); }

.header-cart {
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid); cursor: pointer; transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.header-cart:hover { color: var(--ink); }
.cart-count {
  background: var(--ink); color: var(--white);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.55rem; display: flex; align-items: center; justify-content: center;
  font-weight: 400;
}
.cart-count.hidden { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px; background: var(--ink); transition: all 0.3s;
}

/* ── DIVIDER ── */
hr.divider { border: none; border-top: 1px solid var(--rule); margin: 0 60px; }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--mid); display: flex; align-items: center; gap: 16px;
  margin-bottom: 52px; font-weight: 400;
}
.section-label::after { content: ''; display: block; width: 36px; height: 1px; background: var(--rule); }
.section-label--center { justify-content: center; }
.section-label--center::before { content: ''; display: block; width: 36px; height: 1px; background: var(--rule); }
.section-label--center::after { display: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 13px 36px;
  background: var(--ink); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.25s;
}
.btn-primary:hover { background: var(--charcoal); }

.btn-secondary {
  display: inline-block; padding: 12px 36px;
  border: 1px solid var(--rule); color: var(--stone);
  font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  background: none; cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--charcoal); color: var(--ink); }

.btn-ghost {
  display: inline-block; padding: 13px 36px;
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; background: none; cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__artwork {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.08) translateY(-16px); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,22,20,0.15) 0%, transparent 40%, rgba(26,22,20,0.65) 100%);
}
.hero__text {
  position: relative; z-index: 2;
  padding: 0 60px 72px; color: var(--white);
  animation: fadeUp 1.4s 0.3s both;
}
.hero__eyebrow {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0.65; margin-bottom: 18px; font-weight: 300;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1.04;
}
.scroll-hint {
  position: absolute; right: 60px; bottom: 56px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.45); font-size: 0.58rem;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px; background: rgba(255,255,255,0.2);
  overflow: hidden; position: relative;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: rgba(255,255,255,0.8);
  animation: tick 2s ease-in-out infinite;
}

/* ── STATEMENT ── */
.statement { background: var(--white); padding: 120px 60px; }
.statement__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.statement__pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); font-weight: 300;
  line-height: 1.65; color: var(--ink);
}
.statement__body {
  margin-top: 34px; font-size: 0.85rem; line-height: 2;
  color: var(--stone); max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ── FEATURED PRODUCT ── */
.featured-product { background: var(--white); padding: 100px 60px; }
.featured-product__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px; padding-bottom: 30px; border-bottom: 1px solid var(--rule);
}
.featured-product__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; line-height: 1.1;
}
.section-link {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone); text-decoration: none;
  border-bottom: 1px solid var(--rule); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.section-link:hover { color: var(--ink); border-color: var(--charcoal); }

.product-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 76px; align-items: start;
}
.product-image-wrap { overflow: hidden; cursor: zoom-in; }
.product-image-wrap img { width: 100%; display: block; transition: transform 0.8s ease; }
.product-image-wrap:hover img { transform: scale(1.02); }

.product-meta { padding-top: 6px; }
.product-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.9rem;
  font-weight: 300; line-height: 1.2; margin-bottom: 30px;
}
.product-details { margin-bottom: 30px; }
.detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: 0.78rem;
}
.detail-row:first-child { border-top: 1px solid var(--rule); }
.detail-label { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); }
.detail-value { color: var(--ink); }
.detail-price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400;
}
.availability-dot { display: inline-flex; align-items: center; gap: 8px; }
.availability-dot::before {
  content: ''; display: block; width: 7px; height: 7px;
  border-radius: 50%; background: #5a7a5a;
}
.product-desc { font-size: 0.83rem; line-height: 1.92; color: var(--stone); margin-bottom: 38px; }

/* Product form */
.product-form {}
.product-form .btn-primary { width: 100%; text-align: center; padding: 15px; }
.product-form--sold-out .btn-primary { background: var(--mid); cursor: not-allowed; }
.cart-notification {
  margin-top: 12px; font-size: 0.72rem; color: var(--stone);
  letter-spacing: 0.08em; text-align: center; display: none;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
}

/* ── ABOUT ── */
.about {
  background: var(--white); padding: 100px 60px;
  display: grid; grid-template-columns: 460px 1fr; gap: 100px; align-items: center;
}
.about__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 300;
  line-height: 1.25; margin-bottom: 28px;
}
.about__body { font-size: 0.83rem; line-height: 1.95; color: var(--stone); }
.about__body p + p { margin-top: 18px; }
.about__visual img { width: 100%; display: block; filter: saturate(0.7) contrast(1.05); }
.about__caption { margin-top: 12px; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); }

/* ── COMMISSION STRIP ── */
.commission-strip {
  background: var(--ink); padding: 96px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.commission-strip__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 300; line-height: 1.22; margin-bottom: 14px; color: var(--white);
}
.commission-strip__text p { font-size: 0.83rem; color: var(--mid); line-height: 1.85; max-width: 460px; }

/* ── SUBSCRIBE ── */
.subscribe { background: var(--light); padding: 120px 60px; text-align: center; }
.subscribe__inner { max-width: 560px; margin: 0 auto; }
.subscribe__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 300; margin-bottom: 14px;
}
.subscribe__sub { font-size: 0.79rem; color: var(--stone); margin-bottom: 40px; letter-spacing: 0.04em; line-height: 1.7; }
.subscribe__row { display: flex; max-width: 460px; margin: 0 auto; }
.subscribe__row input {
  flex: 1; padding: 14px 20px;
  background: var(--white); border: 1px solid var(--rule); border-right: none;
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.83rem;
  color: var(--ink); outline: none; transition: border-color 0.2s;
}
.subscribe__row input::placeholder { color: var(--mid); }
.subscribe__row input:focus { border-color: var(--charcoal); }
.subscribe__row button {
  padding: 14px 32px; background: var(--ink); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.25s; white-space: nowrap;
}
.subscribe__row button:hover { background: var(--charcoal); }
.subscribe__note { margin-top: 14px; font-size: 0.65rem; color: var(--mid); letter-spacing: 0.08em; }
.subscribe__success {
  display: none; margin-top: 20px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--stone);
}

/* ── WORKS COLLECTION PAGE ── */
.page-header {
  padding: 140px 60px 72px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.page-header__eyebrow {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 16px; font-weight: 400;
  display: flex; align-items: center; gap: 14px;
}
.page-header__eyebrow::after { content: ''; display: block; width: 36px; height: 1px; background: var(--rule); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 300; line-height: 1.04;
}
.page-header__meta { text-align: right; flex-shrink: 0; }
.count { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--ink); display: block; line-height: 1; }
.count-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); margin-top: 6px; display: block; }

.filter-bar {
  padding: 22px 60px; border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 8px;
}
.filter-btn {
  padding: 8px 20px; font-family: 'Jost', sans-serif;
  font-size: 0.6rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--rule); color: var(--mid);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--charcoal); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Works list */
.works-list { padding: 0 60px 100px; }
.list-section-heading {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--mid); font-weight: 400;
  display: flex; align-items: center; gap: 16px;
  padding: 48px 0 24px; border-bottom: 1px solid var(--rule);
}
.list-section-heading::after { content: ''; display: block; width: 36px; height: 1px; background: var(--rule); }

.work-row {
  display: grid; grid-template-columns: 340px 1fr 220px;
  border-bottom: 1px solid var(--rule);
  align-items: stretch; transition: background 0.2s;
}
.work-row:hover { background: var(--light); }
.work-row.hidden { display: none; }

.work-row__image { padding: 32px 40px 32px 0; overflow: hidden; }
.work-row__image img { width: 100%; display: block; transition: transform 0.7s ease; }
.work-row.sold .work-row__image img { filter: grayscale(50%) saturate(0.5); }
.work-row:not(.sold) .work-row:hover .work-row__image img { transform: scale(1.02); }

.work-row__info {
  padding: 32px 48px 32px 40px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--rule);
}
.work-status {
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.work-status--available .status-dot { background: #5a7a5a; }
.work-status--available { color: #5a7a5a; }
.work-status--sold .status-dot { background: var(--mid); }
.work-status--sold { color: var(--mid); }

.work-row__name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  font-weight: 300; line-height: 1.15; margin-bottom: 14px;
}
.work-row__specs { font-size: 0.72rem; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.work-row__desc { font-size: 0.8rem; color: var(--stone); line-height: 1.85; max-width: 480px; }

.work-row__action {
  padding: 32px 0 32px 40px;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; border-left: 1px solid var(--rule);
}
.work-price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 300; color: var(--ink); margin-bottom: 20px; display: block;
}
.work-price--sold {
  font-size: 1.1rem; color: var(--mid); text-decoration: line-through; margin-bottom: 12px;
}
.btn-sold {
  display: inline-block; padding: 10px 28px;
  border: 1px solid var(--rule); color: var(--mid);
  font-family: 'Jost', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; pointer-events: none;
}
.btn-buy {
  display: inline-block; padding: 11px 28px;
  background: var(--ink); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.2s; width: 100%; text-align: center;
}
.btn-buy:hover { background: var(--charcoal); }

/* Works CTA */
.works-cta {
  background: var(--ink); padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.works-cta h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 10px; color: var(--white);
}
.works-cta p { font-size: 0.82rem; color: var(--mid); line-height: 1.8; max-width: 440px; }

/* ── COMMISSIONS PAGE ── */
.commissions-header {
  padding: 150px 60px 96px; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.commissions-intro { font-size: 0.88rem; line-height: 1.95; color: var(--stone); }
.commissions-intro strong { font-weight: 400; color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: 1.05em; }

.process-section { padding: 100px 60px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.process-step {
  padding: 44px 36px; background: var(--light);
  display: flex; flex-direction: column; transition: background 0.2s;
}
.process-step:hover { background: #edeae6; }
.step-number {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
  color: var(--rule); line-height: 1; margin-bottom: 24px;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 14px; }
.step-body { font-size: 0.79rem; line-height: 1.85; color: var(--stone); flex: 1; }

.expect-section { padding: 100px 60px; border-top: 1px solid var(--rule); }
.expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
img.expect-image,
.expect-image img { width: 100%; max-height: 360px; object-fit: cover; object-position: center; display: block; filter: saturate(0.65) contrast(1.05); }
.expect-caption { margin-top: 12px; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); }
.expect-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 300; line-height: 1.22; margin-bottom: 30px; }
.expect-list { list-style: none; }
.expect-list li {
  padding: 13px 0; border-bottom: 1px solid var(--rule);
  display: flex; gap: 20px; align-items: flex-start;
  font-size: 0.81rem; line-height: 1.75; color: var(--stone);
}
.expect-list li:first-child { border-top: 1px solid var(--rule); }
.expect-list li::before { content: '—'; color: var(--mid); flex-shrink: 0; margin-top: 1px; }

.size-section { padding: 100px 60px; border-top: 1px solid var(--rule); background: var(--light); }
.size-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.size-card { padding: 48px 40px; background: var(--white); display: flex; flex-direction: column; }
.size-card.featured { background: var(--ink); color: var(--white); }
.size-option { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; }
.size-card.featured .size-option { color: var(--mid); }
.size-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; margin-bottom: 24px; }
.size-features { list-style: none; flex: 1; }
.size-features li { padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 0.78rem; color: var(--stone); }
.size-card.featured .size-features li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.size-features li:first-child { border-top: 1px solid var(--rule); }
.size-card.featured .size-features li:first-child { border-top-color: rgba(255,255,255,0.08); }

.commission-form-section { padding: 120px 60px; text-align: center; }
.commission-form-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 300; margin-bottom: 14px; }
.commission-form-section .intro { font-size: 0.82rem; color: var(--stone); margin-bottom: 60px; max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.85; }
.commission-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; max-width: 680px; margin: 0 auto; text-align: left; }
.commission-form .form-full { grid-column: 1 / -1; }
.commission-form input,
.commission-form select,
.commission-form textarea {
  width: 100%; padding: 14px 0; margin-bottom: 6px;
  background: transparent; border: none; border-bottom: 1px solid var(--rule);
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.83rem;
  color: var(--ink); outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.commission-form input:focus,
.commission-form select:focus,
.commission-form textarea:focus { border-color: var(--charcoal); }
.commission-form input::placeholder,
.commission-form textarea::placeholder { color: var(--mid); }
.commission-form textarea { resize: none; min-height: 130px; margin-top: 12px; }
.commission-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239e9590'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center; padding-right: 20px;
}
.form-submit { margin-top: 36px; text-align: center; }

/* ── PRODUCT PAGE ── */
.product-page {
  padding: 140px 60px 100px;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start;
}
.product-page__images img { width: 100%; display: block; }
.product-page__info { position: sticky; top: 100px; }
.product-page__vendor { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; }
.product-page__title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; line-height: 1.15; margin-bottom: 16px; }
.product-page__price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 32px; }
.product-page__desc { font-size: 0.84rem; line-height: 1.9; color: var(--stone); margin-bottom: 32px; }
.product-page__form .btn-primary { width: 100%; text-align: center; padding: 16px; font-size: 0.65rem; }

/* ── CART ── */
.cart-page { padding: 140px 60px 100px; max-width: 800px; margin: 0 auto; }
.cart-page h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin-bottom: 48px; }
.cart-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--rule); }
.cart-item img { width: 100%; display: block; }
.cart-item__title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; margin-bottom: 8px; }
.cart-item__price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.cart-item__remove { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); cursor: pointer; transition: color 0.2s; background: none; border: none; }
.cart-item__remove:hover { color: var(--ink); }
.cart-total { padding: 28px 0; text-align: right; }
.cart-total__label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.cart-total__price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; }
.cart-checkout { margin-top: 24px; display: flex; justify-content: flex-end; }
.cart-empty { text-align: center; padding: 80px 0; color: var(--stone); font-size: 0.9rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--light); border-top: 1px solid var(--rule);
  padding: 30px 60px; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.62rem; letter-spacing: 0.12em; color: var(--mid);
}
.site-footer a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--ink); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink); }
.footer-right { display: flex; align-items: center; gap: 24px; }
.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social a { display: flex; align-items: center; color: var(--mid); transition: color 0.2s; }
.footer-social a:hover { color: var(--ink); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tick { 0%{top:-100%} 100%{top:200%} }

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .work-row { grid-template-columns: 260px 1fr 180px; }
  .product-layout { grid-template-columns: 1fr 320px; gap: 48px; }
}

@media (max-width: 860px) {
  .site-header { padding: 18px 28px; }
  .site-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--rule); }
  .site-nav.open { display: flex; }
  .site-nav li a { display: block; padding: 14px 28px; border-bottom: 1px solid var(--rule); }
  .nav-toggle { display: flex; }

  hr.divider { margin: 0 28px; }
  .hero__text { padding: 0 28px 56px; }
  .scroll-hint { right: 28px; bottom: 44px; }
  .statement { padding: 80px 28px; }
  .featured-product { padding: 80px 28px; }
  .featured-product__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; padding: 80px 28px; gap: 44px; }
  .commission-strip { flex-direction: column; padding: 80px 28px; gap: 36px; }
  .subscribe { padding: 80px 28px; }
  .subscribe__row { flex-direction: column; }
  .subscribe__row input { border-right: 1px solid var(--rule); border-bottom: none; }
  .subscribe__row button { width: 100%; }

  .page-header { flex-direction: column; align-items: flex-start; padding: 120px 28px 56px; }
  .page-header__meta { text-align: left; }
  .filter-bar { padding: 18px 28px; flex-wrap: wrap; }
  .works-list { padding: 0 28px 80px; }
  .work-row { grid-template-columns: 1fr; }
  .work-row__image { padding: 28px 0 0; }
  .work-row__info { border-left: none; padding: 20px 0; }
  .work-row__action { border-left: none; padding: 0 0 28px; flex-direction: row; align-items: center; gap: 24px; }
  .work-price { margin-bottom: 0; }
  .works-cta { flex-direction: column; padding: 60px 28px; gap: 28px; }

  .commissions-header { grid-template-columns: 1fr; padding: 120px 28px 72px; gap: 36px; }
  .process-section, .expect-section, .size-section, .commission-form-section { padding: 80px 28px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: 1fr; max-width: 420px; }
  .commission-form { grid-template-columns: 1fr; }
  .commission-form .form-full { grid-column: 1; }

  .product-page { grid-template-columns: 1fr; padding: 120px 28px 80px; }
  .product-page__info { position: static; }
  .cart-page { padding: 120px 28px 80px; }
  .cart-item { grid-template-columns: 80px 1fr auto; gap: 16px; }

  .site-footer { flex-direction: column; gap: 14px; text-align: center; padding: 28px; }
  .footer-right { flex-direction: column; gap: 12px; }
}
