
:root {
  --ink: #0c0c0e;
  --muted: #625f59;
  --gold: #c7a45a;
  --gold-dark: #9b792f;
  --ivory: #eee5d2;
  --ivory-soft: #f8f4eb;
  --line: rgba(12, 12, 14, 0.12);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fdfcf9;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 20px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  padding: 14px 18px 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(12, 12, 14, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(15, 15, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.brand span {
  color: var(--gold);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #44413c;
  font-size: 14px;
}

.site-header nav > a:not(.button) {
  transition: color 0.2s ease;
}

.site-header nav > a:not(.button):hover {
  color: var(--gold);
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 27px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6b96f, #ae8736);
  box-shadow: 0 13px 30px rgba(174, 135, 54, 0.24);
  color: white;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(174, 135, 54, 0.32);
}

.button-small {
  min-height: 49px;
  padding: 0 24px;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 225px 20px 90px;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(5px);
}

.hero-glow-one {
  top: 50px;
  left: 8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(215, 184, 111, 0.3), rgba(248, 244, 235, 0));
}

.hero-glow-two {
  right: -5%;
  bottom: 0;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(199, 164, 90, 0.22), rgba(248, 244, 235, 0));
}

.eyebrow,
.section-label {
  display: inline-flex;
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(199, 164, 90, 0.13);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1000px;
  margin: 35px auto 25px;
  font-size: clamp(60px, 7vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy {
  max-width: 735px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.trust-row {
  margin-top: 76px;
  display: flex;
  justify-content: center;
  gap: 48px;
  color: #514e48;
  font-size: 14px;
}

.focus-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 35px 44px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 26px 70px rgba(15, 15, 15, 0.07);
}

.focus-strip > p {
  margin: 0 0 28px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.focus-strip > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  color: #6a665f;
  font-size: 17px;
}

.about {
  padding-top: 150px;
}

.about-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 80px;
  align-items: end;
}

h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.052em;
}

.about-copy {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.about-copy p {
  margin: 0 0 14px;
}

.about-visual {
  position: relative;
  min-height: 520px;
  margin-top: 70px;
  padding: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 10%, rgba(199, 164, 90, 0.32), transparent 35%),
    linear-gradient(135deg, #08080a, #1d1b18);
  color: white;
}

.visual-core {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.visual-core small {
  display: block;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.visual-core strong {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-visual ul,
.why-copy ul {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-visual li {
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.orbit-one {
  top: -150px;
  right: 120px;
  width: 600px;
  height: 600px;
}

.orbit-two {
  top: 30px;
  right: -120px;
  width: 450px;
  height: 450px;
}

.services {
  padding-top: 160px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 90px;
  align-items: end;
}

.section-heading h2 {
  max-width: 780px;
  margin-top: 28px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: var(--gold);
  color: white;
}

.service-number {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.service-card:hover .service-number,
.service-card:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.25s ease;
}

.card-arrow {
  position: absolute;
  right: 32px;
  top: 30px;
  font-size: 25px;
}

.why {
  padding-top: 160px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.why-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(145deg, #f7f2e8, #e5d4ad);
}

.art-window {
  position: absolute;
  right: 55px;
  bottom: 55px;
  left: 55px;
  z-index: 2;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 50px rgba(15, 15, 15, 0.12);
  backdrop-filter: blur(14px);
}

.art-window span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.art-window strong {
  display: block;
  max-width: 330px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.art-line {
  position: absolute;
  border: 1px solid rgba(155, 121, 47, 0.3);
  border-radius: 50%;
}

.art-line-one {
  width: 500px;
  height: 500px;
  top: -160px;
  left: -130px;
}

.art-line-two {
  width: 390px;
  height: 390px;
  top: -80px;
  left: -40px;
}

.why-copy h2 {
  margin-top: 30px;
}

.why-copy > p {
  margin: 30px 0 38px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.why-copy li {
  position: relative;
  margin: 18px 0;
  padding: 0 0 18px 36px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.why-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 12px;
}

.values {
  width: min(1180px, calc(100% - 40px));
  margin: 150px auto 0;
  padding: 55px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values div {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.values div:last-child {
  border: 0;
}

.values strong,
.values span {
  display: block;
}

.values strong {
  color: var(--gold);
  font-size: clamp(37px, 4vw, 54px);
  letter-spacing: -0.055em;
}

.values span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.approach {
  padding-top: 150px;
}

.approach-head {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: end;
}

.approach-head p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.steps article {
  position: relative;
  min-height: 280px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border: 0;
}

.steps span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.steps h3 {
  margin: 70px 0 15px;
  font-size: 28px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.approach > small {
  display: block;
  margin-top: 25px;
  color: #77736c;
}

.faq {
  padding-top: 160px;
  text-align: center;
}

.faq h2 {
  margin-top: 30px;
}

.faq-intro {
  margin: 22px 0 48px;
  color: var(--muted);
  font-size: 18px;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.faq-list article {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: white;
}

.faq-list button {
  width: 100%;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-list button i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory-soft);
  color: var(--gold);
  font-size: 18px;
  font-style: normal;
}

.faq-list article > div {
  display: none;
  padding: 0 70px 24px 28px;
}

.faq-list article.faq-open > div {
  display: block;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 160px auto 0;
  padding: 82px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 8% 0%, rgba(199, 164, 90, 0.32), transparent 35%),
    #09090a;
  color: white;
}

.section-label-light {
  background: rgba(255, 255, 255, 0.12);
  color: #e6cf98;
}

.contact-intro h2 {
  margin-top: 32px;
}

.contact-intro p {
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.contact-intro > span {
  color: #c8b785;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-details {
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details a {
  width: fit-content;
  color: white;
  font-size: 17px;
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-form {
  padding: 36px;
  border-radius: 30px;
  background: white;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label:not(.consent) {
  margin-bottom: 17px;
  display: block;
  color: #4f4958;
  font-size: 13px;
  font-weight: 700;
}

.contact-form label small {
  color: #918a99;
  font-weight: 400;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid #ded9cf;
  border-radius: 13px;
  outline: none;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 164, 90, 0.14);
}

.consent {
  margin: 4px 0 22px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #6f6878;
  font-size: 12px;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.button-light {
  width: 100%;
}

.form-success {
  margin: 16px 0 0;
  color: #3f8b5e;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 35px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
}

.brand-light {
  color: var(--ink);
}

footer > div:first-child p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #817a89;
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    min-height: 66px;
    padding: 10px 18px 10px 22px;
  }

  .brand {
    font-size: 21px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: var(--ivory-soft);
  }

  .menu-toggle i {
    width: 18px;
    height: 1.5px;
    display: block;
    background: var(--ink);
  }

  .site-header nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: white;
    box-shadow: 0 20px 50px rgba(15, 15, 15, 0.14);
  }

  .site-header nav.nav-open {
    display: flex;
  }

  .site-header nav a {
    padding: 11px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 170px 0 75px;
  }

  .hero h1 {
    font-size: clamp(49px, 12vw, 75px);
  }

  .trust-row {
    gap: 18px;
    flex-wrap: wrap;
  }

  .about-grid,
  .section-heading,
  .why,
  .approach-head,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-visual {
    min-height: 600px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 35px;
  }

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

  .values,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .values div:nth-child(2) {
    border-right: 0;
  }

  .values div {
    padding: 25px;
  }

  .steps article:nth-child(2) {
    border-right: 0;
  }

  .contact-wrap {
    padding: 55px 40px;
  }
}

@media (max-width: 600px) {
  .section,
  .focus-strip,
  .values,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 155px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 26px;
    font-size: 49px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    margin-top: 48px;
    flex-direction: column;
  }

  .focus-strip {
    padding: 30px 22px;
  }

  .focus-strip > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    font-size: 14px;
  }

  .about,
  .services,
  .why,
  .approach,
  .faq {
    padding-top: 110px;
  }

  h2 {
    font-size: 43px;
  }

  .about-visual {
    min-height: 540px;
    margin-top: 45px;
    padding: 30px;
  }

  .visual-core strong {
    font-size: 54px;
  }

  .service-card {
    min-height: 275px;
    padding: 27px;
  }

  .why {
    gap: 55px;
  }

  .why-art {
    min-height: 480px;
  }

  .art-window {
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 26px;
  }

  .art-window strong {
    font-size: 35px;
  }

  .values {
    margin-top: 110px;
  }

  .values,
  .steps {
    grid-template-columns: 1fr;
  }

  .values div,
  .steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values div:last-child,
  .steps article:last-child {
    border-bottom: 0;
  }

  .steps article {
    min-height: 220px;
  }

  .steps h3 {
    margin-top: 45px;
  }

  .contact-wrap {
    width: calc(100% - 16px);
    margin-top: 110px;
    padding: 48px 22px 22px;
    border-radius: 34px;
  }

  .contact-form {
    padding: 24px 18px;
  }

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

  footer {
    padding-top: 70px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* ALMA GROUP — Noir & Gold Edition */
:root {
  --ink: #f8f5ee;
  --muted: #b9b4aa;
  --gold: #d0aa53;
  --gold-dark: #9a7227;
  --ivory: #eee5d2;
  --ivory-soft: #f8f4eb;
  --line: rgba(255, 255, 255, 0.13);
  --black: #050506;
  --black-soft: #0c0c0e;
  --black-card: #111114;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(208, 170, 83, 0.08), transparent 22%),
    var(--black);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 9, 0.76);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  color: white;
  transition: min-height .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(5, 5, 6, 0.93);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
}

.site-header nav {
  color: #d5d0c6;
}

.brand {
  color: white;
}

.button {
  position: relative;
  overflow: hidden;
  color: #090909;
}

.button::after {
  content: "";
  position: absolute;
  inset: -2px auto -2px -48%;
  width: 36%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transition: left .65s ease;
}

.button:hover::after {
  left: 118%;
}

.button-secondary {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: white;
}

.hero {
  min-height: 900px;
  padding-top: 240px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 70px;
  left: 50%;
  width: min(1080px, 94vw);
  height: 690px;
  transform: translateX(-50%);
  border: 1px solid rgba(208,170,83,.17);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(208,170,83,.2), transparent 34%),
    radial-gradient(circle at 20% 74%, rgba(208,170,83,.08), transparent 30%);
  filter: blur(.2px);
  animation: goldBreath 8s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 115px 12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,170,83,.6), transparent);
}

.hero h1 {
  color: white;
  text-shadow: 0 18px 70px rgba(0, 0, 0, .55);
  animation: heroRise .9s cubic-bezier(.2,.7,.2,1) both;
}

.hero h1 span {
  background: linear-gradient(120deg, #f2d98f, #b8872c 54%, #f0d78b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy,
.about-copy,
.section-heading > p,
.why-copy > p,
.approach-head p,
.faq-intro,
.faq-list p,
.steps p {
  color: var(--muted);
}

.hero .eyebrow {
  animation: heroRise .75s cubic-bezier(.2,.7,.2,1) both;
}

.hero-copy {
  animation: heroRise .9s cubic-bezier(.2,.7,.2,1) .12s both;
}

.hero-actions {
  animation: heroRise .9s cubic-bezier(.2,.7,.2,1) .22s both;
}

.trust-row {
  animation: heroRise .9s cubic-bezier(.2,.7,.2,1) .32s both;
}

.trust-row {
  color: #d1cabd;
}

.trust-row span {
  transition: color .25s ease, transform .25s ease;
}

.trust-row span:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.focus-strip {
  padding: 26px 0;
  overflow: hidden;
  border-color: rgba(208,170,83,.25);
  background: linear-gradient(135deg, #111113, #09090a);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.focus-strip > p {
  margin-bottom: 24px;
  color: white;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.focus-strip .marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  width: max-content;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 34px;
  color: #dfd7c6 !important;
  animation: almaMarquee 24s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 34px;
}

.marquee-track span {
  min-width: max-content;
  font-size: 18px;
  font-weight: 700;
}

.marquee-track i {
  color: var(--gold);
  font-size: 8px;
  font-style: normal;
}

.focus-strip:hover .marquee-track {
  animation-play-state: paused;
}

.about,
.services,
.why,
.approach,
.faq {
  position: relative;
}

.about-visual {
  border: 1px solid rgba(208,170,83,.25);
  background:
    radial-gradient(circle at 80% 15%, rgba(208,170,83,.26), transparent 30%),
    linear-gradient(135deg, #17130c, #070708 72%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 38px 100px rgba(0,0,0,.42);
}

.orbit {
  border-color: rgba(208,170,83,.35);
  animation: orbitPulse 7s ease-in-out infinite alternate;
}

.service-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
  border-color: rgba(255,255,255,.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.016)),
    var(--black-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.service-card:hover {
  background:
    radial-gradient(circle at 90% 10%, rgba(208,170,83,.24), transparent 34%),
    #15130f;
  color: white;
  border-color: rgba(208,170,83,.46);
}

.carousel-controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.carousel-controls span {
  margin-right: auto;
  color: #8f887d;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.carousel-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(208,170,83,.36);
  border-radius: 50%;
  background: #101012;
  color: var(--gold);
  cursor: pointer;
  font-size: 19px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.carousel-controls button:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: #080808;
}

.why-art {
  border: 1px solid rgba(208,170,83,.22);
  background:
    radial-gradient(circle at 72% 20%, rgba(208,170,83,.42), transparent 28%),
    linear-gradient(145deg, #17130c, #080809);
}

.art-window {
  border-color: rgba(208,170,83,.3);
  background: rgba(8,8,9,.72);
  color: white;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.art-line {
  border-color: rgba(208,170,83,.36);
}

.why-copy li {
  border-color: var(--line);
}

.why-copy li::before {
  color: #080808;
}

.values {
  border-color: var(--line);
}

.values div {
  border-color: var(--line);
  transition: transform .3s ease;
}

.values div:hover {
  transform: translateY(-8px);
}

.values span,
.approach > small {
  color: #9c968d;
}

.steps {
  border-color: var(--line);
}

.steps article {
  border-color: var(--line);
  transition: background .3s ease, transform .3s ease;
}

.steps article:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(208,170,83,.12), transparent);
}

.faq-list article {
  border-color: rgba(255,255,255,.12);
  background: #101012;
  transition: border-color .25s ease, background .25s ease;
}

.faq-list article.faq-open {
  border-color: rgba(208,170,83,.45);
  background: #14120e;
}

.faq-list button {
  color: white;
}

.faq-list button i {
  background: rgba(208,170,83,.13);
}

.faq-list article > div {
  display: grid !important;
  grid-template-rows: 0fr;
  padding: 0 70px 0 28px;
  transition: grid-template-rows .35s ease, padding .35s ease;
}

.faq-list article > div p {
  min-height: 0;
  overflow: hidden;
}

.faq-list article.faq-open > div {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

.contact-wrap {
  border: 1px solid rgba(208,170,83,.28);
  background:
    radial-gradient(circle at 7% 0%, rgba(208,170,83,.27), transparent 35%),
    linear-gradient(135deg, #12100c, #050506 68%);
  box-shadow: 0 50px 130px rgba(0,0,0,.5);
}

.contact-form {
  background: #f8f5ee;
  color: #111113;
}

.contact-form label:not(.consent) {
  color: #4f4a42;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  background: white;
  color: #111113;
}

.brand-light {
  color: white;
}

.legal-page article {
  background: #f8f5ee;
  color: #111113;
}

.legal-page article h1,
.legal-page article h2 {
  color: #111113;
}

.legal-page article p,
.legal-page article li {
  color: #625f59;
}

footer > div:first-child p,
.footer-links,
.footer-bottom {
  color: #9c968d;
}

.footer-bottom {
  border-color: var(--line);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    transform .8s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}

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

@keyframes almaMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 17px)); }
}

@keyframes goldBreath {
  from { opacity: .72; transform: translateX(-50%) scale(.98); }
  to { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@keyframes orbitPulse {
  from { opacity: .35; transform: scale(.96); }
  to { opacity: .88; transform: scale(1.04); }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .site-header nav {
    border-color: rgba(255,255,255,.13);
    background: rgba(8,8,9,.97);
    box-shadow: 0 24px 70px rgba(0,0,0,.65);
  }

  .menu-toggle {
    background: rgba(208,170,83,.13);
  }

  .menu-toggle i {
    background: white;
  }
}

@media (max-width: 700px) {
  .service-card {
    flex-basis: 88%;
  }

  .hero {
    min-height: 820px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .hero::before,
  .orbit {
    animation: none !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.admin-bar .site-header {
  top: 52px;
}

.wp-content {
  width: min(900px, calc(100% - 40px));
  min-height: 60vh;
  margin: 0 auto;
  padding: 180px 0 90px;
}

.wp-content h1 {
  margin: 0 0 34px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.wp-content h2 {
  margin: 50px 0 18px;
  font-size: 34px;
}

.wp-content p,
.wp-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-page article {
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
}

.form-error {
  margin: 16px 0 0;
  color: #b5374e;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 58px;
  }
}

@media (max-width: 600px) {
  .legal-page article {
    padding: 28px 22px;
  }
}
