:root {
  --bg: #eef5ee;
  --bg-soft: #f8fcf6;
  --paper: rgba(252, 255, 250, 0.86);
  --ink: #163126;
  --muted: #4c6759;
  --accent: #3f6b4f;
  --accent-deep: #274434;
  --gold: #a8bf7a;
  --rose: #7ca08c;
  --line: rgba(22, 49, 38, 0.12);
  --shadow: 0 24px 80px rgba(32, 72, 50, 0.14);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(168, 191, 122, 0.24), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(124, 160, 140, 0.18), transparent 26%),
    linear-gradient(180deg, #fbfff8 0%, var(--bg) 48%, #e1ecdf 100%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  background: rgba(248, 253, 246, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: #f7fff8;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.85rem;
}

.brand-banner,
.hero {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

.brand-banner {
  padding-top: 1.5rem;
}

.brand-banner-inner {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 2rem 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 10%, rgba(168, 191, 122, 0.24), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(124, 160, 140, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(251, 255, 249, 0.9), rgba(233, 242, 231, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.brand-banner-inner::before,
.brand-banner-inner::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, rgba(39, 68, 52, 0.22), rgba(63, 107, 79, 0.1));
  filter: blur(1px);
  animation: floatGlow 10s ease-in-out infinite;
  clip-path: path("M 50 90 C 20 70 0 50 0 25 C 0 5 15 0 25 0 C 38 0 48 10 50 20 C 52 10 62 0 75 0 C 85 0 100 5 100 25 C 100 50 80 70 50 90 Z");
}

.brand-banner-inner::before {
  width: 8rem;
  height: 7rem;
  top: 1.6rem;
  right: 8rem;
  opacity: 0.16;
}

.brand-banner-inner::after {
  width: 6rem;
  height: 5.2rem;
  bottom: 1.2rem;
  left: 6rem;
  animation-delay: -4s;
  opacity: 0.12;
}

.brand-banner-kicker {
  margin: 0;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-wordmark {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1rem;
  margin-top: 0.5rem;
}

.wordmark-book,
.wordmark-media {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  animation: liftIn 900ms ease both;
}

.wordmark-book {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.wordmark-media {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  color: var(--accent);
  animation-delay: 120ms;
}

.brand-banner-note {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

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

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--ink);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 1rem;
}

.eyebrow,
.section-label,
.pricing-kicker {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.intro-card h2,
.project-card h2,
.contact-panel h2 {
  margin: 0.5rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-lede,
.intro-card p,
.section-heading p,
.service-card p,
.process-grid p,
.team-card p,
.pricing-panel p,
.project-card p,
.contact-panel p,
.testimonial-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #f6fff7;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 40px rgba(39, 68, 52, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(251, 255, 249, 0.8);
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
}

.hero-art {
  position: relative;
  min-height: 34rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(168, 191, 122, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(251, 255, 249, 0.84), rgba(225, 236, 223, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  filter: blur(2px);
  clip-path: path("M 50 90 C 20 70 0 50 0 25 C 0 5 15 0 25 0 C 38 0 48 10 50 20 C 52 10 62 0 75 0 C 85 0 100 5 100 25 C 100 50 80 70 50 90 Z");
}

.hero-art::before {
  width: 8.5rem;
  height: 7.2rem;
  top: 2rem;
  right: 2rem;
  background: rgba(124, 160, 140, 0.16);
  opacity: 0.16;
}

.hero-art::after {
  width: 7rem;
  height: 6rem;
  bottom: 6.5rem;
  left: 1.2rem;
  background: rgba(63, 107, 79, 0.14);
  opacity: 0.14;
}

.slider-backdrop {
  position: absolute;
  inset: 0;
}

.book-stack {
  position: absolute;
  inset: auto 20% 20% auto;
  width: 16rem;
  height: 12rem;
}

.book {
  position: absolute;
  display: block;
  width: 13rem;
  height: 2.25rem;
  right: 0;
  border-radius: 0.4rem;
  box-shadow: 0 14px 28px rgba(67, 32, 21, 0.18);
}

.book::after {
  content: "";
  position: absolute;
  inset: 0.36rem 1rem 0.36rem auto;
  width: 0.32rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.book-1 {
  bottom: 0;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, #4a785b, #284334);
}

.book-2 {
  bottom: 2.2rem;
  right: 1rem;
  transform: rotate(2deg);
  background: linear-gradient(135deg, #adc680, #6c8b57);
}

.book-3 {
  bottom: 4.4rem;
  right: 0.4rem;
  transform: rotate(-5deg);
  background: linear-gradient(135deg, #688576, #31493d);
}

.book-4 {
  bottom: 6.6rem;
  right: 1.2rem;
  transform: rotate(4deg);
  background: linear-gradient(135deg, #8fb39b, #547565);
}

.slider-track {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  padding: 2rem;
}

.service-slide {
  grid-area: 1 / 1;
  align-self: end;
  max-width: 23rem;
  padding: 1.4rem 1.35rem;
  background: rgba(252, 255, 250, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.service-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.slide-label {
  margin: 0 0 0.35rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.73rem;
  font-weight: 800;
}

.service-slide h3 {
  margin: 0;
  font-size: 1.5rem;
}

.service-slide p:last-of-type {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-slide ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.slider-controls {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slider-button {
  border: 1px solid var(--line);
  background: rgba(251, 255, 249, 0.86);
  color: var(--ink);
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-button:hover,
.slider-button:focus-visible,
.slider-dot:hover,
.slider-dot:focus-visible {
  transform: translateY(-2px);
}

.slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.slider-dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 50%;
  background: rgba(76, 103, 89, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.section {
  padding: 5.5rem 0 0;
}

.intro-grid,
.service-grid,
.process-grid,
.team-grid,
.testimonial-grid,
.pricing-layout,
.price-list-grid,
.project-grid {
  display: grid;
  gap: 1.4rem;
}

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

.intro-card,
.service-card,
.process-grid article,
.team-card,
.pricing-panel,
.testimonial-card,
.project-card,
.contact-panel,
.price-list-card,
.promise-panel {
  padding: 2rem;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.intro-card h2,
.project-card h2,
.contact-panel h2,
.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.8rem;
}

.service-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(252, 255, 250, 0.96), rgba(232, 241, 229, 0.96));
}

.service-card h3,
.process-grid h3,
.team-card h3,
.pricing-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.team-role {
  margin: 0 0 0.45rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card ul,
.pricing-panel ul {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.9;
}

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

.process-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(63, 107, 79, 0.1);
  color: var(--accent-deep);
  font-weight: 800;
}

.team-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-slider {
  display: grid;
  gap: 1.4rem;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-grid,
.testimonial-track {
  display: flex;
  gap: 1.4rem;
}

.testimonial-track {
  transition: transform 420ms ease;
  will-change: transform;
}

.pricing-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.price-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

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

.promise-panel {
  margin-top: 1.4rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(251, 255, 248, 0.96), rgba(229, 240, 226, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.promise-panel h3 {
  margin: 0.5rem 0 0;
  font-size: 1.55rem;
}

.promise-panel p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.pricing-highlight {
  background: linear-gradient(180deg, rgba(63, 107, 79, 0.08), rgba(252, 255, 250, 0.92));
}

.price-list-header h3 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
}

.price-table {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.price-service strong,
.price-amount {
  display: block;
}

.price-service span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.65;
}

.price-amount {
  color: var(--accent-deep);
  font-weight: 800;
  line-height: 1.6;
}

.other-services {
  margin-top: 1.5rem;
}

.other-services ul {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.project-card,
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.testimonial-card {
  margin: 0;
  flex: 0 0 calc((100% - 2.8rem) / 3);
  min-height: 22rem;
}

.testimonial-tag {
  margin: 0 0 1rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.testimonial-card footer {
  margin-top: 1.2rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem 0 4rem;
  color: var(--muted);
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 10px, 0) scale(1.04);
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 1.4rem;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: 1.4rem;
    background: rgba(248, 253, 246, 0.98);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .intro-grid,
  .service-grid,
  .process-grid,
  .team-grid,
  .pricing-layout,
  .price-list-grid,
  .project-grid,
  .project-card,
  .contact-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    gap: 2rem;
  }

  .brand-banner-inner {
    padding: 1.8rem 1.4rem 1.7rem;
  }

  .brand-banner-inner::before {
    right: 4rem;
  }

  .brand-banner-inner::after {
    left: 3rem;
  }

  .hero-art {
    width: 100%;
    min-height: 28rem;
  }

  .hero-art::before {
    top: 1.2rem;
    right: 1rem;
  }

  .hero-art::after {
    left: 0.75rem;
    bottom: 5.5rem;
  }

  .slider-controls {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
  }

  .testimonial-card {
    flex-basis: calc((100% - 1.4rem) / 2);
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer,
  .hero {
    width: min(calc(100% - 1.1rem), var(--content-width));
  }

  .site-header {
    padding: 1rem;
  }

  .brand-mark {
    width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text span {
    font-size: 0.85rem;
  }

  .brand-banner,
  .hero,
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 1.1rem), var(--content-width));
  }

  .brand-wordmark {
    gap: 0.35rem 0.75rem;
  }

  .brand-banner-note {
    font-size: 0.98rem;
  }

  .hero {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .hero-art {
    min-height: 23rem;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .brand-banner-inner::before {
    width: 5rem;
    height: 4.4rem;
    top: 1rem;
    right: 1.4rem;
  }

  .brand-banner-inner::after {
    width: 4rem;
    height: 3.5rem;
    left: 2rem;
    bottom: 0.8rem;
  }

  .slider-track {
    padding: 1.2rem;
  }

  .service-slide {
    max-width: none;
    padding: 1.2rem;
  }

  .book-stack {
    right: 10%;
    bottom: 8%;
    transform: scale(0.82);
    transform-origin: bottom right;
  }

  .hero-art::before {
    width: 5.5rem;
    height: 4.7rem;
    top: 0.8rem;
    right: 0.8rem;
  }

  .hero-art::after {
    width: 4.8rem;
    height: 4rem;
    left: 0.5rem;
    bottom: 6rem;
  }

  .slider-controls {
    position: static;
    z-index: 1;
    padding: 0 1.2rem 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .intro-card,
  .service-card,
  .process-grid article,
  .team-card,
  .pricing-panel,
  .testimonial-card,
  .project-card,
  .contact-panel,
  .price-list-card,
  .promise-panel {
    padding: 1.45rem;
    border-radius: 1.5rem;
  }

}
