:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-panel: #171717;
  --white: #ffffff;
  --muted: #c0c0c0;
  --muted-dark: #888888;
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.18);
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(201, 168, 76, 0.35);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "DM Sans", "Outfit", Arial, sans-serif;
  --container: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 168, 76, 0.12), transparent 30rem),
    linear-gradient(180deg, #090909 0%, #111111 44%, #0a0a0a 100%);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

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

.section.compact {
  padding: 70px 0;
}

.section-dark {
  background: #0e0e0e;
}

.section-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #101010;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.section-head.center .section-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.section-head.center .section-kicker::before {
  width: 42px;
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  overflow-wrap: break-word;
}

.section-title {
  font-size: 3.2rem;
}

.page-title {
  max-width: 820px;
  font-size: 4rem;
}

.hero-title {
  font-size: 4.7rem;
}

.section-copy,
.lead {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 680px;
  font-size: 1.08rem;
}

.muted {
  color: var(--muted);
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050505;
  animation: preloader-hide 0.5s ease 1.4s forwards;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: grid;
  gap: 18px;
  place-items: center;
}

.preloader-logo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 180px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.preloader-bar span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loader-sweep 1.1s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(18px);
}

.site-header .container {
  width: min(100% - 64px, 1780px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) auto minmax(160px, 0.7fr);
  align-items: center;
  min-height: 82px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand img {
  width: 148px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
}

.brand-text {
  display: none;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: inline-block;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.btn::after,
.icon-btn::after {
  content: "";
  position: absolute;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  z-index: -1;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.36);
  transform: translate(-50%, -50%);
}

.btn.is-rippling::after,
.icon-btn.is-rippling::after {
  animation: ripple 0.55s ease-out;
}

.btn-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #121212;
}

.btn-primary:hover {
  background: #e0c56f;
}

.site-nav .nav-cta {
  position: absolute;
  top: 50%;
  right: 0;
  min-height: 40px;
  padding: 11px 28px;
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: var(--white);
  font-size: 0.68rem;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.site-nav .nav-cta:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  border-color: var(--line-gold);
  background: transparent;
  color: var(--gold);
}

.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.08);
}

.icon-btn {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.72) 0%, rgba(6, 6, 6, 0.08) 34%);
}

.particles-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 96px, 1500px);
  margin: 0 auto;
  padding: 168px 0 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  gap: 54px;
  align-items: end;
}

.hero-copy {
  min-width: 0;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-title {
  max-width: 820px;
  font-family: var(--sans);
  font-size: clamp(3rem, 5.2vw, 5.65rem);
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-description {
  max-width: 470px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

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

.hero-actions .btn {
  min-width: 190px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  text-transform: uppercase;
}

.hero-actions .btn-primary {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
}

.hero-feature {
  min-width: 0;
  border-left: 1px solid var(--line-gold);
  padding-left: 24px;
}

.hero-feature strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
}

.hero-feature span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.featured-strip {
  position: relative;
  z-index: 4;
  padding: 24px 0 34px;
  background: rgba(12, 15, 17, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-strip h2 {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.featured-projects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-project {
  display: grid;
  gap: 8px;
}

.mini-project img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  filter: saturate(0.78);
}

.mini-project strong {
  font-size: 0.82rem;
}

.mini-project span {
  margin-top: -6px;
  color: var(--muted-dark);
  font-size: 0.76rem;
}

.page-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #080808;
}

.page-hero.small {
  min-height: 48vh;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 154px 0 78px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.stats-grid,
.values-grid,
.service-grid,
.team-grid,
.contact-grid,
.form-grid,
.info-grid {
  display: grid;
  gap: 22px;
}

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

.stat-card,
.value-card,
.service-card,
.contact-card,
.process-card,
.team-card,
.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.stat-card,
.value-card,
.contact-card,
.process-card,
.info-card {
  padding: 26px;
}

.stat-card::before,
.value-card::before,
.service-card::before,
.team-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.13), transparent 45%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.stat-card:hover::before,
.value-card:hover::before,
.service-card:hover::before,
.team-card:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.stat-number {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
}

.stat-card span:last-child,
.value-card p,
.service-card p,
.contact-card p,
.process-card p,
.info-card p {
  color: var(--muted);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  gap: 48px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.about-media-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 156px;
  padding: 18px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
}

.about-media-badge strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

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

.value-icon,
.service-icon,
.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.value-card h3,
.service-card h3,
.contact-card h3,
.process-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

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

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

.service-card {
  min-height: 278px;
  padding: 24px;
}

.service-card p {
  margin-bottom: 0;
}

.service-card.expanded {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  min-height: auto;
}

.service-card.expanded img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.registration-highlight {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0.2)),
    #111111;
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.benefit-list i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold);
}

.registration-panel {
  padding: 30px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.72);
  box-shadow: var(--shadow);
}

.registration-panel h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.registration-panel .info-grid {
  margin: 22px 0;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #141414;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.project-card.tall {
  grid-row: span 2;
  min-height: 520px;
}

.project-card.is-hidden {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.project-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.58);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
}

.project-overlay h3 {
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.05;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 800;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.clients-track {
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.clients-slide {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: scroll-logos 30s linear infinite;
}

.clients-slide:hover {
  animation-play-state: paused;
}

.client-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
  width: 190px;
  min-height: 132px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #181818;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.client-card:hover {
  border-color: var(--gold);
  background: #202020;
  transform: translateY(-4px);
}

.client-logo {
  height: 70px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

.client-card:hover .client-logo,
.client-card:hover .client-mark,
.client-card:hover .client-placeholder {
  filter: grayscale(0%) opacity(1);
}

.client-mark,
.client-placeholder {
  display: inline-grid;
  place-items: center;
  height: 70px;
  min-width: 108px;
  padding: 0 14px;
  border-radius: 4px;
  background: #0d0d0d;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  filter: grayscale(100%) opacity(0.72);
  transition: filter 0.3s ease;
}

.client-placeholder {
  width: 132px;
  max-width: 132px;
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.1;
  text-align: center;
}

.client-name {
  display: block;
  max-width: 150px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.testimonials-swiper {
  padding-bottom: 48px;
}

.testimonial-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.stars {
  color: var(--gold);
  font-size: 1.08rem;
}

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

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.testimonial-person img,
.team-photo {
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person img {
  width: 54px;
  height: 54px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.22), rgba(10, 10, 10, 0.92)),
    #101010;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=1800&q=82") center/cover;
  opacity: 0.18;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.05;
}

.site-footer {
  padding: 70px 0 26px;
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.55fr 0.85fr;
  gap: 34px;
}

.footer-brand p,
.footer-list,
.footer-contact {
  color: var(--muted);
}

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

.footer-list a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-title {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.94rem;
  text-transform: uppercase;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.brand-social-icon {
  display: block;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(201, 168, 76, 0.08));
}

.timeline-item {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 30px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #0a0a0a;
}

.timeline-item time {
  display: block;
  color: var(--gold);
  font-weight: 800;
}

.founder-card {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.founder-card img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 538px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  min-height: 230px;
}

.process-step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 800;
  text-align: left;
}

.accordion-panel {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.accordion-item.is-open .accordion-trigger svg {
  transform: rotate(180deg);
}

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

.team-grid.compact-team {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

.team-card {
  min-height: 380px;
  padding: 26px;
  text-align: center;
  transform-style: preserve-3d;
}

.team-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
}

.team-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.team-card .role {
  color: var(--gold);
  font-weight: 800;
}

.team-bio {
  margin: 16px 0 0;
  color: var(--muted);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.24s ease;
}

.team-card:hover .team-bio {
  opacity: 1;
  transform: translateY(0);
}

.team-social-centered {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

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

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.map-frame {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-frame iframe {
  width: 100%;
  height: 430px;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(90%);
}

.form-shell {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.checkbox-field {
  color: var(--muted);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

form.is-loading {
  pointer-events: none;
  opacity: 0.72;
}

form.is-loading::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 18px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loader-sweep 1s linear infinite;
}

.success-panel {
  display: none;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--white);
}

.success-panel.is-visible {
  display: block;
  animation: fade-up 0.45s ease both;
}

.toast-region {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 110;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 40px));
}

.toast {
  padding: 14px 16px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.92);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.24s ease;
}

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

.toast-error {
  border-color: rgba(235, 93, 93, 0.6);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.modal.is-open {
  display: flex;
}

.modal-dialog {
  position: relative;
  width: min(100%, 980px);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: #111111;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after figure {
  position: relative;
  margin: 0;
  min-height: 420px;
}

.before-after img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.before-after figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
}

.modal-copy {
  padding: 42px;
}

.modal-copy h2 {
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.modal-facts {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.modal-facts strong {
  color: var(--gold);
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 20px;
  z-index: 82;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.whatsapp-float {
  bottom: 22px;
  background: #25d366;
  color: #06240f;
}

.back-to-top {
  bottom: 84px;
  border: 1px solid var(--line-gold);
  background: rgba(10, 10, 10, 0.82);
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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