:root {
  --page-bg: #f6f1e9;
  --surface: #ffffff;
  --surface-soft: #fcf8f2;
  --surface-muted: #f3e6c9;
  --gold: #c8a054;
  --gold-deep: #b38733;
  --gold-soft: #dec081;
  --charcoal: #1d1814;
  --charcoal-soft: #342b24;
  --text: #211b16;
  --muted: #665b50;
  --line: rgba(179, 135, 51, 0.16);
  --shadow: 0 26px 60px rgba(29, 24, 20, 0.12);
  --shadow-soft: 0 18px 38px rgba(29, 24, 20, 0.08);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1200px, calc(100% - 48px));
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 176, 104, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(216, 176, 104, 0.08), transparent 26%),
    var(--page-bg);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

input,
select,
textarea {
  border-radius: var(--radius-sm);
}

textarea {
  resize: vertical;
}

main,
section,
footer {
  scroll-margin-top: 120px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 137, 45, 0.1);
  box-shadow: 0 14px 28px rgba(29, 24, 20, 0.04);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
}

.brand img {
  width: clamp(140px, 16vw, 190px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 700;
  color: #3f362d;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep));
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(184, 137, 45, 0.18);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

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

.button--primary {
  color: #fff9ef;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 20px 40px rgba(148, 103, 24, 0.24);
}

.button--ghost,
.button--secondary {
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(184, 137, 45, 0.22);
  box-shadow: 0 14px 30px rgba(29, 24, 20, 0.06);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--secondary:hover,
.button--secondary:focus-visible {
  background: #fff8ed;
}

.button--ghost-light {
  color: #fff6e9;
  background: transparent;
  border: 1px solid rgba(255, 239, 212, 0.36);
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  background: rgba(255, 249, 237, 0.1);
}

.button--footer {
  color: #fff6e9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 239, 212, 0.18);
}

.header-cta {
  justify-self: end;
}

.hero--home {
  position: relative;
  padding: 96px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(222, 192, 129, 0.34), transparent 32%),
    linear-gradient(180deg, #fbf6ee 0%, #f6efe4 46%, #f4ecdf 100%);
}

.hero--home::before {
  content: "";
  position: absolute;
  right: min(7vw, 90px);
  top: 86px;
  width: min(28vw, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 192, 129, 0.4), rgba(222, 192, 129, 0));
  pointer-events: none;
}

.hero__layout.hero__layout--home {
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 58px);
}

.hero__layout,
.page-hero__grid,
.editorial,
.trust-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy {
  max-width: 640px;
}

.hero__copy--home {
  max-width: 610px;
}

.hero__copy--home h1 {
  max-width: 8.5ch;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 {
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.06;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero__lead,
.page-hero__lead,
.section-copy {
  margin-top: 22px;
  font-size: 1.06rem;
  max-width: 58ch;
}

.hero__copy--home .hero__lead {
  max-width: 52ch;
  color: #5f5448;
}

.hero__actions,
.page-hero__actions,
.consultation-strip__actions,
.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.metric-row article {
  padding-top: 18px;
  border-top: 1px solid rgba(148, 103, 24, 0.16);
}

.metric-row strong,
.contact-points strong {
  display: block;
  font-weight: 800;
  color: var(--text);
}

.hero__media-group {
  position: relative;
  padding: 0 0 88px;
}

.hero__media-group::before {
  display: none;
}

.hero__media-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__media-main {
  min-height: 690px;
  width: 100%;
  border-radius: 42px;
  background: #eadfcf;
  isolation: isolate;
}

.hero__media-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(31, 24, 20, 0.08) 0%, rgba(31, 24, 20, 0.12) 46%, rgba(31, 24, 20, 0.24) 100%);
  pointer-events: none;
}

.hero__media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition:
    opacity 720ms ease,
    transform 6200ms ease,
    visibility 0s linear 720ms;
}

.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.hero-slider__chrome {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.82);
  border: 1px solid rgba(179, 135, 51, 0.16);
  box-shadow: 0 16px 32px rgba(29, 24, 20, 0.12);
  backdrop-filter: blur(14px);
}

.hero-slider__counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  color: #46392d;
}

.hero-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(70, 57, 45, 0.22);
  box-shadow: inset 0 0 0 1px rgba(70, 57, 45, 0.08);
  transition:
    width var(--transition),
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  transform: translateY(-1px);
  background: rgba(179, 135, 51, 0.52);
}

.hero-slider__dot.is-active {
  width: 36px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 8px 18px rgba(179, 135, 51, 0.22);
}

.hero__floating-panel {
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 3;
  width: min(360px, calc(100% - 72px));
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(31, 24, 18, 0.92);
  border: 1px solid rgba(255, 239, 212, 0.14);
  box-shadow: 0 26px 46px rgba(21, 16, 12, 0.24);
}

.hero__floating-metrics {
  display: grid;
  gap: 14px;
}

.hero__floating-metrics article + article {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 239, 212, 0.12);
}

.hero__floating-metrics strong,
.hero__floating-metrics span {
  display: block;
}

.hero__floating-metrics strong {
  color: #fff7ea;
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero__floating-metrics span {
  margin-top: 6px;
  color: rgba(255, 244, 224, 0.74);
}

.page-hero {
  padding: 72px 0 48px;
}

.page-hero__content {
  max-width: 620px;
}

.page-hero__media img,
.media-frame img,
.image-stack__main img,
.image-stack__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media,
.media-frame,
.image-stack__main,
.image-stack__accent {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero__media {
  min-height: 520px;
  border-radius: var(--radius-xl);
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--white {
  background: #ffffff;
}

.brand-positioning {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(222, 192, 129, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%);
}

.section--gold {
  background:
    radial-gradient(circle at top left, rgba(222, 192, 129, 0.26), transparent 34%),
    radial-gradient(circle at bottom right, rgba(212, 174, 103, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf6ee 0%, #f6efe4 52%, #f3e9db 100%);
}

.section--dark,
.site-footer {
  color: #f7ecda;
  background:
    linear-gradient(180deg, rgba(28, 23, 19, 0.98), rgba(19, 16, 13, 1)),
    var(--charcoal);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head p {
  margin-top: 18px;
}

.section-head--light h2,
.section-head--light p,
.section--dark h2,
.section--dark p {
  color: #fff6e9;
}

.section--gold .section-head--light h2 {
  color: var(--text);
}

.section--gold .section-head--light p {
  color: var(--muted);
}

.editorial {
  align-items: start;
}

.editorial--home {
  align-items: center;
}

.editorial__content {
  max-width: 620px;
}

.vision-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
}

.vision-shell__media {
  position: relative;
  padding: 0 54px 34px 0;
}

.vision-shell__frame {
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  border-radius: 40px;
  background: #eadfcf;
  box-shadow: var(--shadow);
}

.vision-shell__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-shell__plaque {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(72%, 340px);
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 239, 212, 0.14);
  background: rgba(31, 24, 18, 0.94);
  box-shadow: 0 24px 44px rgba(21, 16, 12, 0.22);
}

.vision-shell__plaque span,
.vision-shell__plaque strong {
  display: block;
}

.vision-shell__plaque span {
  color: rgba(222, 192, 129, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vision-shell__plaque strong {
  color: #fff7ea;
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.04;
}

.vision-shell__content {
  max-width: 660px;
}

.vision-principles {
  display: grid;
  gap: 18px;
  margin: 36px 0 34px;
}

.vision-principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(179, 135, 51, 0.12);
}

.vision-principle__index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(179, 135, 51, 0.16);
  background: linear-gradient(135deg, rgba(222, 192, 129, 0.18), rgba(179, 135, 51, 0.08));
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.vision-principle h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
}

.vision-principle p {
  max-width: 44ch;
  color: #5f5448;
}

.vision-footer {
  display: grid;
  gap: 28px;
}

.vision-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(179, 135, 51, 0.14);
}

.vision-metrics strong,
.vision-metrics span {
  display: block;
}

.vision-metrics strong {
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--text);
}

.vision-metrics span {
  margin-top: 8px;
  color: var(--muted);
}

.media-frame {
  min-height: 520px;
  border-radius: var(--radius-xl);
}

.image-stack {
  position: relative;
  padding: 0 64px 76px 0;
}

.image-stack__main {
  min-height: 580px;
  border-radius: var(--radius-xl);
}

.image-stack__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(40%, 240px);
  min-height: 220px;
  border: 10px solid #ffffff;
  border-radius: 28px;
}

.editorial__statements,
.metric-row,
.value-grid,
.service-grid,
.process-grid,
.trust-grid,
.split-grid {
  display: grid;
  gap: 24px;
}

.editorial__statements {
  margin: 28px 0 34px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metric-row {
  margin: 34px 0;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric-row--compact {
  max-width: 700px;
}

.metric-row strong {
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

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

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

.services-showcase {
  padding-top: 94px;
}

.services-showcase__shell {
  position: relative;
  padding: clamp(34px, 4vw, 48px);
  border-radius: 42px;
  border: 1px solid rgba(179, 135, 51, 0.12);
  background:
    radial-gradient(circle at top left, rgba(222, 192, 129, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 243, 231, 0.96));
  box-shadow: 0 28px 60px rgba(29, 24, 20, 0.08);
  overflow: hidden;
}

.services-showcase__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    radial-gradient(circle at bottom right, rgba(212, 174, 103, 0.08), transparent 24%);
  pointer-events: none;
}

.services-showcase__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: 42px;
}

.services-showcase__headline {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.services-showcase__headline h2 {
  max-width: 28ch;
  text-wrap: balance;
}

.services-showcase__index {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(179, 135, 51, 0.18);
  background: rgba(255, 252, 245, 0.96);
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.services-showcase__summary {
  max-width: 460px;
  justify-self: end;
}

.services-showcase__summary p {
  font-size: 1.02rem;
}

.services-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--gold-deep);
  font-weight: 800;
}

.services-showcase__link::after {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep));
}

.service-grid--showcase {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.service-card--showcase {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  padding: 18px 18px 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 239, 0.96));
  box-shadow:
    0 18px 36px rgba(29, 24, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card--showcase::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(222, 192, 129, 0.2), rgba(179, 135, 51, 0.85), rgba(222, 192, 129, 0.2));
}

.service-card--showcase:hover,
.service-card--showcase:focus-within {
  transform: translateY(-8px);
  border-color: rgba(179, 135, 51, 0.2);
  box-shadow:
    0 24px 44px rgba(29, 24, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.service-card__top {
  position: relative;
}

.service-card__media {
  margin: 0;
  aspect-ratio: 1.18 / 0.9;
  border-radius: 24px;
  overflow: hidden;
  background: #eadfcf;
  box-shadow:
    0 16px 30px rgba(29, 24, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms ease;
}

.service-card--showcase:hover .service-card__media img,
.service-card--showcase:focus-within .service-card__media img {
  transform: scale(1.05);
}

.service-card__index {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(179, 135, 51, 0.14);
  background: rgba(255, 249, 239, 0.82);
  box-shadow: 0 10px 18px rgba(29, 24, 20, 0.08);
  backdrop-filter: blur(10px);
  color: rgba(148, 103, 24, 0.82);
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.service-card--showcase h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 1.7vw, 1.9rem);
}

.service-card--showcase p {
  line-height: 1.75;
}

.service-card__note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(179, 135, 51, 0.12);
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.trust-grid,
.split-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.statement-card,
.contact-form,
.trust-spotlight {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 103, 24, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.card,
.statement-card {
  padding: 32px 28px;
}

.section--gold .card,
.section--gold .statement-card {
  background: rgba(255, 255, 255, 0.94);
}

.card h3,
.statement-card h3 {
  margin-bottom: 12px;
}

.card p,
.statement-card p {
  color: var(--muted);
}

.card--icon {
  min-height: 100%;
}

.card__icon {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 1), rgba(245, 227, 190, 0.9));
  border: 1px solid rgba(184, 137, 45, 0.22);
}

.card__icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold-deep);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card {
  min-height: 100%;
}

.process-card__number {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216, 176, 104, 0.42), rgba(184, 137, 45, 0.16));
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.trust-spotlight {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(222, 192, 129, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 243, 231, 0.98));
  border-color: rgba(179, 135, 51, 0.14);
}

.trust-spotlight__media {
  margin: 0;
  aspect-ratio: 1.24 / 0.78;
  overflow: hidden;
  background: #eadfcf;
}

.trust-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-spotlight__body {
  display: grid;
  gap: 22px;
  padding: 28px 28px 30px;
}

.trust-spotlight__body h3 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 0.98;
  text-wrap: balance;
}

.trust-spotlight__body p {
  color: #5f5448;
}

.trust-spotlight__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 12px;
}

.trust-spotlight__stats article {
  padding: 16px 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(179, 135, 51, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.trust-spotlight__stats strong,
.trust-spotlight__stats span,
.trust-spotlight__list strong,
.trust-spotlight__list span {
  display: block;
}

.trust-spotlight__stats strong {
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-size: 1.85rem;
  line-height: 0.95;
  color: var(--text);
}

.trust-spotlight__stats span {
  margin-top: 8px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.trust-spotlight__list {
  display: grid;
  gap: 16px;
}

.trust-spotlight__list article {
  padding-top: 16px;
  border-top: 1px solid rgba(179, 135, 51, 0.14);
}

.trust-spotlight__list strong {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
}

.trust-spotlight__list span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.75;
}

.consultation-strip {
  padding-top: 38px;
}

.consultation-strip__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(26px, 4vw, 46px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 239, 212, 0.1);
  background:
    linear-gradient(135deg, rgba(42, 34, 27, 0.96), rgba(24, 20, 16, 0.96)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.consultation-strip__shell p {
  margin-top: 14px;
  max-width: 56ch;
}

.contact-grid {
  align-items: start;
}

.contact-grid__content {
  max-width: 560px;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-points .card {
  padding: 24px 22px;
}

.contact-points strong {
  margin-bottom: 8px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}

.contact-points span,
.contact-points a {
  color: var(--text);
  font-weight: 600;
}

.social-icon-link {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(179, 135, 51, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 231, 0.96));
  box-shadow: 0 14px 28px rgba(29, 24, 20, 0.08);
  color: var(--gold-deep);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(179, 135, 51, 0.3);
  box-shadow: 0 18px 32px rgba(29, 24, 20, 0.1);
  color: #9f7428;
}

.social-icon-link svg {
  width: 24px;
  height: 24px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 3vw, 36px);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #3f352c;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(148, 103, 24, 0.16);
  background: #fffcf7;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.contact-form textarea {
  min-height: 170px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(184, 137, 45, 0.54);
  box-shadow: 0 0 0 4px rgba(184, 137, 45, 0.12);
  background: #ffffff;
}

.contact-form__draft-link {
  min-width: 220px;
}

.contact-form__helper {
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-form__helper a {
  color: var(--gold-deep);
  font-weight: 800;
}

.form-status {
  min-height: 1.5em;
  font-weight: 700;
  color: var(--gold-deep);
}

.site-footer {
  padding: 58px 0 30px;
}

.site-footer h3 {
  color: #fff6e9;
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 1fr 0.82fr 0.9fr;
  gap: 28px;
}

.footer__brand img {
  width: 160px;
  margin-bottom: 20px;
}

.footer__brand p,
.footer__links a,
.footer__links span,
.footer__bottom p,
.footer__bottom a {
  color: rgba(255, 244, 224, 0.78);
}

.footer__links {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links--social {
  display: flex;
  align-items: center;
}

.social-icon-link--footer {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 239, 212, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: rgba(255, 244, 224, 0.78);
}

.social-icon-link--footer:hover,
.social-icon-link--footer:focus-visible {
  border-color: rgba(255, 239, 212, 0.34);
  color: #fff6e9;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.footer__links a:hover,
.footer__links a:focus-visible,
.footer__bottom a:hover,
.footer__bottom a:focus-visible {
  color: #fff6e9;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 239, 212, 0.12);
}

.floating-tools {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  gap: 12px;
}

.floating-tools__item {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fffdf9;
  box-shadow: 0 20px 36px rgba(29, 24, 20, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.floating-tools__item:hover,
.floating-tools__item:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 44px rgba(29, 24, 20, 0.24);
}

.floating-tools__item svg {
  width: 24px;
  height: 24px;
}

.floating-tools__item--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c53);
}

.back-to-top {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  transition: opacity 420ms ease, transform 420ms ease;
}

body.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}

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

:focus-visible {
  outline: 3px solid rgba(184, 137, 45, 0.36);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .vision-shell {
    gap: 42px;
  }

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

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

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

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

@media (max-width: 980px) {
  .vision-shell {
    grid-template-columns: 1fr;
  }

  .vision-shell__media {
    padding: 0 28px 22px 0;
  }

  .vision-shell__frame {
    min-height: 420px;
  }

  .vision-shell__content {
    max-width: none;
  }

  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(184, 137, 45, 0.16);
    box-shadow: 0 24px 42px rgba(29, 24, 20, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    background: rgba(184, 137, 45, 0.1);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

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

  .hero__layout,
  .page-hero__grid,
  .editorial,
  .trust-layout,
  .contact-grid,
  .split-grid--two {
    grid-template-columns: 1fr;
  }

  .hero__layout.hero__layout--home {
    grid-template-columns: 1fr;
  }

  .services-showcase__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .trust-spotlight__media {
    aspect-ratio: 1.55 / 0.84;
  }

  .trust-spotlight__body {
    padding: 26px 24px 28px;
  }

  .services-showcase__summary {
    justify-self: start;
    max-width: 620px;
  }

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

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

  .hero--home {
    padding: 52px 0 56px;
  }

  .hero__copy,
  .hero__copy--home {
    max-width: none;
  }

  .hero__media-group {
    padding: 0 0 96px;
  }

  .hero__media-group::before {
    display: none;
  }

  .hero__media-main {
    min-height: 540px;
    border-radius: 36px;
  }

  .hero-slider__chrome {
    top: 22px;
    right: 22px;
    gap: 14px;
    padding: 12px 16px;
  }

  .hero__floating-panel {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .page-hero__media,
  .media-frame,
  .image-stack__main {
    min-height: 380px;
  }

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

  .contact-form__row,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .consultation-strip__shell,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 100%);
  }

  .section,
  .consultation-strip {
    padding: 88px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .services-showcase__shell {
    padding: 26px 18px 24px;
    border-radius: 30px;
  }

  .services-showcase__intro {
    margin-bottom: 28px;
    gap: 20px;
  }

  .services-showcase__headline {
    gap: 14px;
  }

  .services-showcase__index {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .services-showcase__headline h2 {
    max-width: none;
  }

  .service-grid--showcase {
    grid-template-columns: 1fr;
  }

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

  .service-card__media {
    aspect-ratio: 1.2 / 0.88;
  }

  .vision-shell__media {
    padding: 0;
  }

  .vision-shell__frame {
    min-height: 320px;
    border-radius: 30px;
  }

  .vision-shell__plaque {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .vision-shell__plaque strong {
    font-size: 1.45rem;
  }

  .vision-principles {
    margin: 28px 0 30px;
  }

  .vision-principle {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vision-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-spotlight__media {
    aspect-ratio: 1.08 / 0.96;
  }

  .trust-spotlight__body {
    gap: 18px;
    padding: 22px 18px 24px;
  }

  .trust-spotlight__body h3 {
    max-width: none;
  }

  .trust-spotlight__stats {
    grid-template-columns: 1fr;
  }

  .service-card__index {
    top: 12px;
    right: 12px;
    min-width: 42px;
    padding: 7px 10px;
    font-size: 1.2rem;
  }

  .hero--home {
    padding: 42px 0 50px;
  }

  .hero__media-group {
    padding: 0 0 132px;
  }

  .hero__media-group::before {
    display: none;
  }

  .hero__media-main {
    min-height: 400px;
    border-radius: 30px;
  }

  .hero-slider__chrome {
    top: 16px;
    right: 16px;
    gap: 10px;
    padding: 10px 12px;
  }

  .hero__floating-panel {
    left: 16px;
    right: 16px;
    bottom: 18px;
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .hero__floating-metrics strong {
    font-size: 1.34rem;
  }

  .hero-slider__dot.is-active {
    width: 28px;
  }

  .page-hero {
    padding: 52px 0 36px;
  }

  .page-hero__media,
  .media-frame,
  .image-stack__main {
    min-height: 300px;
  }

  .value-grid,
  .process-grid--five,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .floating-tools {
    right: 16px;
    bottom: 18px;
  }

  .floating-tools__item {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
