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

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2d45;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --light-gray: #eceae5;
  --mid-gray: #8a8a8a;
  --text: #1a1a1a;
  --text-light: #555;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.16);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

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

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

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

.btn--full {
  width: 100%;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .section-sub {
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,27,42,0.10);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.header.scrolled .logo {
  color: var(--navy);
}

.logo__icon {
  font-size: 22px;
}

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

.logo--light {
  color: rgba(255,255,255,0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

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

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

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

.nav__link:hover::after {
  transform: scaleX(1);
}

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

.header.scrolled .nav__link:hover {
  color: var(--navy);
}

.header__email {
  margin-left: 16px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 8px 16px;
  transition: all var(--transition);
  white-space: nowrap;
}

.header__email:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.header.scrolled .header__email {
  color: var(--navy);
  border-color: rgba(13,27,42,0.3);
}

.header.scrolled .header__email:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(201,168,76,0.1);
}

.header.scrolled .btn--outline {
  border-color: var(--navy);
  color: var(--navy);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

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

.header.scrolled .burger span {
  background: var(--navy);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5c 50%, #0d2035 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 62px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

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

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

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

.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}

.hero__stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-card {
  width: 380px;
  height: 420px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero__image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.hero__image-inner {
  text-align: center;
}

.hero__icon-wrap {
  font-size: 100px;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.3));
}

.hero__image-text {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* Hero visual (new) */
.hero__visual {
  position: relative;
  width: 380px;
  height: 440px;
}

.hero__visual-main {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.hero__visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.15) 0%,
    rgba(13,27,42,0.05) 50%,
    rgba(13,27,42,0.4) 100%
  );
}

.hero__visual-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero__visual-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 120px;
}

.hero__visual-card--tl {
  top: 32px;
  left: -36px;
}

.hero__visual-card--br {
  bottom: 56px;
  right: -36px;
}

.hero__visual-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero__visual-card-txt {
  font-size: 12px;
  color: var(--mid-gray);
}

.hero__visual-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  white-space: nowrap;
}

/* ============================================================
   BAND
   ============================================================ */
.band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.band__track {
  display: inline-flex;
  gap: 24px;
  animation: marquee 28s linear infinite;
}

.band__track span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.band__dot {
  font-size: 10px !important;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card--accent {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card--accent .service-card__title {
  color: var(--white);
}

.service-card--accent .service-card__text {
  color: rgba(255,255,255,0.7);
}

.service-card--accent .service-card__link {
  color: var(--gold);
}

.service-card--accent::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.service-card__title {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-card__text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

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

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

/* ============================================================
   HOW WE HELP
   ============================================================ */
.how {
  padding: 100px 0;
  background: var(--white);
}

.how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how__text {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.how__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.how__item-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how__item strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.how__item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.how__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 60px;
}

.how__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

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

.how__card:hover .how__card-body strong,
.how__card:hover .how__card-body p {
  color: var(--white);
}

.how__card:hover .how__card-body p {
  color: rgba(255,255,255,0.7);
}

.how__card--top { transform: translateX(24px); }
.how__card--bottom { transform: translateX(-24px); }

.how__card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.how__card-body strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.how__card-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--off-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about__image-icon {
  font-size: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.9;
}

.about__image-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  width: 100%;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__image-overlay span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
}

.about__image-overlay span:last-child {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.about__badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about__badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about__badge-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about__bio {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.about__cred {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.about__cred-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: 100px 0;
  background: var(--white);
}

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

.team-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.team-card__avatar {
  font-size: 60px;
  margin-bottom: 16px;
  display: block;
}

.team-card__name {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card__bio {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--navy);
}

.testimonials .section-label {
  color: var(--gold);
}

.testimonials .section-title {
  color: var(--white);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact__inner {
  display: block;
  max-width: 640px;
}

.contact__desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.contact__method:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateX(6px);
}

.contact__method-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact__method strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact__method span {
  font-size: 14px;
  color: var(--text-light);
}

/* Form */
.contact__form {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

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

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--mid-gray);
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

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

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

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

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

.footer__contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.footer__bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__disclaimer {
  font-size: 12px !important;
  font-style: italic;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__image {
    display: none;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .how__card--top,
  .how__card--bottom {
    transform: none;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav,
  .header__cta {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav.open .nav__link {
    font-size: 24px;
    color: var(--white);
  }

  .burger {
    display: flex;
    z-index: 1000;
  }

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

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

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

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

  .contact__form {
    padding: 28px 24px;
  }

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

  .hero__stats {
    gap: 24px;
  }

  .hero__stat strong {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .team__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
