:root {
  color-scheme: light;
  --ink: hsl(60, 5%, 4%);
  --coal: #171715;
  --charcoal: #24231f;
  --paper: #f7f7f3;
  --white: #ffffff;
  --concrete: #e4e4de;
  --stone: #9f9b90;
  --copper: #b8753c;
  --gold: #d7a756;
  --teal: #1f7f78;
  --cyan: #5fd4ff;
  --mint: #83f7b1;
  --green: #355c45;
  --line: rgba(11, 11, 10, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1800px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
"Plus Jakarta Sans",
sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.scroll-progress{

  position:fixed;

  inset:0 0 auto;

  height:3.5px;
  border-radius:9999px;
  z-index:1000;

  overflow:hidden;

  background:
    rgba(255,255,255,.04);

  backdrop-filter:blur(12px);
}

.scroll-progress span{

  position:relative;

  display:block;

  width:0;

  height:100%;

  border-radius:9999px;
  overflow:hidden;

  background:
    linear-gradient(
      90deg,
      #ff0080,
      #ff7b00,
      #ffe600,
      #00ff85,
      #00d9ff,
      #7a5cff,
      #ff0080
    );

  background-size:
    300% 100%;

  animation:
    rgbFlow 6s linear infinite;

  box-shadow:
    0 0 8px #ff0080,
    0 0 18px #00d9ff,
    0 0 34px #7a5cff,
    0 0 52px rgba(0,217,255,.55);

}

.scroll-progress span::before{

  content:"";

  position:absolute;

  inset:-2px;

  background:inherit;

  filter:blur(12px);

  opacity:.9;

}

.scroll-progress span::after{

  content:"";

  position:absolute;

  top:0;

  left:-40%;

  width:40%;

  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.9),
      transparent
    );

  animation:
    shine 2.5s linear infinite;
}

@keyframes rgbFlow{

  0%{
    background-position:0% 50%;
  }

  100%{
    background-position:300% 50%;
  }

}

@keyframes shine{

  100%{
    left:140%;
  }

}

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 900;
  pointer-events: none;
  transition: transform 260ms ease;
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.nav-shell {
  width: min(var(--max), calc(100% - 120px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px;
  color: var(--white);
  background: rgba(11, 11, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(22px);
  box-shadow:
  0 0 0 1px rgba(215,167,86,.12),
  0 12px 40px rgba(0,0,0,.28);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
}

.brand span {
  display: grid;
  line-height: 1.35;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.brand small {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  font-weight:600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a {
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-link,
.button,
.icon-button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.icon-link {
  color: rgba(255, 255, 255, 0.84);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
}

.button {
  padding: 0 16px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(215, 167, 86, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #efbf6c;
}

.button-ghost {

  color: #ffffff;

  border: 1px solid rgba(255,255,255,.18);

  background:
    rgba(255,255,255,.12);

  backdrop-filter: blur(12px);

}
.button-ghost:hover{

  background:
    rgba(255,255,255,.2);

}

.button-light {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 11, 10, 0.12);
}

.icon-button {
  width: 44px;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
}

.icon-button svg,
.button svg,
.icon-link svg,
.contact-links svg,
.service-card svg,
.floating-actions svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 90svh;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: clip;
  background: var(--coal);
}

.hero-media,
.hero-overlay,
.hero-image-fallback {
  position: absolute;
  inset: 0;
}

.hero-media,
.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  z-index:1;
  will-change:opacity;
  opacity:0;

  transition:opacity 1s ease;

  pointer-events:none;
}

.hero-video.show{
  opacity:1;
}

.hero-overlay{
  z-index:2;

  background:
    linear-gradient(
      90deg,
      rgba(11,11,10,.82),
      rgba(11,11,10,.35) 52%,
      rgba(11,11,10,.12)
    ),
    linear-gradient(
      180deg,
      rgba(11,11,10,.1),
      rgba(11,11,10,.72)
    );
}

.hero-inner{
  position:relative;
  z-index:3;
}

.hero-bottom{
  position:relative;
  z-index:3;
}

.hero{
  animation: heroReveal .5s ease;
}

@keyframes heroReveal{

  from{
    opacity:0;
  }

  to{
    opacity:1;
  }

}

.hero-image-fallback {
  display:none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.88), rgba(11, 11, 10, 0.42) 52%, rgba(11, 11, 10, 0.18)),
    linear-gradient(180deg, rgba(11, 11, 10, 0.12), rgba(11, 11, 10, 0.74));
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 120px));
  margin: 0 auto;
  padding: 150px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 390px;
  gap: 42px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: 5.6rem;
  line-height: 0.92;
  font-weight: 900;
  text-wrap: balance;
}

.hero-lede {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(11, 11, 10, 0.48);
  backdrop-filter: blur(22px);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.status-line span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #45dd9b;
  box-shadow: 0 0 0 8px rgba(69, 221, 155, 0.12);
}

.status-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 0;
}

.hero-metrics div {
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.hero-metrics dt {
  font-size: 1.7rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-bottom {
  position: absolute;
  inset: auto 0 14px;
  width: min(var(--max), calc(100% - 120px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
}

.scroll-indicator {
  width: 26px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(14px);
    opacity: 1;
  }
}

.media-caption {
  max-width: 390px;
  margin: 0;
  text-align: right;
  font-size: 0.86rem;
  line-height: 1.5;
}

.brand-strip {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 32px;
  padding: 18px 0;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 110px 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 120px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.1rem;
  line-height: 1.03;
  text-wrap: balance;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: start;
}

.intro-band {
  background:
    linear-gradient(90deg, rgba(184, 117, 60, 0.1), transparent 38%),
    var(--paper);
}

.intro-copy p {
  margin: 0;
  color: #55534d;
  font-size: 1.1rem;
  line-height: 1.85;
}

.proof-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-row span {
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 750;
}

.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(95, 212, 255, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(131, 247, 177, 0.08), transparent 32%),
    #050607;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(95, 212, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 212, 255, 0.09) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 80%, transparent);
  animation: blueprintDrift 22s linear infinite;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 14%, rgba(95, 212, 255, 0.16), transparent 28%),
    radial-gradient(circle at 76% 32%, rgba(215, 167, 86, 0.12), transparent 27%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.12), #050607);
  pointer-events: none;
}

@keyframes blueprintDrift {
  to {
    background-position: 116px 116px;
  }
}

.services-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.services-heading h2,
.services-section .section-heading h2 {
  color: var(--white);
}

.services-heading h2 {
  font-size: 3.55rem;
}

.services-heading p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.8;
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  gap: 16px;
  margin-bottom: 16px;
}

.blueprint-cinema {
  height: 460px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #07111a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.blueprint-cinema video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.7) contrast(1.12);
}

.blueprint-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.18) 62%, rgba(5, 6, 7, 0.88)),
    linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.8));
  pointer-events: none;
}

.blueprint-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0.78;
  mix-blend-mode: screen;
}

.blueprint-overlay svg {
  width: min(900px, 86%);
  height: auto;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(95, 212, 255, 0.55));
}

.blueprint-overlay path,
.blueprint-overlay circle {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawBlueprint 8s ease-in-out infinite;
}

.blueprint-overlay circle {
  animation-delay: 1s;
}

@keyframes drawBlueprint {
  0% {
    stroke-dashoffset: 900;
    opacity: 0.2;
  }
  38%,
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -900;
    opacity: 0.12;
  }
}

.blueprint-scan {
  position: absolute;
  inset: -40% 0 auto;
  z-index: 3;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(95, 212, 255, 0.2), transparent);
  animation: scanBlueprint 4.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanBlueprint {
  0%,
  100% {
    transform: translateY(-50%);
    opacity: 0;
  }
  45%,
  58% {
    opacity: 1;
  }
  88% {
    transform: translateY(330%);
    opacity: 0;
  }
}

.blueprint-copy {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 22px;
  max-width: 560px;
}

.blueprint-copy span,
.capability-console span,
.service-card small {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blueprint-copy h3 {
  max-width: 520px;
  margin: 9px 0 10px;
  font-size: 2.15rem;
  line-height: 1.04;
}

.blueprint-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

.capability-console {
  display: grid;
  gap: 12px;
}

.capability-console div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.capability-console strong {
  display: block;
  margin-top: 10px;
  font-size: 1.42rem;
}

.capability-console p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1400px;
}

.service-card {
  --mx: 50%;
  --my: 0%;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: grid;
  will-change: transform;
  grid-template-rows: 190px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx) var(--my), color-mix(in srgb, var(--accent) 24%, transparent), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.23);
  transform-style: preserve-3d;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  transform: translateX(-120%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 48%, transparent);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(1.5deg);
  border-color: color-mix(in srgb, var(--accent) 52%, white 4%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 76px rgba(0, 0, 0, 0.36),
    0 0 34px color-mix(in srgb, var(--accent) 22%, transparent);
}

.service-card:hover::before {
  transform: translateX(120%);
}

.service-card:hover::after {
  opacity: 1;
}

.service-media {
  position: relative;
  overflow: hidden;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.74)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.28), transparent);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.12);
  filter: saturate(1.12) contrast(1.08);
}

.service-body {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 22px;
}

.service-index {
  position: absolute;
  top: -58px;
  right: 18px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 5.2rem;
  line-height: 1;
  font-weight: 900;
}

.service-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent) 45%, transparent));
}

.service-card h3 {
  margin: 22px 0 0;
  color: var(--white);
  font-size: 1.42rem;
  line-height: 1.16;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.service-card small {
  margin-top: auto;
  color: color-mix(in srgb, var(--accent) 78%, white 18%);
}

.service-link {
  min-height: 38px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
  font-weight: 850;
}

.service-link svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  filter: none;
}

.blueprint-reel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.blueprint-reel article {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #07090c;
}

.blueprint-reel video {
  width: 100%;
  height: 290px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.85) contrast(1.1);
}

.blueprint-reel article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(5, 6, 7, 0.9)),
    linear-gradient(90deg, rgba(95, 212, 255, 0.08), transparent);
}

.blueprint-reel div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.blueprint-reel span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blueprint-reel h3 {
  max-width: 310px;
  margin: 8px 0 0;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.18;
}

.process-section {
  padding: 120px 0;
  background: var(--coal);
  color: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.process-section .section-heading h2 {
  color: var(--white);
}

.process-visual {
  position: sticky;
  top: 120px;
}

.visual-frame {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #10100e;
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: opacity 260ms ease, transform 600ms ease;
}

.visual-frame.is-switching img {
  opacity: 0.6;
  transform: scale(1.02);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 10, 0.05), rgba(11, 11, 10, 0.86));
}

.visual-readout {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(11, 11, 10, 0.58);
  backdrop-filter: blur(18px);
}

.visual-readout span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.visual-readout strong {
  font-size: 1.1rem;
}

.process-dots {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.process-dots span {
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.process-dots span.active {
  background: var(--gold);
}

.process-content {
  display: grid;
  gap: 18px;
}

.process-step {
  padding: 26px;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.process-step.active {
  border-color: rgba(215, 167, 86, 0.72);
  background: rgba(215, 167, 86, 0.08);
  transform: translateX(6px);
}

.process-step span {
  color: var(--gold);
  font-weight: 900;
}

.process-step h3 {
  margin: 18px 0 10px;
  font-size: 1.45rem;
}

.process-step p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.interiors-section {
  background:
    linear-gradient(180deg, rgba(31, 127, 120, 0.09), transparent 52%),
    var(--paper);
}

.material-studio {
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.material-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f0f0eb;
}

.material-tab {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #55534d;
  background: transparent;
  font-weight: 800;
}

.material-tab:last-child {
  border-right: 0;
}

.material-tab.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 -3px 0 var(--copper);
}

.material-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 510px;
}

.material-image {
  overflow: hidden;
}

.material-image img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  transition: transform 600ms ease, opacity 260ms ease;
}

.material-body.is-switching img {
  opacity: 0.55;
  transform: scale(1.02);
}

.material-copy {
  padding: 46px;
  align-self: center;
}

.material-copy p:first-child {
  margin: 0 0 12px;
  color: var(--copper);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.material-copy h3 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.08;
}

.material-copy p {
  color: #55534d;
  line-height: 1.8;
}

.swatches {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}

.swatches span {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 11, 10, 0.18);
  background: var(--swatch);
}

.material-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-copy li {
  position: relative;
  padding-left: 24px;
  color: #3e3d38;
  line-height: 1.5;
}

.material-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

.gallery-section {
  background: var(--white);
}

.gallery-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-controls .icon-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
}

.gallery-stage {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--coal);
}

.gallery-stage img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  transition: opacity 260ms ease, transform 650ms ease;
}

.gallery-stage.is-switching img {
  opacity: 0.68;
  transform: scale(1.015);
}

.gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 11, 10, 0.88));
}

.gallery-info {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 640px;
  color: var(--white);
}

.gallery-info span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--gold);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-info h3 {
  margin: 0;
  font-size: 2.2rem;
}

.gallery-info p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumb {
  height: 78px;
  border: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  background: var(--coal);
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease, outline-color 180ms ease;
}

.gallery-thumb.active {
  opacity: 1;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section {
  padding: 120px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(31, 127, 120, 0.2), transparent 45%),
    var(--ink);
}

.video-section .section-heading h2 {
  color: var(--white);
}

.video-layout {
  display: grid;
  gap: 38px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.video-card {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-card video {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 10, 0.82));
}

.video-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.video-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 0;
  font-size: 1.7rem;
}

.contact-section {
  background:
    linear-gradient(180deg, transparent, rgba(184, 117, 60, 0.1)),
    var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.04;
}

.contact-copy p {
  max-width: 540px;
  color: #55534d;
  line-height: 1.8;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 750;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  font-size: 0.85rem;
  color: #55534d;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(11, 11, 10, 0.16);
  border-radius: var(--radius-sm);
  padding: 13px 12px;
  color: var(--ink);
  background: #fbfbf8;
  resize: vertical;
  font-size:16px;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: 3px solid rgba(31, 127, 120, 0.16);
  border-color: var(--teal);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.site-footer {
  padding: 48px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.site-footer p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.footer-meta {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.copyright-line {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  z-index: 800;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.show-floating .floating-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-actions a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(11, 11, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.catalogue-page {
  background: #050607;
}

.catalogue-hero {
  min-height: 78svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: clip;
  color: var(--white);
  background: #050607;
}

.catalogue-hero > video,
.catalogue-hero-overlay {
  position: absolute;
  inset: 0;
}

.catalogue-hero > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.76) contrast(1.1);
}

.catalogue-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.44), rgba(5, 6, 7, 0.88)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.12), #050607);
}

.catalogue-hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95, 212, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 212, 255, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: blueprintDrift 24s linear infinite;
}

.catalogue-hero-inner {
  position: relative;
  z-index: 2;
  padding: 150px 0 86px;
}

.catalogue-hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.96;
  font-weight: 900;
  text-wrap: balance;
}

.catalogue-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.78;
}

.catalogue-tabs {
  position: sticky;
  transition: transform 260ms ease;
  top: 92px;
  z-index: 120;
  padding: 10px 0;
  background: rgba(5, 6, 7, 0.86);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  
}
.catalogue-tabs.is-hidden{
  transform: translateY(-140%);
}

.catalogue-tabs .section-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.catalogue-tabs a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
}

.catalogue-tabs a:hover,
.catalogue-tabs a:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.catalogue-section {
  position: relative;
  scroll-margin-top: 160px;
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
    #050607;
}

.catalogue-section:nth-of-type(odd) {
  background:
    linear-gradient(135deg, rgba(95, 212, 255, 0.07), transparent 35%),
    #07090c;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.catalogue-intro {
  position: sticky;
  top: 160px;
  display: grid;
  gap: 18px;
}

.catalogue-intro h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.02;
}

.catalogue-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.catalogue-item {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.catalogue-item:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 212, 255, 0.52);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.catalogue-item img,
.catalogue-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.catalogue-item h3 {
  margin: 22px 20px 10px;
  color: var(--white);
  font-size: 1.32rem;
}

.catalogue-item p {
  margin: 0 20px 22px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.68;
}

.project-modal {
  width: min(520px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}

.project-modal::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.modal-shell {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(215, 167, 86, 0.12), transparent 46%),
    var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper);
}

.modal-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.modal-shell h2 {
  margin: 0;
  max-width: 400px;
  font-size: 2.25rem;
  line-height: 1.05;
}

.modal-shell p {
  margin: 16px 0 0;
  color: #55534d;
  line-height: 1.7;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
.nav-actions {

  position: fixed;

  left: 16px;
  right: 16px;

  display: none;

  background:
    rgba(11,11,10,.96);

  border:
    1px solid rgba(255,255,255,.14);

  max-height: 80vh;

  overflow-y: auto;

  -webkit-overflow-scrolling: touch;

}

  .nav-links {

  top: 92px;

  flex-direction: column;

  align-items: stretch;

  padding: 10px;

  border-radius: var(--radius);

  max-height: calc(100vh - 260px);

  overflow-y: auto;
}

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-actions{

  top:auto;

  bottom:20px;

}

  .nav-actions .icon-link,
  .nav-actions .button {
    width: 100%;
  }

  body.menu-open .nav-links,
  body.menu-open .nav-actions {
    display: flex;
  }

  .hero-inner,
  .split-intro,
  .process-layout,
  .material-body,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 24px;
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-panel {
    max-width: 620px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .blueprint-reel,
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-intro {
    position: relative;
    top: auto;
  }

  .catalogue-hero h1 {
    font-size: 3.5rem;
  }

  .process-visual {
    position: relative;
    top: auto;
  }

  .visual-frame,
  .visual-frame img {
    min-height: auto;
    height: 520px;
  }

  .material-image img {
    height: 430px;
    min-height: 430px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    inset: 10px 0 auto;
  }

  .nav-shell,
  .section-inner,
  .hero-inner,
  .hero-bottom {
    width: min(100% - 22px, var(--max));
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-inner {
    padding: 118px 0 78px;
  }

  .hero h1 {
    font-size: 2.68rem;
    line-height: 0.96;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    align-items: center;
  }

  .media-caption {
    text-align: left;
    font-size: 0.78rem;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

  .section-heading.centered {
    text-align: left;
  }

  .services-grid,
  .gallery-thumbs,
  .material-tabs,
  .blueprint-reel,
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .services-heading h2 {
    font-size: 2.18rem;
  }

  .blueprint-cinema,
  .blueprint-cinema video {
    height: 430px;
  }

  .blueprint-copy h3 {
    font-size: 1.68rem;
  }

  .catalogue-hero {
    min-height: 86svh;
  }

  .catalogue-hero-inner {
    padding: 126px 0 68px;
  }

  .catalogue-hero h1 {
    font-size: 2.55rem;
  }

  .catalogue-tabs {
    top: 82px;
  }

  .catalogue-section {
    scroll-margin-top: 140px;
    padding: 78px 0;
  }

  .catalogue-intro h2 {
    font-size: 2rem;
  }

  .service-card {
    min-height: 410px;
    grid-template-rows: 180px 1fr;
  }

  .service-card h3 {
    margin-top: 18px;
  }

  .process-section,
  .video-section {
    padding: 86px 0;
  }

  .visual-frame,
  .visual-frame img,
  .gallery-stage img,
  .gallery-stage,
  .video-card,
  .video-card video {
    height: 420px;
    min-height: 420px;
  }

  .process-step.active {
    transform: none;
  }

  .material-copy {
    padding: 26px;
  }

  .material-copy h3,
  .gallery-info h3,
  .modal-shell h2 {
    font-size: 1.75rem;
  }

  .gallery-top {
    align-items: start;
    flex-direction: column;
  }

  .gallery-controls {
    width: 100%;
    justify-content: space-between;
  }

  .form-actions,
  .hero-buttons,
  .modal-actions {
    flex-direction: column;
  }

  .form-actions .button,
  .hero-buttons .button,
  .modal-actions .button {
    width: 100%;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}

.catalogue-page{
  background: #efe7dc;
  color: #2d1d16;
}

/* =========================
   HEADER
========================= */

.catalogue-page .site-header{
  background: rgba(28, 22, 18, 0.78);
  border: 1px solid rgba(255,255,255,0.05);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   NAVBAR
========================= */

.catalogue-page .nav-links a{
  color: #f7f1ea !important;

  transition:
    color .25s ease,
    opacity .25s ease;
}

.catalogue-page .nav-links a:hover{
  color: #d4a574 !important;
}

.catalogue-page .icon-link{
  color: #f7f1ea !important;
}

/* =========================
   HERO
========================= */

.catalogue-page .catalogue-hero-overlay{
  background:
    linear-gradient(
      90deg,
      rgba(14,10,8,0.82) 0%,
      rgba(14,10,8,0.58) 45%,
      rgba(14,10,8,0.18) 100%
    );
}

.catalogue-page .catalogue-hero h1{
  color: #fffaf4;

  text-shadow:
    0 4px 18px rgba(0,0,0,0.28);
}

.catalogue-page .catalogue-hero p{
  color: #ead9c9;
}

.catalogue-page .eyebrow{
  color: #d4a574;

  letter-spacing: .08em;
}

/* =========================
   TABS
========================= */

.catalogue-page .catalogue-tabs{
  background: #e7ddd0;

  border-top:
    1px solid rgba(107,63,44,0.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.catalogue-page .catalogue-tabs a{
  color: #6b3f2c;

  transition:
    all .25s ease;
}

.catalogue-page .catalogue-tabs a:hover{
  background: #fffaf4;

  color: #5c3425;

  box-shadow:
    0 8px 18px rgba(92,52,37,0.08);
}

/* =========================
   SECTIONS
========================= */

.catalogue-page .catalogue-section{
  background: #efe7dc;
}

/* =========================
   CARDS
========================= */

.catalogue-page .catalogue-item{
  background: #fffaf4;

  border:
    1px solid rgba(107,63,44,0.08);

  border-radius: 22px;

  overflow: hidden;

  box-shadow:
    0 14px 34px rgba(61,35,22,0.08);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.catalogue-page .catalogue-item:hover{
  transform:
    translateY(-6px);

  box-shadow:
    0 24px 46px rgba(61,35,22,0.14);
}

/* =========================
   TEXT
========================= */

.catalogue-page h2,
.catalogue-page h3{
  color: #2d1d16;
}

.catalogue-page p,
.catalogue-page small{
  color: #6b4a3c;
}

/* INTRO TEXT FIX */

.catalogue-page .catalogue-intro p{
  color: #6b3f2c !important;
}

.catalogue-page .catalogue-item p{
  color: #6b3f2c !important;
}

/* =========================
   BUTTONS
========================= */

.catalogue-page .button-primary{
  background:
    linear-gradient(
      135deg,
      #8b5a3c,
      #6b3f2c
    );

  color: #fffaf4;

  border:
    1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 10px 24px rgba(107,63,44,0.18);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
}

.catalogue-page .button-primary:hover{
  transform:
    translateY(-2px);

  box-shadow:
    0 18px 34px rgba(107,63,44,0.24);
}

.catalogue-page .button-light,
.catalogue-page .button-ghost{
  border:
    1px solid rgba(107,63,44,0.16);

  color: #6b3f2c;

  background:
    rgba(255,255,255,0.35);
}

/* =========================
   FOOTER
========================= */

.catalogue-page .footer-meta,
.catalogue-page .copyright-line{
  color: #5c4336;
}

.catalogue-slider{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.catalogue-track{
  display:flex;
  gap:18px;

  transition:
    transform .45s ease;

  will-change:transform;
}

.catalogue-slide{
  min-width: calc(33.333% - 12px);

  border-radius: 22px;

  overflow: hidden;

  position: relative;

  cursor: pointer;

  background: #fffaf4;

  box-shadow:
    0 12px 30px rgba(61,35,22,0.08);
}

.catalogue-slide img{
  width: 100%;
  height: 340px;

  object-fit: cover;

  display: block;

  transition:
    transform .5s ease;
}

.catalogue-slide:hover img{
  transform: scale(1.04);
}

.catalogue-arrow{
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border: none;

  border-radius: 50%;

  background:
    rgba(20,16,14,.72);

  color: #fff;

  cursor: pointer;

  z-index: 5;

  backdrop-filter: blur(10px);
}

.catalogue-arrow.prev{
  left: 18px;
}

.catalogue-arrow.next{
  right: 18px;
}

/* MODAL */

.image-popup{
  position: fixed;
  inset: 0;

  background:
    rgba(0,0,0,.82);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  transition:
    .3s ease;
}

.image-popup.active{
  opacity: 1;
  visibility: visible;
}

.image-popup img{
  max-width: 92%;
  max-height: 90vh;

  border-radius: 20px;

  box-shadow:
    0 30px 60px rgba(0,0,0,.45);
}

.image-popup-close{
  position: absolute;

  top: 24px;
  right: 24px;

  width: 52px;
  height: 52px;

  border: none;

  border-radius: 50%;

  background:
    rgba(255,255,255,.12);

  color: white;

  font-size: 22px;

  cursor: pointer;
}

/* MOBILE */

@media(max-width: 900px){

  .catalogue-slide{
    min-width: calc(50% - 10px);
  }
}

@media(max-width: 640px){

  .catalogue-slide{
    min-width: 100%;
  }

  .catalogue-slide img{
    height: 260px;
  }
}


/*   <<<<<<<<<<<<<<<<<< SITE LOADERRRR BEACHHH  >>>>>>>>>>>>>         */

.site-loader{

  position:fixed;
  will-change: opacity;
  inset:0;

  z-index:99999;

  display:flex;

  align-items:center;

  justify-content:center;

  overflow:hidden;

  background:#050505;


  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.site-loader.hide{

  opacity:0;

  visibility:hidden;

  pointer-events:none;

}

.loader-video{

  position:absolute;

  inset:0;

  width:100%;

  height:100%;

  object-fit:cover;

  opacity:.18;

  object-position:center;

  z-index:0;

} 

.loader-grid{

  position:absolute;

  inset:0;

  background-image:
    linear-gradient(
      rgba(212,170,92,.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(212,170,92,.05) 1px,
      transparent 1px
    );

  background-size:70px 70px;

  mask-image:
    radial-gradient(
      circle at center,
      black,
      transparent 70%
    );

  animation:
    loaderFloat 40s linear infinite;
}

.loader-content{

  position:absolute;

  top:50%;

  left:50%;

  transform:translate(-50%, -50%);

  z-index:2;

  text-align:center;

  width:100%;

max-width:none;

}

.loader-logo{

  width:260px;
  max-width:50vw;
  margin:auto;
  will-change: transform;
  opacity:.96;

  filter:
  drop-shadow(
    0 0 12px rgba(212,170,92,.22)
  )
  drop-shadow(
    0 0 36px rgba(212,170,92,.12)
  );

  animation:
    logoFloat 2s ease-in-out infinite;
}



.loader-content h2{

  text-align:center;

width:100%;
  margin-top:32px;

  font-family:
    "Cinzel",
    serif;

  font-size:
    clamp(2.5rem, 4vw, 5.5rem);

  font-weight:700;

  letter-spacing:.1em;

  text-transform:uppercase;

  color:#f3d08a;

  text-shadow:
    0 0 8px rgba(243,208,138,.45),
    0 0 22px rgba(212,170,92,.28),
    0 0 42px rgba(212,170,92,.12);

}

.loader-content p{

  margin-top:14px;

  font-size:
    clamp(.80rem, 1.9vw, 1.6rem);

  letter-spacing:.35em;

  color:
    rgba(255,255,255,.42);

  text-transform:uppercase;
}



@keyframes logoFloat{

  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-8px);
  }

}

@keyframes loaderFloat{

  from{
    transform:translateY(0);
  }

  to{
    transform:translateY(-40px);
  }

}

.catalogue-page .brand small{

  color:rgba(255,255,255,.9);

  font-weight:600;
  

}

.catalogue-page .button-ghost{

  color:#fff;

  background:
    rgba(255,255,255,.12);

  border:
    1px solid rgba(255,255,255,.18);

  backdrop-filter:blur(12px);

}

.catalogue-page .button-ghost:hover{

  background:
    rgba(255,255,255,.18);

}

.catalogue-page .site-footer{
  
  background:
    linear-gradient(
      180deg,
      #15110f,
      #0b0908
    );

  border-top:
    1px solid rgba(212,170,92,.12);

}

.catalogue-page .site-footer p{

  color:
    rgba(255,255,255,.72);

  line-height:1.9;

}

.catalogue-page .footer-meta{

  color:
    rgba(212,170,92,.78);

}

.catalogue-page .copyright-line{

  border-top:
    1px solid rgba(255,255,255,.08);

  color:
    rgba(255,255,255,.42);

}

.site-footer{
  position:relative;
  overflow:hidden;
}

.ai-assistant{

  position:absolute;

  right:150px;

  bottom:70px;

  z-index:15;

  pointer-events:none;

  opacity:.95;

}

.ai-assistant lottie-player{

  width:200px !important;

  height:200px !important;

  display:block;

}

@media(max-width:768px){

  .ai-assistant{

    right:80px;

    bottom:60px;

    width:80px;

  }

}

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#0b0908;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(
    180deg,
    #d4aa5c,
    #8b5a3c
  );

  border-radius:999px;
}
