/* =============================================
   MESWARI CLEANING SERVICES PTE. LTD.
   meswari-styles.css
   Design language: Premium white-glove / luxury
   ============================================= */

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

/* ── DESIGN TOKENS ─────────────────────── */
:root {
  --forest:      #1C3D2E;
  --forest-deep: #122A1F;
  --forest-mid:  #2A5440;
  --gold:        #C9A84C;
  --gold-lt:     #E2C470;
  --gold-dk:     #A88630;
  --stone:       #F0EDE8;
  --stone-dk:    #E2DDD6;
  --white:       #FFFFFF;
  --charcoal:    #2A2A2A;
  --ink:         #1A1A1A;
  --dust:        #8A8A8A;
  --line:        rgba(26,26,26,0.1);
  --line-lt:     rgba(255,255,255,0.12);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
}

/* ── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--stone);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--body); cursor: pointer; }

/* ── CONTAINER ─────────────────────────── */
.wrap {
  width: min(1280px, 90vw);
  margin-inline: auto;
}
.wrap--wide {
  width: min(1440px, 95vw);
  margin-inline: auto;
}

/* ── SHARED TYPE ───────────────────────── */
.eyebrow {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--lt { color: var(--gold-lt); }

/* ── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1.5px solid transparent;
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
}
.btn--outline-dk {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--forest-deep);
}
.btn--outline-dk:hover {
  background: var(--forest-deep);
  color: var(--white);
}
.btn--outline-lt {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-lt:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}
.btn svg { flex-shrink: 0; }

/* ── ICON WRAPPER ──────────────────────── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease);
}
.navbar.pinned {
  padding: 1rem 0;
  background: rgba(18, 42, 31, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark img {
  width: 24px; height: 24px;
  object-fit: contain;
  display: block;
}
.nav-logo-wordmark {
  display: flex;
  flex-direction: column;
}
.nav-logo-wordmark strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.nav-logo-wordmark span {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

/* links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-lt);
  transition: color 0.25s;
}
.nav-phone:hover { color: var(--white); }
.nav-phone svg { opacity: 0.7; }

/* hamburger */
.nav-burger {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  padding: 0.45rem 0.55rem;
  gap: 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: var(--ease) 0.25s;
}

/* ── MOBILE OVERLAY ────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-lt); }
.mobile-close {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: var(--white);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 199;
  background: var(--gold);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-deep);
}
.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--forest-deep);
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* offset navbar for ticker */
.navbar { top: 36px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--forest-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 36px; /* ticker height */
}

/* left panel */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 4rem 5rem;
  position: relative;
  z-index: 2;
}

/* giant outlined ghost text — the signature element */
.hero-ghost {
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-55%);
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.1);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}
.hero h1 strong {
  font-weight: 600;
  font-style: italic;
  color: var(--gold-lt);
}

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(240,237,232,0.65);
  max-width: 420px;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 2;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-accreditation {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-lt);
  position: relative;
  z-index: 2;
}
.hero-accreditation-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-accreditation-icon svg { color: var(--gold); }
.hero-accreditation-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.1rem;
}
.hero-accreditation-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* right panel — image with gold border frame */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-inner {
  position: absolute;
  inset: 2.5rem 2.5rem 2.5rem 1rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.hero-right-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* corner accent lines on hero image frame */
.hero-right-inner::before,
.hero-right-inner::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  opacity: 0.6;
}
.hero-right-inner::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}
.hero-right-inner::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.hero-stat-pill {
  position: absolute;
  bottom: 4.5rem;
  left: -1rem;
  background: var(--gold);
  color: var(--forest-deep);
  border-radius: var(--r-sm);
  padding: 1rem 1.5rem;
  z-index: 10;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.hero-stat-pill strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.hero-stat-pill span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ═══════════════════════════════════════
   STANDARDS BAR
═══════════════════════════════════════ */
.standards {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.standards-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--line);
}
.standard-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 2.5rem;
  border-right: 1px solid var(--line);
}
.standard-item:last-child { border-right: none; }
.standard-item svg { color: var(--gold); flex-shrink: 0; }
.standard-item p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}
.standard-item p strong {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 1px;
}

/* ═══════════════════════════════════════
   INTRO / ABOUT STRIP
═══════════════════════════════════════ */
.intro {
  padding: 7rem 0;
  background: var(--stone);
}
.intro .wrap {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-divider {
  width: 1px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  justify-self: center;
}
.intro-left h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 1.25rem;
}
.intro-left h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.intro-right p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--dust);
  margin-bottom: 1.25rem;
}
.intro-right p:last-of-type { margin-bottom: 1.75rem; }

/* ═══════════════════════════════════════
   SERVICES — NUMBERED LIST STYLE
═══════════════════════════════════════ */
.services {
  background: var(--white);
  padding: 6rem 0 0;
}
.services-header {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.services-header-left h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 1rem;
}
.services-header-right p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--dust);
  max-width: 380px;
}

/* service accordion-style rows */
.service-rows {}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.25s var(--ease);
  position: relative;
}
.service-row:hover { background: var(--stone); margin: 0 -2.5rem; padding-left: 2.5rem; padding-right: 2.5rem; }

.service-row-num {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  align-self: start;
  padding-top: 0.25rem;
}
.service-row-content {}
.service-row-content h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
.service-row:hover .service-row-content h3 { color: var(--forest); }
.service-row-content p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--dust);
  max-width: 560px;
}
.service-row-img {
  width: 260px;
  height: 150px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-row:hover .service-row-img {
  opacity: 1;
  transform: scale(1);
}
.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════
   PROMISE / WHY US — Full-bleed dark split
═══════════════════════════════════════ */
.promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.promise-img {
  position: relative;
  overflow: hidden;
  background: var(--stone-dk);
  min-height: 420px;
}
.promise-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* gold pinstripe overlay on image */
.promise-img::after {
  content: '';
  position: absolute;
  top: 2rem; bottom: 2rem;
  right: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.5;
}

.promise-content {
  background: var(--forest-deep);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promise-content h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 1rem 0 1.25rem;
}
.promise-content > p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(240,237,232,0.55);
  margin-bottom: 3rem;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.promise-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.promise-item-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise-item-icon svg { color: var(--gold); }
.promise-item-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.promise-item-text p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(240,237,232,0.5);
}

/* ═══════════════════════════════════════
   PROCESS — horizontal timeline
═══════════════════════════════════════ */
.process {
  padding: 7rem 0;
  background: var(--stone);
}
.process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4.5rem;
  gap: 2rem;
}
.process-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 0.75rem;
}
.process-header-right {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--dust);
  max-width: 340px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
/* connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.process-step {
  padding: 0 1.5rem;
  position: relative;
}
.process-step-dot {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.process-step-dot svg { color: var(--gold); transition: color 0.3s; }
.process-step:hover .process-step-dot {
  background: var(--gold);
  border-color: var(--gold);
}
.process-step:hover .process-step-dot svg { color: var(--forest-deep); }

.process-step h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--dust);
}

/* ═══════════════════════════════════════
   TESTIMONIALS — staggered grid
═══════════════════════════════════════ */
.testimonials {
  background: var(--white);
  padding: 7rem 0;
}
.testimonials-header {
  margin-bottom: 4rem;
}
.testimonials-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 0.75rem;
  max-width: 460px;
}

.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
/* middle card pushed down — stagger effect */
.t-grid .t-card:nth-child(2) { margin-top: 2.5rem; }

.t-card {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 2.25rem;
  position: relative;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.t-card:hover {
  box-shadow: 0 16px 40px rgba(26,26,26,0.07);
  transform: translateY(-3px);
}
.t-card-quote {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.18;
  line-height: 0.8;
  margin-bottom: 1.25rem;
  display: block;
}
.t-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.t-card-stars svg { color: var(--gold); }
.t-card-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 1.75rem;
}
.t-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.t-card-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-card-avatar svg { color: rgba(201,168,76,0.6); }
.t-card-author-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.t-card-author-info span {
  font-size: 0.72rem;
  color: var(--dust);
}

/* ═══════════════════════════════════════
   CONTACT — dark left / form right
═══════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.contact-left {
  background: var(--forest-deep);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-left-top h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
}
.contact-left-top > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(240,237,232,0.5);
  max-width: 380px;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--gold); }
.contact-detail-text label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.25rem;
}
.contact-detail-text a,
.contact-detail-text p {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(240,237,232,0.8);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-detail-text a:hover { color: var(--gold-lt); }

.contact-uen {
  padding-top: 2rem;
  border-top: 1px solid var(--line-lt);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* right — form */
.contact-right {
  background: var(--stone);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.contact-right > p {
  font-size: 0.82rem;
  color: var(--dust);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
  opacity: 0.6;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.8rem 1rem;
  font-family: var(--body);
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.fg textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2.5rem;
}

.footer-brand {}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.footer-logo-mark {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark img {
  width: 20px; height: 20px;
  object-fit: contain;
  display: block;
}
.footer-logo-name strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo-name span {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-domain {
  font-size: 0.72rem;
  color: rgba(201,168,76,0.5);
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-lt); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 2.5rem 4rem; }
  .hero-right { display: none; }
  .intro .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-divider { display: none; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row-img { display: none; }
  .promise { grid-template-columns: 1fr; }
  .promise-img { min-height: 320px; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-timeline::before { display: none; }
  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 4rem 2.5rem; }
  .contact-right { padding: 4rem 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .standards-inner { grid-template-columns: 1fr 1fr; }
  .standard-item:nth-child(2) { border-right: none; }
  .standard-item:nth-child(3) { border-top: 1px solid var(--line); }
  .standard-item:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }
}

@media (max-width: 768px) {
  .ticker { display: none; }
  .navbar { top: 0; }
  .hero { padding-top: 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .hero-ghost { display: none; }
  .hero-left { padding: 6rem 1.5rem 3.5rem; }
  .t-grid { grid-template-columns: 1fr; }
  .t-grid .t-card:nth-child(2) { margin-top: 0; }
  .process-timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .standards-inner { grid-template-columns: 1fr; }
  .standard-item { border-right: none; border-bottom: 1px solid var(--line); }
  .promise-content { padding: 4rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-row { grid-template-columns: 48px 1fr; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
