/* --------- Base Styles --------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f3f0; /* soft, warm neutral */
  color: #1f232b;      /* deep neutral */
  line-height: 1.7;
}

a {
  color: #1f232b;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* --------- Layout --------- */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* --------- Typography --------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; }

/* --------- Header --------- */
header {
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.95rem;
}

/* --------- Hero --------- */
.hero {
  padding: 4rem 5vw 3rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 3rem;
  align-items: center;
}

.hero-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

.hero-body {
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #1f232b;
  font-size: 0.9rem;
}

.btn-primary {
  background: #1f232b;
  color: #f5f3f0;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  background: #121824;
  min-height: 260px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------- Sections --------- */
.section {
  padding: 3rem 5vw;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section--panel {
  background: #e6e0d9;
  border-radius: 24px;
  padding: 2rem;
}

/* --------- Featured Grid --------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

/* --------- Footer --------- */
footer {
  padding: 1.5rem 5vw 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* --------- Responsive --------- */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
  header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  nav ul {
    flex-wrap: wrap;
  }
}
