:root {
  --color-bg: #f7f3ec;
  --color-surface: #ffffff;
  --color-ink: #2d2d39;
  --color-brand: #616179;
  --color-accent: #ab9878;
  --color-soft: #e6dbc8;
  --shadow-strong: 0 25px 70px rgba(97, 97, 121, 0.2);
  --shadow-soft: 0 12px 30px rgba(58, 58, 73, 0.12);
  --shadow-card: 0 16px 40px rgba(58, 58, 73, 0.1);
  --shadow-card-hover: 0 24px 52px rgba(58, 58, 73, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: radial-gradient(circle at 85% 15%, #efe6d7 0%, transparent 32%),
    radial-gradient(circle at 15% 72%, #f2ece2 0%, transparent 44%),
    var(--color-bg);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.background-aura {
  position: fixed;
  inset: -20vmax;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 14%, rgba(171, 152, 120, 0.25), transparent 28%),
    radial-gradient(circle at 84% 80%, rgba(97, 97, 121, 0.22), transparent 30%);
  filter: blur(12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247, 243, 236, 0.78);
  border-bottom: 1px solid rgba(97, 97, 121, 0.12);
}

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

.brand img {
  width: min(190px, 34vw);
}

.site-nav {
  display: flex;
  gap: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-brand);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: var(--color-brand);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

section {
  padding: 6rem 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.7vw, 3.65rem);
  line-height: 1.05;
  max-width: 15ch;
  margin-bottom: 1.2rem;
}

.lead {
  max-width: 52ch;
  color: rgba(45, 45, 57, 0.86);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

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

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #616179, #7b6f59);
  box-shadow: 0 10px 20px rgba(97, 97, 121, 0.25);
}

.btn-ghost {
  color: var(--color-brand);
  border-color: rgba(97, 97, 121, 0.26);
  background: rgba(255, 255, 255, 0.6);
}

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

.hero-metrics li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(97, 97, 121, 0.1);
  border-radius: 16px;
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  color: var(--color-brand);
}

.hero-metrics span {
  font-size: 0.92rem;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-frame {
  width: min(560px, 100%);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(160deg, #ebe3d4, #d8cab0);
  padding: clamp(0.7rem, 1.6vw, 1.2rem);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: -20% -40% auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 65%);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4rem);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border: 1px solid rgba(97, 97, 121, 0.2);
  border-radius: calc(var(--radius) + 12px);
}

.about-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy h2,
.services h2,
.contact h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.services-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 238, 0.92));
  border-radius: 20px;
  border: 1px solid rgba(97, 97, 121, 0.14);
  padding: 1.28rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(171, 152, 120, 0.65), rgba(97, 97, 121, 0.55));
}

.service-card h3 {
  color: var(--color-brand);
  margin-bottom: 0.55rem;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(97, 97, 121, 0.24);
}

.highlights {
  background: linear-gradient(145deg, #4f5067, #6d6178 62%, #8d7d65);
  color: #f8f5f0;
}

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

.highlights-grid article {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.1rem;
}

.highlights-grid h3 {
  margin-bottom: 0.55rem;
}

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

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #efe8dd 0%, #e6dbc8 26%, #ab9878 58%, #616179 100%);
  background-size: 240% 240%;
  animation: footerGradientShift 16s ease-in-out infinite;
  color: #f6efe3;
  text-align: center;
  padding: 2.4rem 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 35, 49, 0.18), rgba(34, 35, 49, 0.38));
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
}

.footer-note {
  font-size: 0.78rem;
  opacity: 0.82;
}

.footer-note a {
  font-size: 0.78rem;
}

.footer-content a {
  color: #f6efe3;
  text-decoration-color: rgba(246, 239, 227, 0.5);
  text-underline-offset: 3px;
}

.footer-content a:hover,
.footer-content a:focus-visible {
  text-decoration-color: #f6efe3;
}

@keyframes footerGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.footer-logo {
  width: min(270px, 62vw);
}

.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-reveal.in-view {
  opacity: 1;
  transform: none;
}

.page-hero {
  padding-top: 5rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(45, 45, 57, 0.9);
  max-width: 52ch;
}

.profile-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 231, 0.95));
  border: 1px solid rgba(97, 97, 121, 0.16);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}

.profile-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

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

.fact-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.94));
  border: 1px solid rgba(97, 97, 121, 0.14);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.fact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(97, 97, 121, 0.55), rgba(171, 152, 120, 0.7));
}

.fact-card h3 {
  color: var(--color-brand);
  margin-bottom: 0.7rem;
}

.fact-card:hover,
.fact-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(97, 97, 121, 0.24);
}

.fact-list {
  margin: 0;
  padding-left: 1.15rem;
}

.fact-list li + li {
  margin-top: 0.45rem;
}

.who-layout {
  margin-top: 2.7rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.who-intro-card {
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.98), rgba(243, 236, 224, 0.95));
  border: 1px solid rgba(97, 97, 121, 0.17);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 1.45rem;
  position: relative;
  overflow: hidden;
}

.who-intro-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(171, 152, 120, 0.24), transparent 68%);
  pointer-events: none;
}

.who-intro-card h3 {
  color: var(--color-brand);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  margin-bottom: 0.65rem;
}

.who-intro-card p {
  color: rgba(45, 45, 57, 0.9);
}

.who-badges {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.who-badge {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(97, 97, 121, 0.16);
  border-radius: 14px;
  padding: 0.8rem;
  box-shadow: 0 6px 16px rgba(58, 58, 73, 0.08);
}

.who-badge strong {
  display: block;
  color: var(--color-brand);
  margin-bottom: 0.2rem;
}

.who-badge span {
  font-size: 0.95rem;
}

.who-columns {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.parallax-wrap {
  overflow: hidden;
}

[data-parallax] {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

@media (max-width: 950px) {
  .hero-grid,
  .page-hero-grid,
  .who-layout,
  .who-columns,
  .about-grid,
  .contact-grid,
  .highlights-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .who-badges {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .lead {
    max-width: none;
  }

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

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    inset: 68px 0 auto 0;
    background: rgba(247, 243, 236, 0.97);
    border-bottom: 1px solid rgba(97, 97, 121, 0.12);
    display: grid;
    gap: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.22s ease;
  }

  .site-nav a {
    padding: 0.95rem 4vw;
  }

  .site-nav.open {
    transform: scaleY(1);
  }

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

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg);
  }

  section {
    padding: 4.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer {
    animation: none;
  }

  [data-parallax] {
    transform: none !important;
  }

  .service-card,
  .fact-card {
    transition: none;
  }
}
