:root {
  --bg: #f5f2ea;
  --surface: #fffdf8;
  --surface-soft: #f9f5ee;
  --text: #1d2b2d;
  --muted: #586667;
  --line: #d7ddd5;
  --accent: #365e59;
  --accent-2: #8f6b4f;
  --shadow: 0 18px 45px rgba(39, 54, 56, 0.11);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 10%, rgba(143, 107, 79, 0.24), transparent 37%),
    radial-gradient(circle at 84% 18%, rgba(54, 94, 89, 0.26), transparent 40%),
    linear-gradient(180deg, #f8f4ec 0%, #f3efe7 55%, #efe9dd 100%);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(245, 242, 234, 0.73);
  border-bottom: 1px solid rgba(88, 102, 103, 0.15);
  z-index: 40;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.8rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 0.8rem;
  height: 2.1rem;
  border-radius: 50px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.brand-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  padding-top: clamp(4rem, 9vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
  max-width: 18ch;
}

h1 span {
  color: var(--accent-2);
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.7vw, 2.45rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: var(--muted);
  max-width: 53ch;
}

.lead-small {
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background: linear-gradient(145deg, var(--accent), #254844);
  color: #f8faf8;
  padding: 0.88rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 49, 45, 0.16);
}

.btn-sm {
  padding: 0.58rem 0.95rem;
}

.link-inline {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.24em;
  font-weight: 600;
}

.hero-card,
.info-card,
.service-box,
.cta {
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.4rem 1.3rem;
}

.hero-card p {
  color: var(--muted);
}

.hero-card ul {
  padding-left: 1.1rem;
  margin: 0.8rem 0 0;
}

.hero-card li + li {
  margin-top: 0.35rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.3rem);
  align-items: start;
}

.about-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-points {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-points p + p {
  margin-top: 0.45rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card {
  padding: 1.2rem 1.1rem;
  transition: transform 0.45s ease, border-color 0.45s ease;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(54, 94, 89, 0.4);
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head h2 {
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-card {
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.1rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(54, 94, 89, 0.1);
  margin-bottom: 0.7rem !important;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.service-box {
  padding: 1.25rem 1.1rem;
}

.service-box p {
  margin: 0;
}

.service-box p + p {
  margin-top: 0.55rem;
}

.tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span {
  display: inline-flex;
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(54, 94, 89, 0.24);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--accent);
  background: rgba(54, 94, 89, 0.08);
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.78);
  padding: 0.9rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.section-cta {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.cta {
  padding: clamp(1.6rem, 4vw, 2.7rem);
  text-align: center;
}

.cta p {
  color: var(--muted);
  margin: 0 auto 1.3rem;
  max-width: 58ch;
}

.site-footer {
  padding: 1.5rem 0 2.1rem;
}

.footer-wrap {
  border-top: 1px solid rgba(88, 102, 103, 0.25);
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  animation: fade-slide-up 1.1s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(8px);
  animation: fade-slide-up 0.95s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.reveal-stagger > :nth-child(1) {
  animation-delay: 0.16s;
}

.reveal-stagger > :nth-child(2) {
  animation-delay: 0.28s;
}

.reveal-stagger > :nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fade-slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

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

  .site-nav {
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 660px) {
  .nav-wrap {
    min-height: 4.2rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .link-inline {
    width: 100%;
    text-align: center;
  }
}

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