:root {
  --bg: #f6f4f1;
  --surface: #ffffff;
  --ink: #1c1917;
  --muted: #78716c;
  --line: #e7e0d8;
  --accent: #9a3412;
  --accent-soft: #f3e3d8;
  --header-bg: #0E8B7A;
  --header-ink: #fdf8f4;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

h1, h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  margin: 0;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------- Header ---------- */

.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
  font-family: "Gotham", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 6px 18px -6px rgba(6, 55, 47, 0.45);
}

.site-header {
  background:
    radial-gradient(900px 160px at 18% -40%, rgba(255, 255, 255, 0.12), transparent 65%),
    var(--header-bg);
  color: var(--header-ink);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  max-width: 1600px;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.store-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.25rem 0;
}

.store-logo {
  height: 3.8rem;
  width: auto;
  padding: 0.28rem;
  background: #fdfefd;
  border-radius: 0.9rem;
  box-shadow: 0 4px 12px rgba(4, 40, 34, 0.4);
}

.store-titles h1 {
  font-family: inherit;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.store-titles p {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b8e0d6;
}

/* ---------- Brand tabs ---------- */

.brand-tabs {
  display: flex;
  gap: 0.5rem;
}

.brand-tab {
  appearance: none;
  border: 1px solid #4a403a;
  background: transparent;
  color: #e8dfd6;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.brand-tab:hover { border-color: #8d8178; }

.brand-tab.is-active {
  background: #fdf8f4;
  color: var(--ink);
  border-color: #fdf8f4;
  cursor: default;
}

/* ---------- Hero / carousel ---------- */

.hero {
  padding: 1.75rem 0 0.5rem;
}

.brand-heading {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.carousel {
  position: relative;
  aspect-ratio: 2 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eceae6;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.12);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.carousel-slide.is-active { opacity: 1; pointer-events: auto; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: none;
  border-radius: 50%;
  background: rgba(28, 25, 23, 0.55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0 0 0.15rem 0.05rem;
  transition: background 0.15s ease;
}

.carousel-btn:hover { background: rgba(28, 25, 23, 0.8); }

.carousel-prev { left: 0.75rem; }
.carousel-next { right: 0.75rem; padding: 0 0.15rem 0.05rem 0; }

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.carousel-dot:hover { background: rgba(255, 255, 255, 0.85); }

.carousel-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* ---------- Catalogue ---------- */

.catalogue { padding: 2.25rem 0 3rem; }

.catalogue-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.catalogue-head h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  letter-spacing: 0.1em;
}

.catalogue-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.page-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(28, 25, 23, 0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.page-card:hover {
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.12);
  transform: translateY(-2px);
}

.page-open {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #eceae6;
  cursor: zoom-in;
}

.page-open img { width: 100%; height: auto; }

.page-card figcaption {
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 12, 10, 0.92);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 3.25rem 1rem 2rem;
}

.lightbox-stage {
  width: min(100%, 1500px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-stage img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.lightbox-caption {
  margin: 0.6rem 0 0;
  color: #d6ccc2;
  font-size: 0.85rem;
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  z-index: 1;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-close:hover,
.lightbox-arrow:hover { background: rgba(255, 255, 255, 0.25); }

.lightbox-close {
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.75rem;
  padding-bottom: 0.2rem;
}

.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid #0b6f63;
  background: var(--header-bg);
}

.site-footer .container {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.95rem;
  color: var(--header-ink);
}

.site-footer .footer-contact {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 1.25rem;
  font-family: "Gotham", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: #b8e0d6;
}

.site-footer .footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.site-footer .footer-contact a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
  }

  .brand-tabs { width: 100%; justify-content: center; }

  .carousel-btn {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.25rem;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lightbox { padding-top: 3.25rem; }

  .lightbox-arrow {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1.4rem;
  }

  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
}
