:root {
  --ink: #2f3337;
  --muted: #687178;
  --line: #e2e6e9;
  --paper: #f4f5f5;
  --white: #ffffff;
  --red: #b5152b;
  --red-dark: #8f1022;
  --green: #427935;
  --green-soft: #e8f4ed;
  --cream: #faf8f4;
  --soft-gray: #f0f1f1;
  --blush: #f6e6e8;
  --navy: #242a2f;
  --shadow: 0 22px 60px rgba(47, 51, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 230, 233, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-logo {
  display: block;
  width: 76px;
  height: 56px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

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

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.header-action,
.primary-button {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(66, 121, 53, 0.2);
}

.secondary-button {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 56px) 40px;
  background: var(--cream);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6.1rem);
  font-weight: 800;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 900;
}

.hero-text {
  max-width: 620px;
  color: #434b51;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.quick-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 5px 0 0;
  font-weight: 900;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top center;
  background: var(--white);
  border: 1px solid rgba(226, 230, 233, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-gallery .gallery-main {
  grid-column: span 2;
  height: 320px;
}

section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  gap: 6px;
  max-width: 820px;
  margin-bottom: 30px;
}

.category-band {
  background: var(--white);
}

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

.category-grid article {
  min-height: 224px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-grid p,
.promo-section p,
.store-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.category-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--red-dark);
  background: var(--blush);
  border-radius: 8px;
  font-weight: 900;
}

.products-section {
  background: var(--soft-gray);
}

.instagram-section {
  background: var(--paper);
}

.instagram-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

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

.instagram-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.instagram-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  background: #eee9e5;
}

.instagram-card span,
.instagram-card strong {
  margin-inline: 18px;
}

.instagram-card span {
  margin-top: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-card strong {
  margin-top: 6px;
  margin-bottom: 20px;
  color: var(--navy);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.instagram-button {
  margin-top: 18px;
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  background: #eee9e5;
}

.product-card div {
  padding: 18px;
}

.product-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 6px 0 0;
}

.promo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto;
  gap: 28px;
  align-items: center;
  margin: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
  padding: clamp(36px, 6vw, 74px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.45) 72%),
    url("assets/table-setting.jpeg") right center / cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.promo-section h2,
.promo-section .eyebrow {
  color: var(--navy);
}

.promo-section .eyebrow {
  color: var(--red);
}

.promo-section p {
  max-width: 730px;
  color: var(--muted);
}

.store-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 5px solid var(--red);
  background: var(--blush);
  font-weight: 800;
}

.store-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-photos img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 20px;
  background: var(--soft-gray);
}

.contact-panel,
.map-frame {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
}

.contact-items {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-items a {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-items span {
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 10px 14px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 8px;
  font-weight: 900;
}

.map-frame {
  min-height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #f4f6f6;
  background: #252b30;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .nav-links,
  .header-action {
    display: none;
  }

  .site-header.menu-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
  }

  .site-header.menu-open .nav-links a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

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

  .hero-section {
    min-height: auto;
  }

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

  .promo-section {
    grid-template-columns: 1fr;
    margin-inline: clamp(18px, 4vw, 56px);
    background:
      linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)),
      url("assets/table-setting.jpeg") center / cover;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 58px;
    height: 44px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-gallery,
  .quick-facts,
  .category-grid,
  .product-grid,
  .instagram-grid,
  .store-photos {
    grid-template-columns: 1fr;
  }

  .hero-gallery .gallery-main,
  .hero-gallery img {
    grid-column: auto;
    height: 230px;
  }

  .store-photos img {
    min-height: 230px;
  }

  .site-footer {
    display: grid;
  }
}
