:root {
  --cream: #f5eadc;
  --cream-deep: #ecdac4;
  --maroon: #7b352b;
  --maroon-deep: #5c231d;
  --gold: #d8a54b;
  --gold-soft: #f3e1b6;
  --green: #14513c;
  --ink: #2a1a14;
  --soft-border: rgba(0, 0, 0, 0.05);
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 234, 220, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--soft-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--maroon);
}

.brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8b6d58;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.7rem;
  font-size: 0.9rem;
  align-items: center;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background: rgba(123, 53, 43, 0.08);
}

.btn-nav {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: var(--maroon);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-nav:hover {
  background: var(--maroon-deep);
}

.btn-primary {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--maroon);
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 53, 43, 0.3);
}

section {
  padding: 3.5rem 0;
}

.section-heading {
  font-size: clamp(1.8rem, 2.5vw + 0.8rem, 2.4rem);
  margin-bottom: 0.9rem;
  color: var(--maroon);
}

footer {
  background: var(--cream-deep);
  padding: 2.5rem 0;
  border-top: 1px solid var(--soft-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer-links a:hover {
  color: var(--maroon);
}
