:root {
  --ink: #111111;
  --body: #3d3d3a;
  --muted: #74736d;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --champagne: #c5a66c;
  --teal: #174346;
  --teal-soft: #dfeceb;
  --sand: #eee7dc;
  --shadow: 0 24px 70px rgba(18, 25, 24, 0.14);
  --radius: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 40px), 1240px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 50px rgba(16, 24, 22, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: height 220ms ease, top 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  height: 66px;
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(17, 17, 17, 0.76);
  font-size: 0.93rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 52px;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("images/wk shop.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 17, 18, 0.78) 0%, rgba(12, 17, 18, 0.4) 44%, rgba(12, 17, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 17, 18, 0.72) 0%, rgba(12, 17, 18, 0) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

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

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0;
  max-width: 860px;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  color: var(--ink);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button-primary {
  color: var(--ink);
  border-color: var(--champagne);
  background: var(--champagne);
}

.button-primary:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.52);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-note {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 178px;
  z-index: 2;
  width: min(360px, calc(100% - 56px));
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-note strong {
  display: block;
  font-size: 1.02rem;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 46px;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.showcase-panel p,
.contact-copy p {
  color: var(--body);
  font-size: 1.05rem;
}

.product-section {
  padding-bottom: 76px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(17, 17, 17, 0.08);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 12, 12, 0.82), rgba(8, 12, 12, 0.12) 62%);
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: var(--white);
}

.category-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--champagne);
  font-weight: 800;
}

.category-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.about-section {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 54px;
  align-items: center;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.about-image {
  min-height: 560px;
  overflow: hidden;
  background: var(--teal);
}

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

.about-copy {
  padding: 22px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stats div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.why-section {
  padding-bottom: 84px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-item {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.why-item span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.why-item p {
  margin-bottom: 0;
  color: var(--body);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(320px, 1.2fr) minmax(180px, 0.85fr);
  gap: 20px;
  align-items: stretch;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 108px;
}

.showcase img,
.showcase-panel {
  min-height: 430px;
}

.showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: var(--white);
  background: var(--teal);
}

.showcase-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 70px;
  align-items: start;
  padding-top: 96px;
  border-top: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--body);
}

.contact-list a {
  width: fit-content;
  border-bottom: 1px solid var(--champagne);
  font-weight: 750;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: center;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
}

.contact-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--body);
}

.qr-card {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  background: var(--white);
}

.qr-card figcaption {
  margin: 0;
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px 9px 9px;
  color: var(--white);
  background: #1f8f58;
  box-shadow: 0 18px 40px rgba(20, 92, 56, 0.28);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(20, 92, 56, 0.34);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 42px 24px;
  text-align: center;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    width: min(calc(100% - 24px), 760px);
    height: 66px;
    padding: 0 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 780px;
    padding-top: 122px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

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

  .about-section,
  .contact-section,
  .showcase {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .showcase {
    padding-bottom: 84px;
  }

  .showcase img,
  .showcase-panel {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-media {
    background-position: 62% center;
  }

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

  .section,
  .showcase {
    width: min(100% - 32px, var(--max));
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .category-grid,
  .why-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 360px;
  }

  .why-item {
    min-height: 0;
  }

  .why-item span {
    margin-bottom: 28px;
  }

  .about-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-image,
  .about-image img {
    min-height: 360px;
  }

  .showcase-panel,
  .contact-card {
    padding: 24px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .qr-card {
    width: min(240px, 100%);
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float span {
    display: none;
  }
}
