@charset "UTF-8";

@font-face {
  font-family: "Noto Serif Display Local";
  src: url("./public/assets/fonts/NotoSerifDisplay-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato Local";
  src: url("./public/assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato Local";
  src: url("./public/assets/fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato Local";
  src: url("./public/assets/fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Daniel";
  src: url("./public/assets/fonts/Daniel-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Daniel";
  src: url("./public/assets/fonts/Daniel-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pompiere";
  src: url("./public/assets/fonts/Pompiere-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --candle-cream: #f7f2e8;
  --warm-ivory: #fffdf8;
  --soft-sand: #ece1d2;
  --warm-taupe: #c9b9a5;
  --charcoal: #2e302c;
  --muted-taupe: #756b5e;
  --clay-flame: #b66a4a;
  --burnt-clay: #884735;
  --soft-sage: #7e8c75;
  --sage-light: #dde5d8;
  --deep-plum: #6d4a58;
  --line: rgba(201, 185, 165, 0.72);
  --shadow: 0 28px 90px rgba(117, 107, 94, 0.18);
  --serif-display: "Noto Serif Display Local", "Noto Serif Display", "Iowan Old Style", Georgia, serif;
  --serif-story: "Pompiere", "Noto Serif Display", Georgia, serif;
  --sans: "Lato Local", Lato, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.92), rgba(247, 242, 232, 0.64)),
    radial-gradient(circle at 86% 8%, rgba(221, 229, 216, 0.78), transparent 25rem),
    var(--candle-cream);
  font-family: var(--sans);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: 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: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  background: rgba(255, 253, 248, 0.84);
  border-bottom: 1px solid rgba(201, 185, 165, 0.56);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 98px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  color: var(--muted-taupe);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer a,
.socials a,
.socials span {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

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

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

.header-cta,
.primary-action,
.product-action button {
  border: 0;
  border-radius: 999px;
  color: var(--warm-ivory);
  background: var(--clay-flame);
  font: 800 0.9rem/1 var(--sans);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.header-cta {
  min-height: 42px;
  padding: 0 1.2rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--charcoal);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--warm-ivory);
}

.hero {
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(24rem, 1.18fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(3rem, 7vw, 6.2rem) clamp(1.25rem, 5vw, 5.5rem);
}

.hero-copy,
.hero-visual,
.section-heading > *,
.split-section > *,
.atelier-section > *,
.contact-section > * {
  min-width: 0;
}

.overline {
  margin: 0 0 1rem;
  color: var(--clay-flame);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.split-copy p:not(.signature),
.atelier-section p,
.contact-section p,
.legal-shell p {
  font-family: var(--serif-story);
  letter-spacing: 0.01em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif-display);
  font-weight: 500;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.2rem, 8.5vw, 8.4rem);
  line-height: 0.9;
}

.hero-text {
  max-width: 38rem;
  margin: 2rem 0;
  color: var(--muted-taupe);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.product-action,
.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  text-decoration: none;
}

.secondary-action {
  border: 1px solid var(--warm-taupe);
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.72);
  font: 800 0.9rem/1 var(--sans);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible,
.product-action button:hover,
.product-action button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.hand-note,
.signature {
  color: var(--burnt-clay);
  font-family: Daniel, cursive;
  font-weight: 400;
}

.hand-note {
  margin: 2.5rem 0 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.hero-visual {
  position: relative;
  min-height: 34rem;
}

.hero-visual > img {
  width: 100%;
  height: min(68vh, 46rem);
  min-height: 32rem;
  object-fit: cover;
  object-position: 64% center;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  left: -2.4rem;
  bottom: 2rem;
  width: min(20rem, 70%);
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 50px rgba(117, 107, 94, 0.16);
  backdrop-filter: blur(16px);
}

.floating-card span {
  color: var(--soft-sage);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--serif-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.floating-card p {
  margin: 0.2rem 0 0;
  color: var(--muted-taupe);
}

.product-section,
.split-section,
.atelier-section,
.safety-section,
.contact-section {
  width: min(82rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-section h2,
.atelier-section h2,
.contact-section h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.3vw, 5.6rem);
  line-height: 0.95;
}

.section-heading > p:last-child,
.split-copy p:not(.signature),
.atelier-section p,
.contact-section p {
  margin: 0;
  color: var(--muted-taupe);
  font-size: clamp(1.18rem, 1.75vw, 1.62rem);
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.76);
}

.product-card.is-featured {
  background: var(--warm-ivory);
  box-shadow: 0 24px 60px rgba(117, 107, 94, 0.13);
}

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

.product-content {
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  padding: 1.15rem;
}

.product-content h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.product-content p {
  margin: 0.35rem 0 0;
  color: var(--muted-taupe);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tags span {
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--sage-light);
  font-size: 0.78rem;
  font-weight: 800;
}

.tags span:nth-child(3) {
  background: #f1ddd2;
}

.product-action {
  justify-content: space-between;
  border-top: 1px solid rgba(201, 185, 165, 0.58);
  padding-top: 1rem;
}

.product-action strong {
  font-family: var(--serif-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.product-action button {
  min-height: 40px;
  padding: 0 1rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 7vw, 8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-copy ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.split-copy li {
  color: var(--charcoal);
}

.split-copy li::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: var(--soft-sage);
}

.signature {
  margin: 2rem 0 0;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.atelier-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.atelier-section img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.atelier-section h2,
.contact-section h2 {
  margin-bottom: 1.4rem;
}

.safety-section {
  border-top: 1px solid var(--line);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.safety-grid article {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.72);
}

.safety-grid span {
  color: var(--clay-flame);
  font-weight: 900;
}

.safety-grid h3 {
  margin-top: 1rem;
  font-size: 1.6rem;
}

.safety-grid p {
  color: var(--muted-taupe);
  font-family: var(--serif-story);
  font-size: 1.18rem;
  line-height: 1.55;
}

.contact-section {
  margin-bottom: 3rem;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 18%, rgba(109, 74, 88, 0.08), transparent 22rem),
    rgba(255, 253, 248, 0.72);
}

.contact-card {
  align-content: start;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  color: var(--muted-taupe);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-mails {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  margin: 0;
  color: var(--muted-taupe);
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.35;
}

.contact-mails a {
  color: inherit;
  text-decoration: none;
}

.contact-mails a:hover,
.contact-mails a:focus-visible {
  color: var(--clay-flame);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.25rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted-taupe);
}

.site-footer p {
  margin: 0;
}

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

.site-footer .hand-note {
  margin: 0;
  font-size: 2rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  max-width: min(28rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.legal-page {
  background: var(--candle-cream);
}

.legal-shell {
  width: min(52rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.legal-shell h1 {
  margin: 1.5rem 0 1rem;
  font-family: var(--serif-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
}

.legal-shell h2 {
  margin-top: 2rem;
  font-family: var(--serif-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.legal-shell p {
  color: var(--muted-taupe);
  line-height: 1.65;
}

.back-link {
  color: var(--clay-flame);
  font-weight: 900;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(182, 106, 74, 0.42);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 30;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

  .header-cta {
    display: none;
  }

  .hero,
  .section-heading,
  .split-section,
  .atelier-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1rem;
  }

  .brand {
    width: 82px;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.18rem 0.42rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.48rem;
  }

  .site-nav a {
    padding: 0.1rem 0;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 1rem 4rem;
  }

  .hero-copy {
    width: min(100%, 22rem);
    max-width: calc(100vw - 2rem);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12vw, 3.85rem);
    line-height: 0.96;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1.02rem;
    overflow-wrap: anywhere;
  }

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

  .hero-visual {
    min-height: 0;
  }

  .hero-visual > img {
    height: auto;
    min-height: 22rem;
    aspect-ratio: 4 / 5;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 1rem;
  }

  .product-section,
  .split-section,
  .atelier-section,
  .safety-section,
  .contact-section {
    width: calc(100% - 2rem);
    padding-block: 4rem;
  }

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

  .section-heading h2,
  .split-section h2,
  .atelier-section h2,
  .contact-section h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

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