/* =================================================================
   Me Serge Dumas, Avocat — Main Stylesheet
   
   TABLE OF CONTENTS:
   1.  Design Tokens (CSS Custom Properties)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Navigation
   6.  Mobile Menu
   7.  Hero (Homepage)
   8.  Page Hero (Inner Pages)
   9.  Section — Services Cards
   10. Section — Trust Bar
   11. Section — Approach
   12. Section — CTA Banner
   13. Section — Service Detail (inner pages)
   14. Contact Section & Form
   15. Footer
   16. Breadcrumb
   17. Buttons & Links
   18. Responsive Design
   ================================================================= */

/* -----------------------------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------------------------- */
:root {
  /* Colors */
  --navy:        #1a2744;
  --navy-dark:   #111b33;
  --navy-light:  #253561;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5eed8;
  --white:       #ffffff;
  --off-white:   #f8f6f1;
  --text:        #2c2c2c;
  --text-light:  #666666;
  --border:      #e0d9cc;
  --shadow-color: rgba(26, 39, 68, 0.10);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;   /* 8px */
  --space-sm:  1rem;     /* 16px */
  --space-md:  2rem;     /* 32px */
  --space-lg:  4rem;     /* 64px */
  --space-xl:  6rem;     /* 96px */

  /* Layout */
  --max-width: 1160px;
  --radius:    4px;
  --radius-lg: 8px;

  /* Transitions */
  --transition: 0.25s ease;
}

/* -----------------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul, ol {
  list-style: none;
}

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

/* -----------------------------------------------------------------
   3. TYPOGRAPHY
   ----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text);
}

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

/* -----------------------------------------------------------------
   4. LAYOUT UTILITIES
   ----------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section--alt {
  background: var(--off-white);
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  display: block;
}

.section__title {
  margin-bottom: var(--space-md);
}

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

.section__intro {
  max-width: 680px;
  margin: 0 auto var(--space-md);
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-sm) 0 var(--space-md);
  border: none;
}

.gold-rule--centered {
  margin: var(--space-sm) auto var(--space-md);
}

/* -----------------------------------------------------------------
   5. NAVIGATION
   ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px var(--shadow-color);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-md);
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.nav__brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav__brand-title {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}

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

.nav__link:hover,
.nav__link.active {
  color: var(--navy);
}

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

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.nav__phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: color var(--transition);
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
}

.lang-switch__item {
  color: var(--text-light);
  transition: color var(--transition);
}

.lang-switch__item.active {
  color: var(--navy);
}

.lang-switch__sep {
  color: var(--border);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* -----------------------------------------------------------------
   6. MOBILE MENU
   ----------------------------------------------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: var(--space-md);
  flex-direction: column;
  gap: var(--space-sm);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color var(--transition);
}

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

.mobile-menu__phone {
  margin-top: var(--space-md);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  text-align: center;
}

.mobile-menu__lang {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-sm);
}

/* Hamburger open state */
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile CTA sticky bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 98;
  padding: 12px var(--space-md);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

/* -----------------------------------------------------------------
   7. HERO (HOMEPAGE)
   ----------------------------------------------------------------- */
.hero {
  background:
    linear-gradient(135deg, rgba(17, 27, 51, 0.84) 0%, rgba(26, 39, 68, 0.78) 55%, rgba(37, 53, 97, 0.72) 100%),
    url('../assets/images/hero-bg.jpg') center / cover no-repeat;
  background-color: var(--navy-dark); /* solid fallback until image loads */
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 720px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__badge {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.hero__badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

/* -----------------------------------------------------------------
   8. PAGE HERO (INNER PAGES)
   ----------------------------------------------------------------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(17, 27, 51, 0.90) 0%, rgba(26, 39, 68, 0.88) 100%),
    url('../assets/images/hero-bg.jpg') center 35% / cover no-repeat;
  background-color: var(--navy-dark);
  padding: var(--space-lg) 0 calc(var(--space-lg) - 1rem);
}

.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  display: block;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  max-width: 640px;
}

/* -----------------------------------------------------------------
   9. SECTION — SERVICE CARDS
   ----------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card:hover {
  box-shadow: 0 8px 32px var(--shadow-color);
  transform: translateY(-3px);
}

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

.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.service-card__text {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-sm);
}

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

.service-card__link:hover {
  gap: 8px;
}

/* Featured cards (hero section, 3 large cards) */
.featured-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) calc(var(--space-md) + 0.5rem);
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 24px var(--shadow-color);
  transition: box-shadow var(--transition), transform var(--transition);
}

.featured-card:hover {
  box-shadow: 0 8px 40px rgba(26,39,68,0.15);
  transform: translateY(-4px);
}

.featured-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.featured-card__text {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.featured-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.featured-card__link:hover { gap: 8px; }

/* -----------------------------------------------------------------
   10. SECTION — TRUST BAR
   ----------------------------------------------------------------- */
.trust-bar {
  background: var(--navy);
  padding: var(--space-lg) 0;
}

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

.trust-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.trust-item__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.4;
}

/* -----------------------------------------------------------------
   11. SECTION — APPROACH
   ----------------------------------------------------------------- */
.approach {
  background: var(--off-white);
  padding: var(--space-lg) 0;
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.approach__text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.approach__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.approach__value {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  border-left: 3px solid var(--gold);
}

.approach__value-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.approach__value-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* -----------------------------------------------------------------
   12. SECTION — CTA BANNER
   ----------------------------------------------------------------- */
.cta-banner {
  background: var(--navy);
  padding: var(--space-lg) 0;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner__text {
  color: rgba(255,255,255,0.70);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------------
   13. SERVICE DETAIL (INNER PAGES)
   ----------------------------------------------------------------- */
.service-detail {
  padding: var(--space-lg) 0;
}

.service-detail__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}

.service-detail__body h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}

.service-detail__body h2:first-child {
  margin-top: 0;
}

.service-detail__body p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.service-sidebar {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: sticky;
  top: 100px;
}

.service-sidebar__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.service-sidebar__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.service-sidebar__item {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.service-sidebar__item strong {
  color: var(--text);
}

.service-sidebar__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-sm) 0;
}

.related-services__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.related-services__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.related-services__link {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.related-services__link::before {
  content: '→';
  color: var(--gold);
  font-size: 0.8rem;
}

.related-services__link:hover {
  color: var(--navy);
}

/* -----------------------------------------------------------------
   14. CONTACT SECTION & FORM
   ----------------------------------------------------------------- */
.contact-section {
  padding: var(--space-lg) 0;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.contact-info__value a {
  color: var(--navy);
  transition: color var(--transition);
}

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

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

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

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form__note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.map-embed {
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe {
  display: block;
  width: 100%;
}

/* -----------------------------------------------------------------
   15. FOOTER
   ----------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-md);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__brand-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer__about {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

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

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.footer__contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.footer__contact-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.footer__contact-value a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer__bottom-link {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__bottom-link:hover {
  color: rgba(255,255,255,0.8);
}

/* -----------------------------------------------------------------
   16. BREADCRUMB
   ----------------------------------------------------------------- */
.breadcrumb {
  background: var(--off-white);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.82rem;
  color: var(--text-light);
}

.breadcrumb__item a {
  color: var(--text-light);
  transition: color var(--transition);
}

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

.breadcrumb__sep {
  color: var(--border);
}

.breadcrumb__item--current {
  color: var(--text);
  font-weight: 500;
}

/* -----------------------------------------------------------------
   17. BUTTONS & LINKS
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

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

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* -----------------------------------------------------------------
   19. VISUAL ENHANCEMENTS
   ----------------------------------------------------------------- */

/* Top prestige / announcement bar */
.top-bar {
  background: var(--navy-dark);
  padding: 9px 0;
  border-bottom: 2px solid var(--gold);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar__text {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.04em;
}

.top-bar__link {
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.top-bar__link:hover {
  color: var(--gold-light);
}

.top-bar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* Hero — two-column split layout */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: var(--space-xl);
  align-items: center;
}

.hero__layout > .hero__content {
  max-width: none;
}

/* Subtle diagonal texture overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 12px,
    rgba(255, 255, 255, 0.013) 12px,
    rgba(255, 255, 255, 0.013) 13px
  );
  pointer-events: none;
}

/* Hero credential / profile card (right column) */
.hero__cred {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 12px;
  padding: var(--space-md);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.hero__cred-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.hero__cred-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.hero__cred-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero__cred-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 3px;
}

.hero__cred-divider {
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin: var(--space-sm) 0;
}

.hero__cred-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: var(--space-md);
}

.hero__cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.hero__cred-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.hero__cred-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition);
}

.hero__cred-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

/* Approach section — photo placeholder */
.approach__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  border: 2px solid rgba(201, 168, 76, 0.22);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.18);
  overflow: hidden;
  position: relative;
}

.approach__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.07) 0%, transparent 100%);
}

.approach__photo-initials {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.approach__photo-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.42);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--space-sm);
}

/* Service card — number badge (replaces emoji) */
.service-card__num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

/* Enhanced service card depth */
.service-card {
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.07);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.14) !important;
}

/* Trust bar — vertical separators between items */
.trust-item {
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
}

/* -----------------------------------------------------------------
   18. RESPONSIVE DESIGN
   ----------------------------------------------------------------- */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  .nav__links { display: none; }

  .nav__hamburger { display: flex; }

  .nav__phone { display: none; }

  .mobile-cta { display: block; }

  body { padding-bottom: 60px; }

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

  .trust-bar__grid { grid-template-columns: 1fr; gap: var(--space-md); }

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

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

  .service-detail__layout { grid-template-columns: 1fr; }

  .service-sidebar { position: static; }

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

/* Mobile: ≤ 580px */
@media (max-width: 580px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  .container { padding: 0 var(--space-sm); }

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

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

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

  .footer__bottom { flex-direction: column; text-align: center; }

  .hero { padding: var(--space-lg) 0; }

  .hero__ctas { flex-direction: column; }

  .hero__ctas .btn { width: 100%; justify-content: center; }

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

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

  .lang-switch { display: none; }
}

/* Thank-you page */
.thankyou-section {
  padding: var(--space-xl) 0;
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.thankyou__card {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(26, 39, 68, 0.10);
  border-top: 4px solid var(--gold);
}

.thankyou__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--navy-dark);
  margin: 0 auto var(--space-md);
  font-weight: 700;
  line-height: 1;
}

.thankyou__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.thankyou__text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou__detail {
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: left;
}

.thankyou__detail strong {
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.thankyou__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Enhancement responsive overrides */
@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .trust-item + .trust-item::before {
    display: none;
  }
}
