@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --purple-950: #120528;
  --purple-900: #19083a;
  --purple-800: #271052;
  --purple-700: #36156a;

  /* Navy is intentionally lifted so it stays visibly blue on the deep-purple background. */
  --navy-100: #d8e0f2;
  --navy-200: #bcc9e4;
  --navy-300: #94a9d0;
  --navy-400: #7891c0;
  --navy-500: #617bac;

  --gold: #c9b36d;
  --gold-soft: #e0d29a;
  --line: rgba(148, 169, 208, 0.24);
  --panel: rgba(255,255,255,0.035);
  --shadow: 0 24px 80px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--navy-100);
  background:
    radial-gradient(circle at 78% 12%, rgba(80, 43, 120, .34), transparent 28rem),
    radial-gradient(circle at 12% 80%, rgba(57, 31, 104, .32), transparent 30rem),
    linear-gradient(135deg, var(--purple-950), var(--purple-900) 48%, #16072e);
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a { color: inherit; }

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  letter-spacing: .12em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-soft);
  font-size: 22px;
  font-weight: 700;
}

.brand-name {
  color: var(--navy-200);
  font-size: 13px;
  font-weight: 600;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-500);
  font-size: 12px;
  letter-spacing: .12em;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--navy-500);
  cursor: pointer;
  font: inherit;
  padding: 8px 5px;
}

.lang-btn.active {
  color: var(--gold-soft);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 72px;
  align-items: center;
  padding: 78px 0 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -.035em;
  color: var(--navy-200);
}

h1 em {
  display: block;
  font-style: normal;
  color: var(--gold-soft);
}

.intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--navy-300);
  font-size: 17px;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--navy-200);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,179,109,.10);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-btn,
.secondary-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.primary-btn {
  background: var(--gold-soft);
  color: #1b1232;
  border: 1px solid var(--gold-soft);
}

.secondary-btn {
  border: 1px solid rgba(148,169,208,.42);
  color: var(--navy-200);
  background: rgba(255,255,255,.025);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.crest-frame {
  width: min(100%, 450px);
  padding: 26px;
  position: relative;
}

.crest-frame::before,
.crest-frame::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-color: rgba(201,179,109,.45);
}

.crest-frame::before {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.crest-frame::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.crest-frame img {
  width: 100%;
  display: block;
  border-radius: 2px;
  mix-blend-mode: screen;
  filter: saturate(.88) contrast(1.04);
  box-shadow: var(--shadow);
}

.positioning {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.positioning p {
  margin: 0;
  color: var(--gold-soft);
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  letter-spacing: .16em;
}

.positioning-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line));
}

.positioning-line:last-child {
  background: linear-gradient(90deg, var(--line), transparent);
}

.services {
  padding: 92px 0 88px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading > p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .20em;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-200);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 270px;
  padding: 28px 26px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.number {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  letter-spacing: .08em;
}

.service-grid h3 {
  margin: 38px 0 10px;
  color: var(--navy-200);
  font-size: 26px;
  line-height: 1.08;
}

.service-grid p {
  margin: 0;
  color: var(--navy-400);
  font-size: 14px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
  padding: 56px;
  border: 1px solid rgba(201,179,109,.34);
  background:
    linear-gradient(120deg, rgba(201,179,109,.055), transparent 40%),
    rgba(255,255,255,.025);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy-200);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.contact-details {
  display: grid;
  gap: 14px;
  color: var(--navy-300);
  font-size: 14px;
}

.contact-details a {
  width: fit-content;
  color: var(--navy-200);
  text-decoration: none;
  border-bottom: 1px solid rgba(148,169,208,.28);
}

.contact-details a:first-child {
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--navy-500);
  font-size: 12px;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 56px;
  }

  .hero-copy { order: 1; }
  .hero-visual { order: 0; }

  .crest-frame {
    width: min(82vw, 390px);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    min-height: 76px;
  }

  .brand-name {
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 54px;
  }

  h1 {
    font-size: clamp(45px, 15vw, 68px);
  }

  .intro {
    font-size: 15px;
  }

  .positioning {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .positioning-line {
    display: none;
  }

  .positioning p {
    font-size: 12px;
    line-height: 1.7;
  }

  .services {
    padding: 64px 0;
  }

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

  .service-grid article {
    min-height: auto;
  }

  .contact-panel {
    padding: 34px 24px;
  }

  footer {
    padding: 28px 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
