:root {
  --rose-sand: #e2c5ae;
  --warm-taupe: #a57f66;
  --espresso: #655246;
  --cloud: #f2f2f2;
  --white: #fffdfb;
  --text: #3f322b;
  --text-soft: rgba(63, 50, 43, 0.76);
  --border: rgba(101, 82, 70, 0.14);
  --shadow: 0 28px 80px rgba(101, 82, 70, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  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(226, 197, 174, 0.35), transparent 28%),
    linear-gradient(180deg, #fffcfa 0%, #f8f4f1 45%, #f2f2f2 100%);
  overflow-x: hidden;
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.ambient-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  filter: blur(0);
  animation-name: driftParticle, pulseParticle;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite;
}

.ambient-particle::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 68%);
  opacity: 0.7;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(101, 82, 70, 0.08);
}

.section,
.hero {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(101, 82, 70, 0.1);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span,
.nav a,
.hero-text,
.service-card p,
.service-card li,
.feature-card p,
.benefit-card p,
.cta-panel p,
.footer p {
  color: var(--text-soft);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--espresso), var(--warm-taupe));
  box-shadow: 0 16px 30px rgba(101, 82, 70, 0.18);
}

.button-secondary {
  background: rgba(255, 253, 251, 0.65);
  border-color: var(--border);
}

.section {
  padding: 52px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 150px);
}

.eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(226, 197, 174, 0.28);
  color: var(--espresso);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  line-height: 0.98;
}

h1 {
  margin-top: 22px;
  font-size: clamp(3.1rem, 5vw, 5.6rem);
}

h2 {
  font-size: clamp(2.3rem, 3.5vw, 4rem);
}

h3 {
  font-size: 2rem;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.hero-highlights span,
.info-pill {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

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

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: end;
}

.portrait-frame,
.hero-card,
.about-card,
.service-card,
.feature-card,
.benefit-card,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 251, 0.86);
  box-shadow: var(--shadow);
}

.portrait-frame {
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  padding: 18px;
}

.portrait-placeholder,
.logo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1.5px dashed rgba(101, 82, 70, 0.3);
  border-radius: calc(var(--radius-lg) - 10px);
  background:
    linear-gradient(135deg, rgba(226, 197, 174, 0.26), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 16px,
      rgba(165, 127, 102, 0.05) 16px,
      rgba(165, 127, 102, 0.05) 32px
    );
  color: var(--espresso);
  text-align: center;
  padding: 24px;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-lg) - 10px);
}

.logo-image-wrap {
  display: grid;
  place-items: center;
  min-height: 156px;
  border-radius: calc(var(--radius-lg) - 10px);
  background:
    radial-gradient(circle at top, rgba(226, 197, 174, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 242, 242, 0.9));
  border: 1px solid rgba(165, 127, 102, 0.12);
  padding: 16px;
}

.logo-image {
  width: min(100%, 290px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.08) contrast(1.08);
}

.hero-card {
  max-width: 290px;
  padding: 22px;
}

.logo-card {
  max-width: 360px;
  margin-right: 42px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 253, 251, 0.98), rgba(242, 242, 242, 0.95));
  box-shadow: 0 24px 54px rgba(101, 82, 70, 0.18);
}

.credential-card {
  margin-top: -94px;
  margin-right: 180px;
}

.card-label,
.service-index {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--warm-taupe);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.credential-card p {
  margin: 0;
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-top: 18px;
}

.trust-strip {
  padding: 18px 0 30px;
}

.trust-strip-inner {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip-title {
  margin: 0 0 20px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
}

.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  z-index: 1;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 244, 241, 0.98), rgba(248, 244, 241, 0));
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 244, 241, 0.98), rgba(248, 244, 241, 0));
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(101, 82, 70, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.68);
  color: rgba(63, 50, 43, 0.6);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  background: rgba(226, 197, 174, 0.2);
  color: var(--espresso);
}

.about-grid,
.services-grid,
.differentials-grid,
.benefits-grid,
.testimonials-grid {
  display: grid;
  gap: 22px;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.about-card,
.service-card,
.feature-card,
.benefit-card,
.cta-panel {
  padding: 30px;
}

.about-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
}

.about-card p + p {
  margin-top: 16px;
}

.about-points {
  display: grid;
  gap: 14px;
  align-content: start;
}

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

.service-card ul {
  padding-left: 20px;
  margin: 22px 0 0;
  line-height: 1.8;
}

.feature-card h3,
.benefit-card strong {
  margin-bottom: 12px;
}

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

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

.benefit-card strong {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--espresso);
}

.testimonial-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(226, 197, 174, 0.18), transparent 35%),
    rgba(255, 253, 251, 0.9);
  box-shadow: var(--shadow);
}

.testimonial-rating {
  margin-bottom: 18px;
  color: var(--warm-taupe);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.testimonial-card p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.9;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--espresso);
  font-size: 1rem;
}

.testimonial-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.cta {
  padding-bottom: 24px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 48px 28px;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 197, 174, 0.4), transparent 65%);
}

.section-ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.16;
  z-index: 0;
}

.section-ornament img {
  display: block;
  width: 100%;
  height: auto;
}

.ornament-hero {
  top: 3%;
  right: -4%;
  width: clamp(120px, 16vw, 230px);
}

.ornament-about {
  top: 18%;
  right: 2%;
  width: clamp(90px, 12vw, 170px);
  opacity: 0.1;
}

.ornament-cta {
  bottom: -8%;
  left: -2%;
  width: clamp(110px, 15vw, 210px);
  opacity: 0.12;
}

.hero-copy,
.hero-visual,
.section-heading,
.about-grid,
.services-grid,
.differentials-grid,
.benefits-grid,
.cta-panel {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 860px;
  margin: 18px auto 0;
}

.cta-panel p {
  max-width: 700px;
  margin: 18px auto 28px;
  line-height: 1.8;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6px 6px;
}

.footer strong {
  display: block;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes driftParticle {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(var(--drift-x), calc(var(--drift-y) * -0.55), 0) scale(1.06);
  }

  50% {
    transform: translate3d(calc(var(--drift-x) * -0.75), var(--drift-y), 0) scale(0.92);
  }

  75% {
    transform: translate3d(calc(var(--drift-x) * 0.52), calc(var(--drift-y) * 0.32), 0) scale(1.04);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pulseParticle {
  0% {
    opacity: 0;
  }

  18% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.74;
  }

  82% {
    opacity: 0.34;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .topbar {
    border-radius: 30px;
  }

  .nav,
  .button-nav {
    display: none;
  }

  .hero,
  .about-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-items: center;
  }

  .section-ornament {
    opacity: 0.08;
  }

  .logo-card,
  .credential-card {
    margin-right: 0;
  }

  .credential-card {
    margin-top: 0;
  }

  .benefits-grid {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .ambient-particle {
    opacity: 0;
  }

  .topbar {
    padding: 14px 16px;
    margin-bottom: 18px;
  }

  .brand-copy span {
    font-size: 0.82rem;
  }

  .section {
    padding: 38px 0;
  }

  .trust-strip {
    padding: 10px 0 22px;
  }

  .trust-strip-title {
    font-size: 0.74rem;
    margin-bottom: 16px;
  }

  .trust-marquee::before,
  .trust-marquee::after {
    width: 34px;
  }

  .trust-item {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  h1 {
    margin-top: 18px;
    line-height: 1.03;
  }

  h3 {
    font-size: 1.7rem;
  }

  .hero-actions,
  .services-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-panel .button {
    width: 100%;
  }

  .portrait-frame {
    aspect-ratio: 5 / 6;
  }

  .ornament-hero,
  .ornament-about,
  .ornament-cta {
    width: 110px;
  }

  .about-card,
  .service-card,
  .feature-card,
  .benefit-card,
  .cta-panel {
    padding: 24px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
  }
}
