/* =============================================================
   Namish Distributors Pvt. Ltd. — Authorised Sales Promoter
   Shree Cement Limited
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --gold: #C8A24B;
  --gold-soft: #D9B96A;
  --gold-deep: #8E6F2C;
  --ink: #0E1117;       /* near-black, slightly cool */
  --ink-2: #1B2028;
  --slate: #2A313D;
  --bone: #F5F1EA;      /* warm off-white */
  --bone-2: #ECE6DA;
  --paper: #FAFAF7;
  --rule: rgba(14, 17, 23, 0.12);
  --rule-light: rgba(14, 17, 23, 0.06);
  --shadow-sm: 0 1px 2px rgba(14,17,23,0.06), 0 2px 6px rgba(14,17,23,0.04);
  --shadow-md: 0 8px 24px rgba(14,17,23,0.10), 0 2px 6px rgba(14,17,23,0.06);
  --shadow-lg: 0 24px 60px rgba(14,17,23,0.18), 0 8px 20px rgba(14,17,23,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- TYPOGRAPHY ---------- */

.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow.on-dark { color: var(--gold); }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.015em; }

/* ---------- LAYOUT HELPERS ---------- */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.wide {
  max-width: 1380px;
}

section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ---------- TOP NOTICE BAR ---------- */

.notice {
  background: var(--ink);
  color: var(--bone);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 9px 0;
  text-align: center;
}
.notice strong { color: var(--gold); font-weight: 600; }

/* ---------- HEADER / NAV ---------- */

header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex; align-items: center; gap: 14px;
}
.brand-mark {
  width: 56px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  position: relative;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { line-height: 1.05; }
.brand-text .nm {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  display: block;
}
.brand-text .sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 2px;
  display: block;
}
@media (max-width: 600px) {
  .brand-text .nm { font-size: 1.4rem; }
  .brand-text .sub { font-size: 0.6rem; letter-spacing: 0.14em; }
  .brand-mark { width: 44px; height: 34px; }
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--bone);
  padding: 12px 22px;
  font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

.menu-toggle { display: none; }

@media (max-width: 920px) {
  .nav-links, .nav-cta.desktop-only { display: none; }
  .menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 28px; height: 22px; justify-content: center; align-items: center;
  }
  .menu-toggle span {
    display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 0.25s;
  }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 24px 28px 32px;
    border-bottom: 1px solid var(--rule);
  }
}

/* ---------- HERO ---------- */

.hero {
  background: var(--ink);
  color: var(--bone);
  position: relative; overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 162, 75, 0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(200, 162, 75, 0.08), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero .container { position: relative; z-index: 2; }

/* Firm name stamp — prominent display of company name */
.firmstamp {
  margin: 20px 0 14px;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(200, 162, 75, 0.3);
  border-bottom: 1px solid rgba(200, 162, 75, 0.3);
  display: inline-block;
  padding-right: 60px;
}
.firmstamp-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--bone);
}
.firmstamp-suffix {
  display: block;
  margin-top: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 600px) {
  .firmstamp { padding-right: 24px; }
  .firmstamp-suffix { font-size: 0.68rem; letter-spacing: 0.22em; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 60px; } }

.hero h1.display {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin: 12px 0 28px;
  color: var(--bone);
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.hero p.lede {
  font-size: 1.08rem; line-height: 1.7;
  color: rgba(245, 241, 234, 0.78);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-meta {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 40px; padding-top: 40px;
  border-top: 1px solid rgba(200, 162, 75, 0.25);
  margin-top: 48px;
}
@media (max-width: 600px) { .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; } }
.hero-meta dt {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 6px;
}
.hero-meta dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--bone);
  font-weight: 600;
}

.hero-card {
  background: var(--ink-2);
  border: 1px solid rgba(200, 162, 75, 0.22);
  padding: 36px 32px;
  position: relative;
}
.hero-card::before {
  content: ''; position: absolute; top: -1px; left: -1px; width: 40px; height: 40px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
}
.hero-card::after {
  content: ''; position: absolute; bottom: -1px; right: -1px; width: 40px; height: 40px;
  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
}
.hero-card .label { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;}
.hero-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; line-height: 1.2; margin-bottom: 14px; color: var(--bone);
}
.hero-card p { font-size: 0.95rem; color: rgba(245, 241, 234, 0.7); margin-bottom: 22px; }
.hero-card ul { list-style: none; }
.hero-card li {
  display: flex; gap: 10px; padding: 11px 0;
  font-size: 0.9rem; color: rgba(245,241,234,0.85);
  border-top: 1px solid rgba(200, 162, 75, 0.16);
}
.hero-card li:first-child { border-top: none; }
.hero-card li::before {
  content: '✓'; color: var(--gold); font-weight: 700;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold); color: var(--ink);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); box-shadow: var(--shadow-md);}
.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1px solid rgba(245, 241, 234, 0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--ink); color: var(--bone);
}
.btn-dark:hover { background: var(--slate); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- AUTHORISED STRIP ---------- */

.authorised {
  background: var(--bone);
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.authorised .row {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.authorised .copy {
  font-size: 0.84rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate); font-weight: 500;
}
.authorised .copy strong { color: var(--ink); font-weight: 700; letter-spacing: 0.14em; }
.authorised .partner {
  display: flex; align-items: center; gap: 18px;
}
.authorised .partner img { height: 44px; width: auto; }

/* ---------- SECTION HEADINGS ---------- */

.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 64px;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}
.section-head h2.display {
  font-size: clamp(2rem, 3.6vw, 3rem);
  max-width: 580px;
}
.section-head h2 .underline {
  background-image: linear-gradient(to right, var(--gold), var(--gold));
  background-position: 0 88%;
  background-repeat: no-repeat;
  background-size: 100% 6px;
  padding: 0 2px;
}
.section-head .copy { color: var(--slate); font-size: 1rem; line-height: 1.7; max-width: 460px; }

/* ---------- PRODUCT CARDS (HOMEPAGE) ---------- */

.products {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bone);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--rule-light);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card .img-wrap {
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, #fafaf7 0%, #ece6da 100%);
  padding: 28px;
  position: relative;
}
.product-card .img-wrap img {
  max-height: 100%; max-width: 80%; width: auto; height: auto;
  filter: drop-shadow(0 12px 24px rgba(14,17,23,0.18));
  transition: transform 0.4s ease;
}
.product-card:hover .img-wrap img { transform: translateY(-6px); }

.product-card .body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; flex-grow: 1;
}
.product-card .tag {
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 12px;
}
.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 8px; color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}
.product-card .tagline {
  color: var(--slate); font-size: 0.92rem; margin-bottom: 16px;
}
.product-card .feat {
  list-style: none; margin-bottom: 20px;
  font-size: 0.86rem;
}
.product-card .feat li {
  padding: 7px 0; border-bottom: 1px solid var(--rule-light);
  display: flex; align-items: center; gap: 8px; color: var(--slate);
}
.product-card .feat li::before {
  content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0;
}
.product-card .feat li:last-child { border-bottom: none; }
.product-card .more {
  margin-top: auto;
  font-size: 0.86rem; font-weight: 600;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.06em;
}
.product-card .more::after {
  content: '→';
  transition: transform 0.25s ease;
}
.product-card:hover .more::after { transform: translateX(5px); color: var(--gold-deep); }

/* ---------- WHY US ---------- */

.why {
  background: var(--bone);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bone);
  transition: background 0.3s ease;
}
.why-cell:hover { background: var(--bone-2); }
.why-cell .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--gold-deep); margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.why-cell h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 600;
}
.why-cell p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }

/* ---------- COVERAGE ---------- */

.coverage {
  background: var(--ink);
  color: var(--bone);
  position: relative;
}
.coverage h2.display { color: var(--bone); }
.coverage .section-head .copy { color: rgba(245,241,234,0.7); }
.coverage h2 .underline {
  background-image: linear-gradient(to right, var(--gold), var(--gold));
}

.cov-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .cov-grid { grid-template-columns: 1fr; gap: 40px; } }

.cov-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 32px;
}
.cov-list li {
  list-style: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 162, 75, 0.16);
  font-size: 0.95rem;
  color: rgba(245,241,234,0.88);
  display: flex; justify-content: space-between; align-items: center;
}
.cov-list li::after {
  content: '↗'; color: var(--gold); font-size: 0.95rem; opacity: 0.6;
}

.cov-stats {
  background: var(--ink-2);
  padding: 36px 30px;
  border: 1px solid rgba(200, 162, 75, 0.22);
}
.cov-stats h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(200,162,75,0.22);
}
.cov-stat {
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,241,234,0.08);
}
.cov-stat:last-child { border-bottom: none; }
.cov-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem; font-weight: 600;
  color: var(--bone); line-height: 1;
}
.cov-stat .lbl {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,241,234,0.6); margin-top: 6px;
}

/* ---------- TESTIMONIAL / PULL QUOTE ---------- */

.pullquote {
  background: var(--bone);
  text-align: center;
}
.pullquote blockquote {
  max-width: 880px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
.pullquote blockquote::before, .pullquote blockquote::after {
  content: '"'; color: var(--gold); font-size: 3rem; line-height: 0; vertical-align: -0.3em;
}
.pullquote .attrib {
  margin-top: 28px;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}

/* ---------- CTA STRIP ---------- */

.cta-strip {
  background: var(--gold);
  color: var(--ink);
  padding: 64px 0;
}
.cta-strip .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-strip h2.display {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 700px;
  color: var(--ink);
}
.cta-strip .btn-dark {
  font-size: 1rem; padding: 16px 32px;
}

/* ---------- FOOTER ---------- */

footer.site {
  background: var(--ink);
  color: var(--bone);
  padding: 72px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-grid h5 {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 600;
}
.foot-grid ul { list-style: none; }
.foot-grid li { padding: 5px 0; font-size: 0.92rem; color: rgba(245,241,234,0.7); }
.foot-grid li a:hover { color: var(--gold); }

.foot-brand p { font-size: 0.92rem; color: rgba(245,241,234,0.65); line-height: 1.7; max-width: 360px; margin-top: 18px; }
.foot-brand .brand-text .nm { color: var(--bone); }
.foot-brand .brand-mark {
  background: var(--bone);
  border-radius: 4px;
  width: 56px; height: 42px;
  padding: 4px;
}
.foot-brand .brand-mark img { width: 100%; height: 100%; object-fit: contain; }

.foot-meta {
  border-top: 1px solid rgba(245,241,234,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(245,241,234,0.55);
}

.foot-contact-row {
  display: flex; flex-direction: column; gap: 8px;
}
.foot-contact-row span { font-size: 0.92rem; color: rgba(245,241,234,0.85); }
.foot-contact-row .lab { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: -3px; margin-top: 8px;}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

.page-banner {
  background: var(--ink);
  color: var(--bone);
  padding: 96px 0 72px;
  position: relative;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(200, 162, 75, 0.16), transparent 60%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .crumb {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.page-banner h1.display {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--bone);
  max-width: 900px;
}
.page-banner h1 .accent { color: var(--gold); font-style: italic; }
.page-banner p {
  font-size: 1.05rem; color: rgba(245,241,234,0.72);
  max-width: 660px; margin-top: 22px;
}

/* product detail block */
.product-detail {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.product-detail:nth-child(even) {
  background: var(--bone);
}
.pd-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; gap: 48px; } }

.pd-grid.flip { direction: rtl; }
.pd-grid.flip > * { direction: ltr; }

.pd-image {
  height: 520px;
  background: linear-gradient(165deg, #fafaf7 0%, #ece6da 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  position: relative;
  border: 1px solid var(--rule-light);
}
.product-detail:nth-child(even) .pd-image {
  background: linear-gradient(165deg, var(--paper) 0%, #e0d8c5 100%);
}
.pd-image img {
  max-height: 100%; max-width: 70%; width: auto; height: auto;
  filter: drop-shadow(0 18px 36px rgba(14,17,23,0.24));
}
.pd-image::before {
  content: ''; position: absolute; top: 24px; left: 24px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
}
.pd-image::after {
  content: ''; position: absolute; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
}

.pd-body .tag {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-deep); margin-bottom: 14px;
}
.pd-body h2.display {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}
.pd-body .sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 20px;
}
.pd-body p.long {
  color: var(--slate); line-height: 1.75; margin-bottom: 28px;
}
.pd-feats {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
  margin-bottom: 32px;
}
@media (max-width: 600px) { .pd-feats { grid-template-columns: 1fr; } }
.pd-feats li {
  padding-left: 24px; position: relative;
  font-size: 0.94rem; color: var(--ink-2);
}
.pd-feats li::before {
  content: '◆'; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: 0.7rem;
}

.pd-uses {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-top: 28px;
}
.pd-uses h5 {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px; font-weight: 600;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block; padding: 7px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.82rem; color: var(--slate);
  background: var(--paper);
}
.product-detail:nth-child(even) .chip { background: var(--bone-2); }

.pd-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-intro .grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
}
@media (max-width: 900px) { .about-intro .grid { grid-template-columns: 1fr; gap: 48px; } }
.about-intro h2.display {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 28px;
}
.about-intro p { color: var(--slate); margin-bottom: 18px; line-height: 1.75; }
.about-meta {
  background: var(--bone);
  padding: 32px 30px;
  border-left: 3px solid var(--gold);
}
.about-meta dt {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 16px; font-weight: 600;
}
.about-meta dt:first-child { margin-top: 0; }
.about-meta dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  margin-top: 4px;
}

.values {
  background: var(--ink);
  color: var(--bone);
}
.values h2.display { color: var(--bone); }
.values .section-head .copy { color: rgba(245,241,234,0.7); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 36px 28px;
  background: var(--ink-2);
  border: 1px solid rgba(200,162,75,0.16);
  position: relative;
}
.value-card .nu {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--gold);
  margin-bottom: 14px;
}
.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; margin-bottom: 12px; color: var(--bone);
}
.value-card p { font-size: 0.94rem; color: rgba(245,241,234,0.7); line-height: 1.65; }

/* ---------- JOURNEY TIMELINE ---------- */

.journey {
  list-style: none;
  position: relative;
  padding-left: 0;
}
.journey-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 36px 0;
  position: relative;
  border-top: 1px solid var(--rule);
}
.journey-step:first-child { border-top: 1px solid var(--ink); }
.journey-step:last-child { border-bottom: 1px solid var(--rule); }

.journey-mark {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 4px;
  position: relative;
}
.journey-period {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.005em;
}
.journey-dot {
  position: absolute;
  right: -8px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--gold-deep);
  flex-shrink: 0;
}
.journey-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 75, 0.22);
}

.journey-body {
  padding-left: 30px;
  border-left: 1px solid var(--rule);
}
.journey-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 10px;
}
.journey-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}
.journey-body p {
  color: var(--slate);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 640px;
}
.journey-body p strong { color: var(--ink); font-weight: 600; }

@media (max-width: 760px) {
  .journey-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journey-dot { display: none; }
  .journey-body {
    padding-left: 18px;
    border-left: 2px solid var(--gold);
  }
  .journey-period { font-size: 1.15rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px;
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info { padding-right: 20px; }
.contact-info h2.display { font-size: clamp(2rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.contact-info p.lede { color: var(--slate); margin-bottom: 36px; line-height: 1.7; }

.contact-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-block:last-child { border-bottom: none; }
.contact-block dt {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 6px;
}
.contact-block dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--ink); font-weight: 500;
}
.contact-block dd a:hover { color: var(--gold-deep); }

.enquiry-form {
  background: var(--bone);
  padding: 44px 40px;
  border: 1px solid var(--rule);
  position: relative;
}
.enquiry-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}
.enquiry-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.enquiry-form .sub {
  color: var(--slate); font-size: 0.92rem; margin-bottom: 28px;
}

.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate); font-weight: 600;
  margin-bottom: 6px;
}
.field label .req { color: #B7411E; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit; font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }

.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; gap: 16px; flex-wrap: wrap;
}
.form-foot .note { font-size: 0.78rem; color: var(--slate); }

.toast {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(200, 162, 75, 0.14);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem; color: var(--ink);
}
.toast.show { display: block; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.25s; }
.fade-in.d3 { animation-delay: 0.4s; }
.fade-in.d4 { animation-delay: 0.55s; }

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