:root {
  --bg: #f6f3fb;
  --surface: #ffffff;
  --text: #111111;
  --muted: #5f5870;
  --accent: #7c3aed;
  --accent-dark: #5b21b6;
  --line: rgba(17, 17, 17, 0.1);
  --shadow: 0 18px 40px rgba(91, 33, 182, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f4ff 0%, #ffffff 100%);
}

img {
  max-width: 100%;
}

.hero {
  min-height: 100vh;
  padding: 2rem clamp(1.25rem, 3vw, 3rem) 4rem;
  background:
    linear-gradient(rgba(17, 17, 17, 0.28), rgba(17, 17, 17, 0.5)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, #12071f 0%, #3b0764 45%, #7c3aed 100%);
  color: #ffffff;
}

.nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 10vh;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  color: inherit;
  text-decoration: none;
}

.hero-content {
  max-width: 740px;
  padding: 4rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.lead,
.copy,
.about-copy p,
.card-copy p,
.contact-panel p {
  line-height: 1.75;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 180ms ease;
}

.button.primary {
  background: #ffffff;
  color: var(--accent-dark);
}

.button.primary:hover {
  background: #f3e8ff;
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.intro .copy {
  max-width: 760px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card.tall {
  grid-column: span 2;
}

.photo {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.photo-one {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(17, 17, 17, 0.2)), linear-gradient(135deg, #2e1065, #7c3aed);
}

.photo-two {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(17, 17, 17, 0.16)), linear-gradient(135deg, #111111, #6d28d9);
}

.photo-three {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.16), rgba(255, 255, 255, 0.1)), linear-gradient(135deg, #4c1d95, #c4b5fd);
}

.card-copy,
.contact-panel,
.about {
  padding: 1.5rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-copy {
  color: var(--muted);
}

.testimonial {
  text-align: center;
}

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto 1rem;
}

.quote-source {
  color: var(--muted);
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-panel a {
  color: var(--accent-dark);
}

@media (max-width: 900px) {
  .grid,
  .about {
    grid-template-columns: 1fr;
  }

  .card.tall {
    grid-column: span 1;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }
}
