/*
  Gotham     → Montserrat (closest free geometric sans-serif substitute)
  High Spirited → Dancing Script (elegant calligraphy substitute)
  Montserrat → Montserrat (native)
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* ============ VARIABLES ============ */
:root {
  --sage: #7C8870;
  --sage-dark: #69775E;
  --dark: #1C1C1A;
  --cream: #F7F4EF;
  --beige: #EDE9E3;
  --border: #E2DDD8;
  --muted: #8C8882;
  --light: #FAFAF8;
  --ph1: #E8DDD0;
  --ph2: #D4C8BC;
  --ph3: #C8BDB0;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: #fff;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select {
  font-family: 'Montserrat', sans-serif;
  font-size: inherit;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.1;
}
.script { font-family: 'Dancing Script', cursive; }

/* ============ LOGO ============ */
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 16px;
  width: auto;
  display: block;
}
.logo-img-white { filter: brightness(0) invert(1); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
}
.nav-inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { opacity: 1; }
.nav-cta {
  display: inline-block;
  border: 1px solid var(--dark);
  padding: 7px 18px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--dark); color: #fff; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--dark); display: block; transition: all 0.3s; }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 24px 24px;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  opacity: 0.7;
}
.mobile-nav a:hover { opacity: 1; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid transparent;
  line-height: 1;
}
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #333; }
.btn-sage { background: var(--sage); color: #fff; border-color: var(--sage); }
.btn-sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-outline-sage { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-sm { padding: 8px 18px; font-size: 9.5px; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.page-wrap { padding-top: 64px; }
section { padding: 80px 0; }

/* ============ SECTION LABEL ============ */
.section-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.section-label-sm {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ============ IMAGES ============ */
.img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ph1) 0%, var(--ph2) 100%);
  display: block;
}
.img-ph-2 { background: linear-gradient(135deg, #DDD4C8 0%, #CCC0B4 100%); }
.img-ph-3 { background: linear-gradient(135deg, #C8C0B8 0%, #B8B0A8 100%); }
.img-ph-hero {
  background: linear-gradient(135deg, #C4B09A 0%, #A89070 50%, #907860 100%);
}

/* Real image elements */
.cs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .cs-img,
.coll-card:hover .cs-img,
.prod-item:hover .cs-img,
.sugg-card:hover .cs-img { transform: scale(1.04); }

/* Image wrappers — enforce overflow hidden */
.product-card-img,
.coll-card-img,
.coll-item-img-wrap,
.prod-item-img,
.show-img,
.gallery-main,
.g-thumb,
.full-coll-img,
.travel-img,
.sugg-card-img,
.frag-img,
.hosp-right-img,
.hero-product-wrap,
.showcase-outer { overflow: hidden; }

/* ============ DIVIDER ============ */
.divider { border: none; border-top: 1px solid var(--border); }

/* ================================================
   HOMEPAGE
   ================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(105deg,
      rgba(22,15,10,0.90) 0%,
      rgba(35,25,16,0.72) 48%,
      rgba(50,38,28,0.40) 75%,
      rgba(60,45,32,0.15) 100%),
    linear-gradient(140deg, #3A2C20 0%, #6B4E35 30%, #9A7B58 60%, #C0A07A 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 500px; }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 300;
}
.hero p {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  max-width: 380px;
  margin-bottom: 40px;
}
.hero-product-wrap {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 26vw, 380px);
  aspect-ratio: 0.8/1;
  z-index: 1;
}
.hero-product-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #D8CBC0 0%, #C0B0A0 50%, #A89888 100%);
  border-radius: 2px;
}

/* Bestsellers */
.section-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-row-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
  line-height: 1;
}
.carousel-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.carousel-outer { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card { flex: 0 0 calc(25% - 15px); cursor: pointer; }
.product-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.product-card-img .img-ph { transition: transform 0.5s; }
.product-card:hover .img-ph { transform: scale(1.04); }
.product-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.52));
  color: #fff;
}
.product-card-overlay h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}
.product-card-overlay p { font-size: 11px; opacity: 0.75; }

/* Our Collection */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.coll-card { cursor: pointer; }
.coll-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 16px;
}
.coll-card-img .img-ph { width: 100%; height: 100%; transition: transform 0.5s; }
.coll-card:hover .img-ph { transform: scale(1.04); }
.coll-num {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}
.coll-card h3 { font-size: 20px; margin-bottom: 8px; }
.coll-card p { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

/* Fragrance Banner */
.frag-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.frag-img {
  background: linear-gradient(135deg, #C8B090 0%, #B09070 50%, #8A7050 100%);
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.frag-img-inner { width: 100%; height: 100%; object-fit: cover; }
.frag-text {
  background: var(--dark);
  color: #fff;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.frag-text .section-label { color: rgba(255,255,255,0.4); }
.frag-text h2 {
  font-size: clamp(30px, 3.5vw, 50px);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}
.frag-text h2 em {
  font-style: italic;
  font-family: 'Dancing Script', cursive;
  font-size: 1.1em;
}
.frag-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 360px;
}

/* Hospitality */
.hospitality-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hosp-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}
.hosp-left h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hosp-left h2 .script-italic {
  font-family: 'Dancing Script', cursive;
  font-style: italic;
  font-size: 1.15em;
}
.hosp-left p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 380px;
}
.hosp-right-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #ECE4D8 0%, #D8CEC4 100%);
  margin-bottom: 0;
}
.accordion { border-top: 1px solid var(--border); }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-trigger {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  transition: color 0.2s;
}
.acc-trigger:hover { color: var(--sage); }
.acc-icon {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--muted);
  font-weight: 300;
}
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-body-inner {
  padding: 0 0 16px 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.8;
}
.acc-item.open .acc-body { max-height: 120px; }

/* About */
.about-bg {
  background: var(--cream);
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-left-label {
  font-size: 11.5px;
  font-family: 'Montserrat', sans-serif;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.about-right p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 2vw, 22px); font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 640px;
}
.cert-badges { display: flex; gap: 16px; align-items: center; }
.cert-badge {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  text-align: center;
  color: var(--muted);
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  padding: 4px;
}

/* CTA Dark */
.cta-dark {
  background: var(--dark);
  text-align: center;
  padding: 100px 0;
}
.cta-dark .section-label { color: rgba(255,255,255,0.35); }
.cta-dark h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  margin-bottom: 44px;
  line-height: 1.1;
}
.cta-dark h2 .script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.1em;
  font-weight: 500;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.8fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 12.5px;
  text-decoration: none;
  color: var(--dark);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { opacity: 1; }
.footer-col ul li a.current { opacity: 1; font-weight: 600; }
.footer-brand { margin-bottom: 10px; }
.footer-brand-sub {
  font-size: 11px;
  color: var(--muted);
  margin: 8px 0 18px;
}
.footer-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
}
.footer-addr {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.9;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 11px; color: var(--muted); }
.footer-marks { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

/* ================================================
   COLLECTIONS PAGE
   ================================================ */
.page-title-section { padding: 120px 0 48px; }
.page-title-section .section-label { margin-bottom: 12px; }
.page-title-section h1 { font-size: clamp(36px, 5vw, 60px); }
.page-title-section h1 em { font-style: italic; color: var(--sage); }

.coll-items-wrap { padding: 0 0 80px; }
.coll-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.coll-item:last-child { border-bottom: none; }
.coll-item.reverse .coll-item-img { order: 2; }
.coll-item.reverse .coll-item-text { order: 1; }
.coll-item-img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.coll-item-img-wrap .img-ph { width: 100%; height: 100%; }
.coll-item-text .coll-num { font-size: 10px; letter-spacing: 0.1em; color: var(--muted); font-family: 'Montserrat', sans-serif; margin-bottom: 10px; display: block; }
.coll-item-text h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.coll-item-text > p { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 24px; }
.notes-table { margin: 20px 0 32px; }
.note-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  font-size: 13px;
}
.note-row:first-child { border-top: 1px solid var(--border); }
.note-label {
  font-weight: 500;
  min-width: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.note-bar {
  width: 30px;
  height: 3px;
  background: var(--dark);
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0;
}
.note-val { color: var(--muted); }
.cert-icons { display: flex; gap: 12px; margin: 16px 0 28px; flex-wrap: wrap; }
.cert-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7.5px;
  text-align: center;
  color: var(--muted);
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
  padding: 4px;
  overflow: hidden;
  background: #fff;
}
.cert-icon.soy-ink {
  border-radius: 4px;
  width: auto;
  padding: 6px 10px;
  font-size: 8px;
  font-weight: 600;
}

/* ================================================
   PRODUCTS PAGE
   ================================================ */
.products-page-header { padding: 100px 0 32px; }
.products-page-header .section-label { margin-bottom: 10px; }
.products-page-header h1 { font-size: clamp(32px, 4.5vw, 56px); }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--dark);
  white-space: nowrap;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.filter-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
.filter-btn-sm {
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 400;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
}
.filter-btn-sm.active, .filter-btn-sm:hover { color: var(--dark); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
  padding: 48px 0 80px;
}
.prod-item { cursor: pointer; }
.prod-item-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 14px;
}
.prod-item-img .img-ph { width: 100%; height: 100%; transition: transform 0.5s; }
.prod-item:hover .img-ph { transform: scale(1.04); }
.prod-item-name { font-size: 13px; margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.prod-item-sub { font-size: 11.5px; color: var(--muted); }

/* ================================================
   PRODUCT DETAIL PAGE
   ================================================ */
.prod-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 100px 0 64px;
  align-items: start;
}
.gallery-main {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-main .img-ph { width: 100%; height: 100%; }
.gallery-arrow-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.gallery-arrow-btn:hover { background: #fff; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 16px; }
.g-thumb {
  flex: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.g-thumb .img-ph { width: 100%; height: 100%; }
.g-thumb.active { border-color: var(--dark); }
.g-thumb-add {
  flex: 1;
  aspect-ratio: 1/1;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  border: 1.5px solid var(--border);
}

.prod-detail-info h1 { font-size: clamp(22px, 3vw, 34px); margin-bottom: 14px; line-height: 1.2; }
.prod-desc { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.size-opts { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.size-opt {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--dark);
}
.size-opt.active {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.min-order-note { font-size: 11px; color: var(--muted); margin-top: 10px; }
.prod-tabs-wrap { margin-top: 28px; }
.prod-tabs { display: flex; }
.prod-tab-btn {
  padding: 10px 22px;
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--dark);
  transition: all 0.2s;
  margin-right: -1px;
}
.prod-tab-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); z-index: 1; position: relative; }
.prod-tab-content { display: none; padding: 24px 0 0; }
.prod-tab-content.active { display: block; }
.spec-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.spec-row:first-child { border-top: 1px solid var(--border); }
.spec-label {
  min-width: 140px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spec-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--dark); flex-shrink: 0; }
.spec-val { color: var(--muted); }

.full-coll-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.full-coll-img {
  background: linear-gradient(135deg, #E8DDD0, #C8B8A8);
  min-height: 400px;
}
.full-coll-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.full-coll-text .size-label { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.full-coll-text h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 28px; }

.travel-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.travel-text {
  background: var(--dark);
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.travel-text .size-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.travel-text h2 { font-size: clamp(26px, 3vw, 38px); color: #fff; margin-bottom: 28px; }
.travel-img {
  background: linear-gradient(135deg, #D8CCBE, #C0B4A4);
  min-height: 380px;
}

.suggestions-section { padding: 80px 0; }
.sugg-card { flex: 0 0 calc(25% - 15px); cursor: pointer; }
.sugg-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.sugg-card-img .img-ph { width: 100%; height: 100%; transition: transform 0.5s; }
.sugg-card:hover .img-ph { transform: scale(1.04); }
.sugg-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.52));
  color: #fff;
}
.sugg-card-overlay h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}
.sugg-card-overlay p { font-size: 11px; opacity: 0.75; }

/* ================================================
   SUSTAINABILITY PAGE
   ================================================ */
.sustain-header { padding: 100px 0 48px; }
.sustain-header .section-label { margin-bottom: 12px; }
.sustain-header h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 28px; }
.sustain-header .body-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 640px;
}

.features-grid {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feat-item {
  padding: 32px 40px 32px 0;
  border-bottom: 1px solid var(--border);
}
.features-grid > .feat-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}
.feat-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feat-item p { font-size: 12.5px; color: var(--muted); line-height: 1.85; }

.showcase-wrap { padding: 0 0 80px; }
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.showcase-item:last-child { border-bottom: none; }
.showcase-item.flip .show-img { order: 2; }
.showcase-item.flip .show-text { order: 1; }
.show-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.show-img .img-ph { width: 100%; height: 100%; }
.show-text .section-label { margin-bottom: 10px; }
.show-text h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 20px; }
.show-text p { font-size: 13px; color: var(--muted); line-height: 1.9; margin-bottom: 16px; }
.show-text p:last-child { margin-bottom: 0; }

/* ================================================
   FORM PAGES (Request Sample / Download Catalogue)
   ================================================ */
.form-page-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 100px 0 80px;
  align-items: start;
}
.form-page-title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 8px; }
.form-page-sub { font-size: 13px; color: var(--muted); margin-bottom: 48px; line-height: 1.7; }
.form-group { margin-bottom: 30px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 30px; }
.f-label { display: block; font-size: 12.5px; margin-bottom: 8px; color: var(--dark); }
.f-input, .f-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.f-input:focus, .f-textarea:focus { border-bottom-color: var(--dark); }
.f-input::placeholder, .f-textarea::placeholder { color: var(--muted); }
.f-textarea { resize: vertical; min-height: 100px; }

.contact-card {
  background: var(--cream);
  padding: 44px;
}
.contact-card-title { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 32px; }
.contact-section {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-section:last-of-type { border-bottom: none; }
.contact-icon-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.c-icon { font-size: 15px; color: var(--muted); }
.c-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}
.c-value { font-size: 12.5px; color: var(--muted); margin-bottom: 3px; }
.biz-hours-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 8px;
}
.hours-day { color: var(--dark); }
.hours-time { color: var(--muted); }

/* ================================================
   BRACKET SYSTEMS PAGE
   ================================================ */
.bracket-page-header { padding: 100px 0 32px; }
.bracket-page-header h1 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 12px; }
.bracket-page-header p { font-size: 13px; color: var(--muted); max-width: 460px; line-height: 1.8; }

.bracket-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 0 80px;
  align-items: start;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .navbar { padding: 0 32px; }
  .container { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .coll-item { gap: 48px; }
  .hospitality-wrap { gap: 48px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .container { padding: 0 20px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  section { padding: 60px 0; }
  .hero-product-wrap { display: none; }
  .frag-banner { grid-template-columns: 1fr; }
  .frag-img { min-height: 280px; }
  .hospitality-wrap { grid-template-columns: 1fr; }
  .hosp-right-img { aspect-ratio: 4/3; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .collection-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .coll-item { grid-template-columns: 1fr; gap: 32px; }
  .coll-item.reverse .coll-item-img,
  .coll-item.reverse .coll-item-text { order: unset; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-card { flex: 0 0 calc(50% - 10px); }

  .prod-detail-wrap { grid-template-columns: 1fr; }
  .full-coll-banner { grid-template-columns: 1fr; }
  .full-coll-img { min-height: 260px; }
  .travel-banner { grid-template-columns: 1fr; }
  .travel-img { min-height: 260px; }

  .showcase-item { grid-template-columns: 1fr; gap: 32px; }
  .showcase-item.flip .show-img,
  .showcase-item.flip .show-text { order: unset; }

  .form-page-wrap { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .bracket-detail-wrap { grid-template-columns: 1fr; }

  .cta-dark h2 { font-size: 36px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { gap: 16px; }
  .collection-grid { gap: 20px; }
}
