:root {
  --bg: #f2ede4;
  --bg-strong: #e7dcc9;
  --surface: rgba(23, 39, 46, 0.82);
  --surface-soft: rgba(255, 251, 244, 0.78);
  --text: #162128;
  --text-soft: #5a655f;
  --line: rgba(22, 33, 40, 0.14);
  --accent: #9f6b2f;
  --accent-deep: #724610;
  --accent-soft: #c89e67;
  --white: #fffaf2;
  --shadow: 0 24px 60px rgba(31, 33, 28, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(159, 107, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f3eb 0%, var(--bg) 52%, #efe5d6 100%);
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.25rem 4rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.hero::before {
  top: -8rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(159, 107, 47, 0.18);
}

.hero::after {
  bottom: 2rem;
  left: -5rem;
  width: 14rem;
  height: 14rem;
  background: rgba(22, 33, 40, 0.08);
}

.topbar,
.hero-content,
.section,
.footer {
  max-width: 1180px;
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 2rem;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(22, 33, 40, 0.18);
  border-radius: 0.9rem;
  background: rgba(255, 250, 242, 0.55);
  box-shadow: var(--shadow);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.18rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.8);
  padding: 0.7rem 1rem;
  font: inherit;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.hero-card,
.service-card,
.why-panel,
.contact-card,
.intro-grid article,
.process-grid article {
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 2rem 0;
}

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

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

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.8;
}

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

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

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 36px rgba(114, 70, 16, 0.28);
}

.button-secondary {
  border: 1px solid rgba(22, 33, 40, 0.14);
  background: rgba(255, 250, 242, 0.7);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(22, 33, 40, 0.09);
  border-radius: 1.1rem;
  background: rgba(255, 250, 242, 0.55);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(18, 31, 37, 0.94) 0%, rgba(29, 46, 54, 0.88) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.card-label {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.signal-grid span {
  display: block;
  aspect-ratio: 1;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(200, 158, 103, 0.95), rgba(255, 250, 242, 0.35)),
    radial-gradient(circle at 30% 30%, rgba(255, 250, 242, 0.45), transparent 42%);
}

.signal-grid .signal-image {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.22);
}

.signal-grid .signal-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card h2 {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.98;
}

.hero-card p:last-child {
  margin: 1rem 0 0;
  color: rgba(255, 250, 242, 0.76);
  line-height: 1.8;
}

.section {
  padding: 1.5rem 1.25rem 4.5rem;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
}

.section-intro {
  padding-top: 0.5rem;
}

.intro-grid,
.services-grid,
.process-grid,
.why-list {
  display: grid;
  gap: 1.2rem;
}

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

.intro-grid article,
.process-grid article {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 250, 242, 0.62);
  box-shadow: var(--shadow);
}

.intro-grid h3,
.service-card h3,
.process-grid h3,
.why-list h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.intro-grid p,
.service-card p,
.process-grid p,
.why-list p,
.contact-card p,
.footer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

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

.service-card {
  padding: 1.5rem;
  border: 1px solid rgba(22, 33, 40, 0.08);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(244, 235, 222, 0.8));
  box-shadow: var(--shadow);
}

.process-section {
  position: relative;
}

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

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

.why-panel {
  padding: 2rem;
  border: 1px solid rgba(18, 31, 37, 0.12);
  border-radius: 1.8rem;
  background:
    linear-gradient(135deg, rgba(18, 31, 37, 0.97), rgba(42, 57, 64, 0.88)),
    linear-gradient(180deg, rgba(200, 158, 103, 0.1), transparent 45%);
  box-shadow: var(--shadow);
}

.why-panel .section-heading h2,
.why-panel .eyebrow,
.why-list h3 {
  color: var(--white);
}

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

.why-list article {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 250, 242, 0.16);
}

.why-list p {
  color: rgba(255, 250, 242, 0.76);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(22, 33, 40, 0.1);
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.88), rgba(231, 220, 201, 0.88));
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.consultation-form {
  display: grid;
  gap: 1.1rem;
}

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

.consultation-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 33, 40, 0.14);
  border-radius: 1rem;
  background: rgba(255, 250, 242, 0.95);
  padding: 0.95rem 1rem;
  color: var(--text);
  font: inherit;
}

.consultation-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: 2px solid rgba(159, 107, 47, 0.28);
  outline-offset: 2px;
}

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

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-note {
  max-width: 34rem;
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem 2rem;
  border-top: 1px solid rgba(22, 33, 40, 0.08);
}

.footer p {
  padding-top: 1.25rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.thanks-card {
  max-width: 760px;
  padding: 2rem;
  border: 1px solid rgba(22, 33, 40, 0.1);
  border-radius: 1.8rem;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 4.6rem);
}

.thanks-card p {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
  line-height: 1.8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-content,
  .contact-card,
  .intro-grid,
  .services-grid,
  .process-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

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

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

  .section-heading h2,
  h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.35rem 0 0.2rem;
  }

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

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .why-panel,
  .contact-card,
  .hero-card,
  .intro-grid article,
  .process-grid article,
  .service-card {
    padding: 1.3rem;
  }

  .footer {
    flex-direction: column;
    gap: 0;
  }
}
