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

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

:root {
  --green-deep: #1a3a1e;
  --green-mid: #2d5a32;
  --green-light: #4a8c52;
  --green-pale: #c8e6c9;
  --cream: #f9f5ee;
  --cream-dark: #ede7d9;
  --terracotta: #b85c38;
  --text: #1a1a18;
  --text-soft: #4a4a44;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4vw;
  background: rgba(249, 245, 238, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 90, 50, 0.12);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(26, 58, 30, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green-mid);
  font-weight: 500;
}
.nav-cta {
  background: var(--green-mid) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--green-deep) !important;
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--cream);
  padding: 1.5rem 6vw;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.open {
  display: flex;
}
.nav-drawer a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.2s;
}
.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--green-mid);
  font-weight: 500;
}
.drawer-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 500;
  padding: 1.1rem 0 0.2rem;
}
.nav-drawer .sub {
  padding-left: 1rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.nav-drawer .drawer-cta {
  margin-top: 1.5rem;
  background: var(--green-mid);
  color: #fff !important;
  text-align: center;
  padding: 1rem;
  border-radius: 2px;
  border-bottom: none;
}

/* ── LAYOUT ── */
.page-wrap {
  padding-top: 62px;
}
section {
  padding: 5rem 6vw;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green-mid);
  color: #fff;
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--green-mid);
  color: var(--green-mid);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--green-pale);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--green-deep);
  color: #fff;
  padding: 4rem 6vw 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(74, 140, 82, 0.15);
  pointer-events: none;
}
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(249, 245, 238, 0.5);
  margin-bottom: 0.875rem;
}
.breadcrumb a {
  color: rgba(249, 245, 238, 0.5);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--green-pale);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--cream);
  max-width: 680px;
}
.page-hero p {
  color: rgba(249, 245, 238, 0.75);
  font-size: 1rem;
  max-width: 540px;
  margin-top: 0.875rem;
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: flex;
  overflow: hidden;
  height: 240px;
}
.gallery-strip img {
  flex: 1;
  object-fit: cover;
  min-width: 0;
  transition: flex 0.4s ease;
  display: block;
}
.gallery-strip img:hover {
  flex: 2.5;
}

/* ── FOOTER ── */
footer {
  background: #111810;
  color: rgba(249, 245, 238, 0.45);
  padding: 2.5rem 6vw;
  font-size: 0.8rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(249, 245, 238, 0.65);
  margin-bottom: 0.6rem;
}
.footer-col p {
  color: rgba(249, 245, 238, 0.4);
  line-height: 1.9;
}
.footer-col a {
  color: rgba(249, 245, 238, 0.4);
  text-decoration: none;
  display: block;
  line-height: 1.9;
}
.footer-col a:hover {
  color: var(--green-pale);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
  text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.6s 0.05s ease both;
}
.fade-up-2 {
  animation: fadeUp 0.6s 0.2s ease both;
}
.fade-up-3 {
  animation: fadeUp 0.6s 0.35s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  section {
    padding: 3.5rem 5vw;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
