:root {
  --ink: #27272A;
  --cocoa: #5D5C5A;
  --brick: #8C2A37;
  --terracotta: #C47E5A;
  --ivory: #F4EEE8;
  --paper: #FFFFFF;
  --max: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  color: var(--paper);
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.solid {
  background: var(--paper);
  color: var(--ink);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(39,39,42,0.08);
}
.nav-logo { display: flex; align-items: center; }

/* ---------- Brand lockup (per brand book: rule / CLADDIUM / rule, endorsement "By Farnas") ---------- */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}
.brand-lockup .wordmark {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.brand-lockup .divider { width: 1px; height: 26px; background: currentColor; opacity: 0.5; }
.brand-lockup .endorsement {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--terracotta);
}
/* Wordmark reads Karanda Red once the nav is solid (light ground). Over the transparent,
   dark hero state it falls back to Copper — red-on-charcoal is the one pairing the brand
   book explicitly rules out (1.77:1, "it disappears"). */
.brand-lockup .wordmark { color: var(--terracotta); }
.site-nav.solid .brand-lockup .wordmark { color: var(--brick); }
.brand-lockup-stacked {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ink);
}
.brand-lockup-stacked .wordmark {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  padding: 8px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--brick);
}
.brand-lockup-stacked .endorsement {
  margin-top: 9px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-center li { position: relative; }
.nav-center a { padding-bottom: 4px; border-bottom: 1px solid transparent; transition: color 0.2s ease; }
.nav-center a:hover, .nav-center a.active { color: var(--terracotta); border-bottom-color: currentColor; }
.site-nav.solid .nav-center a:hover, .site-nav.solid .nav-center a.active { color: var(--brick); }
.nav-center .dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  padding: 20px 0 8px;
  min-width: 200px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease;
}
.nav-center .dropdown-menu::before {
  content: ""; position: absolute; top: 20px; left: 0; right: 0; bottom: 0;
  background: var(--paper); box-shadow: 0 18px 40px rgba(39,39,42,0.16); z-index: -1;
}
.nav-center li:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown-menu li a { display: block; padding: 10px 22px; color: var(--ink); white-space: nowrap; }
.dropdown-menu li a:hover { color: var(--brick); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; opacity: 0.9; }
.nav-icon svg { width: 100%; height: 100%; fill: currentColor; }
.nav-cta {
  background: var(--brick);
  color: var(--paper);
  border: 1px solid var(--brick);
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: transparent; color: var(--brick); }
.site-nav.solid .nav-cta:hover { color: var(--brick); }
.site-nav:not(.solid) .nav-cta:hover { color: var(--paper); border-color: var(--paper); }

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--paper);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.6s cubic-bezier(0.45, 0, 0.15, 1);
}
.hero-slide.active {
  opacity: 1;
  animation: heroSlideZoom 8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes heroSlideZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active { animation: none; }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,39,42,0.35) 0%, rgba(39,39,42,0.1) 35%, rgba(39,39,42,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute; z-index: 2;
  left: 48px; bottom: 120px;
  max-width: 720px;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: var(--terracotta);
}
.hero-title {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.45, 0, 0.15, 1), transform 0.65s cubic-bezier(0.45, 0, 0.15, 1);
}
.hero-title.is-switching {
  opacity: 0;
  transform: translateY(14px);
}
.hero-explore {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-explore .circle {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.hero-explore:hover .circle { background: rgba(255,255,255,0.15); }
.hero-explore .circle svg { width: 18px; height: 18px; stroke: var(--paper); }
.hero-nav {
  position: absolute; z-index: 2;
  right: 48px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-end;
}
.hero-nav button {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-size: 13px; letter-spacing: 1px;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.25s ease;
}
.hero-nav button .bar {
  width: 0; height: 1px; background: var(--paper);
  transition: width 0.3s ease;
}
.hero-nav button.active { color: var(--paper); }
.hero-nav button.active .bar { width: 30px; }
.hero-social {
  position: absolute; z-index: 2; left: 48px; bottom: 40px;
  display: flex; gap: 22px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero-social a:hover { color: var(--paper); }

/* ---------- Pushes ---------- */
.pushes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.push {
  padding: 60px 48px;
  border-right: 1px solid rgba(39,39,42,0.08);
  text-align: center;
}
.push:last-child { border-right: none; }
.push .label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brick); margin-bottom: 10px;
}
.push h3 { font-size: 21px; margin-bottom: 12px; }
.push a.link {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 4px;
}

/* ---------- Collection feature blocks (image + overlay text, alternating) ---------- */
.collections-intro {
  padding: 110px 48px 60px;
  text-align: center;
}
.collections-intro .eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brick); margin-bottom: 16px;
}
.collections-intro h2 { font-size: clamp(30px, 4vw, 48px); max-width: 700px; margin: 0 auto; }

.feature-block {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--paper);
  overflow: hidden;
}
.feature-block::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(39,39,42,0.85) 0%, rgba(39,39,42,0.15) 55%, rgba(39,39,42,0.05) 100%);
}
.feature-block-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.feature-block-inner {
  position: relative; z-index: 1;
  padding: 70px 60px;
  max-width: 620px;
}
.feature-block .eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--terracotta); margin-bottom: 12px;
}
.feature-block h3 {
  font-size: clamp(32px, 4vw, 54px);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.05;
}
.feature-block p { max-width: 460px; color: rgba(255,255,255,0.85); margin-bottom: 16px; font-size: 15.5px; }
.feature-block .size-spec {
  font-family: 'Montserrat', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 26px;
}
.feature-block .discover {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 1px solid var(--paper); padding-bottom: 5px;
}

/* ---------- Collection Range ---------- */
.collection-range {
  padding: 110px 0 0;
  scroll-margin-top: 100px;
}
.collection-range .container { text-align: center; margin-bottom: 50px; }
.collection-range .eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; }
.collection-range h2 { font-size: clamp(28px, 4vw, 42px); max-width: 640px; margin: 0 auto; }

.range-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.range-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 460px;
  padding-bottom: 32px;
  overflow: hidden;
  text-decoration: none;
}
.range-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.1,0.25,1);
}
.range-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(39,39,42,0.8) 0%, rgba(39,39,42,0.1) 55%, rgba(39,39,42,0.25) 100%);
}
.range-card span {
  position: relative;
  z-index: 2;
  color: var(--paper);
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 22px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.range-card:hover img { transform: scale(1.07); }
.range-card:hover span { color: var(--terracotta); }

/* ---------- Filmstrip gallery (legacy, unused) ---------- */
.filmstrip {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-margin-top: 100px;
}
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip img {
  height: 340px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.filmstrip img:hover { transform: scale(1.03); }

/* ---------- Statement band ---------- */
.statement {
  background: var(--ink);
  color: var(--ivory);
  padding: 130px 48px;
  text-align: center;
}
.statement p {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.45;
  max-width: 900px;
  margin: 0 auto;
}
.statement .attribution {
  margin-top: 30px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terracotta);
}

/* ---------- Best sellers / collection grid ---------- */
.collection {
  padding: 120px 0 100px;
  text-align: center;
  background: var(--ivory);
}
.collection .eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brick); margin-bottom: 16px;
}
.collection h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 56px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--paper);
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover { box-shadow: 0 20px 44px rgba(39,39,42,0.14); transform: translateY(-4px); }
.product-card .thumb { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(39,39,42,0.8); color: var(--paper);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 12px;
}
.product-card .body { padding: 18px 20px 22px; }
.product-card .body span {
  display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brick); margin-bottom: 6px;
}
.product-card .body h4 { font-size: 17px; }
.product-card .body .code {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brick); margin-top: 8px;
}
.collection-cta { margin-top: 56px; }
.collection-cta a {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 6px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 110px 48px;
  text-align: center;
}
.testimonials .eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brick); margin-bottom: 16px;
}
.testimonials h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 60px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-card .stars { color: var(--terracotta); letter-spacing: 3px; margin-bottom: 16px; font-size: 15px; }
.testimonial-card p { color: var(--cocoa); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.testimonial-card .name { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); }

/* ---------- Versatility grid ---------- */
.versatility {
  background: var(--ivory);
  padding: 110px 48px;
  text-align: center;
}
.versatility .eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brick); margin-bottom: 16px;
}
.versatility h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 60px; }
.versatility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(39,39,42,0.08);
  max-width: 1100px;
  margin: 0 auto;
}
.versatility-item {
  background: var(--ivory);
  padding: 42px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.versatility-item .icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.versatility-item .icon svg { width: 100%; height: 100%; stroke: var(--brick); fill: none; stroke-width: 1.3; }
.versatility-item span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background-size: cover; background-position: center;
  color: var(--paper);
}
.cta-banner::after { content: ""; position: absolute; inset: 0; background: rgba(39,39,42,0.55); }
.cta-banner-inner { position: relative; z-index: 1; max-width: 640px; padding: 0 24px; }
.cta-banner .eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 16px;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 30px; }
.cta-banner .nav-cta { padding: 14px 34px; font-size: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ivory);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(39,39,42,0.12);
}
.footer-grid .nav-logo { margin-bottom: 26px; }
.footer-grid p { color: var(--cocoa); font-size: 14px; max-width: 280px; }
.footer-grid h5 {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--ink); margin-bottom: 22px;
}
.footer-grid ul { list-style: none; font-size: 14px; }
.footer-grid ul li { margin-bottom: 10px; color: var(--cocoa); }
.footer-grid ul li a:hover { color: var(--brick); }
.footer-social {
  display: flex; gap: 16px; margin-top: 36px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(39,39,42,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social a:hover { border-color: var(--brick); color: var(--brick); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--cocoa);
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed; right: 28px; bottom: 28px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--paper); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; gap: 50px; }
  .versatility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-center { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pushes { grid-template-columns: 1fr; }
  .push { border-right: none; border-bottom: 1px solid rgba(39,39,42,0.08); }
  .range-grid { grid-template-columns: repeat(2, 1fr); }
  .range-card { height: 320px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .site-nav { padding: 16px 20px; }
  .hero-content { left: 20px; bottom: 90px; }
  .hero-nav { right: 20px; }
  .hero-social { left: 20px; }
  .collection-grid { grid-template-columns: 1fr; }
  .versatility-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .range-grid { grid-template-columns: 1fr; }
  .range-card { height: 280px; }
}
