/* ============================================
   Simple Wealth — Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-navy: #152D47;
  --color-navy-light: #1e3a5a;
  --color-gold: #CD8F5E;
  --color-gold-hover: #b87d4e;
  --color-white: #ffffff;
  --color-light-bg: #f8f9fa;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e2e5e9;
  --color-text-muted: #999999;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1200px;
  --section-padding: 48px 20px;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(10, 22, 40, 0.07);
  --shadow-hover: 0 8px 32px rgba(10, 22, 40, 0.12);
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}

h1 { font-size: 2.7rem; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Cormorant Garamond italic for quotes and taglines */
.hero-tagline,
.testimonial-quote,
.pull-quote {
  font-style: italic;
  font-weight: 300;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

.section--grey {
  background: var(--color-light-bg);
}

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

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section__header p {
  color: var(--color-text-light);
  margin-top: 16px;
  font-size: 1.05rem;
}

.section--navy .section__header p {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn--white:hover {
  background: var(--color-light-bg);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: var(--color-white);
  color: var(--color-gold);
  border: 2px solid var(--color-white);
}

.btn--outline-white:hover {
  background: var(--color-light-bg);
  border-color: var(--color-light-bg);
  color: var(--color-gold-hover);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.nav.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

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

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.nav.scrolled .nav__logo img {
  filter: none;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav.scrolled .nav__link {
  color: var(--color-text);
}

.nav__link:hover {
  color: var(--color-gold);
}

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

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav__dropdown.open .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}

.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all var(--transition);
}

.nav__dropdown-menu a:hover {
  background: var(--color-light-bg);
  color: var(--color-gold);
}

.nav__cta {
  display: none;
}

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

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

.nav.scrolled .nav__hamburger span {
  background: var(--color-navy);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-navy);
  z-index: 999;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
}

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

.nav__mobile .mobile-sub {
  padding-left: 20px;
}

.nav__mobile .mobile-sub a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  padding: 8px 0;
}

.nav__mobile .btn {
  margin-top: 16px;
  text-align: center;
}

/* --- Hero --- */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 140px 20px 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero--short {
  min-height: auto;
  padding: 140px 20px 64px;
  position: relative;
  overflow: hidden;
}

.hero--short::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 600px;
  height: 450px;
  opacity: 0.5;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 320' fill='none'%3E%3Cpath d='M40 280 C80 240 100 200 140 180 S220 140 260 120 S340 60 380 40' stroke='%23CD8F5E' stroke-width='2.5' stroke-dasharray='8 6' stroke-linecap='round'/%3E%3Ccircle cx='40' cy='280' r='5' fill='%23CD8F5E'/%3E%3Ccircle cx='140' cy='180' r='4' fill='%23CD8F5E'/%3E%3Ccircle cx='260' cy='120' r='4' fill='%23CD8F5E'/%3E%3Cpath d='M380 40c0-13-10-23-23-23s-23 10-23 23c0 16 23 32 23 32s23-16 23-32z' fill='%23CD8F5E'/%3E%3Ccircle cx='357' cy='38' r='8' fill='%23152D47'/%3E%3Cpath d='M195 152l14-7-5 12z' fill='%23CD8F5E'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 20px;
  max-width: 560px;
}

.hero-highlight {
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: -4%;
  bottom: 0.02em;
  width: 108%;
  height: 0.18em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' fill='none'%3E%3Cpath d='M4 14 C50 4, 150 4, 196 14' stroke='%23CD8F5E' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
  pointer-events: none;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero--short h1 {
  max-width: 672px;
}

.hero--short p {
  max-width: 576px;
}

.hero .btn-group {
  margin-bottom: 40px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
}

/* Avatar stack uses img elements — see photo styles section */

.social-proof__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-proof__text strong {
  color: var(--color-gold);
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: gap var(--transition);
}

.card__link:hover {
  gap: 10px;
}

.card__link svg {
  width: 16px;
  height: 16px;
}

/* Navy section cards */
.section--navy .card {
  background: var(--color-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section--navy .card h3 {
  color: var(--color-white);
}

.section--navy .card p {
  color: rgba(255, 255, 255, 0.65);
}

/* --- Problem / Solution cards --- */
.problem-card,
.solution-card {
  text-align: center;
  padding: 36px 24px;
}

.problem-card .card__icon,
.solution-card .card__icon {
  margin: 0 auto 20px;
}


/* --- Testimonial --- */
.testimonial {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 24px;
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-gold);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  font-style: normal;
}

.testimonial__author {
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial__role {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* --- Google Rating --- */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.google-rating strong {
  color: var(--color-navy);
}

.google-rating a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
}

.google-rating a:hover {
  text-decoration: underline;
}

/* --- Carousel --- */
.carousel {
  overflow: hidden;
  position: relative;
}

.carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .carousel__slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel__slide {
    flex: 0 0 33.333%;
  }
}

.carousel .testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carousel .testimonial-card blockquote {
  flex: 1;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel__btn {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-navy);
}

.carousel__btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel__dot.active {
  background: var(--color-gold);
}

/* --- Why Choose Us --- */
.reasons-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: reasons;
}

.reason {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reason__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.reason h3 {
  margin-bottom: 8px;
}

.reason p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  color: var(--color-gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  max-width: 320px;
  margin: 0 auto;
}

/* --- Documents / What You Get --- */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.doc-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--color-gold);
  transition: all var(--transition);
}

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

.doc-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-gold);
}

.doc-card__icon svg {
  width: 28px;
  height: 28px;
}

.doc-card h3 {
  margin-bottom: 12px;
}

.doc-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  gap: 16px;
}

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  color: var(--color-gold);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer__inner {
  padding: 0 0 20px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--color-navy);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 400px;
  height: 300px;
  opacity: 0.5;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 320' fill='none'%3E%3Cpath d='M40 280 C80 240 100 200 140 180 S220 140 260 120 S340 60 380 40' stroke='%23CD8F5E' stroke-width='2.5' stroke-dasharray='8 6' stroke-linecap='round'/%3E%3Ccircle cx='40' cy='280' r='5' fill='%23CD8F5E'/%3E%3Ccircle cx='140' cy='180' r='4' fill='%23CD8F5E'/%3E%3Ccircle cx='260' cy='120' r='4' fill='%23CD8F5E'/%3E%3Cpath d='M380 40c0-13-10-23-23-23s-23 10-23 23c0 16 23 32 23 32s23-16 23-32z' fill='%23CD8F5E'/%3E%3Ccircle cx='357' cy='38' r='8' fill='%23152D47'/%3E%3Cpath d='M195 152l14-7-5 12z' fill='%23CD8F5E'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

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

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* --- Footer --- */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  margin-bottom: 16px;
}

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

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__nav h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__nav a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

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

.footer__bottom {
  max-width: var(--container-max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.8rem;
}

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

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

/* --- About Us Page --- */
.founder-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.founder-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 16px;
}

.founder-quote cite {
  color: var(--color-text-light);
  font-style: normal;
  font-size: 0.95rem;
}

.bio-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.bio-section__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--color-navy-light);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
}

.bio-section__content h2 {
  margin-bottom: 4px;
}

.bio-section__title {
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.bio-section__credentials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.bio-section__credentials span {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.value-card {
  padding: 32px 28px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-gold);
}

.value-card h3 {
  margin-bottom: 8px;
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

.metric__value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.metric__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Timeline */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gold);
}

.timeline__item {
  position: relative;
  margin-bottom: 32px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 3px solid var(--color-white);
}

.timeline__year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline__item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- About You Page --- */
.client-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.client-type {
  width: 100%;
}

.client-type {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.client-type:hover {
  box-shadow: var(--shadow-hover);
}

.client-type__icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.client-type__icon svg {
  width: 22px;
  height: 22px;
}

.client-type h4 {
  font-family: var(--font-body);
}

/* Success Stories */
.story-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.story-card__tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.story-card__content {
  padding: 28px;
}

.story-card h3 {
  margin-bottom: 12px;
}

.story-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.testimonial-card__stars {
  color: var(--color-gold);
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.9rem;
}

.testimonial-card__role {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text);
  transition: border-color var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.contact-info-card {
  background: var(--color-light-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.contact-info-card h3 {
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* --- Service Page Specific --- */
.service-hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* --- Photo Styles --- */
.photo-cover {
  object-fit: cover;
  width: 100%;
  display: block;
  background-color: var(--color-navy);
}

.photo-overlay {
  position: relative;
}

.photo-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.45);
}

/* Hero with background photo */
.hero--bg-photo {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
}

.hero--bg-photo .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--bg-photo .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
}

.hero--bg-photo .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 1) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 22, 40, 0.15) 65%, rgba(10, 22, 40, 0.05) 80%);
}

.hero--bg-photo .hero__inner {
  position: relative;
  z-index: 1;
}

/* Solution banner */
.solution-statement {
  text-align: center;
  margin-bottom: 48px;
}

.solution-statement h2 {
  color: var(--color-navy);
  max-width: 720px;
  margin: 0 auto 16px;
}

.solution-statement p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin: 0;
}

.solution-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  height: 320px;
}

.solution-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
}

.solution-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.45);
  border-radius: var(--radius);
}

/* Service card with photo */
.card--with-photo {
  padding: 0;
  overflow: hidden;
}

.card--with-photo .card__photo {
  height: 180px;
  overflow: hidden;
}

.card--with-photo .card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
  transition: transform var(--transition);
}

.card--with-photo:hover .card__photo img {
  transform: scale(1.05);
}

.card--with-photo .card__body {
  padding: 28px;
}

.card--with-photo .card__body h3 {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.card--with-photo .card__body h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.card--with-photo .card__icon {
  margin-bottom: 16px;
}

/* Avatar initials */
.avatar-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy-light);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.avatar-initial:first-child {
  margin-left: 0;
}

/* Testimonial avatar */
.testimonial__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
  margin: 0 auto 20px;
}

/* Testimonial card avatar */
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
  margin-bottom: 12px;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-card__header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
  flex-shrink: 0;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive: 480px+ --- */
@media (min-width: 480px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-type {
    width: calc(50% - 8px);
  }
}

/* --- Responsive: 768px+ --- */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px 40px;
  }

  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.6rem; }

  .hero {
    padding: 160px 40px 100px;
  }

  .hero--short {
    padding: 160px 40px 80px;
  }

  .hero h1 {
    font-size: 3.85rem;
  }

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

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .docs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

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

  .bio-section {
    grid-template-columns: auto 1fr;
  }
}

/* --- Responsive: 1024px+ --- */
@media (min-width: 1024px) {
  :root {
    --section-padding: 100px 40px;
  }

  h1 { font-size: 4.2rem; }
  h2 { font-size: 2.9rem; }

  .hero h1 {
    font-size: 4.5rem;
  }

  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__hamburger {
    display: none;
  }

  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .testimonial__quote {
    font-size: 1.85rem;
  }

  .client-type {
    width: calc(33.333% - 11px);
  }

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

/* ============================================
   Article Page
   ============================================ */

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-gold);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* Article hero */
.article-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--color-navy);
}

.article-hero__bg {
  position: absolute;
  inset: 0;
}

.article-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
}

.article-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
}

.article-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 24px 48px;
  width: 100%;
  max-width: calc(var(--container-max) + 40px);
  margin: 0 auto;
}

.article-hero__content .article-hero__text {
  max-width: 760px;
}

.article-hero__category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.article-hero__headline {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.article-hero__meta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.article-hero__meta .read-time {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.article-hero__meta .read-time::before {
  content: ' · ';
}

/* Article body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-body .standfirst {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  margin-bottom: 32px;
}

.article-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2d2d2d;
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-top: 48px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-top: 32px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.article-body blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: 24px;
  margin: 36px 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: #444;
  line-height: 1.5;
}

.article-body strong {
  font-weight: 600;
  color: #0a1628;
}

.article-body a {
  color: var(--color-gold);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.article-body a:hover {
  text-decoration: underline;
}

/* Author bio */
.author-bio {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.author-bio__divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 36px;
}

.author-bio__card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.author-bio__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
  flex-shrink: 0;
}

.author-bio__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.author-bio__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.author-bio__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Share row */
.share-row {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.share-row__label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.share-row__links {
  display: flex;
  gap: 20px;
}

.share-row__links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gold);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
  cursor: pointer;
}

.share-row__links a:hover {
  text-decoration: underline;
}

/* Related articles */
.related-articles {
  padding: var(--section-padding);
  background: var(--color-light-bg);
}

.related-articles .section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.related-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.related-card__photo {
  height: 200px;
  overflow: hidden;
}

.related-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: var(--color-navy);
  transition: transform 0.3s ease;
}

.related-card:hover .related-card__photo img {
  transform: scale(1.04);
}

.related-card__body {
  padding: 24px;
}

.related-card__category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.related-card__headline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.related-card__teaser {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
}

.related-card__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
}

.related-card__link:hover {
  text-decoration: underline;
}

/* Article responsive */
@media (min-width: 480px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .article-hero {
    height: 480px;
  }

  .article-hero__headline {
    font-size: 2.8rem;
  }

  .article-hero__content {
    padding: 0 40px 56px;
  }
}

@media (min-width: 1024px) {
  .article-hero__headline {
    font-size: 3rem;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Utility Classes
   ============================================ */

/* About-us centered grid */
.cards-grid--centered {
  max-width: 900px;
  margin: 0 auto;
}

.card--centered {
  text-align: center;
}

.card--centered .card__icon {
  margin: 0 auto 20px;
}

.contact-grid--narrow {
  max-width: 700px;
  margin: 0 auto;
}

/* Visually hidden (honeypot, screen-reader text) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   Form Validation
   ============================================ */
.contact-form input:focus:invalid,
.contact-form select:focus:invalid,
.contact-form textarea:focus:invalid {
  border-color: #e74c3c;
}

.contact-form input:focus:valid,
.contact-form select:focus:valid,
.contact-form textarea:focus:valid {
  border-color: var(--color-gold);
}

/* ============================================
   Contact Map
   ============================================ */
.contact-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero--short::after,
  .cta-section::after {
    width: 280px;
    height: 220px;
    opacity: 0.08;
    bottom: -10px;
    right: -30px;
  }

  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero--short::after,
  .cta-section::after {
    display: none;
  }

  .contact-map iframe {
    height: 250px;
  }
}

/* ============================================
   Contact Success
   ============================================ */
.success-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
}

.success-section__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-section__inner svg {
  margin-bottom: 24px;
}

.success-section__inner p {
  color: var(--color-text-light);
  margin: 16px 0 32px;
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .carousel__track {
    transition: none;
  }

  .card--with-photo:hover .card__photo img,
  .article-card:hover .article-card__photo img,
  .related-card:hover .related-card__photo img {
    transform: none;
  }

  .article-card:hover,
  .related-card:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
