:root {
  --bg: #f7f9fc;
  --ink: #081221;
  --muted: #3f5168;
  --accent: #0b3a6e;
  --accent-soft: rgba(11, 58, 110, 0.14);
  --silver: #0d2238;
  --line: #d5dee9;
  --glass: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 40px rgba(8, 18, 33, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(11, 58, 110, 0.12), transparent 46%),
    radial-gradient(circle at 86% 0%, rgba(8, 18, 33, 0.06), transparent 40%),
    linear-gradient(180deg, #ffffff, var(--bg));
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem clamp(1.25rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-name {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: var(--silver);
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-link {
  font-size: 0.95rem;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease, color 0.3s ease;
}

.contact-link:hover {
  color: #06294d;
  border-bottom: 1px solid var(--accent);
}

main {
  padding: 0 clamp(1.25rem, 5vw, 4rem) 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: clamp(440px, 70vh, 640px);
  padding: 0;
  background: var(--glass);
  border: 1px solid rgba(213, 222, 233, 1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0.75rem 0 2.25rem;
}

.hero-content {
  max-width: 720px;
  padding: clamp(2rem, 4vw, 3.25rem);
  animation: fadeIn 0.9s ease-out;
  justify-self: start;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  color: var(--silver);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 52ch;
  color: rgba(8, 18, 33, 0.78);
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), #06294d);
  color: #fff;
  font-weight: 500;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 24px rgba(11, 58, 110, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(11, 58, 110, 0.22);
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  min-height: 100%;
  width: 100%;
  background: #f2f6fb;
}

.hero-photo {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  z-index: 1;
  border-radius: 0;
  border: none;
  box-shadow: none;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
}

.section {
  padding: 3.5rem 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.8rem;
  color: var(--silver);
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(8, 18, 33, 0.08);
}

.card p {
  margin-bottom: 0;
}

.focus-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.focus-label {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.8rem;
  color: var(--silver);
}

.focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.focus-chips span {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(247, 249, 252, 1);
  font-size: 0.85rem;
  color: var(--muted);
}

.contact {
  display: block;
}

.contact-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 14px 30px rgba(8, 18, 33, 0.1);
}

.contact-direct {
  margin-top: 1rem;
}

.contact-email a {
  font-size: 1.2rem;
  color: var(--accent);
}

.aside-note {
  font-size: 0.9rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem clamp(1.25rem, 5vw, 4rem) 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 24px;
  }

  .hero-visual {
    justify-content: center;
    min-height: clamp(240px, 56vw, 380px);
  }

  .hero-photo {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .brand-name {
    letter-spacing: 0.2rem;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .focus-strip {
    border-radius: 24px;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

}
