:root {
  color-scheme: light;
  --bg: #f4f1ea;
  --bg-soft: #ebe6db;
  --surface: #fdfcf9;
  --surface-strong: #ffffff;
  --text: #161616;
  --muted: #5f635e;
  --line: rgba(22, 22, 22, 0.1);
  --accent: #232f24;
  --accent-2: #7a5c3e;
  --accent-3: #d1b38a;
  --shadow: 0 24px 60px rgba(27, 27, 27, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background:
    linear-gradient(rgba(22, 22, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.035) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(122, 92, 62, 0.08), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, #fcfbf7 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(244, 241, 234, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

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

.brand strong,
.hero h1,
.section-head h2,
.faq-copy h2,
.cta-card h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.18rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #101710);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(22, 22, 22, 0.16);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-weight: 600;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(40, 30, 24, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #344537);
  color: #fff;
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

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

.hero-grid,
.split-grid,
.faq-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-copy h1 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
  max-width: 9ch;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-2);
}

.hero-copy .eyebrow,
.section-head .eyebrow {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.lead,
.section-head p,
.split-copy p,
.faq-copy p,
.cta-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 2rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-points div,
.contact-card,
.service-card,
.timeline article,
.testimonials blockquote,
.faq-list details,
.cta-card,
.split-image-card,
.hero-image-card {
  background: rgba(255, 250, 244, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-points div {
  padding: 1rem 1rem 0.9rem;
  border-radius: var(--radius-md);
}

.hero-points strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-image-card,
.split-image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-image-card img,
.split-image-card img {
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.image-badge,
.floating-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.image-badge span,
.floating-note strong,
.card-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.image-badge strong {
  font-size: 1.04rem;
  margin-top: 0.1rem;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.contact-card h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.8rem;
  line-height: 1.05;
  font-family: "Cormorant Garamond", serif;
}

.mini-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.mini-stats strong {
  display: block;
  font-size: 1.3rem;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(239, 230, 216, 0.72), rgba(255, 255, 255, 0));
}

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

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.split-copy h2,
.faq-copy h2,
.cta-card h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-weight: 700;
  color: var(--accent-2);
}

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

.service-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(127, 79, 58, 0.12), rgba(49, 77, 67, 0.12));
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card h3,
.timeline h3,
.testimonials strong,
.faq-list summary {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.section-split {
  overflow: hidden;
}

.split-copy {
  padding-right: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

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

.timeline article,
.testimonials blockquote,
.faq-list details {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.timeline span {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.timeline p,
.testimonials p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.testimonials footer {
  display: grid;
  margin-top: 1.2rem;
}

.testimonials footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
}

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

.faq-list details[open] summary {
  margin-bottom: 0.8rem;
}

.cta-section {
  padding-bottom: 5.5rem;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(135deg, rgba(49, 77, 67, 0.08), rgba(127, 79, 58, 0.08));
}

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

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .btn-ghost {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .faq-layout,
  .cards-grid,
  .timeline,
  .testimonials,
  .cta-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .cta-card {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .hero {
    padding-top: 3rem;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero-copy h1,
  .section-head h2,
  .split-copy h2,
  .faq-copy h2,
  .cta-card h2 {
    line-height: 1.02;
  }
}
