:root {
  --brand: #52887b;
  --brand-deep: #1f3b36;
  --cream: #f6efe6;
  --cream-deep: #ecdcc9;
  --ink: #1d1d1b;
  --muted: #4d5956;
  --accent: #c8a66a;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(20, 30, 28, 0.15);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(82, 136, 123, 0.15), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(200, 166, 106, 0.2), transparent 40%),
    linear-gradient(120deg, var(--cream) 0%, var(--cream-deep) 60%, #e6d1b6 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 239, 230, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 59, 54, 0.08);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 150px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

nav a {
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

nav a[aria-current="page"] {
  border-color: var(--brand);
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 14px;
  color: var(--brand-deep);
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

p {
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2.6px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background: var(--brand);
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(82, 136, 123, 0.25);
}

.hero-panel {
  background: var(--brand-deep);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel h2,
.hero-panel p {
  color: var(--white);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: var(--radius-md);
}

.stat h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.72);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 30, 28, 0.12);
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(20, 30, 28, 0.08);
}

.testimonial p {
  margin-bottom: 14px;
}

.testimonial span {
  font-weight: 600;
  color: var(--brand-deep);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 30, 28, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(20, 30, 28, 0.08);
}

.card h3 {
  margin-top: 6px;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(82, 136, 123, 0.12);
  color: var(--brand-deep);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: min(520px, 100%);
  margin: 0 auto;
  justify-content: flex-start;
}

.list li::before {
  content: "";
  margin-top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.cta {
  background: var(--brand-deep);
  color: var(--white);
  padding: 48px 0;
}

.cta h2,
.cta p {
  color: var(--white);
}

.footer {
  padding: 48px 0 36px;
  background: #182a27;
  color: #d7e6e2;
}

.footer a {
  color: #d7e6e2;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer .brand img {
  width: 140px;
  filter: brightness(0) invert(1);
}

.footer small {
  display: block;
  margin-top: 18px;
  color: rgba(215, 230, 226, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-inner {
    flex-direction: column;
  }

  .hero {
    padding-top: 50px;
  }

  .button-row {
    justify-content: center;
  }
}

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