:root {
  --color-navy: #0b2545;
  --color-navy-dark: #082038;
  --color-navy-soft: #123362;
  --color-gold: #d4af37;
  --color-gold-soft: #e8cf7a;
  --color-cream: #faf7f0;
  --color-white: #ffffff;
  --color-ink: #1a1a1a;
  --color-border: #e6e2d8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-navy);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--color-gold); color: var(--color-navy); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(212,175,55,0.35); }
.btn-secondary { background: transparent; color: var(--color-white); border: 2px solid var(--color-gold); }
.btn-secondary:hover { background: rgba(212,175,55,0.15); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-navy);
  border-bottom: 1px solid rgba(212,175,55,0.3);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
}
.brand-group { display: flex; align-items: center; gap: 0.75rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand img { width: 64px; height: 64px; border-radius: 50%; }
.brand span { font-family: var(--font-display); color: var(--color-white); font-size: 1.35rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 6px;
  right: 6px;
}
.nav-toggle::before { top: 10px; }
.nav-toggle span { top: 16px; }
.nav-toggle::after { top: 22px; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--color-white); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--color-gold); }
.lang-switch {
  color: var(--color-gold-soft);
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.lang-switch:hover { background: rgba(212,175,55,0.15); }

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 1rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
}

@media (min-width: 781px) {
  .service-card.featured { transform: translateY(1.5rem); }
  .about .about-grid {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: center;
    text-align: left;
  }
  .about .about-photo { max-width: 320px; justify-self: center; }
  .about-text .section-title { text-align: left; }
  .about-text .section-title .rule { margin-left: 0; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
  color: var(--color-white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero p { font-size: 1.15rem; max-width: 640px; margin: 0 auto 2rem; color: var(--color-cream); }
.hero .cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2rem; }
.section-title .rule { width: 60px; height: 3px; background: var(--color-gold); margin: 0.75rem auto 0; }

/* Icon badge (shared: services + process) */
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  margin: 0 0 1.25rem;
}
.icon-badge svg { width: 28px; height: 28px; color: var(--color-gold); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; padding-bottom: 1.5rem; }
.service-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.06);
}
.service-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}
.service-card h3 { font-size: 1.3rem; }
.service-price { display: block; color: var(--color-gold); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.75rem; }
.service-card.featured {
  background: var(--color-navy);
  border-color: var(--color-navy);
}
.service-card.featured h3,
.service-card.featured p { color: var(--color-white); }
.service-card.featured .icon-badge { background: var(--color-gold); }
.service-card.featured .icon-badge svg { color: var(--color-navy); }

/* Process */
.process { background: var(--color-cream); }
.process-intro { max-width: 720px; margin: 0 auto 3rem; }
.process-intro p:first-child {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-navy);
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.process-list li { display: flex; flex-direction: column; align-items: center; }
.process-list .icon-badge { margin-bottom: 1rem; }
.process-list p { margin: 0; font-weight: 500; }

/* About */
.about { background: var(--color-white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; }
.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--color-gold);
}
.about-text .section-title { margin-bottom: 1.5rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--color-gold); }
.faq-item.is-open .faq-question::after { content: '\2212'; }
.faq-answer { padding: 0 0 1.25rem; color: #444; }

/* Contact */
.contact { background: var(--color-navy); color: var(--color-white); text-align: center; }
.contact h2 { color: var(--color-white); }
.contact-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* Footer */
.site-footer {
  background: var(--color-navy-dark);
  color: var(--color-cream);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}
.site-footer a { color: var(--color-gold-soft); text-decoration: underline; }
.footer-logo { width: 32px; height: 32px; border-radius: 50%; margin: 0 auto 0.75rem; }
