﻿:root {
  --ink: #1b1a17;
  --muted: #5b564f;
  --sand: #f6f1e7;
  --clay: #d9b48f;
  --copper: #b26b3a;
  --forest: #2a3a2f;
  --white: #ffffff;
  --shadow: 0 30px 60px rgba(27, 26, 23, 0.15);
}

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

body {
  font-family: "Sora", sans-serif;
  background: radial-gradient(circle at top left, #f8efe0 0%, #efe1ce 35%, #e6d4c2 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 2px,
      transparent 2px,
      transparent 4px
    ),
    radial-gradient(circle at 20% 10%, rgba(178, 107, 58, 0.15), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(42, 58, 47, 0.12), transparent 60%);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.8;
  z-index: -1;
}

.site-hero {
  padding: 32px 6vw 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-image {
  display: block;
  width: 25vw;
  max-width: 320px;
  min-width: 160px;
  height: auto;
  border-radius: 0;
  background: none;
  padding: 0;
  object-fit: contain;
}

.logo-text {
  font-size: 16px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 56px;
  align-items: center;
}

.hero-text h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 12px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--forest);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}

.btn {
  background: var(--copper);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(27, 26, 23, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(27, 26, 23, 0.2);
  box-shadow: none;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-number {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
}

.trust-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: floatIn 0.8s ease both;
}

.hero-card:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-card:nth-child(3) {
  animation-delay: 0.3s;
}

.section {
  padding: 72px 6vw;
}

.section-head {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 12px;
}

.section-highlight {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(246, 241, 231, 0.9));
  border-radius: 32px;
  margin: 0 4vw;
  box-shadow: var(--shadow);
}

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

.service-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(27, 26, 23, 0.08);
  min-height: 220px;
  transition: transform 0.2s ease;
}

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

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--copper);
  font-weight: 600;
}

.section-process {
  background: transparent;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step {
  padding: 20px;
  border-radius: 18px;
  background: rgba(42, 58, 47, 0.08);
}

.step-number {
  font-weight: 700;
  color: var(--forest);
  font-size: 1.4rem;
}

.section-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.split-text {
  padding-right: 12px;
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill-row span {
  background: var(--forest);
  color: var(--sand);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.split-panel {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split-panel ul {
  list-style: none;
  margin-top: 16px;
}

.split-panel li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.split-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.section-contact {
  background: var(--forest);
  color: var(--sand);
}

.section-contact .section-head p {
  color: rgba(246, 241, 231, 0.8);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(246, 241, 231, 0.12);
}

.contact-details h3 {
  font-family: "DM Serif Display", serif;
  margin-bottom: 8px;
}

.section-contact a {
  color: var(--sand);
}

.section-contact a:hover {
  color: var(--clay);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Sora", sans-serif;
}

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

.contact-form .btn {
  width: fit-content;
  background: var(--sand);
  color: var(--forest);
}

.contact-map {
  margin-top: 28px;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 28px 6vw 40px;
  display: block;
  background: #efe1ce;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer h4 {
  font-family: "DM Serif Display", serif;
  margin-bottom: 8px;
}

.footer p {
  color: var(--muted);
  margin-bottom: 8px;
}

.footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

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

.footer-meta {
  display: none;
  color: var(--muted);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-hero {
    padding: 24px 6vw 60px;
  }

  .section-highlight {
    margin: 0 2vw;
  }

  .footer {
    flex-direction: column;
  }
}


#contact-status {
  color: var(--sand);
  background: var(--clay);
  padding: 12px 16px;
  border-radius: 12px;
  display: none;
} 