:root {
  --bg: #efe7dc;
  --panel: rgba(255,255,255,0.72);

  --text: #1e1c1a;
  --muted: #6c6257;

  --gold: #b08a57;
  --gold-dark: #8f6c3f;

  --line: rgba(176,138,87,0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, #f7f1e8 0%, #efe7dc 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
}

.intro {
  margin-top: 24px;
  max-width: 520px;

  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 36px;

  min-height: 54px;
  padding: 0 34px;

  border-radius: 999px;

  background: var(--gold);
  color: white;

  text-decoration: none;
  font-weight: 600;

  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
}

.subscribe-section,
.feedback-section {
  padding: 100px 0;
}

.subscribe-section {
  border-top: 1px solid var(--line);
}

.feedback-section {
  border-top: 1px solid var(--line);
}

.subscribe-section h2,
.feedback-section h2 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.subscribe-section p,
.feedback-section p {
  margin-bottom: 30px;
  color: var(--muted);
}

.subscribe-form,
.feedback-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

input,
textarea {
  width: 100%;

  padding: 16px 18px;

  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;

  background: rgba(255,255,255,0.75);

  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

button {
  width: fit-content;

  min-height: 50px;
  padding: 0 28px;

  border: none;
  border-radius: 999px;

  background: var(--gold);
  color: white;

  font: inherit;
  font-weight: 600;

  cursor: pointer;

  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

button:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
}

.site-footer {
  padding: 60px 0 80px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 8px 0;
}

.disclaimer {
  max-width: 700px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 920px) {

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .intro {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button {
    margin-left: auto;
    margin-right: auto;
  }

}