@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --cream: #f6efe2;
  --paper: #fffaf1;
  --ink: #3b2a1f;
  --muted: #806a58;
  --gold: #b8792e;
  --gold-dark: #8a531d;
  --line: rgba(89, 55, 28, 0.18);
  --shadow: 0 20px 60px rgba(70, 42, 20, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.85), transparent 42rem),
    var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
}

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

.site-header {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(76, 43, 19, 0.15);
}

main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding-bottom: 80px;
}

.banner-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.banner-frame img {
  width: 100%;
  height: auto;
}

.hero-copy {
  width: min(760px, 100%);
  margin: 42px auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 600;
}

.intro {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  box-shadow: 0 10px 24px rgba(137, 81, 27, 0.22);
}

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

.button-muted {
  border-color: var(--line);
  background: rgba(255,255,255,0.45);
  color: var(--muted);
}

.message,
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

.poem {
  margin: 30px 0 80px;
  padding: clamp(34px, 7vw, 80px);
  border-radius: 26px;
  background:
    linear-gradient(rgba(49, 27, 12, 0.28), rgba(49, 27, 12, 0.44)),
    url("assets/for-the-love-of-god-banner.png") center / cover;
  color: white;
  box-shadow: var(--shadow);
}

.poem .eyebrow {
  color: #f5d7a5;
}

.poem p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.35;
  text-shadow: 0 2px 16px rgba(0,0,0,0.28);
}

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

.text-link {
  justify-self: end;
  color: var(--gold-dark);
  font-weight: 600;
  text-underline-offset: 5px;
}

footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 12px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .hero {
    padding-bottom: 56px;
  }

  .banner-frame {
    border-radius: 18px;
  }

  .hero-copy {
    margin-top: 30px;
  }

  .message,
  .contact {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 54px 0;
  }

  .text-link {
    justify-self: start;
  }

  .poem {
    margin-bottom: 54px;
    border-radius: 18px;
  }
}
