/* ============================================================
   Dragon Wealth — Main Stylesheet
   ============================================================

   1. CSS Variables & Design Tokens
   2. Reset & Base
   3. Typography
   4. Layout Utilities
   5. Navigation
   6. Hero Section (Home)
   7. Page Heroes (inner pages)
   8. Section: Services
   9. Section: Trust Bar
   10. Section: About Teaser
   11. Section: Approach Teaser / Timeline
   12. Section: Blog / Resources Cards
   13. Section: Values
   14. Section: Who We Are Content
   15. Section: What We Do Services
   16. Section: Contact
   17. CTA Banners
   18. Footer
   19. Disclaimer Page
   20. Responsive
   ============================================================ */


/* ============================================================
   1. CSS Variables & Design Tokens
   ============================================================ */
:root {
  --navy:       #0B1B38;
  --navy-mid:   #132244;
  --navy-light: #1C3260;
  --gold:       #C9A050;
  --gold-light: #E2B96A;
  --gold-dark:  #A07830;
  --teal:       #2A7DB5;
  --teal-light: #4499CC;
  --cream:      #F8F6F1;
  --cream-dark: #EDE9E1;
  --white:      #FFFFFF;
  --gray-light: #F3F4F6;
  --gray:       #6B7280;
  --gray-dark:  #374151;
  --text-dark:  #111827;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --max-width:   1200px;
  --section-pad: 100px;
  --section-pad-sm: 60px;

  --radius:      4px;
  --radius-md:   8px;
  --transition:  0.3s ease;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
}


/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}


/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(28px, 3.2vw, 42px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
h5 { font-size: 18px; }

p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-dark);
}

.lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--gray-dark);
}

.text-white p,
.text-white .lead {
  color: rgba(255,255,255,0.82);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-title + p,
.section-title + .lead {
  margin-bottom: 40px;
}


/* ============================================================
   4. Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
}

.section--navy-mid {
  background: var(--navy-mid);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.text-center { text-align: center; }
.text-white  { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,160,80,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
}

.divider--center {
  margin: 20px auto 32px;
}


/* ============================================================
   5. Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: var(--navy);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav__logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--gold);
}

.nav__links a.active::after {
  background: var(--gold);
  width: 100%;
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--white);
  transition: color var(--transition);
}

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--gold);
}

.nav__mobile .nav__mobile-cta {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 15px;
}


/* ============================================================
   6. Hero Section (Home)
   ============================================================ */
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  background-image: url('../assets/main_bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay — keeps text readable over any photo */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(to right, rgba(11,27,56,0.82) 0%, rgba(11,27,56,0.55) 60%, rgba(11,27,56,0.30) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(42,125,181,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,160,80,0.06) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__content h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
}

.hero__content h1 strong {
  font-weight: 700;
  display: block;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.hero__lead {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   7. Page Heroes (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(42,125,181,0.12) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.page-hero h3 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
}

.page-hero__lead {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

.page-hero__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
  color: var(--gold);
}

.page-hero__breadcrumb span {
  color: var(--gold);
}


/* ============================================================
   8. Section: Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--navy-light);
}

.service-card {
  background: var(--navy-mid);
  padding: 48px 36px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  background: var(--navy-light);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-card h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.65;
}

/* Services detail (what-we-do page) */
.service-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.service-block__icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.service-block__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-block__meta h3 {
  margin-bottom: 4px;
}

.service-block__meta .eyebrow {
  margin-bottom: 0;
}

.service-block p {
  max-width: 720px;
  margin-bottom: 16px;
}


/* ============================================================
   9. Section: Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--gold);
  padding: 48px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.trust-item {
  padding: 0 40px;
  border-right: 1px solid rgba(11,27,56,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item__number {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}


/* ============================================================
   10. Section: About Teaser (split)
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-split__left {
  background: var(--navy);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-split__left::after {
  content: '"';
  font-family: var(--font-serif);
  font-size: 320px;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -60px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.about-split__quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.about-split__right {
  background: var(--cream);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__right p {
  margin-bottom: 20px;
}

.about-split__right .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap var(--transition);
  margin-top: 8px;
}

.about-split__right .link-arrow:hover {
  gap: 14px;
  color: var(--gold-dark);
}


/* ============================================================
   11. Section: Approach Teaser / Timeline
   ============================================================ */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step;
}

.approach-step {
  position: relative;
  padding-top: 24px;
}

.approach-step__number {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.approach-step h4 {
  margin-bottom: 12px;
}

.approach-step p {
  font-size: 15px;
}

/* Full timeline (our-approach page) */
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--cream-dark);
}

.timeline-item {
  position: relative;
  padding: 0 0 56px 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__dot {
  position: absolute;
  left: -52px;
  top: 8px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  border: 3px solid var(--cream-dark);
  transition: border-color var(--transition);
}

.timeline-item:hover .timeline-item__dot {
  border-color: var(--gold);
}

.timeline-item h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.timeline-item p {
  max-width: 600px;
}


/* ============================================================
   12. Section: Blog / Resources Cards
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card__image {
  height: 200px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.blog-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.blog-card__image-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,0.15);
  stroke: currentColor;
  fill: none;
}

.blog-card__body {
  padding: 28px 28px 32px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.blog-card__date {
  font-size: 13px;
  color: var(--gray);
}

.blog-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.3;
}

.blog-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-card__link:hover {
  gap: 12px;
}


/* ============================================================
   13. Section: Values (who-we-are)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card {
  padding: 40px 28px;
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  color: var(--teal);
  margin-bottom: 20px;
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.value-card h4 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray);
}


/* ============================================================
   14. Section: Who We Are Content
   ============================================================ */
.mission-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  font-style: italic;
  padding-left: 28px;
  border-left: 4px solid var(--gold);
  position: sticky;
  top: 120px;
}

.story-content p {
  margin-bottom: 20px;
}

.story-content p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   15. Section: What We Do Services Detail
   ============================================================ */
.services-intro {
  max-width: 680px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.service-detail-card {
  padding: 44px 40px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-detail-card:hover::before {
  opacity: 1;
}

.service-detail-card__icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--navy);
  transition: background var(--transition);
}

.service-detail-card:hover .service-detail-card__icon {
  background: var(--navy);
  color: var(--gold);
}

.service-detail-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-detail-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-card p {
  font-size: 15px;
  margin-bottom: 16px;
}

.service-detail-card p:last-of-type {
  margin-bottom: 0;
}


/* ============================================================
   16. Section: Contact
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--navy);
}

.contact-info > p {
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.contact-detail__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-detail__text p,
.contact-detail__text a {
  font-size: 16px;
  color: var(--navy);
  margin: 0;
}

.contact-detail__text a:hover {
  color: var(--teal);
}

.fsp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-top: 32px;
}

.fsp-badge__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.fsp-badge__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* Contact Form */
.contact-form {
  background: var(--cream);
  padding: 48px 44px;
  border-radius: var(--radius-md);
}

.contact-form h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 15px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,27,56,0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-error {
  font-size: 12px;
  color: #EF4444;
  margin-top: 6px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #065F46;
  font-size: 15px;
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.map-container {
  margin-top: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ============================================================
   17. CTA Banners
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(42,125,181,0.1) 0%, transparent 70%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 300;
}

.cta-banner h2 strong {
  font-weight: 700;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   18. Footer
   ============================================================ */
.footer {
  background: #070F20;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-bottom: 24px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer__col h6 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer__contact-item strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.footer__contact-item a,
.footer__contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

.footer__fsca {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  line-height: 1.6;
}


/* ============================================================
   19. Disclaimer Page
   ============================================================ */
.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content h2 {
  font-size: 28px;
  color: var(--navy);
  margin: 40px 0 16px;
}

.disclaimer-content h2:first-child {
  margin-top: 0;
}

.disclaimer-content p {
  margin-bottom: 16px;
}

.disclaimer-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.disclaimer-content ul li {
  font-size: 16px;
  color: var(--gray-dark);
  margin-bottom: 8px;
  line-height: 1.65;
}


/* ============================================================
   20. Responsive
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .container {
    padding: 0 28px;
  }

  .services-grid,
  .approach-steps,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding: 120px 0 80px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .approach-steps,
  .blog-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(11,27,56,0.2);
    padding: 0 0 32px;
  }

  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__left,
  .about-split__right {
    padding: 56px 28px;
  }

  .mission-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pull-quote {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .timeline {
    padding-left: 48px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item__dot {
    left: -48px;
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}


/* ============================================================
   CYCLE DIAGRAM (our-approach page)
   ============================================================ */

/* Base: show timeline, hide diagram */
.cycle-diagram { display: none; }

.cycle-coda {
  text-align: center;
  font-style: italic;
  font-size: 15px;
  color: var(--gray);
  margin-top: 48px;
}

/* Desktop: show diagram, hide timeline */
@media (min-width: 960px) {
  .cycle-timeline { display: none; }

  .cycle-diagram {
    display: block;
    position: relative;
    width: 900px;
    max-width: 900px;
    height: 780px;
    margin: 0 auto;
  }

  /* Ring */
  .cycle-ring {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    left: 260px;
    top: 200px;
  }

  /* "Your Life" centre label */
  .cycle-hub {
    position: absolute;
    left: 450px;
    top: 390px;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
    line-height: 1.25;
    pointer-events: none;
  }

  /* Directional arrow at ~234° on ring (between node 5 and node 1) */
  .cycle-arrow {
    position: absolute;
    left: 338px;
    top: 236px;
    transform: translate(-50%, -50%) rotate(-36deg);
    font-size: 10px;
    color: var(--gold);
    line-height: 1;
  }

  /* Node base */
  .cycle-node {
    position: absolute;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
  }

  .cycle-node__disc {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
  }

  .cycle-node__content {
    position: absolute;
    width: 210px;
  }

  .cycle-node__content strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 6px;
  }

  .cycle-node__content p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--gray);
    margin: 0;
  }

  /* Node positions (disc centre, ring centre at 450,390 r=190) */
  .cycle-node--plan    { left: 450px; top: 200px; } /* 270° — top  */
  .cycle-node--folio   { left: 631px; top: 331px; } /* 342° — right */
  .cycle-node--test    { left: 562px; top: 544px; } /* 54°  — bottom-right */
  .cycle-node--balance { left: 338px; top: 544px; } /* 126° — bottom-left */
  .cycle-node--eval    { left: 269px; top: 331px; } /* 198° — left */

  /* Plan: description above disc */
  .cycle-node--plan .cycle-node__content {
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  /* Portfolio: description to the right */
  .cycle-node--folio .cycle-node__content {
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
  }

  /* Test: description below-right */
  .cycle-node--test .cycle-node__content {
    top: calc(100% + 12px);
    left: 0;
    text-align: left;
  }

  /* Balance: description below-left */
  .cycle-node--balance .cycle-node__content {
    top: calc(100% + 12px);
    right: 0;
    text-align: right;
  }

  /* Evaluate: description to the left */
  .cycle-node--eval .cycle-node__content {
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
  }
}
