:root {
  --bg: #f7f3ec;
  --bg-alt: #efe8db;
  --ink: #2b2822;
  --ink-soft: #5c574c;
  --green: #4a5d45;
  --green-dark: #364433;
  --terracotta: #b5623e;
  --line: #dcd3c2;
  --white: #fffdf9;
  --radius: 4px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero illustration, dimmed, filling the whole page behind everything */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../assets/Hero.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.16;
}

@media (max-width: 700px) {
  /* iOS Safari ignores fixed backgrounds anyway; scroll avoids a jitter/perf hit */
  .bg-decor { position: absolute; }
}

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--ink-soft); }

a { color: var(--green-dark); text-decoration: none; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 12px;
}

.center { text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--green-dark);
  white-space: nowrap;
}
.logo span { display: block; font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--ink);
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--terracotta); }
.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--green-dark);
  border-radius: var(--radius);
  color: var(--green-dark) !important;
}
.nav-cta:hover { background: var(--green-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* Hero banner image */
.hero-banner {
  width: 100%;
  line-height: 0;
  background: #e9e2d0;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  background: linear-gradient(180deg, rgba(239, 232, 219, 0.75), rgba(247, 243, 236, 0.55));
}
.hero-inner { max-width: 720px; }
.hero-sub { font-size: 1.15rem; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; margin: 28px 0 20px; flex-wrap: wrap; }
.hero-rating { color: var(--ink-soft); font-size: 0.9rem; }
.hero-rating a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.hero-rating a:hover { color: var(--terracotta); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn-primary:hover { background: var(--green); }
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* Principles */
.principles { background: rgba(54, 68, 51, 0.94); padding: 48px 0; }
.principles-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.principle {
  font-family: var(--serif);
  font-style: italic;
  color: var(--white);
  font-size: 1.15rem;
  margin: 0;
  flex: 1 1 220px;
  text-align: center;
}
.principle span { color: #c9b48a; }

/* About */
.about { padding: 88px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.about-location { color: var(--terracotta); font-weight: 500; }

/* Services */
.services { padding: 88px 0; background: rgba(239, 232, 219, 0.7); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.service-card p { margin-bottom: 0; }

/* Area */
.area { padding: 88px 0; text-align: center; }
.area-inner { max-width: 700px; margin: 0 auto; }
.area-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-list li {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--white);
}

/* Contact */
.contact { padding: 88px 0; background: rgba(54, 68, 51, 0.94); }
.contact h2 { color: var(--white); }
.contact .eyebrow { color: #c9b48a; }
.contact p { color: #d9d9cf; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.contact-details .label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: #c9b48a;
}
.contact-details a, .contact-details span:not(.label) {
  color: var(--white);
  font-size: 1.05rem;
}
.contact-details a:hover { color: var(--terracotta); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.form-note {
  background: var(--bg-alt);
  border-left: 3px solid var(--terracotta);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: var(--bg);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}
.contact-form button { align-self: flex-start; }
.form-status { margin-top: 14px; font-size: 0.9rem; color: var(--green-dark); }

/* Footer */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-inner p { margin: 0; color: var(--ink-soft); }
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social-icon {
  display: inline-flex;
  color: var(--ink-soft);
}
.social-icon:hover { color: var(--terracotta); }
.credit {
  color: var(--ink-soft);
}
.credit:hover { color: var(--terracotta); }

/* Responsive */
@media (max-width: 860px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .principles-inner { flex-direction: column; }
}
