:root {
  --ink: #141716;
  --muted: #69726e;
  --line: #d8ded8;
  --paper: #f7f6f1;
  --blush: #e8c8c3;
  --green: #233d36;
  --rose: #b9837f;
  --gold: #a98253;
  --blue: #dbe8e8;
  --stone: #e7e0d6;
  --white: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f6f1 0%, #ffffff 46%, #f2f5f2 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 6vw;
  background: rgba(247, 246, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switcher button {
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  color: var(--white);
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 58px 6vw 48px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 36px rgba(35, 61, 54, 0.18);
}

.button.secondary {
  color: var(--green);
  background: transparent;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(135deg, #efe4dc, #f8f5ef 48%, #dfe9e7);
  border: 1px solid var(--line);
  border-radius: 0 0 72px 0;
  box-shadow: 0 32px 90px rgba(35, 61, 54, 0.2);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
  margin-top: 40px;
}

.hero-meta div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-meta span,
.hero-meta strong {
  display: block;
}

.hero-meta span {
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.hero-meta strong {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 6vw;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.atelier {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 0.92fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: 112px 6vw 96px;
}

.atelier-image {
  min-height: 560px;
  overflow: hidden;
  background: var(--stone);
  border-radius: 72px 0 0 0;
  box-shadow: 0 28px 70px rgba(35, 61, 54, 0.14);
}

.atelier-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.atelier-copy {
  max-width: 680px;
}

.atelier-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}

.atelier-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.atelier-points span {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-weight: 800;
}

.trust-strip div {
  padding: 24px;
  background: var(--white);
}

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

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

.section,
.markets {
  padding: 96px 6vw;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 36px;
}

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

.category-card {
  min-height: 360px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(35, 61, 54, 0.06);
}

.category-card p,
.markets p,
.contact-copy p,
.fine-print {
  color: var(--muted);
  line-height: 1.65;
}

.card-visual {
  height: 190px;
  margin-bottom: 22px;
  border-radius: 6px;
}

.card-visual.onepiece {
  background:
    radial-gradient(ellipse at 42% 54%, rgba(255, 255, 255, 0.82) 0 23%, transparent 24%),
    linear-gradient(135deg, #f0c7c3, #fff7ef 52%, #d7e2e1);
}

.card-visual.beautyback {
  background:
    linear-gradient(128deg, transparent 0 38%, rgba(255, 255, 255, 0.75) 39% 46%, transparent 47%),
    linear-gradient(40deg, transparent 0 45%, rgba(255, 255, 255, 0.55) 46% 52%, transparent 53%),
    linear-gradient(135deg, #e2d2c6, #f4d5d2);
}

.card-visual.cooling {
  background:
    radial-gradient(circle at 24% 36%, rgba(255, 255, 255, 0.72) 0 13%, transparent 14%),
    radial-gradient(circle at 70% 62%, rgba(255, 255, 255, 0.68) 0 18%, transparent 19%),
    linear-gradient(135deg, #dcecef, #f6e3dd);
}

.markets {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 48px;
  background: linear-gradient(135deg, #eef4f1, #f6eee8);
}

.market-list {
  display: grid;
  gap: 14px;
}

.market-list div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.market-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.market-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-link {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.fine-print {
  margin: 22px 0 0;
  font-size: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .language-switcher {
    width: 100%;
  }

  .language-switcher button {
    flex: 1;
  }

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

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .atelier-image,
  .atelier-image img {
    min-height: 420px;
  }

  .trust-strip,
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

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

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .section,
  .markets,
  .atelier {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
