:root {
  --navy: #0f172a;
  --navy-2: #17243b;
  --panel: rgba(30, 41, 59, 0.78);
  --gold: #c8a96b;
  --gold-light: #d9bc84;
  --white: #f8fafc;
  --muted: #cbd5e1;
  --line: rgba(200, 169, 107, 0.25);
  --shadow: 0 24px 70px rgba(0,0,0,.32);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(104, 86, 64, .35), transparent 32rem),
    radial-gradient(circle at 15% 20%, rgba(30, 58, 95, .65), transparent 28rem),
    linear-gradient(160deg, var(--navy), var(--navy-2) 52%, #243145);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(10, 18, 35, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 18rem;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: .045em;
  text-transform: uppercase;
}

.brand span {
  display: block;
  color: var(--gold-light);
  font-size: .9rem;
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.main-nav a,
.site-footer a,
.footer-button {
  padding: .6rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.main-nav a:hover,
.site-footer a:hover,
.footer-button:hover {
  background: rgba(200, 169, 107, .12);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  align-items: stretch;
  min-height: 78vh;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(30,58,95,.35), transparent 45%),
    linear-gradient(145deg, #071427, #0f1f38 55%, #172a46);
  box-shadow: var(--shadow);
}

.hero-text {
  padding: clamp(2rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--gold-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .82rem;
}

h1, h2, h3 { margin: 0; line-height: 1.1; }

h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -.035em;
}

h3 {
  color: var(--gold-light);
  font-size: 1.45rem;
}

.lead {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button.small {
  min-height: 2.75rem;
  padding: .65rem 1rem;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,.26);
}

.button.primary {
  background: var(--gold);
  color: #171717;
}

.button.primary:hover { background: var(--gold-light); }

.button.secondary {
  border: 1px solid var(--line);
  color: var(--gold-light);
  background: rgba(255,255,255,.035);
}

.button.secondary:hover {
  border-color: var(--gold-light);
  background: rgba(200,169,107,.1);
}

.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,.05), transparent 70%);
}

.hero-image img {
  width: auto;
  height: 100%;
  max-height: 820px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: contrast(1.02) saturate(.97);
  transition: transform .35s ease, filter .35s ease;
}

.hero-image:hover img {
  transform: scale(1.015);
  filter: contrast(1.04) saturate(1);
}

.intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.card {
  min-height: 230px;
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 188, 132, .52);
  background: rgba(37, 52, 82, .9);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}

.card p,
.panel p,
.philosophy p,
.contact p {
  color: var(--muted);
}

.profile {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1.2rem;
}

.panel,
.contact-card,
.philosophy {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel {
  padding: clamp(1.5rem, 4vw, 2.2rem);
}

.qualifications ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.qualifications li { margin: .35rem 0; }

.philosophy { padding: clamp(1.7rem, 4vw, 2.5rem); }

blockquote {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.contact {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: .75rem;
  padding: 1.8rem;
}

.contact-card strong {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.contact-card span { color: var(--muted); }

.contact-card a {
  color: var(--white);
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: color .22s ease, border-color .22s ease, transform .22s ease;
}

.contact-card a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateX(2px);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: none;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem;
  background: rgba(10, 18, 35, .96);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: .25rem 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(10, 18, 35, .9);
}

.legal {
  width: min(920px, calc(100% - 2rem));
}

.legal h1 {
  max-width: none;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.legal h2 {
  margin-top: 2.5rem;
  font-size: 1.8rem;
}

.legal a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(217, 188, 132, .5);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text { padding: 3rem 2rem 2rem; }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 7vw, 4.2rem);
  }

  .hero-image {
    min-height: 540px;
    padding-top: 1rem;
  }

  .hero-image img {
    width: auto;
    height: 100%;
    max-height: 620px;
  }
}

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

  .intro,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 64px;
    height: 64px;
  }

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

  .site-footer { flex-direction: column; }

  .hero { border-radius: 20px; }

  .hero-text { padding: 2rem 1.4rem 1rem; }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: .98;
  }

  .lead { font-size: 1rem; }

  .hero-image {
    min-height: 420px;
    padding: 0 1rem;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
  }

  .hero-actions { flex-direction: column; }

  .button { width: 100%; }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }
}
