:root {
  /* Brand palette approximated from logo */
  --bg: #d2c9bc;           /* page background taupe */
  --bg-alt: #f7f1e3;       /* cards and surfaces */
  --accent: #255739;       /* deep green */
  --accent-soft: #e2efe4;  /* soft green wash */
  --accent-leaf: #7aa842;  /* bright leaf green */
  --accent-brown: #a06733; /* warm brown from house outline */
  --text: #1f2521;
  --muted: #646464;
  --border: #e1d5c3;
  --radius-lg: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #dfd4c4 0, var(--bg) 55%);
  line-height: 1.6;
}

/* Basic elements */

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 241, 227, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: inherit;
}

.logo-image {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #f7f1e3, 0 0 0 3px var(--accent-brown);
}

.logo-wordmark {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-brown);
  transition: width 0.18s ease-out;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  padding: 4.75rem 0 4rem;
  background-image:
    linear-gradient(
      to bottom,
      rgba(210, 201, 188, 0.92),
      rgba(210, 201, 188, 0.98)
    ),
    url("hero-garden.png");  /* <-- this should be the GARDEN PHOTO file */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  backdrop-filter: blur(1px);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}

.hero-text {
  max-width: 36rem;
  background: rgba(247, 241, 227, 0.97);
  padding: 2rem 2rem 2.1rem;
  border-radius: 24px;
  border: 1px solid rgba(227, 213, 195, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-kicker {
  margin: 0 0 0.35rem 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-brown);
}

.hero-text h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 0.9rem 0;
  color: var(--accent);
}

.hero-body {
  max-width: 32rem;
  margin: 0 0 1.7rem 0;
  color: var(--muted);
}

/* Button */

.button {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  border: 0;
  box-shadow: 0 10px 25px rgba(20, 67, 42, 0.5);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out;
  cursor: pointer;
}

.button:hover {
  text-decoration: none;
  background: #1f4730;
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(20, 67, 42, 0.55);
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 38rem;
  margin-bottom: 1.8rem;
}

.section h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  margin: 0.1rem 0 0.5rem 0;
  color: var(--accent);
}

.section-intro {
  margin: 0;
  color: var(--muted);
}

.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-brown);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 0.75rem;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(122, 168, 66, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card:hover::before {
  opacity: 1;
}

/* About */

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-panel {
  background: linear-gradient(
      to bottom right,
      rgba(226, 239, 228, 0.6),
      rgba(247, 241, 227, 0.9)
    );
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(225, 213, 195, 0.9);
}

.about-panel p {
  max-width: 40rem;
  color: var(--muted);
}

/* Contact */

.contact-inner {
  max-width: 32rem;
}

.contact-inner p {
  color: var(--muted);
}

.contact-email {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.6rem;
}

.contact-email a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(161, 194, 164, 0.8);
}

.contact-email a:hover {
  background: #d4e4d7;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-inner {
  padding: 1.4rem 0 1.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Responsive tweaks */

@media (max-width: 768px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-text {
    padding: 1.6rem 1.5rem 1.8rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .nav-links {
    gap: 0.85rem;
    font-size: 0.9rem;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }
}
