/* ── Variables ───────────────────────────────────────────── */
:root {
  --cream: #F2FAF2;
  --sand:  #D8F0D8;
  --mid:   #72C472;
  --brown: #3D9E6A;
  --dark:  #1A5C3A;
  --text:  #163320;
  --muted: #3D7A55;
  --white: #FAFFFE;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Nav ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 4rem;
  background: rgba(242, 250, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--dark);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--dark); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lang-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--sand);
  color: var(--muted);
  padding: 0.22rem 0.55rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.lang-btn:hover,
.lang-btn.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--cream);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--dark);
}
.mobile-menu a:hover { color: var(--brown); }
.mobile-lang { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

/* ── Accessibility ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--dark);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
*:focus-visible { outline: 2px solid var(--brown); outline-offset: 3px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 4.5rem;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
}
.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--brown); }
.hero-sub {
  font-size: 1rem;
  color: #2D5C40;
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-right {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn:hover { background: var(--brown); transform: translateY(-2px); }

/* ── Section labels & titles ─────────────────────────────── */
.slabel {
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1rem;
}
.stitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* ── About ───────────────────────────────────────────────── */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
  padding: 7rem 6rem;
}
.about p { color: var(--muted); margin-bottom: 1.2rem; font-size: 0.97rem; line-height: 1.9; }
.about-photo { position: relative; width: 100%; }
.about-photo img {
  width: 100%;
  border-radius: 4px;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.about-photo-caption {
  margin-top: 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--cream);
  border-left: 3px solid var(--mid);
}
.about-photo-caption blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}
.about-photo-caption p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; margin: 0; }
.creds { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cred { display: flex; gap: 0.9rem; align-items: flex-start; }
.cred-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mid);
  margin-top: 0.72rem;
  flex-shrink: 0;
}
.cred span { font-size: 0.83rem; color: var(--muted); }

/* ── Services ────────────────────────────────────────────── */
.services { background: var(--cream); padding: 7rem 6rem; }
.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.svc-intro { max-width: 460px; color: var(--muted); font-size: 0.93rem; line-height: 1.8; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card {
  background: var(--white);
  padding: 2.3rem 1.8rem;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-top-color: var(--brown); transform: translateY(-5px); }
.card svg { width: 40px; height: 40px; margin-bottom: 1.3rem; opacity: 0.65; }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.7rem;
  font-weight: 400;
}
.card p { font-size: 0.85rem; color: #2D5C40; line-height: 1.8; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--dark); padding: 7rem 6rem; }
.faq .slabel { color: var(--mid); }
.faq .stitle { color: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 3rem;
}
.faq-item {
  background: var(--dark);
  padding: 1.8rem 2.2rem;
  cursor: pointer;
  transition: background 0.25s;
}
.faq-item:hover { background: rgba(255,255,255,0.04); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.faq-plus {
  width: 18px; height: 18px; min-width: 18px;
  border: 1px solid var(--mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 3px;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--mid); color: var(--dark); }
.faq-a {
  font-size: 0.85rem;
  color: rgba(216, 240, 216, 0.75);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s;
}
.faq-item.open .faq-a { max-height: 220px; margin-top: 0.9rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact { background: var(--sand); padding: 7rem 6rem; text-align: center; }
.contact .stitle { margin-bottom: 0.8rem; }
.contact-sub {
  color: #2D5C40;
  font-size: 0.97rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}
.phone-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.phone-hint { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Blog overview pages ─────────────────────────────────── */
.blog-hero { background: var(--dark); padding: 10rem 6rem 5rem; }
.blog-hero .slabel { color: var(--mid); }
.blog-hero .stitle { color: var(--cream); margin-bottom: 0; }
.blog-list-section { background: var(--white); padding: 4rem 6rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.bcard { display: block; }
.bcard:hover .bcard-title { color: var(--brown); }
.btag { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.7rem; }
.bcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.8rem;
  transition: color 0.2s;
}
.bcard-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.bmeta { font-size: 0.74rem; color: var(--mid); }
.bcard-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 0.4rem;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(216,240,216,0.6);
}
.footer-r { font-size: 0.74rem; color: rgba(216,240,216,0.4); text-align: right; line-height: 1.8; }
.footer-r a { color: rgba(216,240,216,0.5); transition: color 0.2s; }
.footer-r a:hover { color: var(--sand); }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.75s ease both; }
.hero-label  { animation-delay: 0.10s; }
.hero-title  { animation-delay: 0.22s; }
.hero-sub    { animation-delay: 0.38s; }
.btn         { animation-delay: 0.52s; }

/* ── Blog post pages ─────────────────────────────────────── */
.post-header {
  background: var(--dark);
  padding: 9rem 6rem 4rem;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-btn:hover { color: var(--sand); }
.post-meta { font-size: 0.77rem; color: var(--mid); margin-bottom: 1rem; }
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.post-body {
  padding: 4rem 6rem;
  max-width: 800px;
}
.post-body p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  font-size: 1rem;
  line-height: 1.95;
}
.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  font-weight: 400;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 6rem 2rem 4rem; }

  .about { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem; }
  .about-photo { max-width: 340px; margin: 0 auto; }

  .services { padding: 4rem 2rem; }
  .grid3 { grid-template-columns: 1fr; }
  .svc-top { flex-direction: column; gap: 1rem; align-items: flex-start; }

  .faq { padding: 4rem 2rem; }
  .faq-grid { grid-template-columns: 1fr; }

  .contact { padding: 4rem 2rem; }

  .blog-hero { padding: 7rem 2rem 3rem; }
  .blog-list-section { padding: 3rem 2rem; }
  .blog-grid { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
  .footer-r { text-align: center; }

  .post-header { padding: 7rem 2rem 3rem; }
  .post-body { padding: 3rem 2rem; }
}
