/* ===== CSS VARIABLES ===== */
:root {
  --navy-deep: #0a1628;
  --navy: #0f1c3f;
  --navy-light: #1a2d54;
  --navy-lighter: #243a6b;
  --gold: #c9a84c;
  --gold-light: #d4b965;
  --gold-dark: #b8943f;
  --gold-pale: #f5e6b8;
  --cream: #faf6ee;
  --cream-dark: #f0e8d8;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #94a3b8;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.16);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav__logo-icon {
  color: var(--gold);
}

.nav__logo-text {
  font-family: var(--font-serif);
}

.nav__logo-accent {
  color: var(--gold);
  font-weight: 700;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav__link--gold {
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-left: 8px;
}

.nav__link--gold:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  color: var(--white);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__desc strong {
  color: var(--gold-light);
  font-weight: 600;
}

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

.hero__stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
}

.hero__image {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image-frame img {
  width: 100%;
  height: 750px;
  object-fit: cover;
}

.hero__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero__image-badge svg {
  color: var(--gold);
}

.hero__image-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__image-accent--1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
  top: -60px;
  right: -60px;
}

.hero__image-accent--2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
  bottom: 40px;
  left: -40px;
}

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

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

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

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-header__title-em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 400;
}

.section-header__title--light {
  color: var(--white);
}

.section-header__title--light .section-header__title-em {
  color: var(--gold);
}

.section-header__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.7;
}

.section-header--center .section-header__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 24px;
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid rgba(15, 28, 63, 0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.service-card--featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
}

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

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

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-card--featured .service-card__list li {
  color: rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-card--featured .service-card__list li::before {
  color: var(--gold);
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.05));
  border-radius: var(--radius-sm);
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.service-card--featured .service-card__icon {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid rgba(15, 28, 63, 0.06);
  padding-bottom: 8px;
}

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

.service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 24px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.about__images {
  position: relative;
}

.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about__img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--navy);
}

.about__img-secondary img {
  width: 340px;
  height: 260px;
  object-fit: cover;
}

.about__experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about__experience-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about__experience-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.about__content {
  color: var(--white);
}

.about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.about__text--accent {
  color: rgba(201, 168, 76, 0.9);
  font-weight: 500;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.about__feature svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 24px;
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.3) 0%, transparent 40%);
  pointer-events: none;
  border-radius: var(--radius-md);
}

.gallery__item--large {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery__item--large img {
  height: 100%;
  min-height: 400px;
}

.gallery__item--wide {
  grid-column: span 12;
}

.gallery__item--wide img {
  height: 260px;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) img {
  height: 190px;
}

/* ===== CTA ===== */
.cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 60%);
  pointer-events: none;
}

.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta__content {
  flex: 1;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.cta__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

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

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

.contact__info {
  color: var(--white);
}

.contact__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.contact__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}

.contact__link {
  color: var(--gold-light);
  transition: color var(--transition);
}

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

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== FORM ===== */
.contact__form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(15, 28, 63, 0.06);
}

.contact__form-header {
  margin-bottom: 28px;
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact__form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(15, 28, 63, 0.12);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form__input::placeholder {
  color: var(--text-light);
}

.form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form {
  transition: opacity var(--transition), max-height var(--transition);
}

.contact__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  color: var(--navy);
}

.contact__success.active {
  display: flex;
}

.contact__success svg {
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.contact__success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 24px 0;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo-icon {
  color: var(--gold);
}

.footer__logo-accent {
  color: var(--gold);
  font-weight: 700;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer__list a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition), padding-left var(--transition);
}

.footer__list a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__location {
  color: rgba(255, 255, 255, 0.25);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-4px);
}

/* ===== 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__grid {
    gap: 40px;
  }
  
  .hero__image-frame img {
    height: 560px;
  }
  
  .about__grid {
    gap: 40px;
  }
  
  .about__img-secondary {
    right: -16px;
    bottom: -24px;
  }
  
  .about__img-secondary img {
    width: 260px;
    height: 200px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
  
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }
  
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav__link {
    width: 100%;
    padding: 12px 16px;
  }
  
  .nav__link--gold {
    margin-left: 0;
    text-align: center;
  }
  
  .hero {
    padding: 100px 24px 80px;
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero__image {
    order: -1;
  }
  
  .hero__image-frame img {
    height: 420px;
  }
  
  .hero__stats {
    gap: 20px;
  }
  
  .hero__stat-number {
    font-size: 1.4rem;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .about__grid {
    grid-template-columns: 1fr;
  }
  
  .about__images {
    max-width: 480px;
  }
  
  .about__img-secondary {
    right: 0;
    bottom: -20px;
  }
  
  .about__img-secondary img {
    width: 220px;
    height: 170px;
  }
  
  .about__experience-badge {
    left: 0;
    top: -16px;
  }
  
  .about__features {
    grid-template-columns: 1fr;
  }
  
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery__item--large img,
  .gallery__item--wide img {
    height: 220px;
  }
  
  .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) img {
    height: 170px;
  }
  
  .gallery__item--wide {
    grid-column: span 2;
  }
  
  .cta__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  
  .cta__actions .btn {
    justify-content: center;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact__form-wrap {
    padding: 28px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    justify-content: center;
  }
  
  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .service-card {
    padding: 28px 24px;
  }
  
  .contact__form-wrap {
    padding: 20px;
  }
}
