/* ── Reset & Base ───────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

:root {
  --accent: #1AACB0;
  --bg: #f8f7f5;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --max-content: 720px;
  --section-pad-desktop: 100px;
  --section-pad-mobile: 56px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.site-header nav a:hover {
  color: var(--accent);
}

/* ── Hero ──────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 56vw, 600px);
  overflow: hidden;
}

.hero picture,
.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(24px, 6vw, 80px);
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.tagline {
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 520px;
}

/* ── Sections ──────────────────────────────────── */

.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad-mobile) 0;
}

.section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.section p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-light);
  max-width: 60ch;
}

/* ── Contact ───────────────────────────────────── */

.contact-line {
  font-style: normal;
  font-weight: 600;
  color: #6b6b6b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 12px;
}

.contact-line a {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-line a:hover {
  color: var(--accent);
}

.contact-line .sep {
  color: #b0b0b0;
  user-select: none;
}

.legal {
  margin-top: 32px;
  font-size: 0.8rem;
  color: #999;
}

/* ── Footer ────────────────────────────────────── */

.site-footer {
  padding: 32px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Responsive ────────────────────────────────── */

@media (min-width: 768px) {
  .section {
    padding: var(--section-pad-desktop) 0;
  }

  .site-header {
    padding: 16px 40px;
  }
}
