:root {
  --black: #0a0a0a;
  --gold: #a88b4a;
  --gray: #6b6b6b;
  --light-gray: #f4f3f1;
  --text: #1c1c1c;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img { height: 48px; width: 48px; }
nav.links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
nav.links a { opacity: 0.85; transition: opacity 0.2s; }
nav.links a:hover, nav.links a.active { opacity: 1; }
nav.links a.active { color: var(--gold); }
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.social-links a {
  display: flex;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.social-links a:hover { opacity: 1; color: var(--gold); }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* Hero */
.hero {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 90px 24px 100px;
}
.hero img.logo-lg { height: 135px; width: 135px; margin-bottom: 28px; }
.hero h1 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.hero p.subtitle {
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 28px;
}
.hero p.lead {
  max-width: 620px;
  margin: 0 auto 34px;
  color: #d8d8d8;
  font-size: 1.05rem;
}
.btn {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  padding: 14px 32px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn:hover { background: #c2a05c; }
.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 13px 32px;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: #0a0a0a; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: var(--black);
  color: #fff;
  padding: 22px 24px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { flex: 1; min-width: 240px; margin: 0; font-size: 0.9rem; color: #d8d8d8; }
.cookie-banner-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-banner-link { color: var(--gold); font-size: 0.85rem; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.cookie-banner-link:hover { color: #fff; }
.cookie-banner .btn { padding: 11px 26px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; justify-content: space-between; }
}

/* Page header (listing / article pages) */
.page-hero {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 70px 24px 60px;
}
.page-hero p.subtitle {
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.page-hero h1 { font-size: 2.1rem; font-weight: 400; }

/* Sections */
section { padding: 80px 24px; }
.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.section-kicker {
  text-align: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.section-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
  color: #4a4a4a;
}

/* About */
.about {
  background: var(--light-gray);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.about-photo {
  background: var(--black);
  aspect-ratio: 3/4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo img { height: 70px; width: 70px; opacity: 0.9; }
.about-text h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 16px; }
.about-text p {
  color: #3d3d3d;
  margin-bottom: 14px;
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.about-text .lead-sentence { font-size: 1.14em; }
.placeholder-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #9a9a9a;
  font-style: italic;
}

/* Specializations */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.spec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e4e2de;
  border-radius: 4px;
  padding: 38px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.spec-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.spec-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.spec-icon svg { width: 32px; height: 32px; stroke: #0a0a0a; }
.spec-card h3 { font-size: 1.05rem; font-weight: 400; margin-bottom: 14px; }
.underline { display: block; width: 26px; height: 2px; background: var(--gold); border: none; }
.spec-listing-actions { text-align: center; margin-top: 46px; }

/* Article page */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}
.article-meta {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.article h1 { font-size: 2rem; font-weight: 400; margin-bottom: 24px; line-height: 1.3; }
.article-content h2 { font-size: 1.4rem; font-weight: 400; margin: 38px 0 14px; }
.article-content h3 { font-size: 1.15rem; font-weight: 400; margin: 30px 0 12px; }
.article-content p { color: #333; margin-bottom: 18px; font-size: 1.02rem; }
.article-content ul, .article-content ol { color: #333; margin: 0 0 18px 22px; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 26px 0;
  color: #4a4a4a;
  font-style: italic;
}
.article-disclaimer {
  margin-top: 50px;
  padding: 18px 20px;
  background: var(--light-gray);
  border-radius: 4px;
  font-size: 0.85rem;
  color: #5a5a5a;
}
.back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 0.88rem;
  color: var(--gray);
  border-bottom: 1px solid #ccc;
}
.back-link:hover { color: var(--black); border-color: var(--gold); }
.spec-cta { margin-top: 44px; }
.article-spec .article-content p {
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 30px;
}
.team-card {
  display: block;
  text-align: center;
  transition: opacity 0.2s;
}
.team-card:hover { opacity: 0.85; }
.team-photo {
  aspect-ratio: 1 / 1;
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.team-role { color: var(--gray); font-size: 0.85rem; }

/* Team detail page */
.team-detail-header { text-align: center; padding-top: 66px; }
.team-detail-header h1 { font-size: 2.3rem; font-weight: 400; margin-bottom: 16px; }
.team-detail-header .underline { margin: 0 auto; }
.team-detail-role {
  font-size: 1.2rem;
  font-variant: small-caps;
  font-weight: 700;
  margin-bottom: 18px;
}
.team-detail-grid { margin-top: 46px; }
.team-detail-cta { margin-top: 26px; }

/* Contact */
.contact { background: var(--black); color: #fff; }
.contact .section-title, .contact .section-kicker { color: #fff; }
.contact .section-kicker { color: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.contact-card {
  text-align: center;
  padding: 30px 20px;
  background: #151515;
  border-radius: 4px;
}
.contact-card .label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.contact-card a, .contact-card .value { font-size: 1.02rem; word-break: break-word; }
.map-wrap {
  margin-top: 50px;
  border-radius: 4px;
  overflow: hidden;
  filter: grayscale(0.3);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Footer */
footer {
  background: #060606;
  color: #8a8a8a;
  text-align: center;
  padding: 28px 24px;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav.links { display: none; }
  .hero h1 { font-size: 1.8rem; }
  .article h1 { font-size: 1.6rem; }
}
