:root {
  --ink: #1f1a16;
  --clay: #a36a4a;
  --linen: #f6f0e6;
  --sage: #5e6f5f;
  --sun: #e1b17c;
  --paper: #fff7ec;
  --shadow: rgba(31, 26, 22, 0.15);
}

body {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, rgba(225, 177, 124, 0.18), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(163, 106, 74, 0.16), transparent 40%),
    var(--linen);
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.2px;
}

.site-nav {
  background: rgba(246, 240, 230, 0.9);
  backdrop-filter: blur(6px);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.35rem;
}

.navbar-nav .nav-link {
  padding: 0.75rem 1rem;
}

.navbar-nav .nav-link.active {
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
  z-index: 0;
}

.hero::before {
  width: 220px;
  height: 220px;
  background: rgba(163, 106, 74, 0.35);
  top: 20px;
  right: 8%;
}

.hero::after {
  width: 160px;
  height: 160px;
  background: rgba(94, 111, 95, 0.25);
  bottom: 15px;
  left: 4%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 2.6vw + 1.5rem, 3.5rem);
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3a312b;
}

.hero-cta .btn {
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
}

.btn-primary {
  background: var(--clay);
  border-color: var(--clay);
  box-shadow: 0 10px 24px rgba(163, 106, 74, 0.25);
}

.btn-outline-ink {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: transparent;
}

.btn-outline-ink:hover {
  color: #fff;
  background: var(--ink);
}

.hero-meta {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.6rem;
  color: #5a4f47;
  font-size: 0.95rem;
}

.hero-meta i {
  color: var(--clay);
  margin-right: 0.6rem;
}

.hero-card {
  background: var(--paper);
  border-radius: 26px;
  padding: 1rem;
  box-shadow: 0 24px 40px var(--shadow);
  transform: rotate(-1deg);
}

.hero-img {
  border-radius: 20px;
  display: block;
}

.hero-caption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #5a4f47;
}

.section {
  padding: 3.5rem 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.section p {
  color: #51463f;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  height: 100%;
  box-shadow: 0 16px 30px rgba(31, 26, 22, 0.08);
  border: 1px solid rgba(31, 26, 22, 0.06);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.feature-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.section-band {
  background: linear-gradient(120deg, rgba(163, 106, 74, 0.12), rgba(94, 111, 95, 0.16));
  border-top: 1px solid rgba(31, 26, 22, 0.08);
  border-bottom: 1px solid rgba(31, 26, 22, 0.08);
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(31, 26, 22, 0.12);
}

.reveal {
  opacity: 0;
  animation: rise 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    animation: none;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    transform: none;
  }
}
