:root {
  --black: #141414;
  --charcoal: #3f2a20;
  --ink-soft: #55362a;
  --white: #fbf8f2;
  --ivory: #efe3d1;
  --cream: #e8dcc8;
  --champagne: #c7a57a;
  --gold: #b88a3b;
  --amber: #c98b2b;
  --pale-gold: #f4dfb8;
  --line: rgba(20, 20, 20, 0.13);
  --shadow: 0 22px 70px rgba(63, 42, 32, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--black);
  background: linear-gradient(180deg, #fbf8f2 0%, #efe3d1 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 18px;
  color: var(--white);
  background: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.announcement span:first-child {
  font-family: var(--sans);
  font-size: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  text-transform: uppercase;
}

.announcement span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.size-links,
.contact-actions,
.section-kicker {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  font-family: var(--sans);
  line-height: 1;
}

.brand-wordmark {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  transform: translateY(1px);
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 102px);
  padding: clamp(38px, 7vw, 84px) clamp(18px, 5vw, 64px) clamp(30px, 6vw, 64px);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.97), rgba(239, 227, 209, 0.94)),
    radial-gradient(circle at 94% 12%, rgba(201, 139, 43, 0.18), transparent 28%);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 8.4vw, 7.8rem);
  line-height: 0.9;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.story-copy p,
.ritual-grid p,
.product-description {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions,
.size-links {
  flex-wrap: wrap;
  gap: 12px;
}

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

.button,
.size-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  padding: 0 20px;
}

.button:hover,
.size-link:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 28px rgba(17, 16, 14, 0.18);
}

.button-light,
.button-outline {
  color: var(--black);
  border: 1px solid var(--black);
  background: transparent;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  min-height: 420px;
  max-height: 660px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--black);
  background: rgba(251, 248, 242, 0.84);
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 64px);
}

.shop-section {
  background: var(--white);
}

.section-kicker {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.section-kicker a {
  border-bottom: 1px solid currentColor;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading h2,
.story-section h2,
.ritual-section h2,
.contact-section h2 {
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.95;
}

.section-heading p {
  max-width: 640px;
  font-size: 1.02rem;
}

.mobile-shop-hint {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-slider-controls {
  display: none;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(13, 12, 10, 0.1);
  border-radius: 6px;
  background: #fbf8f2;
  box-shadow: 0 10px 28px rgba(42, 31, 16, 0.07);
}

.product-image {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 139, 43, 0.28), transparent 24%),
    linear-gradient(135deg, var(--cream), var(--white));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(1.12) contrast(0.96);
}

.product-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  width: fit-content;
  padding: 7px 10px;
  color: var(--black);
  background: var(--pale-gold);
  border: 1px solid rgba(184, 138, 59, 0.34);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(13, 12, 10, 0.1);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-number {
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(251, 248, 242, 0.78);
  text-shadow: 0 1px 18px rgba(17, 16, 14, 0.32);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.product-body {
  padding: 22px;
}

.product-body > h3:first-child {
  margin-top: 28px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.product-tag {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scent-notes {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-description {
  min-height: 86px;
  margin-bottom: 22px;
}

.size-links {
  align-items: stretch;
}

.size-link {
  flex: 1 1 132px;
  min-height: 62px;
  flex-direction: column;
  gap: 3px;
  padding: 9px 12px;
  color: var(--black);
  border: 1px solid var(--black);
  background: var(--white);
  font-size: 0.9rem;
  text-align: center;
}

.size-link span {
  font-weight: 900;
}

.size-link small {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.size-link[data-ready="true"]:first-child {
  background: var(--pale-gold);
}

.size-link[data-ready="false"] {
  cursor: not-allowed;
  color: rgba(17, 16, 14, 0.48);
  border-color: rgba(17, 16, 14, 0.18);
  background: #e8dcc8;
  transform: none;
}

.size-link[data-ready="false"]::after {
  content: "Link coming soon";
  color: rgba(17, 16, 14, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
}

.ritual-section {
  background: var(--black);
  color: var(--white);
}

.ritual-section .eyebrow {
  color: var(--pale-gold);
}

.ritual-section h2 {
  max-width: 960px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 253, 248, 0.2);
}

.ritual-grid article {
  padding: clamp(22px, 4vw, 34px);
  background: var(--black);
}

.ritual-grid span {
  color: var(--pale-gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.ritual-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.1rem;
}

.ritual-grid p {
  color: rgba(255, 253, 248, 0.74);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  background: var(--ivory);
}

.story-copy {
  max-width: 680px;
  font-size: 1.06rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--white);
}

.contact-section h2 {
  max-width: 850px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

@media (max-width: 980px) {
  .hero,
  .product-grid,
  .story-section,
  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-description {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  .announcement {
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .announcement span:first-child {
    font-size: inherit;
  }

  .announcement span + span::before {
    width: 3px;
    height: 3px;
    margin-right: 8px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 20px;
  }

  .site-nav {
    width: auto;
    gap: 14px;
    font-size: 0.72rem;
  }

  .brand {
    gap: 6px;
    white-space: nowrap;
  }

  .brand-wordmark {
    font-size: 1.08rem;
    letter-spacing: 0.26em;
  }

  .brand-subtitle {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .hero {
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 28px;
  }

  h1 {
    max-width: 340px;
    font-size: 3.22rem;
    line-height: 0.92;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 24px;
  }

  .hero-visual {
    margin-inline: -18px;
  }

  .hero-visual img {
    min-height: 270px;
    max-height: 320px;
    border-radius: 0;
  }

  .hero-visual figcaption {
    left: 18px;
    right: auto;
  }

  .section-kicker,
  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2,
  .story-section h2,
  .ritual-section h2,
  .contact-section h2 {
    font-size: 2.55rem;
  }

  .shop-section {
    overflow: hidden;
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .shop-section .section-heading {
    margin-bottom: 16px;
  }

  .shop-section .section-heading p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .mobile-shop-hint {
    display: block;
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .product-grid {
    display: flex;
    gap: 16px;
    margin-inline: -20px;
    padding: 0 20px 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: center;
  }

  .shop-slider-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin: 0 0 14px;
  }

  .slider-button {
    min-height: 42px;
    padding: 0 14px;
    color: var(--white);
    background: var(--black);
    border: 1px solid var(--black);
    border-radius: 4px;
    font: inherit;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .slider-button:disabled {
    cursor: not-allowed;
    color: rgba(20, 20, 20, 0.42);
    background: var(--cream);
    border-color: rgba(20, 20, 20, 0.14);
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
  }

  .slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: transparent;
  }

  .slider-dot.is-active {
    width: 28px;
    background: var(--gold);
  }

  .product-image {
    min-height: 0;
    height: 176px;
  }

  .product-card h3 {
    margin-bottom: 6px;
    font-size: 1.9rem;
  }

  .product-body {
    padding: 16px;
  }

  .product-body > h3:first-child {
    margin-top: 22px;
  }

  .product-tag,
  .scent-notes {
    margin-bottom: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .product-description {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .size-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .size-link {
    min-height: 58px;
    padding: 8px 6px;
    font-size: 0.82rem;
  }

  .size-link small {
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .size-link[data-ready="false"]::after {
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .button {
    width: 100%;
  }

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