:root {
  --green: #354137;
  --sage: #aeb49b;
  --cream: #f4e9d8;
  --white: #ffffff;
  --peach: #f5d1b9;
  --coral: #ef9d87;
  --brown: #7d5448;
  --ink: #263029;
  --shadow: 0 24px 80px rgb(53 65 55 / 0.16);
  --radius: 28px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      circle at 12% 12%,
      rgb(245 209 185 / 0.9),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 18%,
      rgb(174 180 155 / 0.85),
      transparent 30rem
    ),
    linear-gradient(130deg, var(--cream), #fff7ec 48%, #edf0e4);
}

.site-background::before,
.site-background::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(125 84 72 / 0.12);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.site-background::before {
  width: 42rem;
  height: 18rem;
  left: -10rem;
  top: 12rem;
}

.site-background::after {
  width: 35rem;
  height: 13rem;
  right: -25rem;
  bottom: 7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.56);
  border-radius: 999px;
  background: rgb(244 233 216 / 0.78);
  box-shadow: 0 18px 60px rgb(53 65 55 / 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.site-nav,
.language-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.language-nav a,
.nav-toggle {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a,
.language-nav a {
  padding: 0.55rem 0.75rem;
}

.language-nav {
  gap: 0.45rem;
}

.language-nav .language-link {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.58);
  background: rgb(255 255 255 / 0.28);
  font-size: 1.12rem;
  line-height: 1;
  text-transform: none;
  box-shadow: 0 8px 24px rgb(53 65 55 / 0.08);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-nav a:hover,
.language-nav a:focus-visible,
.language-nav a[aria-current="page"] {
  background: rgb(174 180 155 / 0.42);
}

.language-nav .language-link[aria-current="page"] {
  border-color: rgb(125 84 72 / 0.36);
  background: var(--peach);
}

.nav-toggle {
  display: none;
  justify-self: end;
  padding: 0.55rem 0.9rem;
  background: var(--green);
  color: var(--cream);
}

.section {
  position: relative;
  min-height: 82vh;
  padding: clamp(1rem, 4vw, 4rem) 1rem;
}

.section::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  z-index: -1;
  width: min(78vw, 48rem);
  height: min(42vw, 25rem);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.24);
  transform: translateX(-50%) rotate(-7deg);
}

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.25rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.hero-copy p:first-of-type {
  margin-top: 1.15rem;
  color: var(--green);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  letter-spacing: 0.04em;
  text-align: left;
  margin-bottom: 1.15rem;
}

.hero-copy .secondary-hero-copy {
  color: var(--brown);
  text-align: left;
}

.hero-copy .hero-highlight {
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--coral);
  border-radius: 16px;
  background: rgb(245 209 185 / 0.36);
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
}

.portrait-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 34rem);
  aspect-ratio: 1;
  min-height: auto;
  justify-self: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 50%;
  background: transparent;
  box-shadow: var(--shadow);
  overflow: visible;
}

.portrait-card img {
  width: min(78%, 26rem);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgb(125 84 72 / 0.12));
}

.markdown-body {
  max-width: 52rem;
  font-size: clamp(1rem, 1.5vw, 1.13rem);
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3 {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.markdown-body h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.markdown-body p {
  margin: 0 0 1rem;
}

.markdown-body strong {
  color: var(--green);
  font-weight: 800;
}

.markdown-body ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.markdown-body li {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgb(255 255 255 / 0.42);
}

.markdown-body a {
  color: var(--brown);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
}

.content-card {
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.38);
  box-shadow: 0 18px 52px rgb(53 65 55 / 0.1);
  backdrop-filter: blur(10px);
}

.section-services .content-card:nth-child(4) {
  background: linear-gradient(
    145deg,
    rgb(239 157 135 / 0.92),
    rgb(245 209 185 / 0.78)
  );
}

.services-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: start;
  max-width: none;
}

.service-group {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.service-group h3 {
  margin: 0;
  color: rgb(125 84 72 / 0.76);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card-grid {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

.service-card {
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.38);
  box-shadow: 0 18px 52px rgb(53 65 55 / 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.service-card[open] {
  background: rgb(255 255 255 / 0.54);
}

.service-card-featured {
  border-color: rgb(239 157 135 / 0.86);
  background: linear-gradient(145deg, rgb(255 255 255 / 0.62), rgb(245 209 185 / 0.46));
  box-shadow: 0 22px 62px rgb(125 84 72 / 0.18);
}

.service-card-featured summary {
  color: var(--green);
}

.service-card-featured summary::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: clamp(1rem, 2vw, 1.45rem);
  width: 3.5rem;
  height: 0.24rem;
  border-radius: 999px;
  background: var(--coral);
}

.service-card summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6.5rem;
  padding: clamp(1rem, 2vw, 1.45rem);
  color: var(--brown);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.05;
  list-style: none;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card summary::after {
  content: "+";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgb(174 180 155 / 0.38);
  color: var(--green);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}

.service-card[open] summary::after {
  content: "-";
}

.service-card-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 220ms ease;
}

.service-card[open] .service-card-content {
  opacity: 1;
}

.service-card-content-inner {
  padding: 0 clamp(1rem, 2vw, 1.45rem) clamp(1rem, 2vw, 1.45rem);
}

.service-card-content p:last-child {
  margin-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.1rem, 2.5vw, 1.8rem) clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: rgb(53 65 55 / 0.92);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.section-about .markdown-body {
  max-width: none;
}

.about-portrait {
  position: relative;
  width: min(100%, 23rem);
  aspect-ratio: 1;
  justify-self: center;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 0.62);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.32);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.section-contact .markdown-body {
  max-width: none;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: rgb(53 65 55 / 0.92);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.section-about .markdown-body h3,
.section-about .markdown-body h1,
.section-contact .markdown-body h3,
.section-contact .markdown-body h1,
.section-about .markdown-body strong,
.section-contact .markdown-body strong,
.section-about .markdown-body a,
.section-contact .markdown-body a {
  color: var(--white);
}

.section-testimonies {
  background: linear-gradient(
    90deg,
    rgb(174 180 155 / 0.42),
    rgb(245 209 185 / 0.22)
  );
}

.section-testimonies .content-card h3 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-faq .content-card h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.18rem, 1.9vw, 1.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-contact {
  min-height: 62vh;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 0.5rem;
  padding: 4rem 1rem;
  background: var(--green);
  color: var(--cream);
  text-align: center;
}

.site-footer img {
  width: 8rem;
}

.site-footer p {
  margin: 0;
  color: var(--peach);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 900ms ease, transform 900ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 26px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .language-nav {
    display: none;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .language-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    order: -1;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-groups {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

@media (max-width: 680px) {
  .brand span {
    display: none;
  }

  .section {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 26vw, 6rem);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    width: min(100%, 24rem);
    min-height: auto;
  }
}
