:root {
  --cream: #FDFBF9;
  --paper: #FDFBF9;
  --ink: #52301f;
  --accent: #9a5b2b;
  --accent-soft: rgba(154, 91, 43, 0.14);
  --line: rgba(82, 48, 31, 0.15);
  --shadow: 0 24px 60px rgba(58, 34, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #FDFBF9;
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 0.75rem 2rem 2rem;
}

.hero-inner {
  width: min(100%, 1100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.brand-card {
  width: min(100%, 860px);
  height: auto;
  display: block;
  filter: none;
}

.hero-note {
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: rgba(82, 48, 31, 0.8);
  max-width: 760px;
}

.scroll-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-top: 0.5rem;
}

.arrow {
  font-size: 1.4rem;
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.content-section {
  padding: 6rem 1.5rem 7rem;
}

.content-wrap {
  width: min(100%, 860px);
  margin: 0 auto;
  background: #FDFBF9;
  border: 1px solid rgba(82, 48, 31, 0.08);
  border-radius: 18px;
  box-shadow: none;
  padding: clamp(1.5rem, 3vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1 {
  margin: 0 0 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 600;
}

p {
  margin: 0 0 1.25rem;
  font-size: 1.06rem;
  line-height: 1.9;
}

p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 0.5rem 0.75rem 2rem;
  }

  .brand-card {
  width: 126%;
  max-width: none;
}

  .hero-note {
    font-size: 0.98rem;
  }

  .content-section {
    padding-top: 2rem;
  }

  .content-wrap {
    border-radius: 20px;
  }
}
