/* --------- 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;
  color: #1f232b;
  line-height: 1.7;
}

a {
  color: #1f232b;
  text-decoration: none;
}

a:hover {
  opacity: 0.82;
}

img {
  display: block;
}

/* --------- 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;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 600;
}

/* --------- Header --------- */
header {
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 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.25rem;
}

.hero-body {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #1f232b;
  font-size: 0.9rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

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

.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: 1040px;
  margin: 0 auto;
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section--panel {
  background: #e6e0d9;
  border-radius: 24px;
  padding: 2rem;
}

/* --------- Grid / Cards --------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #e6e0d9;
  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.9rem;
}

.card p:last-child,
.section--panel p:last-child {
  margin-bottom: 0;
}

/* --------- 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.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------- Responsive --------- */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    gap: 0.75rem 1rem;
  }

  .section {
    padding: 2.5rem 5vw;
  }

  .section--panel {
    padding: 1.5rem;
  }
}
