*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #1f1b16;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(93, 163, 85, 0.22), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(242, 171, 84, 0.25), transparent 60%),
    radial-gradient(900px 800px at 40% 85%, rgba(120, 187, 89, 0.18), transparent 60%),
    linear-gradient(180deg, #fff6db 0%, #fff0c6 35%, #f8e7b3 65%, #f5e2ae 100%);
}

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

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index:50;
  top: 0;
  background: rgba(255, 246, 219, 0.78);
  border-bottom: 1px solid rgba(46, 30, 18, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-title {
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 18px;
}

.brand-subtitle {
  font-weight: 700;
  font-size: 12px;
  color: rgba(31, 27, 22, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-weight: 800;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background-color 140ms ease, transform 140ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

.nav-link-shop {
  background: linear-gradient(180deg, #ffb24b, #ff8f1f);
  color: #2a1609;
  box-shadow: 0 10px 22px rgba(255, 143, 31, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link-shop:hover {
  background: linear-gradient(180deg, #ffc160, #ff9827);
}

.nav-icon {
  width: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.hero {
  position: relative;
  padding: 100px 0 42px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 246, 219, 0.1), rgba(255, 246, 219, 0.92)),
    url("images/banner01.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
}

.hero-card {
  width: min(680px, 100%);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(46, 30, 18, 0.1);
  border-radius: 24px;
  padding: 22px 22px 18px;
  box-shadow: 0 28px 60px rgba(36, 24, 16, 0.12);
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 12px;
  background: rgba(120, 187, 89, 0.18);
  border: 1px solid rgba(120, 187, 89, 0.24);
  color: rgba(25, 32, 18, 0.88);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 12px;
  margin: 0 0 12px;
}

.hero-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 1.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.2px;
}

.hero-lead {
  margin: 0;
  color: rgba(31, 27, 22, 0.78);
  font-weight: 600;
  line-height: 1.6;
}

.hero-launch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  align-items: center;
}

.launch-start {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px;
  border-radius: 20px;
  background: rgba(120, 187, 89, 0.18);
  border: 1px solid rgba(120, 187, 89, 0.24);
  color: rgba(25, 32, 18, 0.92);
  font-weight: 950;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
  box-shadow: 0 14px 26px rgba(120, 187, 89, 0.16);
}

.launch-start:hover {
  transform: translateY(-1px);
  background: rgba(120, 187, 89, 0.22);
  box-shadow: 0 18px 30px rgba(120, 187, 89, 0.18);
}

.launch-icon {
  height: 46px;
  object-fit: contain;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #ffb24b, #ff8f1f);
  color: #2a1609;
  box-shadow: 0 14px 26px rgba(255, 143, 31, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 18px 30px rgba(255, 143, 31, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(46, 30, 18, 0.16);
  color: rgba(31, 27, 22, 0.9);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(46, 30, 18, 0.22);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.store-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badge {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(46, 30, 18, 0.12);
  border-radius: 14px;
  padding: 4px 4px;
  transition: transform 140ms ease, background-color 140ms ease;
}

.badge:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.82);
}

.badge img {
  height: 46px;
  width: auto;
}

.section {
  padding: 54px 0;
}

.section-soft {
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(255, 255, 255, 0.62), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(46, 30, 18, 0.06);
  border-bottom: 1px solid rgba(46, 30, 18, 0.06);
}

.section-head {
  text-align: center;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.2px;
}

.section-subtitle {
  margin: 10px auto 0;
  max-width: 760px;
  color: rgba(31, 27, 22, 0.75);
  font-weight: 700;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.twoshop {
  grid-template-columns: 1.4fr 0.6fr;
}

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

.grid.three {
  margin-top:60px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mosaic {
  grid-template-areas:
    "main main side1"
    "main main side2";
  align-items: stretch;
}

.mosaic-reverse {
  grid-template-areas:
    "side1 main main"
    "side2 main main";
}

.mosaic > :nth-child(1) {
  grid-area: main;
}

.mosaic > :nth-child(2) {
  grid-area: side1;
}

.mosaic > :nth-child(3) {
  grid-area: side2;
}

.value-grid {
  grid-template-areas: none;
  align-items: start;
  gap: 18px;
}

.value-grid > :nth-child(1),
.value-grid > :nth-child(2),
.value-grid > :nth-child(3) {
  grid-area: auto;
}

.value-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(46, 30, 18, 0.1);
  border-radius: 24px;
  padding: 22px 18px 20px;
  box-shadow: 0 18px 40px rgba(36, 24, 16, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: -90px -40px auto;
  height: 170px;
  background: radial-gradient(closest-side, rgba(255, 178, 75, 0.25), transparent);
  transform: rotate(-9deg);
}

.value-frame {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 14px;
  border-radius: 999px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255, 178, 75, 0.55), rgba(255, 143, 31, 0.35));
  box-shadow: 0 16px 30px rgba(255, 143, 31, 0.15);
}

.value-frame::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 210, 132, 0.92), rgba(255, 165, 64, 0.92));
  box-shadow: 0 10px 22px rgba(255, 143, 31, 0.16);
}

.value-frame::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(46, 30, 18, 0.1);
}

.value-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.value-title {
  position: relative;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.1px;
  color: rgba(61, 35, 113, 0.95);
}

.value-text {
  position: relative;
  margin: 12px auto 0;
  max-width: 360px;
  color: rgba(31, 27, 22, 0.78);
  font-weight: 650;
  line-height: 1.65;
}

.mosaic-main {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
}

.mosaic-main-media {
  position: relative;
}

.mosaic-main-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.mosaic-main-body {
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.mosaic-main-head {
  display: grid;
  gap: 8px;
}

.mosaic-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3px;
  background: rgba(255, 178, 75, 0.22);
  border: 1px solid rgba(255, 178, 75, 0.26);
  color: rgba(31, 27, 22, 0.9);
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(31, 27, 22, 0.78);
  font-weight: 750;
  line-height: 1.65;
}

.mini-list li + li {
  margin-top: 6px;
}

.mosaic-step {
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: rgba(31, 27, 22, 0.72);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(46, 30, 18, 0.12);
  padding: 7px 10px;
  border-radius: 999px;
}

.mosaic-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-top {
  position: relative;
}

.product-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  background: rgba(120, 187, 89, 0.88);
  color: #0c1a10;
  border: 1px solid rgba(46, 30, 18, 0.1);
}

.product-tag-alt {
  background: rgba(255, 178, 75, 0.92);
  color: rgba(31, 27, 22, 0.92);
}

.card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(46, 30, 18, 0.1);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(36, 24, 16, 0.1);
}

.card-title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.1px;
}

.card-text {
  margin: 0;
  color: rgba(31, 27, 22, 0.78);
  font-weight: 650;
  line-height: 1.65;
}

.wide-media {
  padding: 0;
  overflow: hidden;
  margin: 16px 0;
}

.wide-media img {
  width: 100%;
  height: clamp(180px, 26vw, 320px);
  object-fit: cover;
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  background: rgba(120, 187, 89, 0.18);
  border: 1px solid rgba(120, 187, 89, 0.24);
  color: rgba(25, 32, 18, 0.88);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 12px;
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: -40% -25% auto;
  height: 160px;
  background: radial-gradient(closest-side, rgba(255, 178, 75, 0.18), transparent);
  transform: rotate(-9deg);
}

.feature-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  grid-auto-rows: 180px;
}

.gallery-tile {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(46, 30, 18, 0.1);
  box-shadow: 0 16px 36px rgba(36, 24, 16, 0.1);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 140ms ease;
  position: relative;
}

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

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 180ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.03);
}

.gallery-wall .gallery-tile:nth-child(1) {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.gallery-wall .gallery-tile:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: 1;
}

.gallery-wall .gallery-tile:nth-child(3) {
  grid-column: 8 / span 5;
  grid-row: 2;
}

.gallery-wall .gallery-tile:nth-child(4) {
  grid-column: 1 / span 6;
  grid-row: 3;
}

.gallery-wall .gallery-tile:nth-child(5) {
  grid-column: 7 / span 6;
  grid-row: 3;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: center;
}

.split-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(46, 30, 18, 0.12);
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(31, 27, 22, 0.78);
  font-weight: 700;
  line-height: 1.65;
}

.list li + li {
  margin-top: 6px;
}

.product {
  display: grid;
  gap: 10px;
}

.product-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(46, 30, 18, 0.1);
  border-radius: 18px;
  padding: 12px;
}

.contact-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(46, 30, 18, 0.12);
  border-radius: 18px;
  padding: 12px 14px;
}

.contact-label {
  display: block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(31, 27, 22, 0.72);
  margin-bottom: 6px;
}

.contact-value {
  font-weight: 850;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.label {
  font-weight: 900;
  font-size: 13px;
  color: rgba(31, 27, 22, 0.78);
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(46, 30, 18, 0.14);
  background: rgba(255, 255, 255, 0.85);
  font: inherit;
  font-weight: 650;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.input:focus {
  border-color: rgba(255, 143, 31, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 143, 31, 0.18);
  background: rgba(255, 255, 255, 0.95);
}

.textarea {
  resize: vertical;
}

.form-hint {
  margin: 0;
  color: rgba(31, 27, 22, 0.62);
  font-weight: 650;
  font-size: 12px;
  text-align: center;
}

.site-footer {
  background: linear-gradient(180deg, #2a241f 0%, #191512 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer-title {
  font-weight: 950;
  letter-spacing: 0.3px;
  font-size: 18px;
}

.footer-subtitle {
  font-weight: 800;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.footer-note {
  margin-top: 10px;
  opacity: 0.8;
  font-weight: 650;
  max-width: 640px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 850;
  font-size: 13px;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.footer-copy {
  opacity: 0.75;
  font-weight: 650;
  font-size: 13px;
}

@media (max-width: 900px) {
	.grid.twoshop {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-wall .gallery-tile {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-wall .gallery-tile:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .mosaic,
  .mosaic-reverse {
    grid-template-areas:
      "main"
      "side1"
      "side2";
  }

  .mosaic-main {
    grid-template-columns: 1fr;
  }

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

  .media-card img {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  .gallery-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav-link,
  .btn,
  .gallery .gallery-item,
  .badge {
    transition: none;
  }
}
