/* disclaimer.css — extracted from disclaimer.php */

/* ============================================================
   DISCLAIMER PAGE — Found Bhutan
   Navy #0e2d45 + Gold #ffc21a
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Source+Serif+4:opsz,wght@8..60,300;8..60,400;8..60,500&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --navy:        #0e2d45;
  --navy-mid:    #163d5e;
  --navy-light:  #1e4f7a;
  --gold:        #ffc21a;
  --gold-dark:   #d9a200;
  --gold-pale:   #fff8e1;
  --white:       #ffffff;
  --off-white:   #f8f6f2;
  --text:        #1c1c1c;
  --text-mid:    #3d3d3d;
  --text-soft:   #666666;
  --border:      rgba(14,45,69,0.10);
  --shadow-sm:   0 2px 12px rgba(14,45,69,0.08);
  --shadow-md:   0 8px 32px rgba(14,45,69,0.12);
  --radius:      10px;
  --ease:        all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', system-ui, sans-serif; background: var(--off-white); color: var(--text); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Hero ---- */
.dl-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 80px 0 72px;
}

/* Diagonal gold stripe */
.dl-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,194,26,0.07) 100%);
  pointer-events: none;
}

/* Dot-grid texture */
.dl-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,194,26,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.dl-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dl-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.dl-hero__tag::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.dl-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.01em;
}
.dl-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.dl-hero__subtitle {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.dl-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.dl-hero__meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  display: inline-block;
}

/* Gold bottom bar */
.dl-hero__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

/* ---- Breadcrumb ---- */
.dl-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.dl-breadcrumb__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-soft);
}
.dl-breadcrumb__inner a { color: var(--text-soft); transition: color 0.2s; }
.dl-breadcrumb__inner a:hover { color: var(--navy); }
.dl-breadcrumb__sep { opacity: 0.35; }
.dl-breadcrumb__current { color: var(--navy); font-weight: 500; }

/* ---- Page layout ---- */
.dl-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

/* ---- Main content ---- */
.dl-content { min-width: 0; }

.dl-intro {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 40px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* Clause cards */
.dl-clauses {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dl-clause {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--ease);
  cursor: pointer;
}
.dl-clause:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,194,26,0.3);
  transform: translateY(-1px);
}

.dl-clause__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
}

.dl-clause__num {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
}
.dl-clause:hover .dl-clause__num {
  background: var(--gold);
  color: var(--navy);
}

.dl-clause__title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.dl-clause__arrow {
  font-size: 13px;
  color: var(--text-soft);
  transition: transform 0.3s ease;
}
.dl-clause.open .dl-clause__arrow { transform: rotate(180deg); }

.dl-clause__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.dl-clause.open .dl-clause__body {
  max-height: 400px;
  padding: 0 28px 24px;
}

.dl-clause__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* Closing note */
.dl-closing {
  margin-top: 32px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.dl-closing__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.dl-closing__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}
.dl-closing__text strong { color: var(--gold); font-style: italic; }

/* ---- Sidebar ---- */
.dl-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dl-sidebar-nav {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.dl-sidebar-nav__head {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dl-sidebar-nav__icon { font-size: 14px; }
.dl-sidebar-nav__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.dl-sidebar-nav__body { padding: 10px 0; }
.dl-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: var(--ease);
  cursor: pointer;
}
.dl-nav-link:hover {
  color: var(--navy);
  border-left-color: var(--gold);
  background: var(--gold-pale);
}
.dl-nav-link__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  opacity: 0.6;
  min-width: 16px;
}

.dl-sidebar-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
}
.dl-sidebar-card__icon { font-size: 26px; margin-bottom: 12px; }
.dl-sidebar-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.dl-sidebar-card__text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.dl-sidebar-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--ease);
}
.dl-sidebar-card__btn:hover { background: #ffe066; transform: translateY(-1px); }

/* ---- Reveal animations ---- */
.dl-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.dl-reveal.dl-in { opacity: 1; transform: translateY(0); }
.dl-d1 { transition-delay: 0.08s; }
.dl-d2 { transition-delay: 0.15s; }
.dl-d3 { transition-delay: 0.22s; }

/* Hero load animation */
.dl-hero__inner > * { animation: dlFadeUp 0.65s ease both; }
.dl-hero__tag      { animation-delay: 0.05s; }
.dl-hero__title    { animation-delay: 0.18s; }
.dl-hero__subtitle { animation-delay: 0.28s; }
.dl-hero__meta     { animation-delay: 0.36s; }

@keyframes dlFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .dl-layout { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 40px; }
  .dl-sidebar { position: static; }
}
@media (max-width: 600px) {
  .dl-hero__inner    { padding: 0 24px; }
  .dl-intro          { padding: 24px 20px; }
  .dl-clause__header { padding: 18px 20px; }
  .dl-clause.open .dl-clause__body { padding: 0 20px 20px; }
  .dl-closing        { padding: 22px 20px; flex-direction: column; gap: 12px; }
  .dl-breadcrumb__inner { padding: 0 20px; }
}
