:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-label: "Marcellus", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --espresso: #2a2521;
  --espresso-soft: #4a4038;
  --gold: #a9823f;
  --gold-text: #76561f;
  --light-gold: #c9b681;
  --ivory: #f6f0e6;
  --warm-white: #fffdf9;
  --sand: #e7dcc9;
  --taupe: #796e62;
  --clay: #b0603c;
  --clay-text: #77402c;
  --sage: #7c876a;
  --pewter: #8c9298;
  --success: #4f6b45;
  --error: #9a3f2d;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px rgb(42 37 33 / 0.08);
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 220ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--font-body), "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
}

.admin-bar .site-header { top: 32px; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  width: auto;
  height: auto;
  clip: auto;
  white-space: normal;
}
.hero-image img,
.collection-image img,
.product-image img,
.founder-photo img,
.artisan-feature-image img,
.page-hero-image img,
.split-feature-image img,
.artisan-manifesto-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-site-blocks { min-height: 100vh; }
.editor-content > * { max-width: 780px; margin-inline: auto; }
.editor-content > .alignwide { max-width: var(--container); }
.editor-content > .alignfull { max-width: none; }
.editor-content a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; }
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: var(--radius-sm);
  background: var(--espresso);
  color: var(--warm-white);
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: #e4d3a8; color: var(--espresso); }

:focus-visible {
  outline: 3px solid var(--clay-text);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--espresso);
  color: var(--warm-white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}
.skip-link:focus { transform: translateY(0); }

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

.announcement {
  min-height: 34px;
  background: var(--espresso);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 20px;
  font-family: var(--font-label), Georgia, serif;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}
.announcement__divider { width: 24px; height: 1px; background: var(--light-gold); flex: 0 0 auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(246 240 230 / 0.96);
  border-bottom: 1px solid var(--sand);
  backdrop-filter: blur(12px);
}
.header-inner { height: 92px; display: grid; grid-template-columns: 230px 1fr auto; align-items: center; gap: 28px; }
.brand-link { display: inline-flex; min-height: 44px; align-items: center; padding: 8px 14px 8px 0; }
.brand-logo { width: 206px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 38px); }
.desktop-nav ul { margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 38px); list-style: none; }
.desktop-nav li { margin: 0; }
.desktop-nav a, .header-shop {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.desktop-nav a::after { content: ""; position: absolute; right: 50%; bottom: 7px; left: 50%; height: 1px; background: var(--gold); transition: left var(--duration) var(--ease), right var(--duration) var(--ease); }
.desktop-nav a:hover::after { right: 0; left: 0; }
.header-shop { color: var(--gold-text); gap: 6px; }
.mobile-menu { display: none; position: relative; justify-self: end; }
.mobile-menu summary { width: 44px; height: 44px; list-style: none; display: grid; align-content: center; justify-items: end; gap: 5px; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 22px; height: 1px; background: var(--espresso); transition: transform var(--duration) var(--ease), opacity var(--duration); }
.mobile-menu summary span:nth-child(2) { width: 16px; }
.mobile-menu[open] summary span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
.mobile-menu[open] summary span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu nav { position: absolute; top: 54px; right: 0; width: min(300px, calc(100vw - 32px)); padding: 18px; background: var(--warm-white); border: 1px solid var(--sand); box-shadow: var(--shadow-soft); }
.mobile-menu nav ul { margin: 0; padding: 0; list-style: none; }
.mobile-menu nav a { min-height: 48px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--sand); font-family: var(--font-label), Georgia, serif; letter-spacing: 0.05em; }
.mobile-menu nav a:last-child { color: var(--gold-text); border-bottom: 0; }

h1, h2, h3 { margin-top: 0; font-family: var(--font-display), Georgia, serif; font-weight: 600; }
h1 { font-size: clamp(3rem, 6.2vw, 5.25rem); line-height: 0.98; letter-spacing: -0.035em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.06; letter-spacing: -0.025em; }
h3 { font-size: 1.3rem; line-height: 1.25; }
h1 em, h2 em { color: var(--gold-text); font-weight: 400; }
.eyebrow { margin: 0 0 18px; color: var(--gold-text); font-family: var(--font-label), Georgia, serif; font-size: 11px; line-height: 1.4; letter-spacing: 0.18em; text-transform: uppercase; }
.section { padding-block: clamp(80px, 10vw, 144px); }
.section-heading { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-heading h2 { margin-bottom: 20px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--dark { color: var(--ivory); }
.section-copy { max-width: 650px; margin: 0; color: var(--espresso-soft); font-size: 17px; line-height: 1.75; }
.section-heading--dark .section-copy { color: #ded3c3; }
.section-bar { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-bar .section-heading { margin-bottom: 0; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row--center { justify-content: center; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--duration) var(--ease), background var(--duration), color var(--duration), border-color var(--duration);
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: 0.62; transform: none; }
.button--primary { background: var(--espresso); color: var(--warm-white); }
.button--primary:hover { background: #423933; }
.button--ghost { border-color: var(--espresso); background: transparent; color: var(--espresso); }
.button--ghost:hover { background: var(--espresso); color: var(--warm-white); }
.button--light { border-color: var(--ivory); background: var(--ivory); color: var(--espresso); }
.button--light:hover { background: var(--warm-white); }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-text); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.text-link span { transition: transform var(--duration) var(--ease); }
.text-link:hover span { transform: translateX(4px); }

.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(72px, 9vw, 124px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(44px, 7vw, 100px); align-items: center; }
.hero-copy { position: relative; z-index: 2; padding-left: clamp(0px, 3vw, 36px); }
.hero-copy h1 { margin-bottom: 28px; }
.hero-lede { max-width: 520px; margin: 0 0 34px; color: var(--espresso-soft); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; }
.hero-note { margin: 36px 0 0; color: var(--taupe); font-family: var(--font-display), Georgia, serif; font-size: 18px; font-style: italic; }
.hero-note span { margin-right: 10px; color: var(--gold); }
.hero-visual { position: relative; min-height: clamp(520px, 48vw, 680px); }
.hero-visual::before { content: ""; position: absolute; inset: 4% 0 4% 14%; border: 1px solid var(--light-gold); border-radius: 220px 220px 0 0; }
.hero-image { position: absolute; overflow: hidden; background: var(--sand); }
.hero-image img { object-fit: cover; }
.hero-image--main { top: 0; right: 7%; bottom: 8%; left: 17%; border-radius: 210px 210px 8px 8px; }
.hero-image--inset { width: 42%; height: 43%; right: 0; bottom: 0; border: 10px solid var(--ivory); border-radius: 120px 120px 8px 8px; box-shadow: var(--shadow-soft); }
.hero-seal { position: absolute; z-index: 2; top: 11%; left: 5%; width: 104px; aspect-ratio: 1; padding: 8px; border-radius: 50%; background: var(--ivory); box-shadow: var(--shadow-soft); }
.hero-vertical { position: absolute; bottom: 13%; left: 2%; margin: 0; color: var(--taupe); font-family: var(--font-label), Georgia, serif; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }

.trust-strip { border-block: 1px solid var(--sand); background: var(--warm-white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; padding: 26px clamp(16px, 2vw, 30px); border-right: 1px solid var(--sand); }
.trust-grid p:first-child { border-left: 1px solid var(--sand); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-family: var(--font-label), Georgia, serif; font-size: 12px; font-weight: 400; letter-spacing: 0.05em; }
.trust-grid span { margin-top: 4px; color: var(--taupe); font-size: 12px; }

.section--collections { background: var(--warm-white); }
.collection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.collection-panel { position: relative; min-height: 720px; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius); }
.collection-panel--fine { background: var(--espresso); color: var(--ivory); }
.collection-panel--artisan { background: #e9dcc7; color: var(--espresso); }
.collection-image { position: relative; min-height: 430px; overflow: hidden; }
.collection-image img { object-fit: cover; transition: transform 700ms var(--ease); }
.collection-panel:hover .collection-image img { transform: scale(1.025); }
.collection-panel--fine .collection-image img { object-position: center; }
.collection-panel--artisan .collection-image img { object-position: center 62%; }
.collection-content { padding: clamp(28px, 4vw, 48px); }
.collection-content h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.collection-content p:not(.eyebrow) { max-width: 540px; margin: 0 0 20px; opacity: 0.78; }
.collection-panel--fine .eyebrow, .collection-panel--fine .text-link { color: var(--light-gold); }

.category-section { background: var(--ivory); }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); }
.category-card { position: relative; min-height: clamp(360px, 34vw, 510px); overflow: hidden; border-radius: var(--radius); background: var(--espresso); color: var(--warm-white); }
.category-card::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 44%; background: rgb(42 37 33 / 0.78); pointer-events: none; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.category-card:hover img { transform: scale(1.035); }
.category-card > span { position: absolute; z-index: 1; right: 22px; bottom: 22px; left: 22px; font-family: var(--font-display), Georgia, serif; font-size: clamp(1.55rem, 2.2vw, 2.15rem); line-height: 1.05; }
.category-card small { display: block; margin-bottom: 8px; color: #e8d7ad; font-family: var(--font-body), Arial, sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }

.product-edit { background: var(--ivory); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); }
.catalog-empty { padding: 34px; border: 1px solid var(--sand); border-radius: var(--radius); background: var(--warm-white); text-align: center; }
.catalog-empty p { margin: 0 0 18px; color: var(--espresso-soft); }
.product-card { min-width: 0; }
.product-image { position: relative; aspect-ratio: 0.85; display: block; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--warm-white); }
.product-image::after { content: "View piece"; position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; border-radius: var(--radius-sm); background: rgb(42 37 33 / 0.9); color: var(--warm-white); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity var(--duration), transform var(--duration); }
.product-image:hover::after { opacity: 1; transform: translateY(0); }
.product-image img { object-fit: cover; transition: transform 600ms var(--ease); }
.product-image:hover img { transform: scale(1.025); }
.product-meta { padding: 20px 2px 0; }
.product-meta > p { margin: 0 0 5px; color: var(--taupe); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }
.product-meta h3 { min-height: 2.5em; margin: 0 0 14px; font-size: 1.23rem; }
.product-meta h3 a:hover { color: var(--gold-text); }
.product-meta > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-meta > div > span { font-size: 14px; font-weight: 500; }
.product-meta .text-link { min-height: 32px; font-size: 9px; }
.catalog-note { margin: 32px 0 0; color: var(--taupe); font-size: 12px; }
.product-grid--artisan .product-image::after { content: "Inventory preview"; opacity: 1; transform: none; }
.product-grid--artisan .product-meta h3 { min-height: 3.75em; }
.catalog-status { color: var(--taupe); font-size: 10px !important; font-weight: 600 !important; letter-spacing: 0.08em; text-transform: uppercase; }

.founder-section { padding-block: clamp(80px, 10vw, 148px); background: var(--espresso); color: var(--ivory); }
.founder-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.founder-mark { position: relative; width: min(100%, 430px); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #5a5047; border-radius: 50%; color: var(--light-gold); font-family: var(--font-display), Georgia, serif; font-size: clamp(3rem, 6vw, 5.4rem); font-style: italic; line-height: 0.75; text-align: center; }
.founder-mark::before, .founder-mark::after { content: ""; position: absolute; inset: 9%; border: 1px solid rgb(201 182 129 / 0.4); border-radius: 50%; }
.founder-mark::after { inset: 18%; }
.founder-copy { max-width: 680px; }
.founder-copy h2 { margin-bottom: 28px; }
.founder-copy > p:not(.eyebrow):not(.founder-signoff) { margin: 0 0 32px; color: #ddd3c4; font-size: 18px; }
.founder-signoff { margin: 24px 0 0; color: var(--light-gold); font-family: var(--font-display), Georgia, serif; font-size: 17px; font-style: italic; }

.artisan-feature { background: #efe2d5; }
.artisan-feature-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.artisan-feature-image { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius); background: var(--sand); }
.artisan-feature-image::after { content: ""; position: absolute; inset: 22px; border: 1px solid rgb(255 253 249 / 0.72); border-radius: var(--radius-sm); pointer-events: none; }
.artisan-feature-image img { object-fit: cover; }
.artisan-feature-copy { max-width: 540px; }
.artisan-feature-copy > p:not(.eyebrow) { margin: 0 0 30px; color: var(--espresso-soft); font-size: 17px; }
.quiet-list { margin: 0 0 32px; padding: 0; list-style: none; border-top: 1px solid #d7c6ae; }
.quiet-list li { min-height: 52px; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid #d7c6ae; font-family: var(--font-label), Georgia, serif; font-size: 13px; letter-spacing: 0.03em; }
.quiet-list span { color: var(--clay-text); font-family: var(--font-body), Arial, sans-serif; font-size: 10px; }
.quiet-list--light { border-color: #d29a7c; }
.quiet-list--light li { border-color: #d29a7c; }

.material-band { padding-block: clamp(64px, 8vw, 100px); background: var(--warm-white); border-block: 1px solid var(--sand); }
.material-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr) auto; gap: clamp(24px, 3vw, 48px); align-items: center; }
.material-grid h2 { margin: 0; font-size: clamp(2rem, 3.4vw, 3rem); }
.material-grid h3 { margin-bottom: 8px; font-family: var(--font-label), Georgia, serif; font-size: 15px; letter-spacing: 0.03em; }
.material-grid p:not(.eyebrow) { margin: 0; color: var(--taupe); font-size: 14px; }

.newsletter-section { padding-block: clamp(74px, 9vw, 126px); background: var(--clay); color: var(--warm-white); }
.newsletter-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.newsletter-grid > div:first-child { max-width: 570px; }
.newsletter-section .eyebrow { color: #f6d4bf; }
.newsletter-section h2 { margin-bottom: 20px; }
.newsletter-grid > div:first-child > p:not(.eyebrow) { margin: 0; color: #fae9df; font-size: 17px; }
.newsletter-form { max-width: 650px; }
.newsletter-form .ff-el-group { margin-bottom: 12px; }
.newsletter-form .ff-el-input--label { margin-bottom: 8px; }
.newsletter-form .ff-el-input--label label { color: var(--warm-white); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.newsletter-form .ff-el-form-control { min-height: 54px; border: 1px solid rgb(255 253 249 / 0.72); border-radius: var(--radius-sm); background: var(--warm-white); color: var(--espresso); padding: 12px 16px; }
.newsletter-form .ff-el-form-control:focus { border-color: var(--espresso); box-shadow: 0 0 0 3px rgb(42 37 33 / 0.2); outline: none; }
.newsletter-form .ff-btn-submit { min-height: 52px; border: 1px solid var(--espresso); border-radius: var(--radius-sm); background: var(--espresso); color: var(--warm-white); padding: 12px 24px; font-size: 11px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.newsletter-form .ff-btn-submit:hover { background: #423933; }
.newsletter-form .ff-message-success { border: 0; border-left: 3px solid var(--warm-white); background: rgb(255 253 249 / 0.12); color: var(--warm-white); padding: 16px 18px; }
.newsletter-form .text-danger, .newsletter-form .error { color: #fff1e8; }
.newsletter-consent { margin: 12px 0 0; color: #f6d8c7; font-size: 11px; }
.newsletter-unavailable { padding: 14px 16px; border: 1px solid rgb(255 253 249 / 0.5); }

.final-cta { padding-block: clamp(90px, 12vw, 164px); background: var(--ivory); text-align: center; }
.final-cta-inner { max-width: 780px; }
.final-cta-inner > img { width: 80px; margin: 0 auto 24px; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta-inner > p:not(.eyebrow) { max-width: 570px; margin: 0 auto 30px; color: var(--espresso-soft); font-size: 17px; }
.final-cta--compact { padding-block: clamp(72px, 9vw, 120px); }

.page-hero { padding-block: clamp(44px, 6vw, 80px) clamp(76px, 9vw, 120px); }
.page-hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(46px, 8vw, 110px); align-items: center; }
.page-hero-grid > div:first-child > p:not(.eyebrow) { max-width: 540px; margin: 0 0 30px; color: var(--espresso-soft); font-size: 18px; }
.page-hero-image { position: relative; min-height: clamp(470px, 47vw, 650px); overflow: hidden; border-radius: 220px 220px var(--radius) var(--radius); background: var(--sand); }
.page-hero-image::after { content: ""; position: absolute; inset: 22px; border: 1px solid rgb(255 253 249 / 0.72); border-radius: 200px 200px var(--radius-sm) var(--radius-sm); pointer-events: none; }
.page-hero-image img { object-fit: cover; }
.page-hero--artisan { background: #efe2d5; }
.page-hero--artisan .page-hero-image { border-radius: var(--radius); }
.page-hero--artisan .page-hero-image::after { border-radius: var(--radius-sm); }

.breadcrumbs { margin-bottom: 48px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--taupe); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--light-gold); }
.breadcrumbs a:hover { color: var(--espresso); }

.split-feature { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: 680px; background: var(--warm-white); }
.split-feature-image { position: relative; min-height: 560px; }
.split-feature-image img { object-fit: cover; }
.split-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 120px); }
.split-feature-copy p:not(.eyebrow) { max-width: 570px; margin: 0 0 24px; color: var(--espresso-soft); }

.artisan-manifesto { padding-block: clamp(80px, 10vw, 140px); background: var(--clay); color: var(--warm-white); }
.artisan-manifesto-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.artisan-manifesto-image { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); }
.artisan-manifesto-image img { object-fit: cover; }
.artisan-manifesto .eyebrow, .artisan-manifesto .quiet-list span { color: #f5d2bd; }
.artisan-manifesto p:not(.eyebrow) { max-width: 650px; color: #f5e7df; }

.story-hero { padding-block: clamp(56px, 8vw, 110px) clamp(90px, 11vw, 150px); text-align: center; }
.story-hero-inner { max-width: 920px; }
.story-hero .breadcrumbs { text-align: left; }
.story-hero img { width: 88px; margin: 0 auto 24px; }
.story-hero h1 { margin-bottom: 30px; }
.story-hero-inner > p:not(.eyebrow) { max-width: 610px; margin: 0 auto; color: var(--espresso-soft); font-family: var(--font-display), Georgia, serif; font-size: 22px; }
.story-body { background: var(--warm-white); }
.story-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(60px, 10vw, 150px); }
.story-pullquote { margin: 0; color: var(--gold-text); font-family: var(--font-display), Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); font-style: italic; line-height: 1.1; }
.prose { max-width: 740px; }
.prose p { color: var(--espresso-soft); font-size: 17px; line-height: 1.85; }
.prose .lead { color: var(--espresso); font-family: var(--font-display), Georgia, serif; font-size: clamp(1.55rem, 2.6vw, 2.2rem); line-height: 1.35; }
.values-section { padding-block: clamp(76px, 10vw, 140px); background: var(--espresso); color: var(--ivory); }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #5a5047; }
.values-grid > div { padding: 34px clamp(18px, 2.4vw, 36px); border-right: 1px solid #5a5047; }
.values-grid > div:first-child { border-left: 1px solid #5a5047; }
.values-grid span { color: var(--light-gold); font-size: 10px; }
.values-grid h2 { margin: 34px 0 14px; font-size: 2.1rem; }
.values-grid p { margin: 0; color: #d8cebf; font-size: 14px; }

.content-hero { padding-block: clamp(60px, 8vw, 110px); border-bottom: 1px solid var(--sand); }
.content-hero .container { max-width: 980px; }
.content-hero h1 { margin-bottom: 26px; }
.content-hero .container > p:not(.eyebrow) { max-width: 620px; margin: 0; color: var(--espresso-soft); font-family: var(--font-display), Georgia, serif; font-size: 22px; }
.material-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.material-cards article { padding: clamp(34px, 5vw, 64px); border: 1px solid var(--sand); border-radius: var(--radius); background: var(--warm-white); }
.material-cards article > p:not(.eyebrow):not(.material-note), .material-cards li { color: var(--espresso-soft); }
.material-cards h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
.material-cards h3 { margin: 34px 0 10px; font-family: var(--font-label), Georgia, serif; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.material-cards ul { padding-left: 20px; }
.material-note { margin: 28px 0 0; padding-top: 20px; border-top: 1px solid var(--sand); color: var(--gold-text); font-size: 12px; }
.care-callout { padding-block: clamp(64px, 8vw, 100px); background: var(--espresso); color: var(--ivory); }
.care-callout-grid { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: clamp(32px, 5vw, 70px); align-items: center; }
.care-callout h2 { margin: 0; }
.care-callout p:not(.eyebrow) { color: #d8cebf; }

.content-hero--contact { background: #efe2d5; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr); gap: clamp(56px, 9vw, 130px); align-items: start; }
.contact-grid > div > h2, .contact-grid aside h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.contact-grid > div > p { max-width: 680px; color: var(--espresso-soft); }
.contact-form { margin-top: 42px; }
.form-field { margin-bottom: 24px; }
.form-field label { display: block; margin-bottom: 8px; font-family: var(--font-label), Georgia, serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; min-height: 50px; border: 1px solid #cdbfa9; border-radius: var(--radius-sm); background: var(--warm-white); padding: 12px 14px; color: var(--espresso); transition: border-color var(--duration), box-shadow var(--duration); }
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold-text); box-shadow: 0 0 0 3px rgb(169 130 63 / 0.18); outline: none; }
.form-field [aria-invalid="true"] { border-color: var(--error); }
.field-help, .field-error { margin: 6px 0 0; font-size: 12px; }
.field-help { color: var(--taupe); }
.field-error { color: var(--error); }
.form-status { margin-top: 18px; padding: 14px 16px; border-left: 3px solid var(--error); background: #f8e8df; color: #653222; font-size: 14px; }
.form-status a { text-decoration: underline; text-underline-offset: 3px; }
.contact-grid .wpforms-container input,
.contact-grid .wpforms-container textarea,
.contact-grid .gform_wrapper input,
.contact-grid .gform_wrapper textarea,
.contact-grid .ff-el-form-control { border-color: #cdbfa9; border-radius: var(--radius-sm); background: var(--warm-white); }
.woocommerce-shell { min-height: 60vh; }
.woocommerce .products { margin-top: 40px; }
.contact-grid aside { padding: clamp(30px, 4vw, 48px); border-top: 3px solid var(--gold); background: var(--warm-white); box-shadow: var(--shadow-soft); }
.contact-grid aside > a { min-height: 52px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--sand); font-family: var(--font-label), Georgia, serif; }
.response-note { margin-top: 34px; padding: 20px; background: var(--ivory); }
.response-note p { margin: 6px 0 0; color: var(--espresso-soft); font-size: 13px; }

.legal-page { min-height: 70vh; padding-block: clamp(64px, 9vw, 120px); }
.legal-inner { max-width: 820px; }
.legal-inner h1 { margin-bottom: 34px; }
.legal-inner h2 { margin: 44px 0 12px; font-size: 2rem; }
.legal-notice { padding: 20px 24px; border-left: 3px solid var(--clay); background: #f8e8df; color: #653222; }
.not-found { min-height: 70vh; display: grid; place-items: center; padding: 60px 20px; text-align: center; }
.not-found > div { max-width: 680px; }
.not-found img { width: 88px; margin: 0 auto 24px; }
.not-found p:not(.eyebrow) { color: var(--espresso-soft); }
.route-loading { min-height: 65vh; display: grid; place-items: center; align-content: center; gap: 16px; color: var(--taupe); font-family: var(--font-label), Georgia, serif; letter-spacing: 0.08em; }
.route-loading img { width: 64px; animation: seal-pulse 1.5s ease-in-out infinite; }
@keyframes seal-pulse { 50% { opacity: 0.45; transform: scale(0.94); } }

.site-footer { background: var(--espresso); color: var(--ivory); }
.footer-main { display: grid; grid-template-columns: minmax(260px, 1.6fr) repeat(3, 1fr); gap: clamp(38px, 6vw, 80px); padding-block: clamp(68px, 9vw, 110px); }
.footer-brand img { width: 245px; height: auto; margin-bottom: 24px; }
.footer-brand > p { max-width: 430px; margin: 0; color: #d8cebf; font-size: 14px; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-label { margin: 0 0 18px; color: var(--light-gold); font-family: var(--font-label), Georgia, serif; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-main a { min-height: 38px; display: flex; align-items: center; color: #d8cebf; font-size: 13px; }
.footer-main a:hover { color: var(--warm-white); }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #4b413a; color: #aa9d90; font-size: 11px; letter-spacing: 0.06em; }
.footer-bottom span:last-child { font-family: var(--font-display), Georgia, serif; font-size: 15px; font-style: italic; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 210px 1fr auto; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 10px; }
  .hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid p:nth-child(odd) { border-left: 1px solid var(--sand); }
  .trust-grid p:nth-child(-n+2) { border-bottom: 1px solid var(--sand); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 50px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .material-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid > div:nth-child(odd) { border-left: 1px solid #5a5047; }
  .values-grid > div { border-bottom: 1px solid #5a5047; }
  .footer-main { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-shop { display: none; }
  .header-inner { height: 78px; grid-template-columns: 1fr auto; }
  .mobile-menu { display: block; }
  .brand-logo { width: 190px; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; padding-left: 0; }
  .hero-visual { min-height: 650px; }
  .collection-panel { min-height: 650px; }
  .collection-image { min-height: 360px; }
  .founder-grid, .artisan-feature-grid, .artisan-manifesto-grid, .story-grid { grid-template-columns: 1fr; }
  .founder-mark { width: min(82vw, 430px); justify-self: center; }
  .artisan-feature-image, .artisan-manifesto-image { min-height: 560px; }
  .page-hero-grid > div:first-child { max-width: 700px; }
  .page-hero-image { min-height: 600px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature-image { min-height: 600px; }
  .material-cards { grid-template-columns: 1fr; }
  .care-callout-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .announcement { min-height: 40px; }
  .announcement span:nth-child(n+2) { display: none; }
  .hero { padding-top: 42px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 16vw, 4.6rem); }
  .hero-visual { min-height: 520px; }
  .hero-image--main { right: 2%; left: 5%; border-radius: 150px 150px 8px 8px; }
  .hero-image--inset { width: 45%; height: 38%; border-width: 7px; }
  .hero-seal { top: 8%; left: 0; width: 78px; }
  .hero-vertical { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p, .trust-grid p:first-child, .trust-grid p:nth-child(odd) { border: 0; border-bottom: 1px solid var(--sand); }
  .trust-grid p:last-child { border-bottom: 0; }
  .collection-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 420px; }
  .collection-panel { min-height: auto; }
  .collection-image { min-height: 340px; }
  .section-bar { display: block; }
  .section-bar .text-link { margin-top: 24px; }
  .product-grid { gap: 38px 14px; }
  .product-image { aspect-ratio: 0.78; }
  .product-image::after { display: none; }
  .product-meta h3 { min-height: 0; font-size: 1.05rem; }
  .product-meta > div { align-items: flex-start; flex-direction: column; }
  .product-meta .text-link { min-height: 28px; }
  .founder-mark { width: min(88vw, 380px); }
  .artisan-feature-image, .artisan-manifesto-image { min-height: 430px; }
  .material-grid { grid-template-columns: 1fr; align-items: start; }
  .page-hero-image, .split-feature-image { min-height: 480px; }
  .story-hero .breadcrumbs { margin-bottom: 30px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid > div, .values-grid > div:first-child, .values-grid > div:nth-child(odd) { border-right: 1px solid #5a5047; border-left: 1px solid #5a5047; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-logo { width: 168px; }
  .hero-copy h1 { font-size: 3rem; }
  .hero-visual { min-height: 450px; }
  .button-row .button { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 380px; }
  .product-image { aspect-ratio: 1; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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

/* Version 1.4 editorial launch homepage. */
.editorial-home {
  background: var(--ivory);
}

.editorial-home h1,
.editorial-home h2,
.editorial-home h3,
.editorial-home p {
  text-wrap: pretty;
}

.editorial-hero {
  position: relative;
  min-height: 760px;
  padding-block: clamp(56px, 7vw, 104px);
  overflow: hidden;
  border-bottom: 1px solid var(--sand);
}

.editorial-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: var(--sand);
}

.editorial-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
}

.editorial-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.editorial-hero__copy h1 {
  max-width: 700px;
  margin: 0 0 32px;
  font-size: clamp(4rem, 7.2vw, 7rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.editorial-hero__copy h1 em {
  color: var(--gold-text);
  font-weight: 400;
}

.editorial-hero__lede {
  max-width: 570px;
  margin: 0 0 34px;
  color: var(--espresso-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.8;
}

.editorial-hero__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.editorial-hero__signature span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.editorial-hero__signature p {
  margin: 0;
  color: var(--gold-text);
  font-family: var(--font-display), Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.editorial-hero__visual {
  position: relative;
  min-height: clamp(590px, 47vw, 720px);
}

.editorial-hero__primary,
.editorial-hero__detail {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.editorial-hero__primary {
  inset: 0 0 8% 14%;
  border: 1px solid #d5c39f;
}

.editorial-hero__primary::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 253 249 / 0.68);
  pointer-events: none;
}

.editorial-hero__detail {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 42%;
  aspect-ratio: 0.82;
  border: 9px solid var(--ivory);
  box-shadow: 0 28px 60px rgb(42 37 33 / 0.16);
}

.editorial-hero__primary img,
.editorial-hero__detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-hero__detail img {
  object-position: 52% center;
}

.editorial-hero__seal {
  position: absolute;
  z-index: 4;
  top: -26px;
  left: 5%;
  width: 90px;
  padding: 15px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  background: var(--warm-white);
  box-shadow: var(--shadow-soft);
}

.editorial-hero__edition {
  position: absolute;
  z-index: 4;
  right: -14px;
  bottom: 4%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--espresso);
  color: var(--ivory);
  font-family: var(--font-label), Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-hero__edition span {
  color: var(--light-gold);
}

.editorial-trust {
  border-bottom: 1px solid var(--sand);
  background: var(--warm-white);
}

.editorial-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-trust p {
  min-height: 132px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  gap: 2px 16px;
  margin: 0;
  padding: 24px clamp(18px, 2.5vw, 36px);
  border-right: 1px solid var(--sand);
}

.editorial-trust p:first-child {
  border-left: 1px solid var(--sand);
}

.editorial-trust span {
  grid-row: 1 / 3;
  color: var(--gold-text);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.editorial-trust strong {
  font-family: var(--font-label), Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.editorial-trust small {
  color: var(--taupe);
  font-size: 12px;
}

.editorial-intro {
  background: var(--ivory);
}

.editorial-intro__grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
}

.editorial-intro__index {
  margin: 0;
  color: var(--gold-text);
  font-family: var(--font-label), Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.editorial-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.editorial-intro__copy {
  margin: 0 0 8px;
  color: var(--espresso-soft);
  font-size: 17px;
}

.editorial-collections {
  padding: 0 clamp(16px, 3vw, 48px) clamp(80px, 10vw, 140px);
}

.editorial-collections__grid {
  max-width: 1500px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: clamp(16px, 2vw, 32px);
  margin-inline: auto;
}

.editorial-collection {
  position: relative;
  min-height: clamp(560px, 55vw, 780px);
  overflow: hidden;
  color: var(--warm-white);
}

.editorial-collection--artisan {
  min-height: clamp(500px, 48vw, 680px);
  align-self: end;
}

.editorial-collection img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.editorial-collection--fine img {
  object-position: 48% center;
}

.editorial-collection__shade {
  position: absolute;
  inset: 0;
  background: rgb(42 37 33 / 0.32);
  transition: background var(--duration) var(--ease);
}

.editorial-collection__content {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(28px, 5vw, 64px);
  left: clamp(24px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.editorial-collection__content small {
  margin-bottom: 8px;
  font-family: var(--font-label), Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-collection__content strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.editorial-collection__content em {
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-top: 18px;
  border-bottom: 1px solid rgb(255 253 249 / 0.75);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-collection:hover img {
  transform: scale(1.035);
}

.editorial-collection:hover .editorial-collection__shade {
  background: rgb(42 37 33 / 0.22);
}

.editorial-products {
  border-top: 1px solid var(--sand);
  background: var(--warm-white);
}

.editorial-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.editorial-section-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  line-height: 0.94;
}

.editorial-section-head > div:last-child p {
  margin: 0 0 18px;
  color: var(--taupe);
}

.editorial-products .product-grid {
  gap: clamp(18px, 2.5vw, 34px);
}

.editorial-products .product-card:nth-child(even) {
  padding-top: 64px;
}

.editorial-products .product-image {
  border-radius: 0;
}

.editorial-products .product-image::after {
  border-radius: 0;
}

.editorial-products .catalog-note {
  max-width: 680px;
  margin: 54px auto 0;
  padding: 18px 24px;
  border: 1px solid var(--sand);
  background: var(--ivory);
  text-align: center;
}

.editorial-materials {
  padding-block: clamp(80px, 10vw, 144px);
  background: var(--espresso);
  color: var(--ivory);
}

.editorial-materials__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 10vw, 154px);
  align-items: start;
}

.editorial-materials__statement {
  position: sticky;
  top: 150px;
}

.editorial-materials .eyebrow {
  color: var(--light-gold);
}

.editorial-materials h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 0.95;
}

.editorial-materials__statement > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 34px;
  color: #d9cebf;
}

.editorial-materials__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #5b5047;
}

.editorial-materials__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid #5b5047;
}

.editorial-materials__list span {
  color: var(--light-gold);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.editorial-materials__list h3 {
  margin: 0 0 8px;
  color: var(--warm-white);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
}

.editorial-materials__list p {
  max-width: 560px;
  margin: 0;
  color: #c9beb0;
}

.editorial-founder {
  padding-block: clamp(82px, 10vw, 142px);
  background: var(--gold);
  color: var(--espresso);
}

.editorial-founder__grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(60px, 10vw, 148px);
  align-items: center;
}

.editorial-founder__seal {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgb(42 37 33 / 0.45);
  border-radius: 50%;
}

.editorial-founder__seal img {
  width: 64%;
  height: auto;
}

.editorial-founder h2 {
  max-width: 900px;
  margin: 0 0 26px;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  font-style: italic;
  line-height: 0.98;
}

.editorial-founder p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 24px;
  color: #473d34;
  font-size: 17px;
}

.text-link--light {
  color: var(--espresso);
  border-color: var(--espresso);
}

.editorial-artisan {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 760px;
  background: #efe2d5;
}

.editorial-artisan__image {
  position: relative;
  min-height: 680px;
}

.editorial-artisan__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-artisan__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(56px, 8vw, 120px);
}

.editorial-artisan__copy h2 {
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  line-height: 0.95;
}

.editorial-artisan__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 0 30px;
  color: var(--espresso-soft);
  font-size: 17px;
}

.editorial-artisan__copy ul {
  width: 100%;
  max-width: 590px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d2bfaa;
}

.editorial-artisan__copy li {
  padding: 13px 0;
  border-bottom: 1px solid #d2bfaa;
  font-family: var(--font-label), Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.editorial-gifting {
  background: var(--ivory);
}

.editorial-gifting__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(58px, 10vw, 148px);
  align-items: center;
}

.editorial-gifting__copy {
  max-width: 570px;
}

.editorial-gifting h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.editorial-gifting__copy > p:not(.eyebrow) {
  margin: 0 0 32px;
  color: var(--espresso-soft);
  font-size: 17px;
}

.editorial-gifting__images {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: end;
}

.editorial-gifting__images img {
  width: 100%;
  height: 82%;
  object-fit: cover;
}

.editorial-gifting__images img:first-child {
  height: 100%;
}

.editorial-newsletter {
  padding-block: clamp(80px, 10vw, 136px);
  background: var(--clay);
  color: var(--warm-white);
}

.editorial-newsletter__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: center;
}

.editorial-newsletter .eyebrow {
  color: #f7d7c4;
}

.editorial-newsletter h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.editorial-newsletter__grid > div:first-child > p:not(.eyebrow) {
  max-width: 560px;
  color: #fae9df;
}

.editorial-closing {
  padding-block: clamp(110px, 14vw, 200px);
  border-bottom: 1px solid var(--sand);
  background: var(--warm-white);
  text-align: center;
}

.editorial-closing__inner {
  max-width: 980px;
}

.editorial-closing h2 {
  max-width: 920px;
  margin: 0 auto 38px;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.9;
}

@media (max-width: 1100px) {
  .editorial-hero__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
    gap: 44px;
  }

  .editorial-hero__copy h1 {
    font-size: clamp(4rem, 7vw, 5.6rem);
  }

  .editorial-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-trust p:nth-child(2) {
    border-right: 1px solid var(--sand);
  }

  .editorial-trust p:nth-child(-n+2) {
    border-bottom: 1px solid var(--sand);
  }

  .editorial-intro__grid {
    grid-template-columns: 70px 1fr;
  }

  .editorial-intro__copy {
    grid-column: 2;
    max-width: 680px;
  }

  .editorial-artisan__copy {
    padding: 64px;
  }
}

@media (max-width: 900px) {
  .editorial-hero::before {
    width: 26%;
  }

  .editorial-hero__grid,
  .editorial-materials__grid,
  .editorial-founder__grid,
  .editorial-gifting__grid,
  .editorial-newsletter__grid {
    grid-template-columns: 1fr;
  }

  .editorial-hero__copy {
    max-width: 720px;
  }

  .editorial-hero__copy h1 {
    font-size: clamp(4.4rem, 12vw, 7rem);
  }

  .editorial-hero__visual {
    min-height: 720px;
  }

  .editorial-collections__grid {
    grid-template-columns: 1fr;
  }

  .editorial-collection,
  .editorial-collection--artisan {
    min-height: 680px;
  }

  .editorial-section-head {
    grid-template-columns: 1fr;
  }

  .editorial-materials__statement {
    position: static;
  }

  .editorial-founder__seal {
    width: min(68vw, 380px);
    justify-self: center;
  }

  .editorial-artisan {
    grid-template-columns: 1fr;
  }

  .editorial-artisan__image {
    min-height: 720px;
  }

  .editorial-gifting__images {
    min-height: 700px;
  }
}

@media (max-width: 700px) {
  .editorial-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .editorial-hero__copy h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .editorial-hero__visual {
    min-height: 540px;
  }

  .editorial-hero__primary {
    inset: 0 0 5% 8%;
  }

  .editorial-hero__detail {
    width: 48%;
    border-width: 7px;
  }

  .editorial-hero__seal {
    left: 0;
    width: 76px;
  }

  .editorial-hero__edition {
    right: 0;
    bottom: 1%;
  }

  .editorial-trust__grid {
    grid-template-columns: 1fr;
  }

  .editorial-trust p,
  .editorial-trust p:first-child {
    min-height: 102px;
    border: 0;
    border-bottom: 1px solid var(--sand);
  }

  .editorial-intro__grid {
    grid-template-columns: 1fr;
  }

  .editorial-intro__index {
    writing-mode: initial;
    transform: none;
  }

  .editorial-intro__copy {
    grid-column: auto;
  }

  .editorial-intro h2,
  .editorial-section-head h2,
  .editorial-materials h2,
  .editorial-founder h2,
  .editorial-artisan__copy h2,
  .editorial-gifting h2,
  .editorial-newsletter h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .editorial-collections {
    padding-inline: 0;
  }

  .editorial-collection,
  .editorial-collection--artisan {
    min-height: 560px;
  }

  .editorial-collection__content strong {
    font-size: 3.2rem;
  }

  .editorial-products .product-card:nth-child(even) {
    padding-top: 34px;
  }

  .editorial-materials__grid {
    gap: 54px;
  }

  .editorial-materials__list li {
    grid-template-columns: 38px 1fr;
  }

  .editorial-founder__grid {
    gap: 48px;
  }

  .editorial-artisan__image {
    min-height: 500px;
  }

  .editorial-artisan__copy {
    padding: 64px 24px;
  }

  .editorial-gifting__images {
    min-height: 480px;
  }

  .editorial-closing h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }
}

@media (max-width: 380px) {
  .editorial-hero__copy h1 {
    font-size: 3.35rem;
  }

  .editorial-hero__visual {
    min-height: 470px;
  }

  .editorial-hero__edition {
    font-size: 8px;
  }

  .editorial-collection,
  .editorial-collection--artisan {
    min-height: 480px;
  }

  .editorial-products .product-card:nth-child(even) {
    padding-top: 0;
  }

  .editorial-gifting__images {
    min-height: 390px;
  }
}

/* ==========================================================================
   1.6.0 — hero video, header pills, glowing CTAs, seasonal band,
   skin-question section, policy pages, WhatsApp float.
   ========================================================================== */

/* --- Header pills ------------------------------------------------------- */
.header-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.pill--account { background: var(--gold); color: var(--warm-white); }
.pill--account:hover,
.pill--account:focus-visible { background: var(--espresso); color: var(--warm-white); }
.pill--bag { background: var(--warm-white); color: var(--espresso); border-color: rgb(42 37 33 / 0.2); padding-right: 14px; }
.pill--bag:hover,
.pill--bag:focus-visible { border-color: var(--gold); color: var(--gold-text); }
.pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--warm-white);
  font-size: 11px;
  line-height: 1;
}
.pill:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- Glowing call to action --------------------------------------------- */
.button--glow { position: relative; animation: nachelle-glow 2600ms var(--ease) infinite; }
.button--glow-delayed { animation-delay: 550ms; }
.button__dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.button__dot::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
@keyframes nachelle-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgb(169 130 63 / 0.55), 0 6px 22px rgb(0 0 0 / 0.28); }
  50%      { box-shadow: 0 0 0 14px rgb(169 130 63 / 0), 0 6px 26px rgb(0 0 0 / 0.32); }
}
.button--onvideo {
  background: rgb(246 240 230 / 0.1);
  color: var(--warm-white);
  border: 1px solid rgb(246 240 230 / 0.88);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation-name: nachelle-glow-light;
}
.button--onvideo:hover,
.button--onvideo:focus-visible { background: var(--warm-white); color: var(--espresso); border-color: var(--warm-white); }
@keyframes nachelle-glow-light {
  0%, 100% { box-shadow: 0 0 0 0 rgb(246 240 230 / 0.42), 0 6px 22px rgb(0 0 0 / 0.24); }
  50%      { box-shadow: 0 0 0 14px rgb(246 240 230 / 0), 0 6px 26px rgb(0 0 0 / 0.3); }
}
.button--gold { background: var(--gold); color: #1a1613; border: 1px solid var(--gold); }
.button--gold:hover,
.button--gold:focus-visible { background: var(--ivory); border-color: var(--ivory); color: var(--espresso); }

/* --- Hero video --------------------------------------------------------- */
.hero-video-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(460px, 66vh, 660px);
  overflow: hidden;
  background: var(--espresso);
  isolation: isolate;
}
.hero-video-section__poster,
.hero-video-section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-section__poster { z-index: 1; }
.hero-video-section__video { z-index: 2; }
.hero-video-section__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgb(26 22 19 / 0.52) 0%, rgb(26 22 19 / 0.3) 45%, rgb(26 22 19 / 0.74) 100%);
}
.hero-video-section__inner { position: relative; z-index: 4; width: 100%; padding-block: clamp(58px, 9vw, 96px); text-align: center; }
.hero-video-section h1 {
  max-width: 17ch;
  margin: 0 auto;
  color: var(--warm-white);
  font-size: clamp(38px, 6.6vw, 80px);
  line-height: 1.06;
  text-shadow: 0 2px 26px rgb(0 0 0 / 0.42);
}
.hero-video-section__lede {
  max-width: 58ch;
  margin: 20px auto 0;
  color: rgb(246 240 230 / 0.92);
  font-size: clamp(15px, 1.55vw, 18.5px);
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.35);
}
.hero-video-section .button-row { margin-top: 32px; }
.hero-video-section__micro {
  margin: 24px 0 0;
  color: rgb(246 240 230 / 0.74);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--light-gold); }
.hero-video-section__check {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  max-width: min(92%, 640px);
  margin: 0;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgb(26 22 19 / 0.86);
  color: var(--light-gold);
  font-size: 11px;
  text-align: center;
}

/* --- Seasonal band ------------------------------------------------------- */
.seasonal-band { padding-block: clamp(44px, 6vw, 72px); background: var(--espresso); color: var(--ivory); }
.seasonal-band h2 { max-width: 18ch; margin: 12px 0 0; color: var(--ivory); font-size: clamp(30px, 4.4vw, 50px); }
.seasonal-band__copy { max-width: 54ch; margin: 14px 0 0; color: #cdc3b4; }
.seasonal-band .button { margin-top: 26px; }

/* --- Skin question ------------------------------------------------------- */
.skin-question { padding-block: clamp(64px, 8vw, 112px); background: var(--sand); }
.skin-question__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.skin-question h2 { max-width: 16ch; margin: 0; font-size: clamp(28px, 3.8vw, 44px); }
.skin-question__body p { margin: 0 0 16px; color: #453d35; font-size: 16.5px; }
.skin-question__body strong { font-weight: 500; color: var(--espresso); }

/* --- Policy and care pages ---------------------------------------------- */
.page-hero--plain { padding-block: clamp(48px, 6vw, 88px) clamp(20px, 3vw, 36px); background: var(--warm-white); }
.page-hero__lede { max-width: 62ch; margin: 18px 0 0; color: var(--espresso-soft); font-size: 17px; }
.care-body .prose { max-width: 760px; }
.care-body .prose h2 { margin: 44px 0 12px; font-size: clamp(22px, 2.6vw, 30px); }
.care-body .prose h2:first-child { margin-top: 0; }
.care-body .prose ul { margin: 0 0 18px; padding-left: 22px; }
.care-body .prose li { margin-bottom: 8px; }
.material-note { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--sand); color: var(--taupe); font-size: 14px; }

/* --- Floating WhatsApp --------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.28);
  transition: transform var(--duration) var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 180px 1fr auto; gap: 18px; }
  .pill { padding: 10px 18px; font-size: 12px; }
}
@media (max-width: 900px) {
  .skin-question__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .desktop-nav { display: none; }
  .header-actions { gap: 8px; }
  .pill--account { padding: 10px 14px; font-size: 11.5px; }
  .pill--bag { padding: 10px 12px 10px 16px; font-size: 11.5px; }
  .mobile-menu { display: block; }
  .hero-video-section .button-row { flex-direction: column; align-items: stretch; padding-inline: 8px; }
  .hero-video-section .button { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .button--glow,
  .button--onvideo { animation: none; }
  .wa-float { transition: none; }
}

/* ==========================================================================
   1.7.0 — Equiva structural pattern applied to Nachelle's own identity.
   Pill language, chip-filtered carousel, newsletter modal.
   ========================================================================== */

/* --- Pill buttons everywhere -------------------------------------------- */
.button,
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button { border-radius: 999px; }
.button { padding: 14px 30px; letter-spacing: 0.14em; }

/* --- Filter chips -------------------------------------------------------- */
.catalog__filters {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.catalog__filters::-webkit-scrollbar { display: none; }
.chip {
  min-height: 40px;
  padding: 9px 20px;
  border: 1px solid rgb(42 37 33 / 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--espresso-soft);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration), border-color var(--duration);
}
.chip:hover { border-color: var(--gold); color: var(--gold-text); }
.chip[aria-pressed="true"] { background: var(--espresso); border-color: var(--espresso); color: var(--ivory); }
.chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* --- Carousel ------------------------------------------------------------ */
.catalog__viewport { position: relative; }
.catalog__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.catalog__track::-webkit-scrollbar { display: none; }
.catalog__track:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
.catalog-card { flex: 0 0 clamp(210px, 23vw, 268px); min-width: 0; scroll-snap-align: start; }
.catalog-card[hidden] { display: none; }
.catalog-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.catalog-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.catalog-card:hover .catalog-card__image img { transform: scale(1.04); }
.catalog-card__meta { padding-top: 14px; }
.catalog-card__material {
  margin: 0 0 6px;
  color: var(--gold-text);
  font-family: var(--font-label), Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.catalog-card__meta h3 { margin: 0; font-size: 19px; font-weight: 500; line-height: 1.3; }
.catalog-card__meta h3 a { color: inherit; text-decoration: none; }
.catalog-card__price { margin: 8px 0 0; font-size: 15px; }

.catalog__arrow {
  position: absolute;
  top: calc(50% - 46px);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--espresso);
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: opacity var(--duration), background var(--duration);
}
.catalog__arrow--prev { left: -14px; }
.catalog__arrow--next { right: -14px; }
.catalog__arrow:hover { background: var(--espresso); color: var(--ivory); }
.catalog__arrow:disabled { opacity: 0; pointer-events: none; }
.catalog__arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.catalog__empty { margin-top: 20px; color: var(--taupe); }
.catalog-note { margin-top: 22px; max-width: 68ch; color: var(--taupe); font-size: 14px; }

@media (max-width: 900px) {
  .catalog__arrow { display: none; }
  .catalog__track { padding-inline: 2px; }
}

/* --- Newsletter modal ---------------------------------------------------- */
body.has-modal { overflow: hidden; }
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.newsletter-modal[hidden] { display: none; }
.newsletter-modal__backdrop { position: absolute; inset: 0; background: rgb(26 22 19 / 0.62); }
.newsletter-modal__panel {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 30px 80px rgb(0 0 0 / 0.34);
  text-align: center;
}
.newsletter-modal__panel h2 { margin: 10px 0 0; font-size: clamp(26px, 4vw, 38px); }
.newsletter-modal__copy { max-width: 40ch; margin: 14px auto 0; color: var(--espresso-soft); }
.newsletter-modal__form { margin-top: 22px; }
.newsletter-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--taupe);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.newsletter-modal__close:hover { background: var(--sand); color: var(--espresso); }
.newsletter-modal__decline {
  margin-top: 16px;
  border: 0;
  background: none;
  color: var(--taupe);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.newsletter-modal__decline:hover { color: var(--espresso); }
.newsletter-modal__close:focus-visible,
.newsletter-modal__decline:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* --- Rounded editorial surfaces, matching the pill language -------------- */
.editorial-collection,
.editorial-gifting__images img,
.editorial-artisan__image img,
.page-hero-image { border-radius: var(--radius); overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .catalog__track { scroll-behavior: auto; }
  .catalog-card:hover .catalog-card__image img { transform: none; }
}
