:root {
  color-scheme: light;
  --paper: #f7f2eb;
  --paper-strong: #fffaf3;
  --ink: #252525;
  --muted: #686057;
  --charcoal: #1d2a28;
  --sage: #6f826f;
  --clay: #a86248;
  --gold: #b8893c;
  --line: rgba(37, 37, 37, 0.14);
  --shadow: 0 18px 42px rgba(29, 42, 40, 0.12);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

.admin-bar .site-header {
  top: 32px;
}

.skip-link:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--paper-strong);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--paper-strong);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-visible {
  background: rgba(255, 250, 243, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(29, 42, 40, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav .menu {
  display: flex;
  align-items: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav .sub-menu {
  position: absolute;
  min-width: 190px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
}

.site-nav li {
  position: relative;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
}

.site-nav .menu-cta > a {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
}

.custom-logo-link,
.custom-logo-link img {
  display: block;
}

.custom-logo {
  width: auto;
  max-height: 48px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  background: var(--charcoal);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 42, 40, 0.72) 0%, rgba(29, 42, 40, 0.36) 47%, rgba(29, 42, 40, 0.04) 100%),
    linear-gradient(0deg, rgba(29, 42, 40, 0.64) 0%, rgba(29, 42, 40, 0) 52%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: 138px clamp(22px, 5vw, 72px) clamp(38px, 7vw, 86px);
  color: var(--paper-strong);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c987;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 10vw, 8rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-actions,
.contact-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--paper-strong);
}

.hero .button.primary {
  border-color: var(--paper-strong);
  background: var(--paper-strong);
  color: var(--charcoal);
}

.button.secondary {
  background: rgba(255, 250, 243, 0.08);
  color: var(--paper-strong);
  backdrop-filter: blur(10px);
}

.button.outline {
  background: transparent;
  color: var(--charcoal);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 640px;
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 250, 243, 0.24);
}

.hero-notes div {
  padding: 18px 24px 0 0;
}

.hero-notes dt {
  color: #f3c987;
  font-family: var(--serif);
  font-size: 1.38rem;
}

.hero-notes dd {
  margin: 5px 0 0;
  color: rgba(255, 250, 243, 0.76);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  display: grid;
  align-content: center;
  min-height: 124px;
  gap: 5px;
  padding: 22px clamp(18px, 4vw, 50px);
  background: var(--paper-strong);
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 400;
}

.trust-strip span,
.section-heading p,
.customer-grid p,
.custom-copy p,
.custom-steps p,
.story-copy p,
.policy-grid p,
.contact-panel p,
.site-footer {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(30px, 6vw, 58px);
}

.section-heading p:last-child {
  max-width: 650px;
  margin: 0;
  font-size: 1.05rem;
}

.section-heading.compact {
  display: block;
  margin-bottom: 30px;
}

.section-heading.compact h2 {
  max-width: 13ch;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.collection-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-body p {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-body a,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--charcoal);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.customer-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  border-block: 1px solid var(--line);
  background: #eef0e9;
}

.customer-copy h2 {
  max-width: 11ch;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(29, 42, 40, 0.12);
  background: rgba(29, 42, 40, 0.12);
}

.customer-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 250, 243, 0.74);
}

.customer-grid h3,
.policy-grid h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.customer-grid p,
.policy-grid p {
  margin: 18px 0 0;
}

.custom-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  background: var(--charcoal);
  color: var(--paper-strong);
}

.custom-copy {
  max-width: 620px;
}

.custom-copy .eyebrow {
  color: #f3c987;
}

.custom-copy p {
  margin: 24px 0 28px;
  color: rgba(255, 250, 243, 0.76);
}

.custom-band .button.primary {
  border-color: var(--paper-strong);
  background: var(--paper-strong);
  color: var(--charcoal);
}

.custom-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  background: rgba(255, 250, 243, 0.18);
}

.custom-steps div {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 243, 0.06);
}

.custom-steps span {
  display: inline-block;
  margin-bottom: 44px;
  color: #f3c987;
  font-family: var(--serif);
  font-size: 2.2rem;
}

.custom-steps strong {
  display: block;
  font-size: 1.1rem;
}

.custom-steps p {
  margin: 12px 0 0;
  color: rgba(255, 250, 243, 0.72);
}

.materials {
  background: var(--paper);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.policy-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper-strong);
}

.story {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  background: var(--paper-strong);
}

.story-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.contact-panel {
  justify-content: space-between;
  margin: 0 clamp(18px, 5vw, 72px) clamp(64px, 10vw, 110px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-panel div:first-child {
  max-width: 680px;
}

.contact-panel h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.contact-panel p {
  max-width: 620px;
  margin: 18px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
  font-size: 0.92rem;
}

.site-footer p,
.site-footer div {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.site-footer div {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer a {
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.fine-print {
  text-align: right;
}

/* Standard WordPress content and WooCommerce use the same editorial system. */
.content-shell {
  width: min(1200px, calc(100% - 36px));
  min-height: 65vh;
  margin: 0 auto;
  padding: 150px 0 90px;
}

.page-header,
.content-article {
  max-width: 860px;
  margin: 0 auto 52px;
}

.entry-title,
.page-title {
  max-width: 16ch;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}

.entry-title a {
  text-decoration: none;
}

.entry-meta {
  color: var(--muted);
}

.entry-thumbnail {
  display: block;
  margin: 30px 0;
}

.entry-thumbnail img {
  width: 100%;
  border-radius: 8px;
}

.entry-content {
  font-size: 1.05rem;
}

.entry-content a {
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.post-list .content-article {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.post-list .entry-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--paper-strong);
}

.woocommerce ul.products li.product,
.woocommerce div.product div.images img,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce-account .woocommerce-MyAccount-content {
  border-radius: 8px;
}

.woocommerce ul.products li.product {
  overflow: hidden;
  padding-bottom: 18px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-inline: 18px;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--sage);
  background: var(--paper-strong);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
  }

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

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-strong);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav .sub-menu {
    position: static;
    padding: 0 0 0 18px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav .menu-cta > a {
    border: 0;
    border-radius: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    border: 0;
    border-radius: 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero img {
    object-position: 38% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(29, 42, 40, 0.72) 0%, rgba(29, 42, 40, 0.24) 100%),
      linear-gradient(0deg, rgba(29, 42, 40, 0.70) 0%, rgba(29, 42, 40, 0.06) 60%);
  }

  .hero-copy {
    padding-top: 120px;
  }

  .trust-strip,
  .collection-grid,
  .customer-band,
  .custom-band,
  .story,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 100px;
  }

  .custom-steps {
    grid-template-columns: 1fr;
  }

  .custom-steps div {
    min-height: auto;
  }

  .custom-steps span {
    margin-bottom: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fine-print {
    text-align: center;
  }

  .post-list {
    grid-template-columns: 1fr;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 1.08rem;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .hero {
    min-height: 88svh;
  }

  .hero-copy {
    padding-inline: 20px;
    padding-bottom: 34px;
  }

  .hero-notes,
  .customer-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero-notes div {
    padding-right: 0;
  }

  .button,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .contact-panel {
    align-items: stretch;
  }
}

/* Coming Soon page template. */
.coming-soon-page {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--paper);
}

.coming-soon-editor-content,
.coming-soon-editor-content > .wp-block-group {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
}

.coming-soon-page .wp-site-blocks,
.coming-soon-page .entry-content {
  margin: 0;
  padding: 0;
}

.coming-soon-shell {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  min-height: 100svh;
}

.coming-soon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px clamp(20px, 5vw, 72px);
}

.coming-soon-instagram {
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.coming-soon-main {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 72px) clamp(44px, 6vw, 80px);
}

.coming-soon-copy {
  max-width: 680px;
}

.coming-soon-copy h1 {
  max-width: 9ch;
  color: var(--charcoal);
  font-size: clamp(3.8rem, 7.8vw, 7.4rem);
}

.coming-soon-copy .wp-block-heading {
  max-width: 9ch;
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.coming-soon-copy > p:not(.eyebrow):not(.coming-soon-note) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.coming-soon-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.coming-soon-actions .wp-block-button__link {
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  font-weight: 700;
}

.coming-soon-actions .primary .wp-block-button__link {
  background: var(--charcoal);
  color: var(--paper-strong);
}

.coming-soon-actions .outline .wp-block-button__link {
  background: transparent;
  color: var(--charcoal);
}

.coming-soon-note {
  max-width: 560px;
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.coming-soon-media {
  position: relative;
  min-height: min(72vh, 820px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e9dfd0;
  box-shadow: var(--shadow);
}

.coming-soon-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 137, 60, 0.22);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.coming-soon-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

@media (max-width: 900px) {
  .coming-soon-main {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .coming-soon-copy {
    max-width: 760px;
  }

  .coming-soon-copy h1 {
    max-width: 11ch;
  }

  .coming-soon-copy .wp-block-heading {
    max-width: 11ch;
  }

  .coming-soon-media {
    grid-row: 1;
    min-height: min(58vh, 620px);
  }
}

@media (max-width: 620px) {
  .coming-soon-header {
    min-height: 76px;
  }

  .coming-soon-main {
    gap: 34px;
    padding-bottom: 44px;
  }

  .coming-soon-copy h1 {
    font-size: clamp(3.15rem, 16vw, 4.6rem);
  }

  .coming-soon-copy .wp-block-heading {
    font-size: clamp(3.15rem, 16vw, 4.6rem);
  }

  .coming-soon-actions,
  .coming-soon-actions .button {
    width: 100%;
  }

  .coming-soon-media {
    min-height: 52vh;
  }
}
