:root {
  color-scheme: light;
  --color-black: #090909;
  --color-white: #ffffff;
  --color-gold: #cda85f;
  --color-gold-soft: #e2c483;
  --color-warm: #f5f2ec;
  --color-muted: #625f58;
  --color-line: #ded9cf;
  --container: 1200px;
  --radius: 10px;
  --section-space: 96px;
  --shadow-soft: 0 24px 70px rgba(17, 14, 8, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.public-body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.public-container {
  width: min(calc(100% - 72px), var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 84px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 28px;
}

.site-header__brand,
.site-footer__brand {
  width: fit-content;
  text-decoration: none;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.wordmark__name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.wordmark__subline {
  margin-top: 6px;
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 6px;
}

.site-header__call {
  justify-self: end;
}

.button {
  min-height: 48px;
  min-width: 152px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button .icon:last-child {
  margin-left: auto;
}

.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--whatsapp {
  fill: currentColor;
  stroke: none;
}

.button--gold {
  background: var(--color-gold);
  color: var(--color-black);
}

.button--gold:hover {
  background: var(--color-gold-soft);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.16);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

.button--outline-light:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100svh - 84px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
}

.hero__image,
.hero__placeholder,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.002);
}

.hero__placeholder {
  background:
    radial-gradient(circle at 72% 38%, rgba(205, 168, 95, 0.2), transparent 22%),
    linear-gradient(112deg, #050505 0 48%, #15130f 74%, #050505 100%);
}

.hero__placeholder::before,
.hero__placeholder::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(199, 161, 90, 0.45);
}

.hero__placeholder::before {
  width: 540px;
  height: 540px;
  right: -120px;
  bottom: -280px;
  border-radius: 50%;
}

.hero__placeholder::after {
  width: 380px;
  height: 380px;
  right: -40px;
  bottom: -225px;
  border-radius: 50%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 43%, rgba(0, 0, 0, 0.18) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 46%);
}

.hero__line {
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(205, 168, 95, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.hero__line--top {
  top: -174px;
  left: 49%;
}

.hero__line--bottom {
  right: -110px;
  bottom: -130px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 108px 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.eyebrow::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: var(--color-gold);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.74);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 5.2vw, 74px);
  font-weight: 430;
  line-height: 0.99;
  letter-spacing: -0.052em;
}

.hero__description {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  margin-top: 34px;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 56px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__location .icon {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

.section {
  padding-block: var(--section-space);
}

.section--light {
  background: var(--color-white);
}

.section--warm {
  background: var(--color-warm);
}

.section h2,
.privacy-page h1 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  font-weight: 470;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.services__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-line);
}

.service-card {
  min-width: 0;
  padding: 36px 28px 42px;
  border-right: 1px solid var(--color-line);
}

.service-card:last-child {
  border-right: 0;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-card__icon .icon {
  width: 26px;
  height: 26px;
  stroke-width: 1.55;
}

.service-card h3,
.trust-point h3 {
  margin: 22px 0 8px;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
}

.service-card p,
.trust-point p,
.about__copy > p:last-child,
.final-cta__inner > p,
.privacy-page__article > p,
.privacy-page__article section p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.trust__layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 2fr);
  gap: 86px;
  align-items: start;
}

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

.trust-point__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 12px 26px rgba(137, 100, 34, 0.16);
}

.trust-point__mark .icon {
  width: 25px;
  height: 25px;
  stroke-width: 1.65;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 88px;
  align-items: center;
}

.about__copy > p:last-child {
  max-width: 640px;
  margin-top: 24px;
  font-size: 17px;
}

.about__brand-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-black);
  border-radius: var(--radius);
  color: var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.about__brand-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(205, 168, 95, 0.22), transparent 24%),
    linear-gradient(135deg, transparent 0 54%, rgba(255, 255, 255, 0.035) 54% 55%, transparent 55%);
}

.about__orbit {
  position: absolute;
  border: 1px solid rgba(205, 168, 95, 0.44);
  border-radius: 50%;
}

.about__orbit--outer {
  width: 430px;
  height: 430px;
  top: -210px;
  right: -150px;
}

.about__orbit--inner {
  width: 270px;
  height: 270px;
  top: -120px;
  right: -68px;
}

.about__monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(205, 168, 95, 0.12);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(150px, 20vw, 260px);
  line-height: 1;
  transform: translate(-50%, -52%);
}

.about__panel-copy {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 7px;
  text-align: right;
}

.about__panel-copy strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.about__panel-copy small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  left: -340px;
  top: -260px;
  border: 1px solid rgba(205, 168, 95, 0.32);
  border-radius: 50%;
}

.final-cta::after {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  right: -250px;
  bottom: -270px;
  border: 1px solid rgba(199, 161, 90, 0.55);
  border-radius: 50%;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta__inner h2 {
  max-width: 820px;
}

.final-cta__inner > p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.final-cta .contact-actions {
  margin-top: 30px;
}

.site-footer {
  padding-block: 38px;
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
}

.site-footer__signature {
  justify-self: end;
  color: #aaa59b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__facts {
  display: flex;
  gap: 24px;
  color: var(--color-muted);
  font-size: 13px;
}

.site-footer__facts a,
.site-footer__inner > a {
  text-underline-offset: 4px;
}

.site-footer__areas {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.privacy-page {
  min-height: 65vh;
  padding-block: 90px;
  background: var(--color-warm);
}

.privacy-page__article {
  max-width: 820px;
}

.privacy-page__article > p {
  margin-top: 28px;
  font-size: 18px;
}

.privacy-page__article section {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

.privacy-page__article h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.mobile-contact-dock {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --section-space: 70px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav--desktop,
  .site-header__call {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 8px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 26px;
    height: 2px;
    margin-left: auto;
    background: var(--color-gold);
  }

  .site-nav--mobile {
    position: absolute;
    top: 52px;
    right: 0;
    min-width: 210px;
    display: grid;
    gap: 0;
    padding: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  }

  .site-nav--mobile a {
    padding: 12px 14px;
  }

  .hero h1 {
    font-size: 52px;
  }

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

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-child(n + 3) {
    border-top: 1px solid var(--color-line);
  }

  .trust__layout,
  .about__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer__signature {
    display: none;
  }

  .about__brand-panel {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 58px;
  }

  html {
    scroll-behavior: auto;
  }

  .public-container {
    width: min(calc(100% - 40px), var(--container));
  }

  .public-site--with-dock {
    padding-bottom: 0;
  }

  .site-header,
  .site-header__inner {
    min-height: 72px;
  }

  .wordmark__name {
    font-size: 27px;
  }

  .hero {
    min-height: min(620px, calc(100svh - 72px));
    align-items: flex-end;
  }

  .hero__content {
    padding-block: 88px 42px;
  }

  .hero h1 {
    max-width: 440px;
    font-size: clamp(40px, 11.2vw, 50px);
    line-height: 1.01;
  }

  .hero__description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero__actions {
    width: 100%;
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 52px;
  }

  .hero__location {
    margin-top: 32px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 68%);
  }

  .hero__image {
    object-position: 66% center;
  }

  .section h2,
  .privacy-page h1 {
    font-size: 35px;
  }

  .services__grid {
    margin-top: 34px;
  }

  .service-card {
    padding: 28px 18px 32px;
  }

  .trust__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .trust-point {
    min-width: 0;
    text-align: center;
  }

  .trust-point__mark {
    margin-inline: auto;
  }

  .trust-point h3 {
    font-size: 15px;
  }

  .trust-point p {
    font-size: 13px;
  }

  .about__brand-panel {
    min-height: 220px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer {
    padding-block: 34px;
    background: var(--color-black);
    color: var(--color-white);
    border-top-color: rgba(205, 168, 95, 0.32);
  }

  .site-footer__facts,
  .site-footer__areas {
    color: rgba(255, 255, 255, 0.62);
  }

  .site-footer__facts {
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .mobile-contact-dock {
    position: relative;
    z-index: 1;
    display: block;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: var(--color-black);
    border-top: 1px solid rgba(199, 161, 90, 0.6);
  }

  .mobile-contact-dock .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-contact-dock .button {
    min-width: 0;
    min-height: 48px;
    padding-inline: 14px;
  }

  .mobile-contact-dock .button:only-child {
    grid-column: 1 / -1;
  }

  .privacy-page {
    padding-block: 64px;
  }
}

@media (max-width: 390px) {
  .trust__grid {
    gap: 12px;
  }

  .trust-point h3 {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 39px;
  }
}

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

  .button {
    transition: none;
  }
}
