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

:root {
  --navy: #0d1f3c;
  --navy-mid: #163060;
  --navy-light: #1e4080;
  --navy-pale: #e8eef7;
  --gold: #b8933a;
  --gold-light: #d4ab55;
  --gold-pale: #fdf6e3;
  --bg: #f7f8fc;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --text: #0d1f3c;
  --text-muted: #5a6a82;
  --text-light: #8a9bb0;
  --border: rgba(13, 31, 60, 0.1);
  --border-gold: rgba(184, 147, 58, 0.25);
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.text-white {
  color: var(--text-light) !important;
}

/* ── NAV ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 160;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.nav-logo span:last-child {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
  border-radius: 2px;
  letter-spacing: 0.06em !important;
  transition: background 0.25s !important;
}

.nav-cta:hover {
  background: var(--navy-mid) !important;
  color: var(--white) !important;
}

/* ── LANG PICKER ── */

.lang-picker {
  position: relative;
}

.lang-picker-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}

.lang-picker-toggle:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

.lang-code {
  font-size: 12px;
}

.lang-chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.25s;
}

.lang-picker.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 4px 0;
  z-index: 200;
}

.lang-picker.open .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.lang-option:hover {
  background: var(--navy-pale);
  color: var(--navy);
}

.lang-option.active {
  color: var(--navy);
  font-weight: 600;
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem 48px;
  margin-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 75% 50%, rgba(13, 31, 60, 0.06) 0%, transparent 65%), linear-gradient(150deg, #f0f4fb 0%, #e8eef7 50%, #f7f8fc 100%);
}

.hero-lines {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}

.hero-lines svg {
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

/* Navy accent block on hero right side */

.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  background-size: cover;
  background-position: center;
}

.hero-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 60, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-gold);
  background: var(--gold-pale);
  border-radius: 2px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--navy-mid);
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
}

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

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 48px;
  display: flex;
  gap: 48px;
  animation: fadeUp 0.8s 0.4s ease both;
  z-index: 3;
}

.stat {
  text-align: right;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── DIVIDER ── */

.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

/* ── SECTION BASE ── */

section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--navy);
}

.section-label span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--navy-mid);
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── SERVICES ── */

.services-section {
  background: var(--bg);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.service-card {
  background: var(--bg-card);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(13, 31, 60, 0.04);
}

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

.service-card:hover {
  border-color: rgba(13, 31, 60, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13, 31, 60, 0.1);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--navy);
  transition: all 0.35s;
  background: var(--navy-pale);
}

.service-card:hover .service-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.service-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(13, 31, 60, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s;
}

.service-card:hover .service-num {
  color: rgba(13, 31, 60, 0.08);
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  background: var(--navy-pale);
  border-radius: 2px;
  font-size: 12px;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.service-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  color: var(--text-light);
  transition: all 0.3s;
}

.service-card:hover .service-arrow {
  color: var(--navy);
  transform: translate(3px, -3px);
}

/* ── ABOUT ── */

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.about-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 147, 58, 0.15), transparent 70%);
  pointer-events: none;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.about-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
}

.author-info strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.author-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

/* About text side (on navy bg) */

.about-text .section-label::before {
  background: var(--gold);
}

.about-text .section-label span {
  color: var(--gold);
}

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

.about-text .section-title em {
  color: var(--gold-light);
}

.about-text .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* ── CONTACT ── */

.contact-section {
  background: var(--bg-alt);
}

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

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  transition: all 0.25s;
}

.contact-item:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(13, 31, 60, 0.08);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--navy-pale);
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 400;
}

/* FORM */

.contact-form {
  background: var(--navy);
  border-radius: 4px;
  padding: 48px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--navy-pale);
  transform: translateY(-1px);
}

/* ── FOOTER ── */

footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* ── MOBILE MENU ── */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(13, 31, 60, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  padding: 96px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-links a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-menu-links a:hover {
  color: var(--gold);
}

.mobile-menu-links .nav-cta {
  display: inline-block;
  margin-top: 8px;
  text-align: center;
  width: 100%;
}

.mobile-lang-picker {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mobile-lang-picker .lang-option {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.mobile-lang-picker .lang-option.active {
  background: var(--navy-pale);
  color: var(--navy);
}

.mobile-lang-picker .lang-option:hover {
  background: var(--navy-pale);
}

@media (max-width: 900px) {
  section {
    padding: 72px 24px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 2rem 24px;
    min-height: calc(100svh - 72px) !important;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;

    a {
      justify-content: center;
    }
  }
}

@media (max-width: 900px) {
  .hero-accent {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-stats {
    right: 24px;
    gap: 24px;
    display: none;
  }
}

@media (max-width: 900px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 28px 20px;
  }
}

.page {
  margin: 4rem 0;
}