*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --gray-light: #e8e8e4;
  --gray-mid: #9a9a94;
  --accent: #1a1a1a;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-light);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
}

.nav-logo-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 400;
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--black);
  padding: 10px 22px;
  transition: background 0.25s !important;
}

.nav-cta:hover { background: #333 !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 100px 24px 60px;
  background:
    linear-gradient(rgba(248,248,246,0.76), rgba(248,248,246,0.82)),
    url('../images/hero-bg-v4.webp') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(240,240,236,0.58) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.hero-logo-wrap {
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-logo-wrap svg {
  width: 100px;
  height: 100px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--black);
  animation: fadeUp 0.8s 0.2s ease both;
  margin-bottom: 10px;
}

.hero-title span {
  font-weight: 500;
  font-style: italic;
}

.hero-subtitle {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 28px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-desc {
  max-width: 520px;
  margin: 28px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  animation: fadeUp 0.8s 0.4s ease both;
  font-weight: 300;
}

.hero-actions {
  margin-top: 52px;
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.8s 0.5s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-primary:hover { background: #333; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gray-light);
  color: var(--black);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover { border-color: var(--black); background: var(--off-white); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 0.8s ease both;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--gray-light);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
}

.stat-item {
  flex: 1;
  max-width: 260px;
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid #222;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #777;
}

/* ── SECTION ── */
section {
  padding: 100px 48px;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
}

.section-title em { font-style: italic; }

/* ── SERVICES ── */
#services { background: var(--off-white); }

.services-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--gray-light);
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.25s;
  cursor: default;
  min-height: 315px;
}

.service-card:hover { background: var(--off-white); }

.service-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.2;
}

.service-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px;
}

.about-visual { position: relative; }

.about-box {
  background:
    linear-gradient(rgba(248,248,246,0.28), rgba(248,248,246,0.48)),
    url('../images/about-bg-v4.webp') center center / cover no-repeat;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.18), rgba(255,255,255,0.52));
}

.about-box-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 44px 36px;
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.about-box-inner svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.about-box-tag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10,10,10,0.92);
  color: var(--white);
  padding: 18px 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}

.about-content .section-eyebrow { margin-bottom: 16px; }

.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-top: 20px;
  font-weight: 300;
}

.about-body + .about-body { margin-top: 16px; }

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-value-line {
  width: 24px;
  height: 1px;
  background: var(--black);
  margin-top: 10px;
  flex-shrink: 0;
}

.about-value-text {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 400;
}

/* ── TEAM ── */
#team {
  background: var(--off-white);
  text-align: center;
}

#team .section-title { margin-bottom: 60px; }

.team-grid {
  display: flex;
  gap: 2px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  flex: 1;
  background: var(--white);
  padding: 52px 40px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gray-light);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--black);
}

.team-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.team-role {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.team-bio {
  font-size: 13px;
  line-height: 1.75;
  color: #666;
}

/* ── CONTACT ── */
#contact {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 120px 48px;
}

#contact .section-eyebrow { color: #666; }
#contact .section-title { color: var(--white); }
#contact .section-title em { color: #aaa; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 400px) minmax(300px, 520px);
  gap: 36px;
  align-items: stretch;
  margin: 64px auto 0;
  max-width: 960px;
  text-align: left;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #222;
}

.contact-info-item:first-child {
  border-top: 1px solid #222;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #666;
}

.contact-value,
.contact-value a {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
}

.contact-map {
  min-height: 100%;
  height: 100%;
  display: flex;
  border: 1px solid #222;
  overflow: hidden;
  background: #111;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.05);
}

.contact-cta-left {
  margin-top: 18px;
  text-align: left;
}

.contact-cta { margin-top: 0; }

.btn-white {
  display: inline-block;
  border: 1px solid #333;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 48px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.btn-white:hover { border-color: var(--white); background: #111; }

/* ── LEGAL PAGES ── */
.legal-main {
  padding: 130px 48px 90px;
  max-width: 980px;
  margin: 0 auto;
}

.legal-main h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 18px;
}

.legal-updated {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 48px;
}

.legal-content {
  border-top: 1px solid var(--gray-light);
  padding-top: 42px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  margin: 38px 0 14px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
}

.legal-content ul {
  margin: 12px 0 0 22px;
}

.legal-note {
  background: var(--off-white);
  border-left: 3px solid var(--black);
  padding: 18px 20px;
  margin: 24px 0;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  font-size: 11px;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
  gap: 12px 24px;
}

footer a { color: #777; text-decoration: none; }
footer a:hover { color: #aaa; }

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  background: rgba(10, 10, 10, 0.96);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 760px;
}

.cookie-banner-text strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.cookie-banner-text span {
  font-size: 13px;
  line-height: 1.6;
  color: #cfcfcf;
}

.cookie-banner-text a {
  width: fit-content;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: 1px solid rgba(255,255,255,0.22);
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-btn-primary {
  background: var(--white);
  color: var(--black);
}

.cookie-btn-primary:hover {
  background: #e8e8e4;
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--white);
}

.cookie-btn-secondary:hover {
  border-color: var(--white);
}

.cookie-settings {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9998;
  display: none;
  border: 1px solid rgba(10,10,10,0.18);
  background: rgba(255,255,255,0.94);
  color: var(--black);
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.cookie-settings.is-visible {
  display: block;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    padding: 12px 10px;
  }
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    padding: 12px 10px;
  }

  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #about { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .stats-band { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid #222; min-width: 160px; }
  .team-grid { flex-direction: column; }
  footer { padding: 24px; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-map { height: auto; }
  .contact-map iframe { min-height: 360px; height: 360px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 280px; }
  .btn-primary, .btn-outline { text-align: center; }
  .legal-main { padding: 110px 24px 70px; }
}


.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  background: rgba(10, 10, 10, 0.96);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner-text { display: flex; flex-direction: column; gap: 7px; max-width: 760px; }
.cookie-banner-text strong { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.cookie-banner-text span { font-size: 13px; line-height: 1.6; color: #cfcfcf; }
.cookie-banner-text a { width: fit-content; color: var(--white); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: underline; text-underline-offset: 4px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { border: 1px solid rgba(255,255,255,0.22); padding: 12px 18px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.cookie-btn-primary { background: var(--white); color: var(--black); }
.cookie-btn-secondary { background: transparent; color: var(--white); }
.cookie-reopen { position: fixed; right: 18px; bottom: 18px; z-index: 9998; display: none; background: var(--black); color: var(--white); border: 1px solid rgba(255,255,255,0.15); padding: 10px 14px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; }
.cookie-reopen.is-visible { display: inline-block; }
@media (max-width: 760px) {
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; flex-direction: column; align-items: flex-start; padding: 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 12px 10px; }
}
