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

:root {
  --black: #000000;
  --white: #ffffff;
  --body-text: #222222;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --max-content: 680px;
  --pad-h: 64px;
}

body {
  background: var(--white);
  color: var(--body-text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { opacity: 0.65; }

/* ── NAV ── */
header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icons a {
  text-decoration: none;
  color: var(--white);
  opacity: 0.9;
  display: flex;
  align-items: center;
}
.nav-icons a:hover { opacity: 1; }

.nav-icons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.38) 100%
  );
}

.hero-title {
  position: absolute;
  bottom: 34px;
  left: calc(50% - 420px + 80px);
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(2.85rem, 5.5vw, 2.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

/* ── WHITE SECTIONS ── */
.section-white {
  background: var(--white);
  padding: 72px var(--pad-h);
}

.section-white .inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.intro-para {
  font-family: var(--serif);
  font-size: clamp(2.85rem, 2.8vw, 2.15rem);
  font-weight: 700;
  line-height: 1.38;
  color: var(--black);
  margin-bottom: 42px;
  letter-spacing: -0.01em;
}

.body-para {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--body-text);
  margin-bottom: 22px;
}
.body-para:last-child { margin-bottom: 0; }

/* ── BLACK QUOTE SECTIONS ── */
.section-black {
  background: var(--black);
  padding: 88px var(--pad-h);
}

.section-black .inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(2.85rem, 3.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ── CONTACT SECTION ── */
.section-contact {
  background: var(--black);
  padding: 80px var(--pad-h) 88px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-inner-simple {
  max-width: var(--max-content);
  margin: 0 auto;
}

.contact-left-text {
  font-family: var(--serif);
  font-size: clamp(2.85rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-left-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.5);
  transition: text-decoration-color 0.2s;
}
.contact-left-text a:hover {
  text-decoration-color: rgba(255,255,255,1);
  opacity: 1;
}

.contact-thanks {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: #777;
}

footer a { color: inherit; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .hero-title {
    left: 60px;   /* matches --pad-h on mobile */
    font-size: 2.85rem;
    bottom: 24px;
  }
}
