/* ============================================================
   Rigid Box — Luxury packaging theme
   Warm ivory base, champagne accents, deep forest green.
   ============================================================ */

:root {
  --gold:        #c99328;
  --gold-light:  #dcae54;
  --gold-pale:   #fbf3df;
  --ink:         #204b39;
  --body:        #3f5c50;
  --muted:       #71877e;
  --line:        #d8e2dc;
  --cream:       #f7f8f4;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', -apple-system, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 12px rgba(21, 61, 46, .06);
  --shadow-md: 0 10px 32px rgba(21, 61, 46, .10);
  --shadow-lg: 0 20px 60px rgba(21, 61, 46, .14);

  --radius:    4px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.2rem; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

::selection { background: var(--gold); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Typography utilities ---------- */
.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .7rem;
}

.section-title { margin-bottom: 1rem; }

.section-subtitle {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto;
}
.text-start .section-subtitle { margin-left: 0; }

.text-gold { color: var(--gold) !important; }
.bg-cream { background: var(--cream) !important; }

.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

@media (max-width: 767.98px) {
  .section { padding: 3.5rem 0; }
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  border-width: 1px;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover, .btn-gold:focus {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover, .btn-outline-gold:focus {
  background: var(--gold);
  color: #fff;
}

.btn-dark-lux {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.btn-dark-lux:hover, .btn-dark-lux:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-outline-light-gold {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline-light-gold:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.btn-lg { padding: 1rem 2.5rem; font-size: .85rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .74rem; }

/* ---------- Product configurator ---------- */
.product-configurator {
  margin: 1.75rem 0;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.configurator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.configurator-head .eyebrow { margin-bottom: .3rem; }
.configurator-head h2 { font-size: 1.45rem; margin: 0; }
.config-step {
  flex-shrink: 0;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.config-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.config-field label {
  display: block;
  margin-bottom: .4rem;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.config-field .form-select,
.config-field .form-control {
  min-height: 50px;
  background-color: var(--white);
}
.config-field small { display: block; margin-top: .35rem; color: var(--muted); }
.quantity-control {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
}
.quantity-control button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.25rem;
}
.quantity-control button:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.quantity-control button:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.quantity-control button:hover { background: var(--gold-pale); color: var(--gold); }
.quantity-control input {
  border-radius: 0;
  text-align: center;
  border-left: 0;
  border-right: 0;
}
.config-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.config-summary span,
.config-summary small { display: block; color: var(--muted); font-size: .76rem; }
.config-summary strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: 1.75rem; }
.config-note { margin: .9rem 0 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }

@media (max-width: 575.98px) {
  .product-configurator { padding: 1.1rem; }
  .config-grid { grid-template-columns: 1fr; }
  .config-summary { align-items: stretch; flex-direction: column; }
  .config-summary .btn { width: 100%; }
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  padding: .55rem 0;
  letter-spacing: .04em;
}
.topbar-tagline { letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; }
.topbar-links a {
  color: rgba(255,255,255,.72);
  margin-left: 1.75rem;
}
.topbar-links a:hover { color: var(--gold-light); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 1030;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.navbar { padding: .9rem 0; }

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: clamp(135px, 12vw, 180px);
  height: auto;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
}
.brand-sub {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.navbar-nav .nav-link {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .6rem 1rem !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .35rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .dropdown-toggle::after { display: none; }

.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .5rem 0;
  margin-top: .5rem;
  min-width: 230px;
  z-index: 1100;
}
.dropdown-item {
  font-size: .84rem;
  letter-spacing: .04em;
  color: var(--body);
  padding: .6rem 1.4rem;
}
.dropdown-item:hover,
.dropdown-item.active {
  background: var(--gold-pale);
  color: var(--gold);
}
.products-dropdown-menu {
  max-height: min(70vh, 560px);
  overflow-y: auto;
  min-width: 290px;
}

.navbar-toggler { border: 1px solid var(--line); padding: .45rem .6rem; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0 .5rem;
    border-top: 1px solid var(--line);
    margin-top: .9rem;
  }
  .navbar-nav .nav-link::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--cream) 0%, #fff 55%);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--body);
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.35);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  padding: 1rem 1.4rem;
  border-left: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
}
.hero-badge span {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stats {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  margin-top: 2.75rem;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .hero-inner { padding: 3.5rem 0; }
}

/* ---------- Page banner ---------- */
.page-banner {
  background: var(--cream);
  padding: 4rem 0 3.25rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-banner h1 { margin-bottom: .75rem; }
.page-banner p { color: var(--muted); max-width: 640px; margin: 0 auto; }

.breadcrumb {
  justify-content: center;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.breadcrumb-item + .breadcrumb-item::before { content: '—'; color: var(--muted); }
.breadcrumb-item a { color: var(--muted); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb.text-start { justify-content: flex-start; }

/* ---------- Cards: category ---------- */
.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  height: 100%;
  min-height: 320px;
}
.category-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: .82;
  transition: transform .7s cubic-bezier(.4,0,.2,1), opacity var(--transition);
}
.category-card:hover img { transform: scale(1.06); opacity: .62; }
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,61,46,.92) 0%, rgba(21,61,46,.20) 60%, transparent 100%);
}
.category-card-body {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.category-card-body h3 { color: #fff; font-size: 1.4rem; margin-bottom: .4rem; }
.category-card-body p {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  margin-bottom: .75rem;
  line-height: 1.6;
}
.category-card-link {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.category-card-count {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .75rem;
}

/* ---------- Cards: product ---------- */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-media img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  background: var(--gold);
  color: #fff;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .7rem;
}

.product-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-category {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.product-card-body h3 {
  font-size: 1.22rem;
  margin-bottom: .5rem;
}
.product-card-body h3 a { color: var(--ink); }
.product-card-body h3 a:hover { color: var(--gold); }

.product-meta {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
}
.product-desc {
  font-size: .88rem;
  color: var(--body);
  margin-bottom: 1rem;
  flex: 1;
}
.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.2;
}
.product-price small {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Feature blocks ---------- */
.feature-box {
  padding: 2.25rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  transition: all var(--transition);
}
.feature-box:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.feature-box h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.feature-box p { font-size: .9rem; margin-bottom: 0; }

/* ---------- Process steps ---------- */
.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
}
.process-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.process-step p { font-size: .88rem; margin-bottom: 0; }
.process-step::after {
  content: '';
  position: absolute;
  top: 3rem;
  right: -.5rem;
  width: 1rem;
  height: 1px;
  background: var(--gold-light);
}
.process-step.is-last::after { display: none; }
@media (max-width: 991.98px) {
  .process-step::after { display: none; }
}

/* ---------- Industries ---------- */
.industry-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  transition: all var(--transition);
}
.industry-item:hover { border-color: var(--gold); background: var(--gold-pale); }
.industry-item svg { color: var(--gold); flex-shrink: 0; }
.industry-item span {
  font-size: .9rem;
  color: var(--ink);
  letter-spacing: .02em;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: var(--gold); letter-spacing: .2em; margin-bottom: 1rem; font-size: .9rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  flex-shrink: 0;
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: .92rem; color: var(--ink); font-weight: 500; }
.testimonial-author span { font-size: .78rem; color: var(--muted); }

/* ---------- Accordion / FAQ ---------- */
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  padding: 1.1rem 1.4rem;
}
.accordion-button:not(.collapsed) {
  background: var(--gold-pale);
  color: var(--gold);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--gold-light); }
.accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}
.accordion-body {
  font-size: .93rem;
  padding: 1.1rem 1.4rem 1.4rem;
  color: var(--body);
}

/* ---------- CTA ---------- */
.cta-section {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(198,161,91,.28);
  border-radius: 50%;
}
.cta-section h2 { color: #fff; }
.cta-section .eyebrow { color: var(--gold-light); }
.cta-section .eyebrow::before { background: var(--gold-light); }
.cta-content { position: relative; z-index: 2; }

/* ---------- Product detail ---------- */
.gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .12s ease-out;
}
.gallery-main.is-zoomed img { transform: scale(2.2); }

.zoom-hint {
  position: absolute;
  bottom: .9rem;
  right: .9rem;
  background: rgba(255,255,255,.92);
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  pointer-events: none;
  transition: opacity var(--transition);
}
.gallery-main.is-zoomed .zoom-hint { opacity: 0; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .6rem;
  margin-top: .75rem;
}
.gallery-thumb {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: var(--cream);
  cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { border-color: var(--gold-light); }
.gallery-thumb.active { border-color: var(--gold); border-width: 2px; }

.product-detail-title { margin-bottom: .75rem; }

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.spec-list li {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.spec-list li strong {
  flex: 0 0 42%;
  max-width: 42%;
  font-weight: 500;
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.spec-list li span { flex: 1; color: var(--body); }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .7rem;
  font-size: .93rem;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.chip {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--body);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .38rem .85rem;
  border-radius: 100px;
  margin: 0 .4rem .5rem 0;
}
.chip-gold { border-color: var(--gold-light); background: var(--gold-pale); color: var(--gold); }

.color-swatch {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--line);
  padding: .35rem .8rem .35rem .4rem;
  border-radius: 100px;
  font-size: .78rem;
  margin: 0 .4rem .5rem 0;
}
.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.enquiry-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.enquiry-panel h3 { font-size: 1.4rem; margin-bottom: .35rem; }
.enquiry-panel .panel-note { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }

.sticky-panel { position: sticky; top: 100px; }
@media (max-width: 991.98px) { .sticky-panel { position: static; } }

.nav-tabs-lux { border-bottom: 1px solid var(--line); gap: .5rem; }
.nav-tabs-lux .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .85rem 1.1rem;
}
.nav-tabs-lux .nav-link:hover { color: var(--gold); border-color: transparent; }
.nav-tabs-lux .nav-link.active {
  color: var(--gold);
  background: transparent;
  border-bottom-color: var(--gold);
}

/* ---------- Forms ---------- */
.form-label {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .45rem;
}
.form-label .req { color: var(--gold); }

.form-control, .form-select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .72rem .95rem;
  font-size: .92rem;
  font-weight: 300;
  color: var(--ink);
  background-color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(198,161,91,.18);
}
.form-control::placeholder { color: #9aaba3; }
.form-control.is-invalid, .form-select.is-invalid { border-color: #c0392b; }
.invalid-feedback { font-size: .8rem; }

textarea.form-control { min-height: 120px; resize: vertical; }

.alert { border: none; border-left: 3px solid; border-radius: var(--radius); font-size: .92rem; }
.alert-success { background: #f2f8f2; border-color: #4c9a5a; color: #2e6b3a; }
.alert-danger  { background: #fdf3f2; border-color: #c0392b; color: #96291d; }
.alert-info    { background: var(--gold-pale); border-color: var(--gold); color: #6c5426; }
.alert-warning { background: #fdf8ec; border-color: #d9a441; color: #8a6414; }

/* ---------- Contact ---------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); }
.contact-card .feature-icon { margin: 0 auto 1.1rem; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--body); margin-bottom: 0; }
.contact-card a:hover { color: var(--gold); }

.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* ---------- Gallery grid ---------- */
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
  border: 1px solid var(--line);
  padding: 0;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,61,46,.86), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: #fff;
  font-size: .85rem;
  text-align: left;
  line-height: 1.4;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--body);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .55rem 1.25rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---------- Blog ---------- */
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-date {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.blog-card-body h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.blog-card-body h3 a { color: var(--ink); }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { font-size: .89rem; flex: 1; margin-bottom: 1rem; }

.blog-content { font-size: 1.02rem; line-height: 1.85; }
.blog-content h2 { font-size: 1.8rem; margin: 2.25rem 0 1rem; }
.blog-content h3 { font-size: 1.4rem; margin: 1.75rem 0 .85rem; }
.blog-content p { margin-bottom: 1.25rem; }
.blog-content ul, .blog-content ol { margin-bottom: 1.25rem; padding-left: 1.25rem; }
.blog-content li { margin-bottom: .5rem; }
.blog-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
}

.sidebar-widget {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.sidebar-post { display: flex; gap: .85rem; margin-bottom: 1rem; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.sidebar-post h4 { font-size: .92rem; margin-bottom: .25rem; line-height: 1.4; }
.sidebar-post h4 a { color: var(--ink); }
.sidebar-post h4 a:hover { color: var(--gold); }
.sidebar-post time { font-size: .72rem; color: var(--muted); letter-spacing: .08em; }

/* ---------- About ---------- */
.about-img-stack { position: relative; }
.about-img-stack img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  border: 6px solid #fff;
}
@media (max-width: 767.98px) { .about-img-accent { position: static; width: 100%; border: none; margin-top: 1rem; } }

.value-item { display: flex; gap: 1.1rem; margin-bottom: 1.75rem; }
.value-item .feature-icon { margin-bottom: 0; flex-shrink: 0; width: 46px; height: 46px; }
.value-item h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.value-item p { font-size: .9rem; margin-bottom: 0; }

.stat-band { background: var(--ink); color: #fff; }
.stat-band .stat-item { text-align: center; padding: 1rem 0; }
.stat-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-band span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(21,61,46,.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  padding: .25rem .75rem;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}

/* ---------- Floating buttons ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); }

/* ---------- Pagination ---------- */
.pagination { gap: .35rem; margin-top: 3rem; }
.page-link {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  color: var(--body);
  font-size: .85rem;
  padding: .55rem .9rem;
  min-width: 42px;
  text-align: center;
}
.page-link:hover { background: var(--gold-pale); border-color: var(--gold-light); color: var(--gold); }
.page-item.active .page-link { background: var(--gold); border-color: var(--gold); color: #fff; }
.page-item.disabled .page-link { color: #a8b5ae; background: #fff; }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state svg { color: var(--line); margin-bottom: 1.25rem; }
.empty-state h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.empty-state p { color: var(--muted); margin-bottom: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  color: var(--body);
  padding: 4.5rem 0 0;
  font-size: .9rem;
  border-top: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  align-items: center;
  width: min(100%, 190px);
  padding: 0;
  margin-bottom: 1.25rem;
  background: var(--white);
}
.footer-logo { display: block; width: 100%; height: auto; }
.footer-brand .brand-mark { border-color: var(--gold); color: var(--gold); }
.footer-brand .brand-name { color: var(--ink); font-size: 1.2rem; }
.footer-about { font-size: .88rem; line-height: 1.75; margin: 1.25rem 0 1.5rem; }

.footer-heading {
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: var(--body); font-size: .88rem; }
.footer-links a:hover { color: var(--gold-light); padding-left: .3rem; }

.footer-contact li { margin-bottom: 1rem; line-height: 1.6; font-size: .86rem; }
.footer-contact li span {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .2rem;
}
.footer-contact a { color: var(--body); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-social a.is-disabled { opacity: .55; pointer-events: none; }

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
