:root {
  --white: #fffefa;
  --paper: #f7fbf8;
  --mint: #b8dac7;
  --mint-strong: #70b58e;
  --lavender: #c5b8e8;
  --lavender-soft: #eee9fb;
  --sage: #315f4c;
  --ink: #253c34;
  --muted: #6f7c76;
  --line: #deebe3;
  --shadow: 0 22px 70px rgba(49, 95, 76, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(222, 235, 227, 0.76);
  background: rgba(255, 254, 250, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--sage);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand strong {
  display: block;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 1.8vw, 1.82rem);
  font-weight: 500;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: #52655d;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav > a,
.nav-dropdown-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.main-nav > a::after,
.nav-dropdown-button::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--mint-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-dropdown:hover .nav-dropdown-button::after,
.nav-dropdown-button:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-button svg,
.nav-dropdown:hover .nav-dropdown-button svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  background: var(--lavender-soft);
  color: #7565aa;
}

.nav-dropdown-panel a::after {
  color: var(--mint-strong);
  content: "→";
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--sage);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: center;
  min-height: min(760px, calc(100svh - 84px));
  padding: clamp(42px, 6vw, 66px) 0 44px;
}

.hero-copy {
  max-width: 600px;
  min-width: 0;
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.2vw, 6.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--sage);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 30px;
  color: #5d6963;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 21px;
  height: 21px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button.primary {
  background: var(--mint-strong);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(112, 181, 142, 0.25);
}

.button.secondary {
  border: 1px solid var(--lavender);
  background: #ffffff;
  color: #7565aa;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.gift-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #62766c;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(197, 184, 232, 0.58);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: min(62vh, 640px);
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.product-strip {
  padding: 76px clamp(20px, 5vw, 72px) 84px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--muted);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(980px, 100%);
  margin: 0 auto 28px;
}

.category-pills button,
.category-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(197, 184, 232, 0.72);
  border-radius: 8px;
  background: rgba(238, 233, 251, 0.58);
  color: #7565aa;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.category-pills button {
  min-height: 38px;
  padding: 0 14px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-pills button:hover,
.category-pills button:focus-visible,
.category-pills button.is-active {
  border-color: var(--mint-strong);
  background: var(--sage);
  color: #ffffff;
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(49, 95, 76, 0.07);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  border-color: rgba(197, 184, 232, 0.9);
  transform: translateY(-4px);
}

.product-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.14;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--lavender-soft);
}

.product-thumb::after {
  position: absolute;
  inset: auto 12px 12px auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(197, 184, 232, 0.5);
  content: "";
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crop-candle img {
  object-position: center;
}

.crop-incense img {
  object-position: center;
}

.crop-oil img {
  object-position: center;
}

.crop-soap img {
  object-position: center;
}

.crop-gift img {
  object-position: center;
}

.product-card h3 {
  margin: 8px 0;
}

.product-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-kicker {
  display: block;
  margin-top: 12px;
  color: var(--mint-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  display: block;
  margin-top: auto;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: #7565aa;
  font-size: 0.9rem;
  font-weight: 800;
}

.card-link::after {
  margin-left: 8px;
  content: "→";
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(42px, 7vw, 82px) 0 64px;
}

.detail-copy {
  min-width: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

.back-link::before {
  margin-right: 8px;
  content: "←";
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
}

.detail-meta span,
.detail-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--sage);
  font-weight: 800;
}

.detail-meta strong {
  border-color: rgba(197, 184, 232, 0.72);
  background: var(--lavender-soft);
  color: #7565aa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #62766c;
  font-weight: 800;
}

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

.detail-image img {
  width: 100%;
  height: min(62vh, 620px);
  min-height: 470px;
  object-fit: cover;
}

.detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 72px;
}

.detail-panel {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(49, 95, 76, 0.06);
}

.detail-panel:first-child {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(184, 218, 199, 0.24), rgba(255, 255, 255, 0.9)),
    #ffffff;
}

.detail-panel h2 {
  font-size: clamp(1.72rem, 2.5vw, 2.5rem);
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
}

.detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.related-products {
  padding: 0 0 86px;
}

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

.related-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--sage);
  font-weight: 800;
}

.related-grid a::after {
  color: var(--mint-strong);
  content: "→";
}

.gift-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: 86px 0;
}

.gift-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(197, 184, 232, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 233, 251, 0.9), rgba(255, 255, 255, 0.84) 58%),
    var(--white);
}

.gift-panel p:last-child,
.story-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.gift-list {
  display: grid;
  gap: 12px;
}

.gift-list span {
  justify-content: space-between;
  min-height: 58px;
  background: #ffffff;
}

.gift-list span::after {
  color: var(--lavender);
  content: "•";
  font-size: 2rem;
  line-height: 1;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding: 94px clamp(20px, 5vw, 72px);
  background: var(--sage);
  color: #ffffff;
}

.story-section .eyebrow {
  color: var(--mint);
}

.story-section h2 {
  color: #ffffff;
}

.story-copy {
  max-width: 740px;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.values {
  display: grid;
  gap: 12px;
}

.values div {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.values strong {
  color: var(--lavender);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.values span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.7fr);
  gap: 32px;
  align-items: center;
  padding: 84px clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a,
.contact-links span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sage);
  font-weight: 800;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-links a::after {
  color: var(--mint-strong);
  content: "↗";
}

.contact-links span::after {
  color: var(--lavender);
  content: "•";
  font-size: 1.5rem;
}

.contact-links a:hover {
  border-color: var(--lavender);
  transform: translateX(3px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero,
  .detail-hero,
  .gift-section,
  .story-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    height: 540px;
  }

  .detail-image img {
    height: 540px;
  }

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

  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-panel:first-child {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding: 14px 18px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .main-nav > a,
  .nav-dropdown-button {
    padding: 13px 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-button {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-panel {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    border-color: rgba(197, 184, 232, 0.58);
    background: var(--paper);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-panel a {
    min-height: 40px;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    display: block;
    padding-top: 36px;
  }

  .detail-hero {
    display: block;
    padding-top: 34px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(2.08rem, 8.4vw, 2.45rem);
    line-height: 1.12;
    text-wrap: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    margin-top: 36px;
    width: 100%;
  }

  .detail-image {
    margin-top: 34px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual img {
    height: 420px;
    min-height: 0;
  }

  .detail-image img {
    height: 410px;
    min-height: 0;
  }

  .product-strip {
    padding: 56px 16px 64px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-thumb {
    aspect-ratio: 1.7;
  }

  .detail-content {
    padding-bottom: 54px;
  }

  .detail-panel {
    min-height: 0;
  }

  .related-products {
    padding-bottom: 62px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .gift-section,
  .story-section,
  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .story-section,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .values div {
    grid-template-columns: 52px 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
