:root {
  --bg: #f7f9f3;
  --bg-alt: #eef4ec;
  --ink: #1e2b26;
  --ink-soft: #52645d;
  --teal: #2e9e8f;
  --teal-dark: #27897c;
  --teal-soft: #e2f1ee;
  --dark: #17241f;
  --white: #ffffff;
  --line: #dde7dd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}



.section h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.section-head-light p {
  color: var(--ink);
}



.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 32px;
  position: relative;
  z-index: 10;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a {
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links-mobile-cta {
  display: none;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}

.logo-script {
  font-family: "Great Vibes", cursive;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: -8px;
  position: relative;
  z-index: 1;
}

.logo-serif {
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}

.nav-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}



.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



.btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--teal-dark);
}

.btn-lg {
  font-size: 15px;
  padding: 14px 30px;
}

.btn-block {
  width: 100%;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--teal-soft);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}



.hero {
  position: relative;
  margin: 8px 20px 20px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
  height: calc(100vh - 98px);
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(12, 22, 19, 0.55) 0%,
      rgba(12, 22, 19, 0.2) 45%,
      rgba(12, 22, 19, 0) 70%
    ),
    linear-gradient(
      to top,
      rgba(12, 22, 19, 0.5) 0%,
      rgba(12, 22, 19, 0) 40%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 48px;
  max-width: 680px;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-social {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
}

.hero-avatars img + img {
  margin-left: -12px;
}

.hero-social-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--white);
}

.hero-social-stars {
  color: #f5c445;
  font-size: 14px;
}

.hero-social-stars em {
  font-style: normal;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
}

.hero-social-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}



.stats {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: var(--line);
}

.stat-num {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 450;
  color: var(--teal);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14.5px;
  color: var(--ink-soft);
}



.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 200px 200px 20px 20px;
}

.about-media-frame {
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--teal);
  border-radius: 200px 200px 20px 20px;
}

.about-text p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin: 24px 0 32px;
  display: grid;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.about-list svg {
  color: var(--teal);
  flex-shrink: 0;
}



.services {
  background: var(--bg-alt);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 22px;
}

.bento-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  cursor: pointer;
}

.bento-card h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.bento-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.25s ease;
}

.bento-card:hover .bento-arrow {
  color: var(--teal-dark);
}



.bento-featured {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: flex-end;
  min-height: 480px;
}

.bento-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-featured:hover img {
  transform: scale(1.04);
}

.bento-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 22, 19, 0.85) 0%, rgba(12, 22, 19, 0.2) 55%, rgba(12, 22, 19, 0) 100%);
}

.bento-featured-body {
  position: relative;
  z-index: 1;
  padding: 30px 28px;
  color: var(--white);
}

.bento-featured-body p {
  color: rgba(255, 255, 255, 0.85);
}

.bento-featured .bento-arrow {
  color: var(--white);
}

.bento-featured:hover .bento-arrow {
  color: var(--teal-soft);
}



.bento-wide {
  grid-column: span 2;
  grid-row: auto;
  min-height: 260px;
}

.bento-wide .bento-featured-body {
  max-width: 560px;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.bento-card:hover .service-icon {
  background: var(--teal);
  color: var(--white);
}



.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}

.timeline-step {
  text-align: center;
  padding: 0 8px;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 17px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--bg);
}

.timeline-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}



.testimonials {
  background: var(--bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  padding: 30px 28px;
}

.testimonial-stars {
  color: #e8b64c;
  font-size: 18px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card figcaption div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card figcaption strong {
  font-size: 14.5px;
}

.testimonial-card figcaption span {
  font-size: 13px;
  color: var(--ink-soft);
}



.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.blog-card-media {
  position: relative;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 13px;
  border-radius: 999px;
}

.blog-card-body {
  padding: 24px;
}

.blog-date {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.blog-card:hover h3 {
  color: var(--teal);
}

.blog-card-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}



.faq {
  background: var(--bg-alt);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 32px;
}

.faq-intro p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--teal);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s ease;
}

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

.faq-item summary:hover {
  color: var(--teal);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--white);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}



.cta {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  text-align: center;
}

.cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 19, 0.62);
}

.cta-body {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  color: var(--white);
}

.cta-body h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.cta-body p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}



.footer {
  background: var(--dark);
  color: #c8d5cf;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 260px;
}

.logo-light {
  align-items: flex-start;
  text-align: left;
}

.logo-light .logo-serif {
  color: var(--white);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 14.5px;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}



@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-featured {
    grid-row: auto;
    grid-column: span 2;
    min-height: 340px;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .about-grid,
  .faq-grid {
    gap: 40px;
  }

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

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  
  .navbar {
    grid-template-columns: auto 1fr;
    padding: 12px 16px;
  }

  .logo {
    align-items: flex-start;
    justify-self: start;
  }

  .nav-cta {
    justify-self: end;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(30, 43, 38, 0.14);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
  }

  .nav-links a:hover {
    background: var(--teal-soft);
  }

  .nav-links-mobile-cta {
    display: block;
  }

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

  .faq-intro {
    position: static;
  }

  .about-media {
    max-width: 420px;
  }

  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }

  .stat + .stat::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    margin: 4px 12px 12px;
    min-height: 560px;
    height: calc(100vh - 98px);
  }

  .hero-content {
    padding: 0 24px 88px;
  }

  .hero-social {
    right: 20px;
    bottom: 20px;
  }

  .hero-avatars img {
    width: 38px;
    height: 38px;
  }

  .navbar .btn {
    padding: 10px 18px;
    font-size: 13px;
  }

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

  .bento-featured,
  .bento-wide {
    grid-column: auto;
    min-height: 320px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta {
    padding: 80px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
