@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand: #f5efe6;
  --earth: #c8a97e;
  --deep: #1a1209;
  --forest: #2d4a3e;
  --accent: #e07b3f;
  --mist: #f0ebe3;
  --text-muted: #7a6a55;
  --text-light: #a89880;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--sand); color: var(--deep); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 3rem;
  background: rgba(245,239,230,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,126,0.2);
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--deep); text-decoration: none; }
.logo span { color: var(--accent); }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a { text-decoration: none; color: var(--deep); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; transition: opacity 0.2s; }
nav ul a:hover, nav ul a.active { opacity: 1; color: var(--accent); }

/* FOOTER */
footer { background: var(--deep); color: white; padding: 4rem 5rem 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; }
.footer-logo span { color: var(--earth); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; font-weight: 300; }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--earth); margin-bottom: 1.2rem; font-weight: 500; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 0.85rem; font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* BUTTONS */
.btn-primary { background: var(--accent); color: white; border: none; padding: 0.9rem 2rem; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: #c96a2e; transform: translateY(-2px); }
.btn-ghost { color: var(--deep); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid var(--earth); padding-bottom: 2px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--accent); }

/* CARDS */
.card { background: white; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,18,9,0.12); }
.card-img { width: 100%; object-fit: cover; display: block; }
.card-body { padding: 1.5rem; }
.card-tag { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.6rem; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; line-height: 1.35; margin-bottom: 0.7rem; }
.card-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.card-meta { margin-top: 1rem; font-size: 0.75rem; color: var(--text-light); display: flex; gap: 1rem; }

/* SECTION */
.section { padding: 6rem 5rem; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; line-height: 1.2; }
.section-title em { font-style: italic; color: var(--forest); }
.see-all { color: var(--accent); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* PAGE HERO (inner pages) */
.page-hero { padding: 10rem 5rem 5rem; background: var(--deep); color: white; }
.page-hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--earth); font-weight: 500; margin-bottom: 1.2rem; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
.page-hero-title em { font-style: italic; color: var(--earth); }
.page-hero-sub { margin-top: 1.2rem; font-size: 1rem; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 500px; line-height: 1.8; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.anim-up { animation: fadeUp 0.9s ease both; }
.anim-up-2 { animation: fadeUp 0.9s ease both 0.15s; }
.anim-up-3 { animation: fadeUp 0.9s ease both 0.3s; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { gap: 1.2rem; }
  .section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
