/* site.css | ver. 2.1 */
:root {
  --primary: #5C7A60;
  --accent: #C09830;
  --background: #F3F4EE;
  --dark: #1A2018;
  --muted: #7A8A7C;
  --cream: #FAF8F1;
  --line: rgba(26, 32, 24, .14);
  --white: #fff;
  --shadow: 0 22px 60px rgba(26, 32, 24, .16);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--dark);
  font-family: var(--sans);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(192, 152, 48, .28);
}
.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .02);
}
.btn-sage {
  background: var(--primary);
  color: var(--white);
}
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 14px 0 18px;
  color: var(--white);
  /* Dark vignette anchors the nav against the hero photo */
  background: linear-gradient(180deg,
    rgba(0, 0, 0, .68) 0%,
    rgba(0, 0, 0, .38) 60%,
    rgba(0, 0, 0, 0)   100%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  width: 168px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.nav-links a {
  color: rgba(255, 255, 255, .94);
  position: relative;
  text-decoration: none;
  transition: color .18s ease;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a.active {
  color: #f2c66e;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .82);
  flex-shrink: 0;
}
.nav-icons svg {
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: color .18s ease;
}
.nav-icons svg:hover {
  color: #f2c66e;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  cursor: pointer;
  transition: opacity .2s ease;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
}
.menu-btn:hover {
  opacity: .72;
}
.menu-btn svg {
  display: block;
  width: 24px;
  height: 18px;
  overflow: visible;
}
.menu-open .menu-btn {
  background: transparent;
  border-color: transparent;
}
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, .48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 41;
  width: min(86vw, 340px);
  height: 100vh;
  padding: 24px;
  background: rgba(26, 32, 24, .98);
  color: var(--white);
  box-shadow: -24px 0 70px rgba(0, 0, 0, .38);
  transform: translateX(102%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.mobile-logo {
  width: 138px;
  height: auto;
}
.mobile-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.mobile-drawer a {
  display: block;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.mobile-drawer a.active {
  color: #f2c66e;
}
.menu-open {
  overflow: hidden;
}
.menu-open .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.menu-open .mobile-drawer {
  transform: translateX(0);
}
.hero {
  min-height: 710px;
  position: relative;
  color: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    url('/images/hero-spa-still-life.jpg') right center / cover no-repeat,
    var(--dark);
}
/* .hero-bg img removed — hero uses CSS background-image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .88) 32%, rgba(0, 0, 0, .45) 57%, rgba(0, 0, 0, .15) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 76px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .35), transparent);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  /* 14px nav-top + 72px logo + 18px nav-bot = 104px nav height + 24px gap */
  padding-top: 195px;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: calc(710px - 128px);
}
.hero > .wrap {
  display: flex;
  align-items: stretch;
}
.hero-top {
  /* h1 sits here, near the top */
}
.hero-bottom {
  margin-top: auto;
  padding-bottom: 52px;
}
/* .welcome removed — logo in nav makes this redundant */
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.65rem, 6.2vw, 4.85rem);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: .005em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #e6bd61;
  display: block;
}
/* .divider removed */
.hero-tag {
  color: rgba(255, 255, 255, .72);
  font-family: var(--sans, sans-serif);
  font-size: clamp(.85rem, 1.1vw, .96rem);
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0 0 28px;
}
/* .hero-copy removed */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.value-strip {
  background: linear-gradient(180deg, #fffaf0, #f7f2e8);
  padding: 40px 0 46px;
  border-bottom: 1px solid var(--line);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.value-icon {
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.value-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.value-grid h3 {
  margin: 0 0 8px;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.value-grid p {
  margin: 0 auto;
  max-width: 210px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #ece7dc;
}
.promo-card {
  min-height: 342px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .75));
  z-index: 1;
}
.promo-card.products {
  background: url('/images/natural-products.jpg') left center / auto 100% no-repeat, #231b13;
}
.promo-card.services {
  background: url('/images/services-stones.jpg') right center / auto 100% no-repeat, #28271f;
}
.promo-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: min(360px, 58%);
  padding: 36px 48px 36px 20px;
}
.promo-card.services .promo-content {
  margin-left: 0;
  margin-right: auto;
  padding-left: 76px;
}
.promo-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.15;
}
.promo-card p {
  color: rgba(255, 255, 255, .82);
  margin: 0 0 22px;
  font-weight: 600;
}
.mini-leaf {
  color: #c3a642;
  letter-spacing: .3em;
  margin-bottom: 14px;
}
.mission {
  padding: 72px 0 76px;
  background: var(--cream);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 78px;
  align-items: center;
}
.mission h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 18px;
}
.mission p {
  max-width: 560px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 24px;
}
.mission-image {
  aspect-ratio: 1.45 / 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: url('/images/mission-plant.jpg') center / cover no-repeat;
}
.newsletter {
  background: linear-gradient(90deg, #143414, #244f22);
  color: var(--white);
  padding: 30px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.newsletter-title {
  display: flex;
  align-items: center;
  gap: 18px;
}
.newsletter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.newsletter-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  font-size: 1.9rem;
}
.newsletter p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .75);
}
.subscribe {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
}
.subscribe input {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(0, 0, 0, .12);
  color: var(--white);
  padding: 0 18px;
  border-radius: 3px;
}
.subscribe input::placeholder {
  color: rgba(255, 255, 255, .7);
}
.footer {
  background: #050806;
  color: rgba(255, 255, 255, .75);
  padding: 46px 0 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.copyright {
  font-size: .84rem;
  color: rgba(255, 255, 255, .35);
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: 48px;
}
.footer-logo {
  width: 150px;
  margin: 0 auto 12px;
  display: block;
}
.footer-brand {
  text-align: center;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .42);
  max-width: 220px;
  margin: 0 auto 16px;
}
.footer p, .footer li {
  font-size: .9rem;
  line-height: 1.6;
}
.footer h3 {
  color: var(--accent);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(192, 152, 48, .5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.payment {
  background: #f7f7f7;
  color: #1b1b1b;
  border-radius: 3px;
  padding: 5px 8px;
  font-size: .72rem;
  font-weight: 900;
}
.copyright {
  margin-top: 36px;
  padding: 18px 0;
  text-align: center;
  background: rgba(255, 255, 255, .04);
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
}
@media (max-width: 960px) {
  .nav-links, .nav-icons {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero {
    min-height: 660px;
  }
  .hero-inner {
    text-align: left;
    min-height: calc(660px - 90px);
    max-width: 560px;
  }
  .hero-actions {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 14px;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0 18px;
  }
  .hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .02);
    box-shadow: none;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-grid, .mission-grid, .newsletter-grid {
    grid-template-columns: 1fr;
  }
  .promo-card, .promo-card.services {
    min-height: 300px;
  }
  .promo-content, .promo-card.services .promo-content {
    width: auto;
    max-width: 460px;
    margin: 0;
    padding: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

#dev-screen-size {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(26, 32, 24, .86);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  pointer-events: none;
}
.menu-btn:focus-visible, .mobile-close:focus-visible, .mobile-drawer a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Wide screen: freeze hero image size so composition stays intact.
   image stops scaling at 1300px viewport — 960px rendered width. */
@media (min-width: 1300px) {
  .hero {
    background-size: 960px auto;
    background-position: right center;
  }
}
