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

:root {
  --light-bg: #ede5db;
  --light-text: #1a1a1a;
  --light-muted: #5c5a55;
  --dark-bg: #0c0d0f;
  --dark-text: #e8e6e1;
  --dark-muted: #8a8a8f;
  --gold: #c8a84e;
  --steel: #6b7a99;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ── Split background ── */
.split-bg {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: -1;
}

.split-bg .side {
  flex: 1;
}

.split-bg .light {
  background: var(--light-bg);
}

.split-bg .dark {
  background: var(--dark-bg);
}

/* ── Toolbar ── */
.toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #b8b8b8 0%, #d4d4d4 25%, #e8e8e8 50%, #d4d4d4 75%, #b8b8b8 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.toolbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a3a3a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: color 200ms ease;
  position: relative;
  z-index: 1;
}

.nav-link:hover {
  color: #111;
}

/* ── Main layout ── */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px 80px;
}

/* ── Hero / Banner ── */
.hero {
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.banner {
  display: block;
  width: calc(100% + 5.4vw);
  max-width: none;
  margin-left: -2.55vw;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 80px 32px 20px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Center strip (straddles both sides) ── */
.center-strip {
  text-align: center;
  padding: 32px 32px;
  margin-bottom: 48px;
  position: relative;
}

.center-strip h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--light-text) 0%, var(--light-text) 48%, var(--dark-text) 52%, var(--dark-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--light-muted) 0%, var(--light-muted) 48%, var(--dark-muted) 52%, var(--dark-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

/* ── Buttons ── */
.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.actions .btn-light {
  justify-self: end;
}

.actions .btn-dark {
  justify-self: start;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 0.85em;
}

.btn-light {
  background: var(--light-text);
  color: var(--light-bg);
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
  box-shadow: -4px 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-dark {
  background: var(--dark-text);
  color: var(--dark-bg);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-dark:hover {
  box-shadow: 4px 8px 30px rgba(0, 0, 0, 0.7);
}

/* ── Cards (split pair) ── */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
}

.card {
  padding: 40px 36px;
  border-radius: 0;
}

.card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.card p {
  line-height: 1.75;
  font-size: 0.98rem;
}

.card-light {
  background: transparent;
  color: var(--light-text);
  border-radius: 14px 0 0 14px;
  text-align: right;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.card-light p {
  color: var(--light-muted);
}

.card-light h2 {
  color: var(--gold);
}

.card-dark {
  background: transparent;
  color: var(--dark-text);
  border-radius: 0 14px 14px 0;
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.card-dark p {
  color: var(--dark-muted);
}

.card-dark h2 {
  color: var(--steel);
}

/* ── Split sections (CTA / Contact) ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
}

.split-left {
  padding: 32px 36px;
  text-align: right;
}

.split-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
}

.split-right {
  padding: 32px 36px;
  text-align: left;
}

.split-right p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--dark-muted);
  margin-bottom: 12px;
}

.split-section.flipped .split-left {
  text-align: left;
}

.split-section.flipped .split-left h2 {
  color: var(--steel);
}

.split-section.flipped .split-right {
  text-align: right;
}

.split-section.flipped .split-right p {
  color: var(--light-muted);
}

/* ── About ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
}

.about-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
}

.about-photo img {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
  padding: 40px 36px;
  text-align: left;
}

.about-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--steel);
}

.about-text p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--dark-muted);
  margin-bottom: 14px;
}

/* ── Contact ── */
.contact-email {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--steel);
  transition: opacity 200ms ease;
}

.contact-email:hover {
  opacity: 0.7;
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .split-bg {
    flex-direction: column;
  }

  .split-bg .side {
    flex: 1;
  }

  main {
    padding: 24px 16px 56px;
  }

  .center-strip h1,
  .subtitle,
  .tagline,
  .cta h2,
  .cta p {
    background: none;
    -webkit-text-fill-color: initial;
  }

  .center-strip h1 {
    color: var(--light-text);
  }

  .subtitle,
  .tagline,
  .cta p {
    color: var(--light-muted);
  }

  .cta h2 {
    color: var(--gold);
  }

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

  .card-light {
    border-radius: 14px 14px 0 0;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .card-dark {
    border-radius: 0 0 14px 14px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .about,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-left {
    text-align: left;
  }

  .about-photo {
    padding: 24px 36px 0;
  }
}
