@font-face {
  font-family: 'Romanus';
  src: url('assets/fonts/ROMANUS.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --gold:       #C9A227;
  --gold-light: #D4AF37;
  --gold-dim:   rgba(201,162,39,.15);
  --bg:         #0D1421;
  --bg-2:       #111928;
  --white:      #ffffff;
  --text-muted: #8a8fa8;
  --border:     rgba(201,162,39,.25);
  --font-head:  'Romanus', Georgia, serif;
  --font-body:  'Segoe UI', system-ui, sans-serif;
  --nav-h:      108px;
  --transition: .25s ease;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

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

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px; border: none;
  font-family: var(--font-body); font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn--gold  { background: var(--gold); color: #0D1421; }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--dark  { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--dark:hover { background: var(--gold-dim); }
.btn--full  { width: 100%; justify-content: center; }

.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: .75rem; font-weight: 700; letter-spacing: .2em;
  color: var(--gold); margin-bottom: 16px;
}
.section-label--left { justify-content: flex-start; }
.section-label__line {
  flex: 1; max-width: 60px; height: 1px; background: var(--gold); display: block;
}

.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white); line-height: 1.2; margin-bottom: 32px; text-align: center;
}
.section-title--left { text-align: left; }

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-h); display: flex; align-items: center; gap: 32px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  width: 300px; height: auto;
}
.nav__logo-fallback {
  display: flex; align-items: center; gap: 10px;
}
.nav__logo-icon { font-size: 1.6rem; color: var(--gold); }
.nav__logo-fallback > span { display: flex; flex-direction: column; }
.nav__logo-fallback strong {
  font-family: var(--font-head); font-size: .95rem;
  letter-spacing: .08em; color: var(--white); line-height: 1.2;
}
.nav__logo-fallback small {
  font-size: .6rem; letter-spacing: .18em; color: var(--gold);
}
.nav__links {
  display: flex; gap: 32px; margin-left: auto;
}
.nav__links a {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  color: var(--text-muted); transition: color var(--transition); position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: left;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: 16px; font-size: .75rem; padding: 10px 20px; }
.nav__toggle { display: none; }
.nav__mobile { display: none; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  height: calc(100vh - var(--nav-h)); max-height: 700px; min-height: 560px;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}
.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
}
.hero__tagline {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  color: var(--gold); margin-bottom: 20px; position: relative; padding-left: 32px;
}
.hero__tagline::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 20px; height: 1px; background: var(--gold);
}
.hero__title {
  font-family: var(--font-head); font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1; color: var(--white); margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 1rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7;
}
.hero__btn { margin-bottom: 56px; align-self: flex-start; }

.hero__pillars {
  display: flex; align-items: center; gap: 0;
}
.hero__pillar {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: .82rem; line-height: 1.3;
  padding: 0 20px;
}
.hero__pillar:first-child { padding-left: 0; }
.hero__pillar svg { color: var(--gold); flex-shrink: 0; }
.hero__pillar-divider {
  width: 1px; height: 36px; background: var(--border);
}

.hero__image {
  position: relative; overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%;
  filter: brightness(.9) contrast(1.05);
}
.hero__image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
  z-index: 1;
}

/* ─── SERVICES ───────────────────────────────────────── */
.services {
  background: var(--bg-2); padding: 70px 20px;
}
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 16px;
}
.service-card {
  padding: 48px 32px; text-align: center;
  border: 1px solid var(--border); border-radius: 4px;
  transition: var(--transition); background: var(--bg);
}
.service-card:hover {
  background: var(--gold-dim); border-color: var(--gold); transform: translateY(-4px);
}
.service-card__icon { color: var(--gold); margin-bottom: 20px; display: flex; justify-content: center; }
.service-card h3 {
  font-family: var(--font-head); font-size: 1.1rem; color: var(--white);
  margin-bottom: 12px; line-height: 1.3;
}
.service-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── ABOUT ──────────────────────────────────────────── */
.about { padding: 100px 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__image {
  position: relative; border-radius: 4px; overflow: hidden;
}
.about__image img { width: 100%; height: 560px; object-fit: cover; object-position: top; border-radius: 4px; }
.about__image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%; background: linear-gradient(to top, var(--bg), transparent);
}
.about__content p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.about__stats {
  display: flex; gap: 40px; margin: 40px 0;
  border-top: 1px solid var(--border); padding-top: 40px;
}
.about__stat { display: flex; flex-direction: column; }
.about__stat-number {
  font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); line-height: 1;
}
.about__stat-label { font-size: .78rem; color: var(--text-muted); margin-top: 6px; letter-spacing: .05em; }

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1a1200 0%, #2a1f00 50%, #1a1200 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band h2 {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--white);
  margin-bottom: 8px;
}
.cta-band p { color: var(--text-muted); }

/* ─── CONTACT ────────────────────────────────────────── */
.contact { padding: 100px 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__info p { color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; }
.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__map { margin-top: 24px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.contact__detail {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-muted); font-size: .9rem;
}
.contact__detail svg { color: var(--gold); flex-shrink: 0; }

.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form-group input,
.form-group textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border);
  color: var(--white); padding: 14px 16px; border-radius: 4px;
  font-family: var(--font-body); font-size: .9rem;
  transition: border-color var(--transition); outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #080d18; border-top: 1px solid var(--border); padding: 60px 0 32px;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer__logo { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__isotype { width: 100px; }
.footer__isotype img { width: 100%; height: auto; }
.footer__motto { font-size: .75rem; letter-spacing: .2em; color: var(--gold); font-style: italic; }
.footer__links { display: flex; gap: 32px; }
.footer__links a {
  font-size: .78rem; letter-spacing: .1em; color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: .75rem; color: var(--text-muted); text-align: center; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; background: none; border: none; cursor: pointer;
    margin-left: auto; padding: 8px;
  }
  .nav__toggle span {
    display: block; width: 22px; height: 2px; background: var(--white);
    transition: var(--transition); transform-origin: center;
  }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav__mobile {
    display: none; flex-direction: column; gap: 0;
    background: var(--bg-2); border-top: 1px solid var(--border);
  }
  .nav__mobile.open { display: flex; }
  .nav__mobile a {
    padding: 16px 24px; font-size: .85rem; letter-spacing: .1em;
    color: var(--text-muted); border-bottom: 1px solid var(--border);
  }
  .nav__mobile .btn { margin: 16px 24px; border-radius: 4px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 60px 24px 40px; }
  .hero__btn { align-self: stretch; justify-content: center; }
  .hero__image { height: 60vw; }
  .hero__image::before { background: linear-gradient(to bottom, transparent, var(--bg) 90%); }

  .about__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image img { height: 380px; }

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

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