/* Monex Limited — High-luxury midnight + gold theme.
   Centred-logo nav (left links | logo | right links). Lotus brand colours
   exist as decorative accents only; gold is the primary accent. */

:root {
  /* True-black palette — matches the logo's black background so the
     centred logo blends seamlessly into the header. Subtle elevations
     differentiate surfaces without breaking the seamless feel. */
  --midnight:       #000000;
  --midnight-soft:  #0a0a0c;
  --midnight-warm:  #131318;
  --midnight-deep:  #000000;

  /* Cream tones for type and surfaces */
  --paper:          #f4ede0;
  --paper-soft:     #e3dac6;
  --paper-dim:      rgba(244, 237, 224, 0.78);
  --paper-faint:    rgba(244, 237, 224, 0.55);

  /* Gold — primary accent */
  --gold:           #c9a55c;
  --gold-soft:      #e3c489;
  --gold-deep:      #9a7a3e;

  /* Lotus brand colours — decorative use only */
  --lotus-pink:     #e63572;
  --lotus-yellow:   #f4b91a;
  --lotus-cyan:     #2ea9d8;

  /* Functional */
  --accent:         var(--gold);
  --line:           rgba(244, 237, 224, 0.08);
  --line-strong:    rgba(244, 237, 224, 0.18);
  --line-gold:      rgba(201, 165, 92, 0.32);
  --muted:          #6f7588;

  --shadow-md:      0 14px 40px rgba(0, 0, 0, 0.55);
  --shadow-lg:      0 30px 80px rgba(0, 0, 0, 0.65);
  --glow-gold:      0 0 30px rgba(201, 165, 92, 0.28);

  --radius:         3px;
  --radius-lg:      12px;
  --max:            1280px;
  --serif:          "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:           "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--midnight); }

body {
  font-family: var(--sans);
  color: var(--paper);
  background: var(--midnight);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.18;
  color: var(--paper);
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.8rem); font-weight: 300; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
p  { color: var(--paper-dim); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.25rem;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
  opacity: 0.85;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--midnight-deep);
  color: var(--paper-faint);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line);
}
.topbar .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--paper-dim); transition: color .2s; }
.topbar a:hover { color: var(--gold-soft); }
.topbar-right span { margin-left: 1.75rem; }
.topbar-right .pip {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(201, 165, 92, 0.7);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { background: rgba(0, 0, 0, 0.96); }
.site-header.scrolled .nav { padding-top: 0.55rem; padding-bottom: 0.55rem; }
.site-header.scrolled .brand-logo { width: 84px; }
.site-header.scrolled .brand-slogan {
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.site-header.scrolled .brand { gap: 0; }
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  transition: padding .4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.4rem;
}
.nav-left  { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
  position: relative;
  display: inline-block;
  padding: 0.4rem 0;
  text-align: center;
  line-height: 1.25;
  transition: color .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-soft); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
}
.nav-links a:hover::after { opacity: 0.55; }

/* Brand (centred lockup: logo image + live HTML slogan stacked) */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.brand-logo {
  display: block;
  width: 168px;
  height: auto;
  transition: width .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .brand-logo {
  width: 280px;
  transition: none;
  /* Optical alignment: nudge the logo right so its visible centre
     lines up with the slogan's text centre (the slogan's left rule
     starts at x=0 of the brand block, but the logo's lotus has
     internal padding that pushes the visible mark left of true
     centre). Tuned by eye. */
  margin-left: 8px;
}
.site-footer .brand { gap: 0.95rem; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }

/* ---------- Slogan (live HTML rendition of slogan.png) ---------- */
.brand-slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  user-select: none;
  transition: opacity .25s ease;
}
.brand-slogan-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-slogan-rule {
  width: 28px;
  height: 1px;
  flex-shrink: 0;
}
.brand-slogan-rule--pink { background: var(--lotus-pink); }
.brand-slogan-rule--cyan { background: var(--lotus-cyan); }
.brand-slogan-text {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
  /* Compensate for the wide tracking — the right edge picks up the
     trailing letter-spacing as visual margin which would unbalance
     the row. */
  padding-left: 0.32em;
}
.brand-slogan-ornament {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.brand-slogan-ornament-line {
  width: 48px;
  height: 1px;
  flex-shrink: 0;
}
.brand-slogan-ornament-line--left {
  background: linear-gradient(to right, transparent 0%, var(--lotus-yellow) 35%, var(--lotus-pink) 100%);
}
.brand-slogan-ornament-line--right {
  background: linear-gradient(to right, var(--lotus-pink) 0%, var(--lotus-yellow) 65%, transparent 100%);
}
.brand-slogan-ornament-dot {
  width: 6px;
  height: 6px;
  background: var(--lotus-pink);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(230, 53, 114, 0.55);
  flex-shrink: 0;
}

/* Footer slogan — constrained to the logo's width (280px). The text
   sets its natural size and the rule lines flex into whatever space
   is left, so the lockup never overflows the logo. */
.site-footer .brand-slogan { width: 280px; }
.site-footer .brand-slogan-row { width: 100%; }
.site-footer .brand-slogan-rule {
  width: auto;
  flex: 1;
  min-width: 10px;
  max-width: 32px;
}
.site-footer .brand-slogan-text {
  font-size: 9px;
  letter-spacing: 0.26em;
}
.site-footer .brand-slogan-ornament-line { width: 56px; }
.site-footer .brand-slogan-ornament-dot { width: 7px; height: 7px; }

/* Legacy text-based brand mark/text retained but hidden */
.brand-mark, .brand-text { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--midnight);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 237, 224, 0.32);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--midnight);
  border-color: var(--paper);
}

/* Mobile nav toggle — typographic 'Menu' + chevron, not a hamburger */
.nav-toggle {
  display: none;          /* shown only at the mobile breakpoint */
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 0;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.nav-toggle::before { content: "Menu"; }
.nav-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .3s ease;
}
/* When the menu is open, point the chevron up */
.nav-links.open ~ .nav-toggle::after {
  transform: rotate(-135deg) translate(-1px, -1px);
}
.nav-toggle span { display: none; } /* legacy hamburger bars hidden */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(201, 165, 92, 0.16), transparent 55%),
    radial-gradient(ellipse at 12% 88%, rgba(46, 169, 216, 0.06), transparent 50%),
    var(--midnight);
  color: var(--paper);
  padding: 8rem 0 9rem;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.hero h1 { color: var(--paper); margin-bottom: 1.75rem; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--paper-dim);
  max-width: 540px;
  margin-bottom: 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 4rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--line-gold);
}
.hero-stats .stat strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-soft);
  display: block;
  letter-spacing: 0.02em;
}
.hero-stats .stat span {
  font-size: 0.72rem;
  color: var(--paper-faint);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 0.4rem;
  display: block;
}

.hero-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-gold);
  /* No overflow:hidden — the floating .hero-sticker (positioned with
     negative bottom/left) is a child here and was being clipped back
     inside, which made the sticker look smashed into the corner of
     the image. Background clipping is handled on .bg below. */
}
.hero-card .bg {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 18, 36, 0.2), rgba(10, 18, 36, 0.85)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=900&q=80") center/cover no-repeat;
}
.hero-card-inner {
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: var(--paper);
}
.hero-card-badge {
  align-self: flex-start;
  background: rgba(10, 18, 36, 0.6);
  border: 1px solid var(--line-gold);
  color: var(--gold-soft);
  padding: 0.45rem 1rem;
  border-radius: 40px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-card-caption h3 { color: var(--paper); font-size: 1.7rem; margin-bottom: 0.5rem; font-weight: 400; }
.hero-card-caption span { font-size: 0.82rem; color: var(--paper-dim); letter-spacing: 0.14em; }

.hero-sticker {
  position: absolute;
  bottom: -30px;
  left: -35px;
  background: var(--midnight-soft);
  color: var(--paper);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-gold);
  display: flex;
  gap: 0.85rem;
  align-items: center;
  max-width: 250px;
}
.hero-sticker .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(201, 165, 92, 0.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-sticker strong { font-size: 0.9rem; display: block; color: var(--paper); }
.hero-sticker span   { font-size: 0.72rem; color: var(--paper-faint); letter-spacing: 0.1em; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  background: var(--midnight-deep);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.trust-badges {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-badge {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--paper-dim);
  letter-spacing: 0.05em;
  font-weight: 400;
}
.trust-badge small {
  display: block;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-top: 4px;
}

/* ---------- Sections ---------- */
section { padding: 7rem 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}
.section-head p { margin-top: 1.4rem; font-size: 1.05rem; line-height: 1.75; }
.section-head.left { text-align: left; margin-left: 0; }

/* Decorative ornament — used after section heads */
.section-head::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  margin: 1.75rem auto 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.6;
}

/* ---------- Services ---------- */
.services {
  background: var(--midnight);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  position: relative;
  background: var(--midnight-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-lg), var(--glow-gold);
}
.service-media {
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
}
.service-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 36, 0) 50%, rgba(10, 18, 36, 0.7) 100%);
  pointer-events: none;
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  filter: saturate(0.9);
}
.service-card:hover .service-media img { transform: scale(1.05); filter: saturate(1.05); }
.service-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(10, 18, 36, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-gold);
  color: var(--gold-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 40px;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 1;
}
.service-body {
  padding: 2rem 2rem 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 { margin-bottom: 0.75rem; font-weight: 400; }
.service-body p {
  margin-bottom: 1.75rem;
  font-size: 0.96rem;
  color: var(--paper-dim);
  line-height: 1.7;
}
.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap .3s ease, color .3s ease, border-color .3s ease;
}
.service-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 1rem;
}

/* ---------- About ---------- */
.about {
  background: var(--midnight);
  position: relative;
}
.about::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 10%, rgba(201, 165, 92, 0.06), transparent 40%);
  pointer-events: none;
}
.about .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-gold);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.about-accent {
  position: absolute;
  top: 2rem; right: -2rem;
  background: var(--midnight-deep);
  color: var(--paper);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold);
  max-width: 220px;
}
.about-accent strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}
.about-accent span {
  font-size: 0.68rem;
  color: var(--paper-dim);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.about-content h2 { margin-bottom: 1.75rem; }
.about-content p  { margin-bottom: 1.4rem; font-size: 1.04rem; line-height: 1.8; }
.about-list {
  list-style: none;
  margin-top: 2.25rem;
  display: grid;
  gap: 1.1rem;
}
.about-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--paper-dim);
}
.about-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ---------- Wholesale ---------- */
.wholesale {
  background: var(--midnight-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.wholesale::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(201, 165, 92, 0.10), transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(46, 169, 216, 0.04), transparent 45%);
  pointer-events: none;
}
.wholesale .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.wholesale h2 { color: var(--paper); }
.wholesale p  { color: var(--paper-dim); margin: 1.5rem 0 2.25rem; font-size: 1.05rem; line-height: 1.8; }

.wholesale-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.wholesale-feature {
  padding: 1.75rem 1.6rem;
  background: rgba(244, 237, 224, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.wholesale-feature:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  background: rgba(201, 165, 92, 0.04);
}
.wholesale-feature .num {
  font-family: var(--serif);
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold-soft);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.wholesale-feature strong {
  color: var(--paper);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.98rem;
}
.wholesale-feature span {
  font-size: 0.88rem;
  color: var(--paper-dim);
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--midnight); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  background: var(--midnight-soft);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.testimonial:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
}
.testimonial::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.8;
  position: absolute;
  top: 1.25rem; left: 1.75rem;
  opacity: 0.35;
}
.testimonial p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 1.85rem;
  line-height: 1.5;
  position: relative;
  font-weight: 400;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201, 165, 92, 0.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 500;
}
.testimonial-meta strong { display: block; font-size: 0.95rem; color: var(--paper); font-weight: 500; }
.testimonial-meta span   { font-size: 0.78rem; color: var(--paper-faint); letter-spacing: 0.08em; }

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 165, 92, 0.10), transparent 65%),
    var(--midnight-deep);
  position: relative;
}
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.cta-banner::before { top: 0; }
.cta-banner::after  { bottom: 0; }
.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 { margin-bottom: 0.6rem; color: var(--paper); }
.cta-banner p  { color: var(--paper-dim); font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--midnight-deep);
  color: var(--paper-dim);
  padding: 5.5rem 0 0;
  border-top: 1px solid var(--line-gold);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 3.5rem;
  padding-bottom: 4.5rem;
}
.site-footer h4 {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-brand p {
  color: var(--paper-dim);
  margin-top: 1.5rem;
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.75;
}
.footer-col ul { list-style: none; display: grid; gap: 0.85rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--paper-dim);
  transition: color .25s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--paper-dim);
}
.footer-col address a {
  display: block;
  color: var(--gold-soft);
  margin-top: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.85rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  grid-template-columns: none;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: all .25s;
  color: var(--paper);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--midnight);
}

/* ---------- Page hero (service pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse at 75% 35%, rgba(201, 165, 92, 0.14), transparent 55%),
    radial-gradient(ellipse at 18% 85%, rgba(46, 169, 216, 0.06), transparent 55%),
    var(--midnight);
  color: var(--paper);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.45;
}
.page-hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4.5rem;
  align-items: center;
}
.page-hero h1 { color: var(--paper); margin-bottom: 1.4rem; }
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.page-hero p {
  color: var(--paper-dim);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
}
.page-hero-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-gold);
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 1.75rem;
}
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb span { margin: 0 0.55rem; opacity: 0.5; }

/* ---------- Package cards ---------- */
.packages {
  padding: 7rem 0;
  background: var(--midnight);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.package {
  background: var(--midnight-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.package:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-md);
}
.package.featured {
  background:
    radial-gradient(circle at 30% 0%, rgba(201, 165, 92, 0.10), transparent 60%),
    var(--midnight-warm);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}
.package.featured h3,
.package.featured .price { color: var(--paper); }
.package.featured p,
.package.featured ul li  { color: var(--paper-dim); }
.package.featured .package-tag {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}
.package-tag {
  position: absolute;
  top: -12px; left: 2.5rem;
  background: rgba(201, 165, 92, 0.12);
  color: var(--gold-soft);
  border: 1px solid var(--line-gold);
  padding: 0.3rem 0.95rem;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 40px;
  font-weight: 500;
}
.package h3 { margin-bottom: 0.5rem; color: var(--paper); font-weight: 400; }
.package .duration {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 1.75rem;
}
.package .price {
  font-family: var(--serif);
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  font-weight: 300;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}
.package .price-note {
  font-size: 0.78rem;
  color: var(--paper-faint);
  margin-bottom: 1.75rem;
  letter-spacing: 0.06em;
}
.package.featured .price-note { color: var(--paper-dim); }
.package ul {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  gap: 0.75rem;
}
.package ul li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--paper-dim);
  line-height: 1.6;
}
.package ul li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.package .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ---------- Feature row ---------- */
.feature-row {
  background: var(--midnight-soft);
  padding: 7rem 0;
}
.feature-row .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.feature-row.reverse .container > :first-child { order: 2; }
.feature-row-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-gold);
}
.feature-row-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.feature-row-content h2 { margin-bottom: 1.4rem; }
.feature-row-content p  { margin-bottom: 1.4rem; font-size: 1.02rem; line-height: 1.8; }
.feature-list {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
}
.feature-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--paper-dim);
}
.feature-list li strong {
  color: var(--paper);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.feature-icon {
  width: 42px; height: 42px;
  background: rgba(201, 165, 92, 0.10);
  border: 1px solid var(--line-gold);
  color: var(--gold-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-family: var(--serif);
  font-weight: 500;
}

/* ---------- Contact / form ---------- */
.contact-section {
  padding: 7rem 0;
  background: var(--midnight);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
}

/* No-form contact panel — premium services don't ask people to fill
   forms. A direct email lands you with a director, not a queue. */
.contact-direct {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contact-direct h2 { margin-bottom: 1.4rem; }
.contact-direct > p {
  margin: 0 auto 3rem;
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.85;
}
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 3rem;
  text-align: left;
}
.contact-channel {
  display: block;
  padding: 2rem 2.25rem;
  background: var(--midnight-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.contact-channel:hover {
  border-color: var(--line-gold);
  background: rgba(201, 165, 92, 0.04);
  transform: translateY(-3px);
}
.contact-channel-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}
.contact-channel-address {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--paper);
  margin-bottom: 0.4rem;
  word-break: break-word;
}
.contact-channel-note {
  display: block;
  font-size: 0.85rem;
  color: var(--paper-faint);
  letter-spacing: 0.04em;
}
.contact-office {
  display: inline-block;
  margin-top: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-gold);
  text-align: center;
}
.contact-office-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.contact-office address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--paper-dim);
  letter-spacing: 0.04em;
}
.contact-info h2 { margin-bottom: 1.4rem; }
.contact-info p  { margin-bottom: 2.25rem; font-size: 1.02rem; line-height: 1.8; }
.contact-details {
  display: grid;
  gap: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.contact-detail .feature-icon { margin-top: 0.1rem; }
.contact-detail strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--paper);
  font-weight: 500;
}
.contact-detail span {
  color: var(--paper-faint);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--midnight-soft);
  padding: 2.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--midnight-warm);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--paper);
  transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.16);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---------- Legal pages (privacy, terms) ---------- */
.legal-section {
  background: var(--midnight);
  padding: 5rem 0 7rem;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--paper-dim);
}
.legal-content .legal-meta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-gold);
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0.005em;
  margin: 3.25rem 0 1.1rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  margin: 1.85rem 0 0.85rem;
}
.legal-content p { margin: 0 0 1.1rem; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content strong { color: var(--paper); font-weight: 500; }
.legal-content em { font-style: italic; color: var(--gold-soft); }
.legal-content ul {
  list-style: none;
  margin: 0 0 1.4rem;
  padding-left: 1.5rem;
}
.legal-content ul li {
  position: relative;
  padding: 0.15rem 0;
}
.legal-content ul li::before {
  content: "·";
  position: absolute;
  left: -1rem;
  top: 0;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1.4;
}
.legal-content a {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(201, 165, 92, 0.3);
  transition: color .25s ease, border-color .25s ease;
}
.legal-content a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.legal-table {
  width: 100%;
  margin: 0.5rem 0 1.75rem;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--midnight-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.legal-table thead th {
  background: rgba(201, 165, 92, 0.06);
  border-bottom: 1px solid var(--line-gold);
  text-align: left;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.legal-table tbody td {
  padding: 0.95rem 1.25rem;
  border-top: 1px solid var(--line);
  vertical-align: top;
  color: var(--paper-dim);
}
.legal-table tbody tr:first-child td { border-top: 0; }
.legal-table tbody td:first-child {
  color: var(--paper);
  font-weight: 500;
  width: 38%;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.16em; }
  .brand-logo { width: 132px; }
  .site-header.scrolled .brand-logo { width: 72px; }
  .site-header .brand-slogan-text { font-size: 8px; letter-spacing: 0.28em; }
  .site-header .brand-slogan-rule { width: 22px; }
  .site-header .brand-slogan-ornament-line { width: 38px; }
}

@media (max-width: 960px) {
  .hero { padding: 6rem 0 7rem; }
  .hero .container,
  .about .container,
  .wholesale .container,
  .page-hero .container,
  .feature-row .container,
  .feature-row.reverse .container > :first-child,
  .contact-grid,
  .contact-channels {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact-channels { gap: 1.25rem; }
  .feature-row.reverse .container > :first-child { order: initial; }
  .services-grid,
  .testimonials-grid,
  .package-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer .container {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats { gap: 2rem; }
  .hero-sticker { left: 10px; bottom: -20px; }
}

@media (max-width: 760px) {
  /* Mobile nav: brand at top, then a small typographic 'Menu' toggle,
     then the two link rails collapsed by default. Tap the toggle to
     reveal the rails as centred wrapping rows of three. No hamburger. */
  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-columns: none;   /* override desktop grid */
    gap: 0.65rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .brand        { order: 1; }
  .nav-toggle   { order: 2; display: inline-flex; }
  .nav-left     { order: 3; }
  .nav-right    { order: 4; }
  .nav-left,
  .nav-right {
    display: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
  }
  .nav-left.open,
  .nav-right.open { display: flex; }
  /* Active-link underline still works in the stacked layout */
}

@media (max-width: 640px) {
  .container { padding: 0 1.4rem; }
  section, .packages, .contact-section, .feature-row, .legal-section { padding: 4.5rem 0; }
  .legal-content { font-size: 0.95rem; line-height: 1.8; }
  .legal-content h2 { margin-top: 2.5rem; }
  .legal-table { font-size: 0.85rem; }
  .legal-table thead th,
  .legal-table tbody td { padding: 0.75rem 0.85rem; }
  .hero { padding: 4.5rem 0 5.5rem; }
  .hero h1 { font-size: 2.4rem; }
  .brand-logo { width: 106px; }
  .site-header.scrolled .brand-logo { width: 64px; }
  .site-footer .brand-logo { width: 200px; }
  .site-footer .brand-slogan { width: 200px; }
  .site-footer .brand-slogan-text { font-size: 7.5px; letter-spacing: 0.20em; }
  .site-footer .brand-slogan-rule { min-width: 6px; max-width: 18px; }
  .site-footer .brand-slogan-ornament-line { width: 38px; }
  .topbar .inner { justify-content: center; }
  .topbar-left { display: none; }
  .services-grid,
  .testimonials-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.75rem; }
  .hero-stats .stat { min-width: 40%; }
  .wholesale-features { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
