/* ============================================================
   Singdia — Site-wide tokens & reset
   ============================================================ */

:root {
  /* Palette */
  --maroon: #6b1231;
  --maroon-deep: #4a0820;
  --saffron: #e67a2b;
  --gold: #d9a441;
  --gold-soft: #f1d080;
  --rose: #c94f6d;
  --rose-pale: #f6dccf;
  --plum: #4e2357;
  --cream: #fbf5ec;
  --cream-warm: #fdf1de;
  --ink: #2a0a18;
  --ink-soft: #5a2a3c;
  --ink-mute: #846876;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Layout */
  --container: 1200px;
  --container-wide: 1440px;
  --header-h: 90px;
  --header-h-mobile: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Kill any horizontal scroll site-wide (bleeding glows, scrollers, etc.)
   without trapping the fixed header or sticky elements. */
/* Always reserve the scrollbar gutter so short pages (no scrollbar) and long
   pages (scrollbar) have the SAME usable width — otherwise centered/fixed
   elements (header, footer) shift sideways between pages. */
html { overflow-x: clip; scrollbar-gutter: stable; }
body { overflow-x: clip; }

/* Seamless background WITH the decorative glows kept. The seams were the soft
   glow layers being clipped into a hard line at each section's overflow:hidden
   edge. Instead: make light sections transparent (so the body's single cream is
   continuous — no tonal step) and overflow:visible (so each glow bleeds across
   the border and overlaps the neighbour, blending instead of cutting).
   Dark sections (hero, phone, final) keep their own opaque background + clip. */
body .how, body .tst, body .faq, body .why, body .occ, body .lang, body .people, body .mood {
  background: transparent;
  overflow: visible;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
}

/* ============================================================
   Buttons (shared)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  color: #fff;
  padding: 14px 26px;
  font-size: 15px;
  box-shadow:
    0 10px 28px -10px rgba(107, 18, 49, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -10px rgba(107, 18, 49, 0.6);
}
.btn--primary:active { transform: translateY(0); }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--sm { padding: 11px 20px; font-size: 14px; }

.btn--secondary {
  background: rgba(255,255,255,0.7);
  color: var(--maroon);
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(107,18,49,0.2);
}
.btn--secondary:hover {
  background: #fff;
  border-color: var(--maroon);
}

/* ============================================================
   Eyebrow (small label above section headings)
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--saffron);
}

/* ============================================================
   Home "Our story" teaser (links to /about)
   ============================================================ */
.abt { padding: 56px 24px; }
.abt__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.abt__media {
  position: relative;
  display: block;
  width: min(330px, 84%);
  flex: none;
}
.abt__img {
  display: block;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 36px -22px rgba(42, 10, 24, 0.55);
}
.abt__img--1 { width: 100%; aspect-ratio: 4 / 3; }
.abt__img--2 {
  position: absolute;
  right: -14px;
  bottom: -20px;
  width: 47%;
  aspect-ratio: 1 / 1;
  border: 4px solid var(--cream);
  border-radius: 16px;
  transform: rotate(3deg);
}
.abt__body { max-width: 540px; }
.abt__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 12px 0 14px;
}
.abt__title em { font-style: italic; color: var(--maroon); }
.abt__text { font-size: 16px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 20px; }
.abt__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 2px solid rgba(217, 164, 65, 0.55);
  padding-bottom: 2px;
}
.abt__link:hover { border-color: var(--maroon); }
.abt__link span { transition: transform 0.15s ease; }
.abt__link:hover span { transform: translateX(3px); }
@media (min-width: 760px) {
  .abt__inner { flex-direction: row; text-align: left; gap: 52px; }
  .abt .eyebrow { justify-content: flex-start; }
  .abt__media { width: 380px; }
  .abt__body { flex: 1; }
}
