:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #3e3530;
  background: #f9f3ec;
  font-size: 16px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top left, rgba(235, 226, 216, 0.7), transparent 35%),
              radial-gradient(circle at bottom right, rgba(223, 200, 180, 0.35), transparent 25%),
              #f9f3ec;
}

.page-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0 24px;
}

.brand {
  display: inline-block;
  font-family: "Zapfino", cursive, "Brush Script MT", serif;
  font-size: 1.65rem;
  color: #3e3530;
  text-decoration: none;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.main-nav a {
  color: #52443d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #1d1613;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #4f4136;
  background: rgba(255,255,255,0.75);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  background: #f0e5dc;
  transform: translateY(-1px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 42px 0 64px;
}

.hero-content {
  max-width: 580px;
}

.eyebrow {
  margin: 0 0 16px 0;
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8d7f73;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(3rem, 3.9vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-family: Georgia, "Times New Roman", serif;
  color: #2f2420;
}

.hero-content p {
  margin: 28px 0 34px;
  max-width: 42rem;
  color: #5e5148;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: #332824;
  color: #fff;
  box-shadow: 0 18px 35px rgba(51, 40, 36, 0.12);
}

.btn-secondary {
  background: rgba(255,255,255,0.95);
  color: #332824;
  border: 1px solid rgba(51,40,36,0.16);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  background: linear-gradient(180deg, #f5f1ec 0%, #e7ded4 100%);
  box-shadow: 0 50px 120px rgba(47, 33, 25, 0.16);
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top, rgba(255,255,255,0.35), transparent 22%),
                    radial-gradient(circle at bottom right, rgba(69, 44, 28, 0.12), transparent 18%);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 30px;
}

@media (max-width: 960px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 20px 18px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 18px;
    padding-top: 12px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
