:root {
  --ink: #1f2e2f;
  --ink-soft: #486061;
  --paper: #f5f2eb;
  --paper-strong: #e9e2d3;
  --brand: #b7652f;
  --brand-deep: #8f4a1d;
  --card: #ffffff;
  --line: #d8d0c3;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(16, 30, 31, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: radial-gradient(circle at 90% 0%, #ffffff 0%, #f8f5ee 42%, var(--paper) 100%);
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

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

h1,
h2 {
  font-family: "DM Serif Display", serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  max-width: 22ch;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead {
  margin-top: 1rem;
  max-width: 56ch;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--brand-deep);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.button-small {
  padding: 0.6rem 0.95rem;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 242, 0.94);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 0.42rem 0.65rem;
  font: inherit;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--ink-soft);
  font-weight: 500;
}

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

.site-nav a.active {
  color: var(--ink);
  font-weight: 700;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2rem;
}

.hero-modern {
  padding-top: 4.2rem;
  position: relative;
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 340px;
  background: linear-gradient(120deg, #efe8db 0%, #f8f4eb 55%, #ffffff 100%);
  z-index: -1;
}

.hero-modern-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.hero-content h1 {
  max-width: 14ch;
}

.hero-modern .hero-content h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.hero-trust div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.65rem 0.7rem;
}

.hero-trust strong {
  display: block;
  font-size: 1.15rem;
}

.hero-trust span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}

.hero-float-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  backdrop-filter: blur(6px);
}

.hero-float-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.hero-float-card h3 {
  margin: 0.3rem 0;
}

.hero-float-card a {
  color: var(--brand-deep);
  font-weight: 700;
}

.home-page .hero-modern {
  padding: 3.2rem 0 2.6rem;
  background: linear-gradient(120deg, #efe8db 0%, #f8f4eb 58%, #ffffff 100%);
}

.home-page .hero-modern::before {
  display: none;
}

.home-page .hero-modern-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.home-page .hero-content h1 {
  max-width: 18ch;
  line-height: 1.08;
}

.home-page .hero-modern .hero-content h1 {
  font-size: clamp(1.95rem, 3vw, 3rem);
}

.home-page .hero-content .lead {
  max-width: 56ch;
}

.home-page .hero-visual img {
  min-height: 390px;
}

.home-page .section {
  padding: 3.35rem 0;
}

.home-page .cards {
  margin-top: 1rem;
}

.home-page .sop-access {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-feature .split {
  gap: 1.4rem;
  align-items: center;
}

.cta-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.highlights {
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  padding-left: 1rem;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

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

.hero-card-note {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.stats {
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.stats article {
  text-align: center;
}

.stats h3 {
  font-size: 1.65rem;
}

.stats p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
}

.section {
  padding: 4rem 0;
}

.alt {
  background: #efe9de;
}

.home-proof {
  padding-top: 2.2rem;
}

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

.proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.proof-card p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

.home-services-visual {
  background: #f7f2e9;
}

.service-tiles {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.service-tile {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-tile img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-tile span {
  display: block;
  padding: 0.75rem;
  font-weight: 700;
}

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

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

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

.home-path {
  background: linear-gradient(180deg, #f1ebdf 0%, #ebe4d7 100%);
}

.path-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.path-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.path-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.path-grid p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.home-feature .feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
}

.home-proof-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: block;
}

.feature-copy,
.feature-list {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.feature-list h3 {
  margin-bottom: 0.4rem;
}

.home-nav-cards {
  padding-top: 3.2rem;
}

.consult-cta {
  background: linear-gradient(120deg, #f1e8d9 0%, #e6d9c4 100%);
}

.consult-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: center;
}

.consult-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.consult-card p {
  margin: 0.45rem 0;
  color: var(--ink-soft);
}

.gallery-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #e7dfcf 0%, #c8b99a 100%);
}

.gallery-item figcaption {
  padding: 0.65rem 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

.card,
.project,
blockquote,
.steps li,
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.card p,
.project p,
blockquote,
.steps p {
  color: var(--ink-soft);
}

.steps {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.checks li {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.7rem 0.8rem;
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0;
}

cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

.faq-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.faq-actions {
  margin-top: 1rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.75rem 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
}

.contact-item {
  margin: 0.45rem 0;
}

.contact-notes {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.contact-notes p {
  margin: 0.35rem 0;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 0.45rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.72rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.services-hero {
  background: linear-gradient(120deg, #f1e9dc 0%, #f7f2e9 100%);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  overflow: hidden;
}

.service-card img {
  width: calc(100% + 2.2rem);
  margin: -1.1rem -1.1rem 0.9rem;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-card p {
  color: var(--ink-soft);
}

.service-actions {
  margin-top: 0.8rem;
}

.service-details {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.service-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.service-detail p {
  margin: 0.55rem 0;
  color: var(--ink-soft);
}

.service-detail p a {
  color: var(--brand-deep);
  font-weight: 600;
}

.service-article {
  display: grid;
  gap: 0.5rem;
}

.service-article h2 {
  margin-top: 1rem;
}

.service-article p {
  margin: 0.35rem 0;
  color: var(--ink-soft);
  max-width: 80ch;
}

.service-article p a {
  color: var(--brand-deep);
  font-weight: 600;
}

.projects-hero {
  background: linear-gradient(120deg, #f1e8da 0%, #f8f4eb 100%);
}

.project-highlight {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.project-highlight img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.project-highlight p {
  color: var(--ink-soft);
}

.process-hero {
  background: linear-gradient(120deg, #efe6d8 0%, #f8f3ea 100%);
}

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

.process-transparency {
  background: #f0e9dc;
}

.process-cta {
  background: linear-gradient(120deg, #f1e7d8 0%, #e7dac5 100%);
}

.sop-access {
  text-align: center;
  display: grid;
  justify-items: center;
}

.sop-text {
  margin: 1rem 0 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}

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

.faq-chips a {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-chips a:hover {
  color: var(--ink);
}

.form-note {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-status {
  margin: 0;
  min-height: 1.2rem;
  color: var(--brand-deep);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #e8e2d8;
}

.footer-main {
  padding: 2rem 0 0.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-col p {
  color: var(--ink-soft);
  margin: 0.55rem 0;
}

.footer-col h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: var(--ink-soft);
}

.footer-links a:hover,
.footer-col p a:hover {
  color: var(--ink);
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  margin-top: 1.1rem;
  padding-top: 0.5rem;
}

.mobile-call {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(90deg, #c86f34 0%, #a85a29 100%);
  color: #fff;
  font-weight: 700;
  min-height: 48px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .button-small {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .hero-modern-grid,
  .hero-trust,
  .proof-grid,
  .stats,
  .cards,
  .service-grid,
  .service-tiles,
  .consult-grid,
  .project-highlight,
  .projects,
  .path-grid,
  .home-feature .feature-grid,
  .gallery-grid,
  .home-cards,
  .steps,
  .split,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .home-page .hero-modern {
    padding-top: 2.4rem;
  }

  .home-page .hero-content h1 {
    max-width: none;
  }

  .hero-visual img {
    min-height: 300px;
  }

  .mobile-call {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 5rem;
  }
}
