:root{
  --sage: #5a7a5e;
  --sage-deep: #3a5a3e;
  --sage-pale: #eef4ef;
  --sage-light: #8aab8e;
  --clay: #c97b4a;
  --clay-light: #e8aa80;
  --cream: #faf8f3;
  --charcoal: #1e1e1e;
  --stone: #7a7670;
  --stone-light: #c5c2bb;
  --border: rgba(90, 122, 94, 0.15);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', -apple-system, sans-serif;
}

/* ================= HEADER ================= */
.me-site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.me-site-header__inner{
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.me-site-header__logo{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.me-site-header__logo img{
  height: 56px;
  width: auto;
  display: block;
}
.me-site-header__nav{
  flex: 1;
  display: flex;
  justify-content: center;
}
.me-site-header__menu{
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.me-site-header__menu a{
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.me-site-header__menu a:hover{ color: var(--sage-deep); }
.me-site-header__cta{
  background: var(--sage);
  color: #fff !important;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.me-site-header__cta:hover{ background: var(--sage-deep); transform: translateY(-1px); }

.me-site-header__hamburger{
  display: none !important;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.me-site-header__hamburger:hover{
  background: var(--sage-pale);
}
.me-site-header__hamburger:focus,
.me-site-header__hamburger:focus-visible{
  outline: none;
  box-shadow: none;
}
.me-site-header__hamburger span{
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--charcoal);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), opacity 0.2s ease, width 0.2s ease;
}
.me-site-header__hamburger span:nth-child(1){ top: 15px; }
.me-site-header__hamburger span:nth-child(2){ top: 21px; width: 14px; left: auto; right: 12px; }
.me-site-header__hamburger span:nth-child(3){ top: 27px; }
.me-site-header__hamburger:hover span:nth-child(2){ width: 20px; }
.me-site-header__hamburger.is-active{ background: var(--sage-pale); border: none; }
.me-site-header__hamburger.is-active span{ background: var(--sage-deep); }
.me-site-header__hamburger.is-active span:nth-child(1){ top: 21px; width: 20px; left: 12px; transform: rotate(45deg); }
.me-site-header__hamburger.is-active span:nth-child(2){ opacity: 0; }
.me-site-header__hamburger.is-active span:nth-child(3){ top: 21px; width: 20px; left: 12px; transform: rotate(-45deg); }

.me-site-header__mobile{
  display: none;
  flex-direction: column;
  padding: 8px 5vw 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.me-site-header__mobile.is-open{ display: flex; }
.me-site-header__mobile-menu{
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.me-site-header__mobile-menu li{ border-bottom: 1px solid rgba(90,122,94,0.1); }
.me-site-header__mobile-menu li:last-child{ border-bottom: none; }
.me-site-header__mobile-menu a{
  display: block;
  padding: 14px 0;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--charcoal);
  text-decoration: none;
}
.me-site-header__cta--mobile{
  display: inline-block;
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 900px){
  .me-site-header__nav{ display: none; }
  .me-site-header__cta:not(.me-site-header__cta--mobile){ display: none; }
  .me-site-header__hamburger{ display: flex !important; }
}

/* ================= FOOTER ================= */
.me-site-footer{
  background: var(--charcoal);
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: border-box;
}
.me-site-footer__accent{
  height: 4px;
  width: calc(100% + 10vw);
  margin-left: -5vw;
  background: linear-gradient(90deg, var(--sage) 0%, var(--sage-deep) 45%, var(--clay) 100%);
}
.me-site-footer__inner{
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 0 32px;
}
.me-site-footer__top{
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.me-site-footer__logo{ display: inline-block; margin-bottom: 18px; }
.me-site-footer__logo img{ height: 78px; width: auto; display: block; }
.me-site-footer__tagline{
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 280px;
}
.me-site-footer__contact-link{
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sage-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(138,171,142,0.35);
  padding-bottom: 2px;
}
.me-site-footer__contact-link:hover{ color: #fff; border-color: rgba(255,255,255,0.5); }
.me-site-footer__col-title{
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.me-site-footer__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.me-site-footer__links a{
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.me-site-footer__links a:hover{ color: #fff; }
.me-site-footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.me-site-footer__copy{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.me-site-footer__legal{
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.me-site-footer__legal a{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.me-site-footer__legal a:hover{ color: rgba(255,255,255,0.75); }

@media (max-width: 900px){
  .me-site-footer__top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .me-site-footer__top{ grid-template-columns: 1fr; gap: 32px; }
  .me-site-footer__bottom{ flex-direction: column; align-items: flex-start; }
}
