:root {
  --lavender: #dec7ff;
  --lavender-light: #f4ecff;
  --emerald: #0f6d58;
  --emerald-bright: #2f9276;
  --gold: #c59b35;
  --gold-soft: #fff1b8;
  --ink: #20201f;
  --muted: #625f68;
  --paper: #fffdf8;
  --line: rgba(32, 32, 31, .12);
  --shadow: 0 24px 70px rgba(74, 55, 102, .16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 236, 255, .85), rgba(255, 253, 248, .96) 520px),
    var(--paper);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(197, 155, 53, .55);
  border-radius: 50%;
  background: #fff9e8;
  color: var(--emerald);
  font-size: .8rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .94rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--emerald);
}

.hero,
.intro,
.split,
.offers,
.statement,
.contact,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 52px;
  padding: 48px 0 76px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--emerald);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  font-weight: 600;
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 22px 0 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.lede {
  max-width: 600px;
  margin: 26px 0 0;
  color: #45414d;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 109, 88, .22);
}

.button.ghost {
  border-color: rgba(15, 109, 88, .28);
  color: var(--emerald);
  background: rgba(255, 255, 255, .48);
}

.button:hover,
.button:focus-visible,
.email-link:hover,
.email-link:focus-visible {
  transform: translateY(-1px);
}

.hero-art {
  position: relative;
  margin: 0;
  aspect-ratio: 1200 / 1416;
  min-height: 0;
  border: 1px solid rgba(197, 155, 53, .2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 22% 20%, rgba(222, 199, 255, .72), transparent 34%),
    radial-gradient(circle at 88% 74%, rgba(197, 155, 53, .24), transparent 30%),
    linear-gradient(145deg, #f6eeff, #fff9e8);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 241, 184, .56);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(222, 199, 255, .12), rgba(15, 109, 88, .16)),
    radial-gradient(circle at 18% 12%, rgba(255, 241, 184, .28), transparent 32%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.intro {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro p {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.split,
.statement,
.contact {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .72fr);
  gap: 54px;
  padding: 84px 0;
  align-items: start;
}

.gold-band {
  width: min(1180px, calc(100% - 40px));
  min-height: 180px;
  margin: 0 auto 18px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(15, 109, 88, .72), rgba(222, 199, 255, .2)),
    url("assets/gold-atmosphere.jpg") center / cover;
  box-shadow: 0 18px 50px rgba(74, 55, 102, .12);
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p,
.statement > p,
.contact p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.offers article,
.contact-panel {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.offers article:nth-child(2) {
  background: rgba(244, 236, 255, .78);
}

.offers article:nth-child(3) {
  background: rgba(255, 249, 232, .86);
}

.number {
  color: var(--gold);
  font-weight: 900;
  font-size: .82rem;
}

.offers p {
  margin: 0;
  color: var(--muted);
}

.statement {
  align-items: center;
}

.statement h2 {
  color: var(--emerald);
}

.contact {
  margin-top: 10px;
  margin-bottom: 48px;
  padding: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(222, 199, 255, .82), rgba(255, 249, 232, .9)),
    #f8f1ff;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact-panel {
  display: grid;
  min-height: auto;
  gap: 18px;
  background: rgba(255, 255, 255, .68);
}

.email-link {
  color: var(--emerald);
  font-size: clamp(1.28rem, 3vw, 2rem);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: .92rem;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--emerald);
}

@media (max-width: 920px) {
  .hero,
  .split,
  .statement,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-art {
    max-width: 560px;
  }

  .gold-band {
    min-height: 140px;
  }

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

@media (max-width: 660px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: .88rem;
  }

  .hero,
  .intro,
  .split,
  .offers,
  .statement,
  .contact,
  .gold-band,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .split,
  .statement {
    padding: 58px 0;
  }

  .contact {
    padding: 28px;
  }

  footer {
    flex-direction: column;
  }
}
