/* ============================================================
   WONDERACE STUDIO — Global Styles
   ============================================================ */

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

:root {
  --bg:          #111111;
  --bg-2:        #181818;
  --bg-card:     #1e1e1e;
  --accent:      #C87061;
  --accent-h:    #d4867a;
  --text:        #F0EDE8;
  --text-dim:    #aaaaaa;
  --text-muted:  #666666;
  --border:      #252525;
  --border-l:    #333333;
  --radius:      4px;
  --sp:          clamp(4rem, 8vw, 7rem);
  --gap:         clamp(1.25rem, 2.5vw, 2rem);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ---- Typography ---- */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.overline {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.body-text {
  color: var(--text-dim);
  line-height: 1.85;
  font-size: 0.96rem;
}
.section-desc {
  color: var(--text-dim);
  max-width: 480px;
  margin: 0.6rem auto 0;
  font-size: 0.93rem;
  line-height: 1.8;
}
.section { padding: var(--sp) 0; }
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-l);
}
.btn--outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.28);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.73rem;
}

/* ---- Real images ---- */
.hero__bg img,
.cta__bg img,
.page-hero > img,
.page-hero > .placeholder--full ~ img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-card__img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.about__visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.catalogue__card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* ---- Image Placeholders ---- */
.placeholder {
  position: relative;
  background: linear-gradient(145deg, #1c1c1c 0%, #222 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 22px,
      rgba(255,255,255,0.012) 22px,
      rgba(255,255,255,0.012) 23px
    );
}
.placeholder__label {
  position: relative;
  z-index: 1;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  text-align: center;
  padding: 1rem;
}
/* Ratios */
.placeholder--full   { width: 100%; height: 100%; position: absolute; inset: 0; }
.placeholder--3-4    { aspect-ratio: 3 / 4; width: 100%; }
.placeholder--3-2    { aspect-ratio: 3 / 2; width: 100%; }
.placeholder--4-5    { aspect-ratio: 4 / 5; width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1.4rem 0;
  transition: background 0.45s ease, padding 0.35s ease, border-bottom-color 0.45s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,14,14,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.9rem 0;
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__logo-icon {
  font-size: 1.45rem;
  color: var(--accent);
  line-height: 1;
}
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.1;
}
.nav__logo-text span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--sans);
  font-weight: 400;
  margin-top: 0.1rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav__links > li > a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links > li > a:hover { color: var(--text); }
.nav__links > li > a.nav--active { color: var(--text); }
.nav__links > li > a.nav--active::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--accent);
  margin-top: 2px;
}
.chevron { font-size: 0.6rem; opacity: 0.7; }
.has-dropdown { position: relative; }
.has-dropdown.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #1d1d1d;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--border);
  border-top: none;
}
.dropdown li a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.2s, background 0.2s;
}
.dropdown li a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.nav__cta {
  white-space: nowrap;
  border-color: rgba(240,237,232,0.55);
  color: var(--text);
}
.nav__cta:hover {
  border-color: var(--text);
  background: rgba(240,237,232,0.08);
  transform: none;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__mobile-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 clamp(1.5rem, 6vw, 3rem);
  overflow-y: auto;
}
.nav__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-close {
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
}
.nav__mobile-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.nav__mobile-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2.5rem 0 2rem;
  gap: 0;
}
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  font-weight: 300;
  color: var(--text-dim);
  text-decoration: none;
  line-height: 1.15;
  padding: 0.45rem 0;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.nav__mobile-link:hover,
.nav__mobile-link.is-active { color: var(--text); }
.nav__mobile-group {
  display: flex;
  flex-direction: column;
}
.nav__mobile-group-label {
  cursor: default;
  color: var(--text-dim) !important;
}
.nav__mobile-subs {
  display: flex;
  flex-direction: column;
  margin: 0.2rem 0 0.4rem 1.6rem;
  padding-left: 1rem;
  border-left: 1.5px solid var(--accent);
  gap: 0;
}
.nav__mobile-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__mobile-sub:hover,
.nav__mobile-sub.is-active { color: var(--text); }
.nav__mobile-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(14,14,14,0.88) 0%,
    rgba(14,14,14,0.55) 55%,
    rgba(14,14,14,0.18) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 5rem;
  max-width: 680px;
}
.hero__content .overline { margin-bottom: 1.2rem; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(0.93rem, 1.4vw, 1.02rem);
  color: rgba(240,237,232,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 440px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.32);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1) translateY(0); }
  50%       { opacity: 0.75; transform: scaleY(0.55) translateY(8px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.about__visual { position: relative; }
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--accent);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.about__badge span:first-child {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.badge-year {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.collection-card {
  display: block;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.collection-card:hover { transform: translateY(-7px); }
.collection-card__img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.3rem;
  transition: filter 0.4s;
}
.collection-card:hover .collection-card__img { filter: brightness(0.8); }
.collection-card__tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.collection-card__title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.collection-card__desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.collection-card__cta {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: letter-spacing 0.3s;
}
.collection-card:hover .collection-card__cta { letter-spacing: 0.18em; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: inherit; position: relative; overflow: hidden; }
.why-us__veins {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  opacity: 0.4;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature {
  padding: 2.1rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.feature__icon {
  color: var(--accent);
  margin-bottom: 1.1rem;
  line-height: 1;
}
.feature__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.feature__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.products__tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  font-family: var(--sans);
}
.tab:hover  { border-color: var(--border-l); color: var(--text-dim); }
.tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.product-card { cursor: pointer; }
.product-card__img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.9rem;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.35s;
}
.product-card:hover .product-card__img {
  filter: brightness(0.78);
  transform: scale(1.025);
}
.product-card__code {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.22rem;
}
.product-card__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.product-card__type {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.section--light .product-card__name { color: #1c1a18; }
.section--light .product-card__code { color: #999; }
.section--light .product-card__type { color: #888; }

/* ============================================================
   CATALOGUE
   ============================================================ */
.catalogue { background: var(--bg); }
.catalogue__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.catalogue__inner .body-text {
  max-width: 460px;
  margin-bottom: 1.5rem;
}
.catalogue__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  width: 100%;
  max-width: 960px;
}
.catalogue__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}
.catalogue__card .placeholder { border-radius: var(--radius); }
.catalogue__card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

/* ============================================================
   SERIES NAV + SERIES SECTIONS (Quartz / Sintered flow)
   ============================================================ */
.series-nav {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.series-nav__links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.series-nav__links::-webkit-scrollbar { display: none; }
.series-nav__link {
  flex-shrink: 0;
  padding: 0.85rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.series-nav__link span { color: var(--text-muted); font-size: 0.65rem; }
.series-nav__num { color: var(--accent); font-size: 0.6rem; margin-right: 0.1rem; }
.series-nav__link:hover,
.series-nav__link.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.series-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.section--light .series-section__header { border-bottom-color: #ddd9d3; }
.series-section__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin: 0.25rem 0 0.5rem;
}
.section--light .series-section__title { color: #1c1a18; }
.series-section__desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 420px;
  line-height: 1.6;
}
.section--light .series-section__desc { color: #555; }
.series-section__spec {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}
.spec-pill {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border-l);
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.section--light .spec-pill {
  border-color: #ccc8c2;
  color: #888;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(14,14,14,0.72);
}
.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
  width: 100%;
  padding: 5rem clamp(1.25rem, 4vw, 3rem);
}
.cta__content .section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
}
.cta__content .body-text {
  max-width: 440px;
  margin-top: 0.25rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0c0c0c;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.footer__brand .nav__logo { margin-bottom: 1.1rem; }
.footer__brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 240px;
}
.footer__tagline {
  color: var(--accent) !important;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1rem !important;
  margin-top: 0.75rem !important;
  max-width: none !important;
}
.footer__nav h5,
.footer__contact h5 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text-dim); }
.footer__contact p,
.footer__contact a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--accent); }
.footer__address { margin-top: 0.6rem !important; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(14,14,14,0.52);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 4rem;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.page-hero__sub {
  font-size: 1rem;
  color: rgba(240,237,232,0.6);
  line-height: 1.7;
}

/* ============================================================
   COLLECTION INTRO + SPECS
   ============================================================ */
.collection-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.collection-intro__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.spec-item {
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.section--light .spec-item { background: #fff; border-color: #e5e1db; }
.spec-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.section--light .spec-item__label { color: #999; }
.spec-item__value {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.3;
}
.section--light .spec-item__value { color: #1c1a18; }

/* advantages row */
.advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.advantage-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,112,97,0.35);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* product badge */
.product-card__badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,112,97,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.35rem;
}

/* surface tags */
.surface-tags {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.surface-tag {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
}

/* ============================================================
   PROCESS STEPS (Fabrication)
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 0.5rem;
}
.process-step__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,112,97,0.22);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.process-step__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.section--light .process-step__title { color: #1c1a18; }
.process-step__desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.section--light .process-step__desc { color: #777; }
.process-connector {
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding: 0 0 2.5rem;
}
.process-connector__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section--light .process-connector__line { background: #ddd9d3; }

/* services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.section--light .service-card { border-color: #e5e1db; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.section--light .service-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.service-card__body { padding: 1.75rem; }
.service-card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.section--light .service-card__title { color: #1c1a18; }
.service-card__desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.section--light .service-card__desc { color: #777; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
/* contact cards (new 4-up grid) */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--bg-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background 0.25s;
}
.contact-card:hover { background: var(--bg-2); }
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,112,97,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.contact-card__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.15rem;
}
.contact-card__value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.4;
}
.contact-card__value:hover { color: var(--accent); }
.contact-card__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
}

/* legacy contact items kept for any other usage */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-item__value {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text);
}
.section--light .contact-item__value { color: #1c1a18; }
.contact-item__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.section--light .contact-item__sub { color: #777; }
.contact-item a { transition: color 0.2s; }
.contact-item a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section--light .form-group label { color: #888; }
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: 1px solid var(--border-l);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.25s;
  outline: none;
  width: 100%;
}
.section--light .form-group input,
.section--light .form-group select,
.section--light .form-group textarea {
  border-color: #d0ccc6;
  color: #1c1a18;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.section--light .form-group input::placeholder,
.section--light .form-group textarea::placeholder { color: #bbb; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
}
.whatsapp-btn:hover { background: var(--accent-h); transform: translateY(-2px); }

/* ============================================================
   PROJECTS GALLERY
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.project-card--wide { grid-column: span 2; }
.project-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.project-card--wide .project-card__img { aspect-ratio: 3/2; }
.project-card:hover .project-card__img { transform: scale(1.05); }
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.78) 0%, transparent 55%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s;
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
.project-card:hover .project-card__info { opacity: 1; transform: translateY(0); }
.project-card__cat {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.project-card__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}
.story-text { display: flex; flex-direction: column; gap: 1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.section--light .value-card { background: #fff; border-color: #e5e1db; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.section--light .value-card:hover { border-color: var(--accent); }
.value-card__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,112,97,0.3);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.section--light .value-card__title { color: #1c1a18; }
.value-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.section--light .value-card__desc { color: #777; }

/* ============================================================
   LIGHT SECTION VARIANT
   ============================================================ */
.section--light {
  background: #f5f3ef;
}
.section--light .section-title   { color: #1c1a18; }
.section--light .section-desc    { color: #666; }
.section--light .body-text       { color: #555; }

/* stats */
.section--light .about__stats    { border-top-color: #ddd9d3; }
.section--light .stat__label     { color: #999; }

/* placeholders on light bg */
.section--light .placeholder {
  background: linear-gradient(145deg, #e6e2db 0%, #dad6cf 50%, #e3e0d9 100%);
}
.section--light .placeholder::before {
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 22px,
    rgba(0,0,0,0.018) 22px,
    rgba(0,0,0,0.018) 23px
  );
}
.section--light .placeholder__label { color: rgba(0,0,0,0.2); }

/* feature cards */
.section--light .feature {
  background: #fff;
  border-color: #e5e1db;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.section--light .feature:hover   { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.section--light .feature__title  { color: #1c1a18; }
.section--light .feature__desc   { color: #777; }

/* catalogue cards */
.section--light .catalogue__card h4 { color: #1c1a18; }
.section--light .btn--outline {
  color: #1c1a18;
  border-color: #1c1a18;
}
.section--light .btn--outline:hover { border-color: var(--accent); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}
.lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 880px;
  width: calc(100% - 4rem);
  max-height: 90vh;
}
.lightbox__img-wrap {
  flex-shrink: 0;
  width: min(420px, 55vw);
}
.lightbox__img-wrap img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.lightbox__info {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lightbox__badge {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,112,97,0.12);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}
.lightbox__code {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.lightbox__name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
}
.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.16); }
.product-card__img { cursor: zoom-in; }
@media (max-width: 640px) {
  .lightbox__panel { flex-direction: column; gap: 1.25rem; }
  .lightbox__img-wrap { width: 100%; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal,
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal--d1, .sr--d1 { transition-delay: 0.12s; }
.reveal--d2, .sr--d2 { transition-delay: 0.24s; }
.reveal--d3, .sr--d3 { transition-delay: 0.36s; }

.reveal.in-view,
.sr.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
  .footer__brand  { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(2.6rem, 10vw, 4rem); }

  .about__inner { grid-template-columns: 1fr; }
  .about__visual { margin-top: 1rem; }
  .about__badge  { bottom: -1rem; left: -1rem; width: 72px; height: 72px; }

  .collections__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .series-section__header { flex-direction: column; align-items: flex-start; }
  .series-section__spec { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .catalogue__cards {
    grid-template-columns: 1fr;
    max-width: 220px;
  }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .features-grid  { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; align-items: flex-start; }
}

/* ---- Inner pages ---- */
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .collection-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card--wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
