:root {
  --background: #f2f2f2;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --foreground: #1d1d1d;
  --muted: #616161;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #f7931a;
  --accent-deep: #d97b0d;
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  --header-bg: #d9d9d9;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--foreground);
  background: linear-gradient(180deg, #fafafa 0%, var(--background) 46%, #ececec 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}

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

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

.container {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
}

.landingShell {
  min-height: 100vh;
  padding-top: 84px;
}

.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(217, 217, 217, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.headerInner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brandMark {
  max-width: 220px;
  display: inline-flex;
  align-items: center;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.languageSwitcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2c2621;
}

.languageSwitcher a,
.mobileLanguageSwitcher a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.languageSwitcher a[aria-current="page"],
.mobileLanguageSwitcher a[aria-current="page"] {
  color: var(--accent-deep);
}

.mobileLanguageSwitcher {
  display: none;
}

.desktopNav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2c2621;
}

.mobileTabs {
  display: none;
}

.heroSection,
.sectionBlock {
  padding: 4rem 0;
}

.heroSection,
.productsHero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.heroSection::before,
.heroSection::after,
.productsHero::before,
.productsHero::after {
  content: none;
}

.heroGrid,
.sectionSplit,
.storageGrid,
.contactCard {
  display: grid;
  gap: 2rem;
}

.heroGrid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 66vh;
}

.heroVisual {
  display: flex;
}

.eyebrow,
.cardKicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.heroCopy h1,
.sectionSplit h2,
.sectionHeading h2,
.storageCopy h2,
.contactCard h2,
.footerIntro h2,
.productsHeroInner h1,
.highlightBody h3,
.productBody h3,
.overlayContent h2 {
  font-family: "Roboto Slab", Georgia, serif;
  letter-spacing: -0.04em;
}

.heroCopy h1,
.productsHeroInner h1 {
  margin-top: 0.55rem;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.96;
}

.heroSubtitle {
  margin-top: 0.8rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: #4d4d4d;
  font-weight: 700;
}

.heroBody,
.sectionText p,
.highlightBody p,
.storageCopy p,
.contactCard p,
.footerLink,
.productSnippet,
.overlayDescription {
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
}

.heroBody {
  margin-top: 1rem;
  max-width: 56ch;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.primaryButton,
.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
}

.primaryButton {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #191611;
  box-shadow: 0 16px 32px rgba(247, 147, 26, 0.22);
}

.secondaryButton {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.heroCard,
.highlightCard,
.galleryTile,
.contactCard,
.sectionSplit,
.storageGrid,
.productCard {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 245, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.heroCard {
  padding: 0;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.heroCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.sectionSplit {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  padding: 1.6rem;
}

.sectionSplit h2,
.sectionHeading h2,
.storageCopy h2,
.contactCard h2,
.footerIntro h2,
.overlayContent h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
}

.sectionText {
  display: grid;
  gap: 1rem;
}

.sectionMuted {
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sectionHeading {
  margin-bottom: 1.4rem;
}

.highlightGrid,
.productsGrid {
  display: grid;
  gap: 1.1rem;
}

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

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

.highlightCard,
.productCard {
  overflow: hidden;
}

.highlightImage {
  background: #f4f4f4;
}

.highlightImage img,
.productCard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: transparent;
}

.highlightBody,
.productBody {
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.highlightBody h3,
.productBody h3 {
  margin-top: 0.45rem;
  font-size: 1.35rem;
}

.highlightBody p,
.productSnippet {
  margin-top: 0.7rem;
}

.productTapActions {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.45rem;
  width: 100%;
}

.productTapHint {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.productQuickViewButton {
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.productTapHintSecondary {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.productCard {
  cursor: pointer;
  border-radius: 26px;
}

.productTopline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.productPrice {
  margin-top: 0.55rem;
  font-weight: 800;
  color: #1f1a15;
}

.productPriceBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 76px;
  padding: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.18), rgba(247, 147, 26, 0.34));
  color: #5f3400;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.productsHeroInner {
  display: grid;
  gap: 1rem;
  min-height: 32vh;
  align-content: center;
}

.storageGrid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  padding: 1.6rem;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.galleryTile {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.galleryTile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.siteFooter {
  background: rgba(217, 217, 217, 0.96);
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.footerInner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.6rem 0;
}

.footerLinks {
  display: grid;
  gap: 0.9rem;
}

.footerLink {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: #1f1a15;
}

.footerLink img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 24px;
}

.productOverlay[hidden] {
  display: none;
}

.productOverlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.productOverlayBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
}

.productOverlayCard {
  position: relative;
  width: min(calc(100% - 2rem), 920px);
  max-height: min(86vh, 920px);
  overflow: auto;
  margin: 5vh auto;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  padding: 1.2rem;
}

.overlayClose {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 1.6rem;
  cursor: pointer;
}

.overlayMedia {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.overlayMedia img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
}

.overlayContent {
  margin-top: 1rem;
}

.overlayTopline {
  align-items: flex-start;
}

.productPriceBadgeLarge {
  margin-top: 0;
  min-width: 88px;
  min-height: 88px;
}

.overlayDescription {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.overlayDescription p,
.overlayDescription ul {
  margin: 0;
}

.overlaySectionLabel {
  font-weight: 700;
  color: #3d342a;
}

.overlayDescription ul {
  padding-left: 1.35rem;
  color: var(--muted);
}

.overlayDescription li {
  margin: 0.28rem 0;
}

.overlaySubList {
  margin-top: 0.45rem !important;
  padding-left: 1.2rem;
  list-style-type: circle;
}

.productPageHero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: 34vh;
}

.productPricePanel,
.productPageCard {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 245, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.productPricePanel {
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.productPageGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.faqHeroInner {
  min-height: 26vh;
}

.faqGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faqCard {
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 245, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border-radius: 24px;
  display: grid;
  gap: 0.85rem;
}

.productPageCard {
  padding: 1.5rem;
}

.productPageList {
  margin: 0.8rem 0 1rem;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.8;
}

.productPageMedia {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.productPageMedia img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
}

.overlayInlineHighlight {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(247, 147, 26, 0.14);
  color: #5f3400;
  font-weight: 700;
}

@media (max-width: 920px) {
  .heroGrid,
  .sectionSplit,
  .storageGrid,
  .highlightGrid,
  .footerInner,
  .productPageHero,
  .productPageGrid,
  .faqGrid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .desktopNav {
    display: none;
  }

  .languageSwitcher {
    display: inline-flex;
    margin-left: auto;
    font-size: 0.8rem;
  }

  .mobileTabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    background: rgba(217, 217, 217, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobileTabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.4rem 0.2rem;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 700;
    color: #1f1a15;
    width: 100%;
  }

  .mobileLanguageSwitcher {
    display: none;
  }
}

.inlineWorkshopButton {
  margin-top: 1rem;
}

.workshopSticky {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: grid;
  gap: 0.9rem;
  width: min(360px, calc(100% - 2rem));
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.workshopStickyClose {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 1.3rem;
  cursor: pointer;
}

.workshopStickyText {
  color: var(--muted);
  line-height: 1.6;
  padding-right: 2rem;
}

.workshopStickyButton {
  width: 100%;
}

.workshopStickyMini {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  padding: 0.18rem;
}

.workshopStickyMini[hidden],
.workshopSticky[hidden] {
  display: none !important;
}

.workshopStickyMini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.workshopGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.workshopFormCard {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 245, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.workshopForm {
  display: grid;
  gap: 1rem;
}

.workshopForm label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  color: #1f1a15;
}

.workshopForm input {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.85rem 1rem;
  font: inherit;
}

.workshopMessage {
  min-height: 1.5rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .workshopGrid,
  .workshopFormCard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), 1180px);
  }

  .heroSection,
  .sectionBlock {
    padding: 3.4rem 0;
  }

  .headerInner {
    min-height: 76px;
  }

  .landingShell {
    padding-top: 122px;
  }

  .brandMark {
    max-width: 180px;
  }

  .heroCopy h1,
  .productsHeroInner h1 {
    font-size: 2.8rem;
    margin-top: 1rem;
  }

  .heroGrid {
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    overflow: visible;
  }

  .sectionSplit h2,
  .sectionHeading h2,
  .storageCopy h2,
  .footerIntro h2,
  .overlayContent h2 {
    font-size: 2rem;
  }

  .highlightBody,
  .productBody,
  .sectionSplit,
  .storageGrid {
    padding: 1rem;
  }

  .productTapActions {
    margin-top: 0.55rem;
  }

  .productTapHint {
    width: 100%;
  }

  .productTopline {
    align-items: center;
  }

  .overlayTopline {
    align-items: center;
  }

  .productPriceBadge {
    min-width: 68px;
    min-height: 68px;
    font-size: 0.95rem;
  }

  .heroCopy {
    padding: 1rem;
  }

  .heroVisual {
    margin: 0 0 1rem;
    border-radius: 24px;
    overflow: hidden;
  }

  .heroCard {
    padding: 0;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
    line-height: 0;
  }

  .heroCard img,
  .heroCard span,
  .heroCard > * {
    display: block;
    border-radius: 24px;
    overflow: hidden;
  }

  .productsGrid,
  .galleryGrid,
  .overlayMedia {
    grid-template-columns: 1fr;
  }

  .productOverlayCard {
    width: min(calc(100% - 1rem), 920px);
    margin: 2vh auto;
    padding: 1rem;
  }

  .footerLink {
    width: 100%;
  }

  .workshopSticky {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .workshopStickyMini {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
