:root {
  --cream: #fff3c7;
  --paper: #fffaf0;
  --ink: #27231f;
  --muted: #746b61;
  --forest: #3d3924;
  --forest-soft: #ffe9a8;
  --amber: #eba20a;
  --honey: #ffd447;
  --gold-soft: #fff0a8;
  --rose: #b66a72;
  --line: rgba(39, 35, 31, 0.14);
  --shadow: 0 22px 60px rgba(36, 31, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 243, 199, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.header-cart,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 15px;
  height: 28px;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, #fff08a 0%, var(--honey) 42%, var(--amber) 100%);
  box-shadow: 0 0 0 6px rgba(255, 212, 71, 0.26);
}

.nav {
  gap: 8px;
  color: var(--forest);
  font-size: 0.9rem;
}

.nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(33, 69, 58, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav a:hover {
  color: var(--forest);
  border-color: rgba(235, 162, 10, 0.5);
  background: var(--honey);
  transform: translateY(-2px);
}

.header-actions {
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 10px 24px rgba(39, 35, 31, 0.08);
}

.lang-button {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--forest);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.lang-button.active {
  color: #2d2515;
  background: var(--honey);
}

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

.header-cart {
  gap: 8px;
  flex-shrink: 0;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.header-cart strong {
  display: grid;
  min-width: 24px;
  min-height: 24px;
  place-items: center;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: start;
  padding: clamp(28px, 4vw, 52px) clamp(18px, 4vw, 64px) clamp(44px, 8vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(61, 57, 36, 0.9) 0%, rgba(158, 105, 0, 0.62) 38%, rgba(255, 212, 71, 0.18) 68%),
    url("assets/candle-hero.png?v=20260507") center right / cover no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(34%, 520px);
  color: white;
  text-align: left;
}

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

.hero .eyebrow {
  color: #ffe680;
}

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

h1 {
  margin: 0;
  max-width: 100%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.no-break {
  white-space: nowrap;
}

#founderTitle {
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

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

.primary {
  color: #2d2515;
  background: var(--honey);
  box-shadow: 0 12px 28px rgba(235, 162, 10, 0.28);
}

.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

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

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, var(--paper), var(--gold-soft));
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

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

.section-heading {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
  text-align: center;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 24px;
}

.filter {
  min-height: 40px;
  padding: 9px 15px;
  color: var(--forest);
  border: 1px solid rgba(235, 162, 10, 0.5);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.filter.active {
  color: #2d2515;
  background: var(--honey);
}

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

.product-grid.single-product-grid {
  grid-template-columns: minmax(220px, 320px);
  justify-content: center;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf6, #fff3bf);
  box-shadow: 0 16px 38px rgba(235, 162, 10, 0.16);
}

.product-art {
  min-height: 190px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 232, 128, 0.98) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--tone), rgba(255, 246, 186, 0.88));
  position: relative;
}

.product-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff6c8;
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-art::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 78px;
  height: 102px;
  transform: translateX(-50%);
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    var(--jar);
  box-shadow: 0 18px 24px rgba(39, 35, 31, 0.18);
}

.product-body {
  padding: 14px;
}

.product-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.product-card p {
  margin: 8px 0 14px;
  min-height: 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  white-space: nowrap;
  color: var(--forest);
  font-weight: 900;
}

.price-note {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-color {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.color-swatch {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(39, 35, 31, 0.18);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.44);
}

.color-picker-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0 12px;
  color: var(--forest);
  font-size: 0.86rem;
}

.color-picker-label select {
  width: min(160px, 58%);
  padding: 8px 10px;
  cursor: pointer;
}

.product-card .button {
  width: 100%;
  min-height: 40px;
  background: var(--amber);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: linear-gradient(180deg, var(--forest-soft), #ffe39a);
}

.studio-column,
.founder-column {
  display: grid;
  gap: 22px;
}

.about-copy p:not(.eyebrow) {
  max-width: 600px;
  color: #4f5e56;
  font-size: 1.08rem;
}

.process-list {
  display: grid;
  width: 100%;
  gap: 12px;
}

.process-list article {
  min-height: 0;
  padding: 16px 18px;
  border: 1px solid rgba(33, 69, 58, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 224, 0.82);
}

.process-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-weight: 900;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.founder-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.founder-link {
  display: inline-block;
  padding: 0 0.18em;
  border-radius: 4px;
  color: #6f4c00;
  background: rgba(255, 212, 71, 0.48);
  font-weight: 900;
  text-decoration: none;
}

.founder-link:hover {
  color: #27231f;
  background: rgba(255, 212, 71, 0.82);
}

.founder-media {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 430px);
  justify-self: center;
}

.founder-photo {
  position: relative;
  display: grid;
  min-height: 290px;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(61, 57, 36, 0.16);
  border-radius: 999px;
  color: white;
  background: #fff5c7;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 42px rgba(61, 57, 36, 0.14);
}

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

.order-section {
  background: #ffe8a0;
}

.order-copy {
  width: 100%;
  max-width: none;
  text-align: center;
}

.order-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  margin-top: 28px;
}

.cart-panel,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf6, #fff1b4);
  box-shadow: var(--shadow);
}

.cart-panel {
  padding: 22px;
  align-self: start;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.cart-line strong {
  color: var(--ink);
}

.empty-cart {
  margin: 0;
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.form-hidden {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(235, 162, 10, 0.36);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf6;
}

.iti {
  width: 100%;
}

.delivery-fieldset {
  display: grid;
  gap: 16px;
  margin: 2px 0 0;
  padding: 16px;
  border: 1px solid rgba(235, 162, 10, 0.34);
  border-radius: 8px;
  background: rgba(255, 251, 231, 0.62);
}

.delivery-fieldset legend {
  padding: 0 8px;
  color: var(--forest);
  font-weight: 900;
}

select:disabled {
  color: rgba(39, 35, 31, 0.52);
}

.field-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  min-height: 50px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 243, 199, 0.86), rgba(255, 212, 71, 0.52)),
    url("assets/candle-hero.png?v=20260507") center / cover no-repeat;
}

.success-card {
  width: min(560px, 100%);
  padding: clamp(28px, 6vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: var(--shadow);
}

.success-card .brand {
  margin-bottom: 28px;
}

.success-card h1 {
  max-width: none;
  color: var(--ink);
}

.success-card p {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 64px);
  color: white;
  background: var(--ink);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.footer-contact span {
  font-weight: 900;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
}

.developer-credit {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  text-align: center;
}

.developer-credit strong {
  color: #ffe680;
}

.instagram-card {
  display: grid;
  grid-template-columns: 94px minmax(120px, 180px);
  align-items: center;
  gap: 14px;
  max-width: 320px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.instagram-card img {
  display: block;
  width: 94px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 6px;
  background: white;
}

.instagram-card span {
  color: white;
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: start;
    padding-top: 28px;
    background:
      linear-gradient(180deg, rgba(255, 212, 71, 0.2) 0%, rgba(61, 57, 36, 0.9) 70%),
      url("assets/candle-hero.png?v=20260507") top center / contain no-repeat,
      #f6dfbd;
  }

  .hero-copy {
    width: min(100%, 680px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 6.4vw, 3.1rem);
  }

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

  .about-section,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .founder-media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand span:last-child {
    max-width: min(62vw, 260px);
    line-height: 1.1;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
    flex-shrink: 0;
  }

  .header-cart span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 42px;
    background:
      linear-gradient(180deg, rgba(255, 212, 71, 0.08) 0%, rgba(61, 57, 36, 0.28) 54%, rgba(61, 57, 36, 0.94) 82%),
      url("assets/candle-hero.png?v=20260507") top center / contain no-repeat,
      #f6dfbd;
  }

  .hero-copy {
    width: 100%;
  }

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

  .trust-strip,
  .product-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 20px 18px;
    text-align: center;
  }

  .founder-media {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 240px;
  }

  .trust-strip div {
    padding: 18px;
  }

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

  .instagram-card {
    width: 100%;
    max-width: none;
  }
}
