:root {
  --ink: #18211d;
  --forest: #163329;
  --leaf: #7da86b;
  --leaf-soft: #dfead8;
  --coral: #d47b64;
  --coral-soft: #f7e2dc;
  --cream: #fff8ed;
  --paper: #ffffff;
  --mist: #f3f6ef;
  --line: #d8dfd1;
  --muted: #657365;
  --shadow: 0 24px 70px rgba(22, 51, 41, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.no-script {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(255, 248, 237, 0.94);
  border-bottom: 1px solid rgba(216, 223, 209, 0.8);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(100% - 32px, 1480px);
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--forest);
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(125, 168, 107, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--leaf);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--forest);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a.active {
  color: var(--coral);
}

.header-cta {
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 12px 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.main {
  padding-top: 78px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 33, 29, 0.82), rgba(16, 33, 29, 0.52) 42%, rgba(16, 33, 29, 0.12)),
    linear-gradient(0deg, rgba(16, 33, 29, 0.54), rgba(16, 33, 29, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1480px);
  margin: 0 auto;
  padding: 104px 0 80px;
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--leaf-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 80px;
  line-height: 0.98;
  font-weight: 700;
}

.hero p.copy,
.page-hero p.copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 248, 237, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: var(--leaf-soft);
  color: var(--forest);
}

.button.dark {
  background: var(--forest);
  color: var(--cream);
}

.button.outline {
  border-color: rgba(255, 248, 237, 0.7);
  color: var(--cream);
}

.button.light-outline {
  border-color: var(--forest);
  color: var(--forest);
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1480px);
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 112px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: var(--forest);
}

.trust-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  width: min(100% - 32px, 1480px);
  margin: 0 auto;
  padding: 96px 0;
}

.section.narrow {
  width: min(100% - 32px, 1040px);
}

.section.muted {
  width: 100%;
  max-width: none;
  background: var(--mist);
  padding: 96px max(16px, calc((100vw - 1480px) / 2));
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.section-title {
  margin: 0;
  max-width: 860px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  line-height: 1.08;
  color: var(--forest);
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.quote-section {
  padding: 116px 0 70px;
}

.quote {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1.24;
  color: var(--forest);
}

.quote::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin: 34px auto 0;
  background: var(--coral);
}

.about-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.portrait {
  position: relative;
}

.portrait img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 8px solid var(--cream);
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.rich-text p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--forest);
  font-weight: 900;
}

.feature strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest);
}

.feature span {
  color: var(--muted);
  line-height: 1.55;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card.large {
  grid-column: span 2;
}

.service-card:nth-child(3) {
  margin-top: 56px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card.large img {
  aspect-ratio: 16 / 7;
}

.service-card-content {
  padding: 24px;
}

.kicker {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: var(--forest);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 900;
}

.proof-band {
  background: var(--forest);
  color: var(--cream);
  padding: 94px 0;
}

.proof-inner {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 12px 42px;
  text-align: center;
  border-right: 1px solid rgba(255, 248, 237, 0.18);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--leaf-soft);
}

.proof-item span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 248, 237, 0.72);
  line-height: 1.55;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-number {
  color: var(--coral);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.process-card h3 {
  margin: 28px 0 12px;
  color: var(--forest);
  font-size: 22px;
}

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

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

.case-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.case-card img,
.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-card div,
.article-card div {
  padding: 24px;
}

.case-card h3,
.article-card h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
}

.case-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.collage {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 24px;
  align-items: end;
}

.collage-main,
.collage-side,
.collage-small {
  overflow: hidden;
  border-radius: 8px;
  background: var(--leaf-soft);
}

.collage-main {
  aspect-ratio: 16 / 10;
}

.collage-side {
  aspect-ratio: 4 / 5;
  margin-bottom: 80px;
}

.collage-small {
  width: 48%;
  aspect-ratio: 1;
  margin-top: -58px;
  margin-left: 9%;
  position: relative;
  z-index: 2;
  border: 10px solid var(--cream);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  background: var(--forest);
  color: var(--cream);
}

.contact-copy {
  padding: 56px;
}

.contact-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 46px;
  line-height: 1.08;
}

.contact-copy p {
  max-width: 530px;
  margin: 18px 0 0;
  color: rgba(255, 248, 237, 0.78);
  line-height: 1.7;
}

.contact-form {
  padding: 44px;
  background: var(--leaf-soft);
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(22, 51, 41, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 51, 41, 0.86), rgba(22, 51, 41, 0.44));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1480px);
  margin: 0 auto;
  padding: 132px 0 80px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: start;
}

.detail-copy h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--forest);
  font-size: 40px;
}

.detail-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 42px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
}

.sticky-box {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(22, 51, 41, 0.1);
}

.sticky-box h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 24px;
}

.sticky-box p,
.meta-list span {
  color: var(--muted);
  line-height: 1.65;
}

.meta-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.meta-list strong {
  display: block;
  color: var(--forest);
  margin-bottom: 3px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--forest);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal {
  max-width: 850px;
}

.legal h2 {
  margin-top: 36px;
}

.site-footer {
  background: var(--forest);
  color: var(--cream);
}

.footer-inner {
  width: min(100% - 32px, 1480px);
  margin: 0 auto;
  padding: 62px 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.footer-inner p {
  max-width: 560px;
  color: rgba(255, 248, 237, 0.68);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 248, 237, 0.72);
  font-size: 14px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 237, 0.16);
  color: rgba(255, 248, 237, 0.48);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 62px;
  }

  .section-title {
    font-size: 46px;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .detail-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 16px 28px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow);
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    border-radius: 8px;
    text-align: center;
    background: var(--forest);
    color: var(--cream) !important;
    margin-top: 12px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding: 78px 0 64px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .hero p.copy,
  .page-hero p.copy {
    font-size: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .section.muted {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-header,
  .about-grid,
  .split-grid,
  .collage,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 39px;
  }

  .quote {
    font-size: 32px;
  }

  .service-grid,
  .case-grid,
  .article-grid,
  .process-grid,
  .proof-inner {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-column: auto;
  }

  .service-card:nth-child(3) {
    margin-top: 0;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 237, 0.18);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .collage-side {
    margin-bottom: 0;
  }

  .collage-small {
    width: 64%;
    margin-top: -34px;
  }

  .contact-copy,
  .contact-form {
    padding: 32px 22px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-inner,
  .hero-content,
  .section,
  .quote,
  .trust-strip,
  .proof-inner,
  .page-hero-inner,
  .footer-inner {
    width: min(100% - 24px, 1480px);
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 41px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-title,
  .contact-copy h2 {
    font-size: 34px;
  }

  .badge {
    right: 12px;
    bottom: 12px;
    width: 116px;
    height: 116px;
    border-width: 6px;
    font-size: 12px;
  }
}
