﻿@font-face {
  font-family: Kalameh;
  src: url("../fonts/Kalameh-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Kalameh;
  src: url("../fonts/Kalameh-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111827;
  --muted: #667085;
  --paper: #f5f3ee;
  --surface: #ffffff;
  --line: #dedbd4;
  --blue: #3157d5;
  --shadow: 0 24px 70px rgba(15, 15, 25, .1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --gutter: clamp(18px, 3vw, 36px);
  --frame-width: 100%;
  --shell-outer-pad: max(var(--gutter), calc((100% - var(--container)) / 2));
  --space-section: 104px;
  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: clamp(.95rem, .9rem + .2vw, 1.05rem);
  --text-lead: clamp(1.1rem, 1rem + .45vw, 1.35rem);
  --text-h3: clamp(1.45rem, 1.2rem + 1vw, 2rem);
  --text-h2: clamp(2.25rem, 1.6rem + 3vw, 4.25rem);
  --text-display: clamp(3rem, 2rem + 5vw, 6.6rem);
  --bronze: #b8793a;
  --bronze-soft: rgba(184, 121, 58, .18);
  --bronze-line: rgba(184, 121, 58, .28);
  --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  --glass-bg-deep: linear-gradient(135deg, rgba(16, 20, 28, .72), rgba(8, 11, 18, .46));
  --glass-border: rgba(255, 255, 255, .12);
  --glass-shadow: inset 0 1px 0 rgba(255, 255, 255, .085), 0 24px 80px rgba(0, 0, 0, .35);
  --ease-premium: cubic-bezier(.22, 1, .36, 1);
  --header-top-gap: 10px;
  --header-height: 68px;
  --header-hero-gap: 10px;
  --section-y-xl: 128px;
  --section-y-lg: 112px;
  --section-y-md: 88px;
  --section-y-sm: 64px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

body,
main,
.page,
.site,
.wrapper,
.layout,
.app,
#app,
#root {
  width: 100%;
  max-width: none;
}

section,
header,
footer {
  width: 100%;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.035em;
  overflow-wrap: break-word;
  font-size: 28px !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea {
  font: inherit;
}

button, .button {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .025;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: linear-gradient(90deg, #8da2ff, #4f6bff, #ad70ff);
  transform: scaleX(0);
  transform-origin: right;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  gap: 14px;
  background: #09090c;
  color: #fff;
  text-align: center;
  transition: opacity .5s, visibility .5s;
}

.preloader-mark {
  position: relative;
  width: 74px;
  height: 74px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff25;
  border-radius: 24px;
  font-size: 2rem;
  font-weight: 800;
}

.preloader-mark i {
  position: absolute;
  inset: -1px;
  border: 2px solid transparent;
  border-top-color: #91a4ff;
  border-radius: 24px;
  animation: loaderSpin 1s linear infinite;
}

.preloader p {
  margin: 0;
  color: #ffffff70;
  font-size: var(--text-xs);
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.button.light {
  background: #fff;
  color: var(--ink);
}

.button:hover {
  box-shadow: 0 14px 35px rgba(0, 0, 0, .14);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  border: 0;
  background: transparent;
}

.orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: .3;
  mix-blend-mode: screen;
  animation: float 8s ease-in-out infinite;
}

.orb-one {
  top: 18%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 30% 30%, #fff, #a8c7ff);
}

.orb-two {
  bottom: 17%;
  left: 2%;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #ffd9c8, #fff);
}

.statement .kicker {
  display: inline-flex;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
}

.big-text em {
  background: linear-gradient(100deg, #435cf0, #9965f5);
  color: transparent;
  font-style: normal;
  background-clip: text;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: var(--text-h2);
}

.section-head > a {
  flex: none;
  font-size: var(--text-sm);
  font-weight: 700;
}

.project-card {
  --mx: -200px;
  --my: -200px;
  position: relative;
  isolation: isolate;
  min-width: 0;
  height: clamp(540px, 55vw, 690px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #fff;
  box-shadow: inset 0 1px #fff4;
  transition: transform .4s;
}

.project-card:nth-child(2) {
  height: clamp(500px, 48vw, 600px);
  margin-top: 72px;
}

.project-card::before, .wide-art::before, .cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(450px circle at var(--mx) var(--my), #ffffff28, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}

.project-card:hover::before, .wide-art:hover::before, .cta:hover::before {
  opacity: 1;
}

.project-visual::after {
  content: "";
  position: absolute;
  bottom: 8%;
  width: 60%;
  height: 30%;
  border-radius: 50%;
  background: #0005;
  filter: blur(40px);
}

.phone-ui {
  z-index: 1;
  width: min(230px, 46%);
  aspect-ratio: .54;
  border: 8px solid #27272a;
  border-radius: 38px;
  background: linear-gradient(#fafafa 20%, #d7e5ff);
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
  animation: float 7s infinite;
}

.dash-ui {
  z-index: 1;
  width: 88%;
  aspect-ratio: 1.65;
  border: 5px solid #ffffff80;
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fbff, #b9d0ff);
  box-shadow: var(--shadow);
  transform: rotate(5deg);
}

.project-meta small {
  color: #ffffffa8;
  font-size: var(--text-xs);
}

.project-meta span {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid #fff4;
  border-radius: 50%;
  font-size: 1.25rem;
  backdrop-filter: blur(10px);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #c9c9ce;
  border-radius: 50%;
  font-size: var(--text-xs);
}

.service h3 {
  margin: 0;
  font-size: var(--text-h3);
}

.service p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid #ffffff13;
  border-radius: 30px;
}

.cta .button {
  justify-self: center;
}

.orb-three {
  top: -150px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: #246dff;
  filter: blur(50px);
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-hero h1 span, .contact-intro h1 span {
  color: #9999a3;
}

.portrait {
  aspect-ratio: .78;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 18%, rgba(243, 201, 105, .18), transparent 30%),
    linear-gradient(145deg, #101820, #eef0f4 68%);
}

.portrait-shape {
  width: 75%;
  height: 75%;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 35% 35%;
  background: linear-gradient(145deg, #1d1d22, #555);
  color: #fff;
  font-size: var(--text-h2);
  transform: rotate(-5deg);
}

.portrait-shape.avatar {
  width: 92%;
  height: 92%;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.portrait-shape.avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 34px rgba(16, 24, 32, .22));
}

.stats span, .timeline-row p, .timeline-row span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.timeline-row:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-row h3, .timeline-row p {
  margin: 0;
}

.timeline-row h3 {
  font-size: var(--text-h3);
}

.credential-grid span {
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: 700;
}

.credential-grid p {
  margin: 0;
  color: var(--muted);
}

.wide-project {
  min-width: 0;
  background: transparent !important;
}

.wide-art > span {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #fff5;
  border-radius: 50%;
  color: #fff;
  font-size: var(--text-sm);
  backdrop-filter: blur(12px);
}

.wide-project:hover .wide-art > img {
  transform: rotate(0) scale(1.02);
}

.glass-card {
  position: relative;
  width: min(55%, 600px);
  height: 70%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #fff8;
  border-radius: clamp(22px, 3vw, 32px);
  background: #ffffff99;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  transform: rotate(-7deg);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid #fff9;
  border-radius: 22px;
}

.glass-card i {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(45px);
}

.glass-card b {
  z-index: 1;
  color: #fff;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  text-shadow: 0 20px 45px #0002;
}

.wide-info small {
  color: var(--muted);
  font-size: var(--text-sm);
}

.wide-info p {
  max-width: 620px;
  margin: 5px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.wide-info a {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.project-single-hero > a {
  align-self: start;
  margin-bottom: clamp(32px, 5vw, 60px);
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.project-single-hero h1 {
  max-width: 980px;
  margin: 8px 0 24px;
  font-size: clamp(3rem, 2rem + 5vw, 6.5rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.project-detail aside {
  align-self: start;
  display: grid;
  border-top: 1px solid var(--line);
}

.project-detail aside div {
  padding-block: 18px;
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}

.project-detail aside span {
  color: var(--muted);
  font-size: var(--text-xs);
}

.project-detail aside b {
  font-size: var(--text-base);
}

.project-story > div {
  max-width: 760px;
  margin-bottom: 32px;
  color: #3e3e46;
  font-size: var(--text-lead);
  line-height: 2;
}

.post-card:hover {
  background: #fff;
  box-shadow: 0 25px 70px #0000000d;
  transform: translateY(-7px);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}

.post-card:hover img {
  transform: scale(1.04);
}

.post-card small, .post-card p {
  color: var(--muted);
}

.post-card b {
  color: var(--blue);
  font-size: var(--text-sm);
}

.post-header {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.post-header > a, .post-header small {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: var(--text-sm);
}

.post-header p {
  color: var(--muted);
  font-size: var(--text-lead);
}

.post-cover {
  width: 100%;
  max-height: 650px;
  margin-block: clamp(42px, 7vw, 72px);
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.contact-intro > a {
  display: inline-block;
  border-bottom: 1px solid;
  font-size: var(--text-lead);
  font-weight: 700;
}

.contact-topics span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: var(--text-sm);
}

.contact-form, .admin-form {
  display: grid;
  gap: 20px;
}

.contact-form label, .admin-form label, .login-box label {
  color: #5d5d65;
  font-size: var(--text-sm);
  font-weight: 700;
}

.contact-form input, .contact-form textarea, .admin-form input, .admin-form textarea, .login-box input {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  background: transparent;
  color: var(--ink);
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

.empty {
  min-height: 80svh;
  display: grid;
  place-content: center;
  padding: 100px 20px;
  text-align: center;
}

.empty h1 {
  margin: 0;
  font-size: var(--text-display);
}

.flash {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 100px auto -70px;
  padding: 12px 20px;
  border-radius: 12px;
  text-align: center;
}

.flash.success {
  background: #d9fbe4;
  color: #176331;
}

.flash.error {
  background: #ffe2e2;
  color: #8b2020;
}

/* Admin */
.admin-body {
  background: #e9e9ed;
}

.login-box {
  width: min(430px, calc(100% - 30px));
  margin: 10vh auto;
  padding: clamp(24px, 5vw, 40px);
  display: grid;
  gap: 18px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.login-box h1 {
  margin-bottom: 0;
  font-size: var(--text-h2);
}

.login-box .flash {
  margin: 0;
}

.login-box small {
  color: var(--muted);
}

.admin-side {
  position: fixed;
  inset: 12px 12px 12px auto;
  width: 238px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #111116, #292933);
  color: #fff;
}

.admin-side nav {
  display: grid;
  gap: 16px;
  margin-top: 50px;
  font-size: var(--text-sm);
}

.admin-side > a:last-child {
  margin-top: auto;
  color: #aaa;
  font-size: var(--text-sm);
}

.admin-main {
  width: min(1400px, calc(100% - 262px));
  margin-right: 262px;
  padding: clamp(18px, 3vw, 36px);
}

.admin-main > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-main h1 {
  margin: 0;
  font-size: var(--text-h2);
}

.admin-main h2 {
  font-size: var(--text-h3);
}

.admin-main .flash {
  margin: 20px 0;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-block: 32px;
}

.admin-stats div, .admin-card {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #fff;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 15px 50px #00000008;
}

.admin-stats span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.admin-stats b {
  display: block;
  font-size: clamp(2.1rem, 1.8rem + 1.3vw, 3.1rem);
  line-height: 1.25;
}

.admin-card {
  margin-bottom: 24px;
}

.featured-admin-card {
  background: linear-gradient(135deg, #fff, #f2f4ff);
}

.admin-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.admin-card-head h2 {
  margin: 0;
}

.admin-card-head span, .admin-card-head small {
  color: var(--muted);
  font-size: var(--text-sm);
}

.admin-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form .full {
  grid-column: 1 / -1;
}

.admin-form input, .admin-form textarea {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #dddde3;
  border-radius: 12px;
  background: #fff;
}

.admin-form .check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-form .check input {
  width: auto;
}

.admin-form .color-input {
  height: 48px;
  padding: 5px;
}

.admin-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-project-grid article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fafafa;
}

.admin-project-grid article > div:last-child {
  padding: 18px;
}

.admin-project-grid h3 {
  margin: 3px 0;
  font-size: 1.35rem;
}

.admin-project-grid p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-view-link {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: var(--text-sm);
  font-weight: 700;
}

.admin-project-cover {
  height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--accent);
}

.admin-project-cover img {
  width: 85%;
  height: 82%;
  border-radius: 16px;
  object-fit: cover;
}

.admin-project-cover b {
  color: #fff;
  font-size: 4rem;
}

.admin-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.admin-list span {
  display: grid;
}

.admin-list small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-list p {
  margin-bottom: 0;
}

.admin-list .unread {
  padding-right: 14px;
  border-right: 3px solid var(--blue);
}

.admin-list button {
  border: 0;
  border-radius: 9px;
  padding: 7px 12px;
  cursor: pointer;
}

.admin-list .danger, .danger {
  border: 0;
  border-radius: 9px;
  padding: 7px 12px;
  background: #fee;
  color: #a11;
  cursor: pointer;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes aurora {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(50%); }
}

@keyframes float {
  50% { transform: translateY(-16px) rotate(3deg); }
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* Laptop */
@media (max-width: 1100px) {
  :root {
    --container: 940px;
  }

  .project-card:nth-child(2) {
    margin-top: 48px;
  }

  .about-grid {
    gap: 36px;
  }

  .wide-info {
    grid-template-columns: .65fr 1.35fr;
  }

  .project-detail {
    grid-template-columns: 1fr;
  }

  .wide-info a {
    grid-column: 2;
    justify-self: start;
  }

  .admin-project-grid {
    grid-template-columns: 1fr;
  }

}

/* Brand logo */
.brand img {
  width: 40px;
  height: 40px;
  flex: none;
  object-fit: contain;
}

.site-header .brand img, .admin-side .brand img {
  filter: invert(1);
}

.footer .brand img, .login-box .brand img {
  filter: none;
}

.preloader-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: invert(1);
}

/* Small mobile */
@media (max-width: 380px) {
  :root {
    --gutter: 11px;
    --text-display: 2.55rem;
  }

  .brand {
    font-size: 1.05rem;
  }

  .hero {
    padding: 0;
  }

  .project-card, .project-card:nth-child(2) {
    height: 405px;
  }

  .project-meta h3 {
    font-size: 1.25rem;
  }

  .footer div {
    gap: 12px;
  }

}

@media (hover: none) {
  .project-card, .wide-project {
    transform: none !important;
  }

}

/* Liquid glass header and buttons */
.glass-filters {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.nav, .button, .nav-cta, .menu-toggle, .filter-pill, .sticky-consult a, .admin-list button, .danger {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}

.nav::before, .button::before, .nav-cta::before, .menu-toggle::before, .filter-pill::before, .sticky-consult a::before, .admin-list button::before, .danger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, .1);
  box-shadow:
    inset 2px 2px 0 -2px rgba(255, 255, 255, .7),
    inset 0 0 3px 1px rgba(255, 255, 255, .7);
}

.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  filter: url(#container-glass);
  -webkit-filter: url(#container-glass);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  overflow: hidden;
  isolation: isolate;
}

.button, .nav-cta, .menu-toggle, .hero .button, .contact-form .button, .cta .button, .filter-pill, .sticky-consult a, .admin-list button, .danger {
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nav > *,
.button > *,
.nav-cta > *,
.menu-toggle > *,
.filter-pill > *,
.sticky-consult a > *,
.admin-list button > *,
.danger > * {
  position: relative;
  z-index: 1;
}

.button::after, .nav-cta::after, .menu-toggle::after, .filter-pill::after, .sticky-consult a::after, .admin-list button::after, .danger::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  filter: url(#btn-glass);
  -webkit-filter: url(#btn-glass);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  overflow: hidden;
  isolation: isolate;
}

.nav::before {
  background-color: rgba(5, 8, 14, .72);
  box-shadow:
    inset 2px 2px 0 -2px rgba(255, 255, 255, .62),
    inset 0 0 3px 1px rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .46);
}

.nav::after {
  backdrop-filter: blur(18px) saturate(1.28);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
}

.nav-cta,
.hero-actions .button.primary,
.cta .button[href="#booking"],
.booking-form .button.primary,
.contact-form .button.primary,
.sticky-consult a {
  color: #1b1307 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .22);
}

.nav-cta::before,
.hero-actions .button.primary::before,
.cta .button[href="#booking"]::before,
.booking-form .button.primary::before,
.contact-form .button.primary::before,
.sticky-consult a::before {
  background-color: rgba(243, 201, 105, .76);
  box-shadow:
    inset 2px 2px 0 -2px rgba(255, 255, 255, .86),
    inset 0 0 3px 1px rgba(255, 255, 255, .56),
    inset 0 -12px 24px rgba(112, 69, 37, .16),
    0 12px 32px rgba(243, 201, 105, .18);
}

.nav-cta::after,
.hero-actions .button.primary::after,
.cta .button[href="#booking"]::after,
.booking-form .button.primary::after,
.contact-form .button.primary::after,
.sticky-consult a::after {
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
}

p {
  margin-bottom: 20px;
}

.eyebrow, .kicker {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
}

.section {
  padding-block: var(--space-section);
}

.section + .section {
  padding-top: 0;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(15, 27, 46, .94);
  box-shadow: 0 16px 45px rgba(14, 24, 40, .18);
  backdrop-filter: blur(16px) saturate(1.35) !important;
  transition: .35s;
  border-color: rgba(255, 255, 255, .28) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.35) !important;
  color: #fff;
}

.site-header.scrolled .nav {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(15, 27, 46, .94);
  box-shadow: 0 16px 45px rgba(14, 24, 40, .18);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.brand span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: #14213a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links > a {
  transition: opacity .2s;
  padding: 9px 13px;
  border-radius: 10px;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: #f3c969;
  color: #162036 !important;
}

.menu-toggle i {
  display: block;
  width: 21px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
}

/* HERO_DEMO_CANVAS_REBUILD_RTL */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: max(600px, 100svh) !important;
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #050506;
  color: #f1ebe2;
  text-align: right;
  direction: rtl;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 48%, rgba(201, 130, 78, .17), transparent 35%),
    radial-gradient(circle at 78% 40%, rgba(201, 130, 78, .08), transparent 38%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .06), rgba(5, 5, 6, .46) 42%, rgba(5, 5, 6, .92) 78%),
    linear-gradient(0deg, #050506 0%, rgba(5, 5, 6, .62) 24%, transparent 62%),
    radial-gradient(circle at 40% 50%, transparent 0 24%, rgba(5, 5, 6, .24) 56%, rgba(5, 5, 6, .72) 100%);
}

.hero-risk-motion-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: max(600px, 100svh);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: rtl;
  padding: clamp(112px, 15vh, 150px) clamp(28px, 6vw, 92px) clamp(72px, 9vh, 108px);
  margin: 0;
}

.hero-content {
  width: min(100%, 660px);
  max-width: 660px;
  direction: rtl;
  text-align: right;
}

.hero .eyebrow {
  margin: 0 0 24px;
  color: #c9824e;
  font-family: Kalameh, Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  color: #f1ebe2;
  font-family: Kalameh, Tahoma, Arial, sans-serif;
  font-size: clamp(42px, 6.2vw, 86px) !important;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(231, 222, 210, .76);
  font-size: 15.5px;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 34px;
  direction: rtl;
}

/* Section rhythm */
.statement {
  border: 0;
  padding-top: 110px;
  padding-bottom: 110px;
}

.big-text {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 2rem + 4vw, 5.6rem);
  line-height: 1.75;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin: 0;
}

.section-head .kicker {
  margin-bottom: 10px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.project-card, .project-card:nth-child(2) {
  height: 560px;
  margin-top: 0;
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(14, 24, 40, .12);
}

.project-visual {
  position: relative;
  height: 76%;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
}

.project-visual img {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transform: none;
  transition: transform .5s;
}

.project-card:hover .project-visual img {
  transform: scale(1.015);
}

.project-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 27%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 26px;
  background: linear-gradient(transparent, #0006);
}

.project-meta h3 {
  margin: 5px 0 0;
  font-size: var(--text-h3);
  color: #fff;
  margin-top: 8px;
}

.services {
  padding-inline: clamp(20px, 4vw, 48px);
  border-radius: 28px;
  background: #eeece6;
  padding: 44px;
  border: 1px solid #e2dfd8;
}

.services > .kicker {
  margin-bottom: 28px;
}

.cta p {
  margin-bottom: 16px;
  color: #ffffff99;
}

.cta h2 {
  margin: 0 0 24px;
  font-size: var(--text-h2);
  margin-bottom: 28px;
}

/* Inner pages rhythm */
.page-hero {
  min-height: auto;
  padding-top: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 84px;
  gap: 4px;
}

.page-hero.compact {
  min-height: auto;
}

.page-hero h1, .contact-intro h1 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(2.8rem, 2rem + 4vw, 5.8rem);
  line-height: 1.55;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin-top: 0;
}

.page-hero::after {
  content: "";
  width: 100%;
  height: 1px;
  margin-top: 52px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.about-copy .lead {
  margin-bottom: 28px;
  font-size: 19px;
  line-height: 2;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 34px;
  line-height: 2;
}

.stats b {
  display: block;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 5px;
}

.timeline > .kicker {
  margin-bottom: 30px;
}

.timeline-row {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.credential-grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid #fff;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .05);
}

.credential-grid h3 {
  margin: 24px 0 12px;
  font-size: var(--text-h3);
}

.project-list {
  display: grid;
  gap: 96px;
}

.wide-art {
  --mx: -200px;
  --my: -200px;
  position: relative;
  isolation: isolate;
  height: min(56vw, 650px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: var(--accent);
  box-shadow: inset 0 1px #fff5;
}

.wide-art > img {
  width: calc(100% - 72px);
  height: calc(100% - 72px);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transform: none;
  transition: transform .6s;
}

.wide-info {
  display: grid;
  grid-template-columns: .7fr 1.6fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 6px 38px;
  border-bottom: 1px solid var(--line);
}

.wide-info h2 {
  margin: 0;
  font-size: var(--text-h2);
  margin-bottom: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 28px;
}

.post-card {
  min-width: 0;
  padding: 14px 14px 26px;
  border-radius: var(--radius-lg);
  transition: transform .35s, background .35s, box-shadow .35s;
}

.post-image {
  aspect-ratio: 1.45;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #101014, #3c3c45);
  color: #fff;
  font-size: clamp(4rem, 9vw, 7rem);
}

.post-card h2 {
  margin: 14px 0 10px;
  font-size: var(--text-h3);
}

.post-card p {
  margin-bottom: 18px;
}

.single-post {
  padding-top: 180px;
  padding-bottom: var(--space-section);
}

.post-header h1 {
  margin: 22px 0;
  font-size: clamp(2.8rem, 2rem + 4vw, 6rem);
  line-height: 1.15;
}

.post-content {
  max-width: 760px;
  margin-inline: auto;
  font-size: var(--text-lead);
  line-height: 2.2;
  padding-block: 30px;
}

.contact-page {
  min-height: auto;
  padding-top: 190px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 72px;
  align-items: start;
}

.contact-intro {
  padding-top: 26px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: var(--text-lead);
  margin-top: 24px;
  line-height: 2;
}

.contact-topics {
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-form input, .contact-form textarea {
  margin-top: 7px;
  padding: 14px 0;
}

.project-single-hero {
  min-height: auto;
  padding-top: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
}

.project-single-summary {
  max-width: 680px;
  color: var(--muted);
  font-size: var(--text-lead);
  margin-top: 22px;
  line-height: 2;
}

.project-single-cover {
  min-height: auto;
  padding: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: var(--accent);
}

.project-single-cover > img {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.project-detail {
  padding-block: var(--space-section);
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.5fr);
  gap: 90px;
}

.project-story h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: var(--text-h2);
}

@media (max-width: 600px) {

  body {
    line-height: 1.7;
  }

  .hero .eyebrow {
    font-size: .75rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .orb-one {
    width: 140px;
    height: 140px;
  }

  .orb-two {
    width: 90px;
    height: 90px;
  }

  .section-head {
    display: grid;
    gap: 12px;
  }

  .section-head > a {
    justify-self: start;
  }

  .project-meta span {
    width: 42px;
    height: 42px;
  }

  .phone-ui {
    border-width: 6px;
    border-radius: 28px;
  }

  .service p {
    font-size: var(--text-sm);
  }

  .cta {
    min-height: 380px;
    border-radius: 26px;
  }

  .cta::after {
    inset: 10px;
    border-radius: 19px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .wide-art > span {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .glass-card {
    width: 76%;
    height: 68%;
  }

  .post-card {
    padding: 0 0 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .post-card:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .post-image {
    border-radius: 20px;
  }

  .post-cover {
    border-radius: 22px;
  }

  .flash {
    width: calc(100% - 28px);
    margin-top: 82px;
  }

  .admin-side nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-main {
    padding: 12px;
  }

  .admin-main > header, .admin-card-head {
    display: grid;
  }

  .admin-stats, .admin-form {
    grid-template-columns: 1fr;
  }

  .admin-form .full {
    grid-column: auto;
  }

  .admin-list > div {
    display: grid;
  }

  .admin-project-cover {
    height: 180px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  :root {
  --gutter: 14px;
  --text-display: clamp(2.75rem, 13vw, 4.2rem);
  --text-h2: clamp(2rem, 9vw, 3rem);
  --text-h3: clamp(1.35rem, 6vw, 1.75rem);
  --space-section: 58px;
}

  .hero {
  padding: 0;
  margin-top: 0;
}

  .hero-title {
    font-size: clamp(36px, 12vw, 52px) !important;
  }

  .project-card, .project-card:nth-child(2) {
  height: 400px;
}

  .project-visual {
    padding: 18px;
  }

  .project-meta {
  padding: 18px;
}

  .service {
  padding-block: 26px;
  grid-template-columns: 46px minmax(0, 1fr);
}

  .credential-grid {
    gap: 14px;
  }

  .credential-grid article {
    padding: 22px;
  }

  .wide-art {
  height: 105vw;
  min-height: 320px;
}

  .wide-art > img {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
}

  .contact-form {
  padding: 22px;
  border-radius: 24px;
  gap: 22px;
}

  .footer {
    gap: 20px;
    padding-block: 30px;
  }

}

body::before, body::after {
  content: "";
  position: fixed;
  pointer-events: none;
}

main, .footer {
  position: relative;
  z-index: 1;
}

@keyframes bodyColorOrbit {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1.08) rotate(0deg);
  }
  100% {
    transform: translate3d(3%, 2%, 0) scale(1.16) rotate(8deg);
  }
}

@keyframes bodyHeroScan {
  from {
    background-position: 0 0, 0 0, 0 0, 25% 44%;
  }
  to {
    background-position: 0 54px, 54px 0, 0 180px, 75% 56%;
  }
}

html {
  background: #05070d !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(184, 121, 58, .18), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(61, 74, 96, .2), transparent 34%),
    radial-gradient(circle at 70% 78%, rgba(111, 66, 36, .18), transparent 40%),
    linear-gradient(135deg, #05070d 0%, #090e17 48%, #100d10 100%) !important;
  color: #eef4ff;
  font-family: Kalameh, Tahoma, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  direction: rtl;
  text-align: right;
  position: relative;
}

body::before {
  inset: -25%;
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1.08);
  animation: bodyColorOrbit 30s ease-in-out infinite alternate;
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 121, 58, .28), transparent 35%),
    radial-gradient(circle at 78% 16%, rgba(92, 72, 54, .18), transparent 38%),
    radial-gradient(circle at 68% 78%, rgba(184, 121, 58, .18), transparent 42%),
    conic-gradient(from 120deg at 50% 50%, rgba(15, 23, 42, .08), rgba(184, 121, 58, .12), rgba(51, 65, 85, .1), rgba(112, 69, 37, .1), rgba(15, 23, 42, .08)) !important;
  opacity: .82 !important;
  animation-duration: 30s !important;
}

body::after {
  inset: 0;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  animation: bodyHeroScan 16s linear infinite;
  opacity: .34 !important;
  mix-blend-mode: screen;
  background:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(184, 121, 58, .045) 5px 6px) !important;
  background-size: 54px 54px, 54px 54px, 100% 11px !important;
  animation-duration: 16s !important;
}

.nav, .site-header.scrolled .nav {
  border: 0 !important;
  border-radius: 30px !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    transform .34s var(--ease-premium),
    opacity .34s var(--ease-premium) !important;
}

.nav-links > a, .nav-cta, .menu-toggle, .button, .filter-pill, .sticky-consult a, .admin-list button, .danger {
  transition:
    color .34s var(--ease-premium),
    background .34s var(--ease-premium),
    border-color .34s var(--ease-premium),
    box-shadow .34s var(--ease-premium),
    transform .34s var(--ease-premium) !important;
}

.nav-links > a:hover {
  opacity: 1;
  background: rgba(184, 121, 58, .09) !important;
  color: #f3d3ad !important;
}

.button,
.nav-cta,
.menu-toggle,
.hero .button,
.hero .button.primary,
.hero .button.ghost,
.contact-form .button,
.cta .button,
.filter-pill,
.sticky-consult a,
.admin-list button,
.danger {
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.button:hover,
.nav-cta:hover,
.menu-toggle:hover,
.hero .button:hover,
.filter-pill:hover,
.filter-pill.active,
.sticky-consult a:hover,
.admin-list button:hover,
.danger:hover {
  color: #fff !important;
  background: transparent !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .32) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
}

.nav-cta:hover,
.hero-actions .button.primary:hover,
.cta .button[href="#booking"]:hover,
.booking-form .button.primary:hover,
.contact-form .button.primary:hover,
.sticky-consult a:hover {
  color: #1b1307 !important;
}

.hero .button {
  border-radius: 999px;
}

.menu-toggle {
  border-radius: 999px;
}

.statement, .services, .cta, .page-hero, .about-grid, .timeline, .credentials, .project-list, .blog-grid, .contact-page, .single-post, .project-single-hero, .project-detail, .project-single-cover, .contact-form, .credential-grid article, .post-card, .project-card, .wide-project, .stats div, .timeline-row {
  border-color: var(--glass-border) !important;
  background: var(--glass-bg-deep) !important;
  color: #eef4ff;
  box-shadow: var(--glass-shadow) !important;
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.statement, .services, .cta, .page-hero, .about-grid, .timeline, .credentials, .contact-page, .single-post, .project-single-hero, .project-detail {
  border: 1px solid var(--glass-border) !important;
}

.project-card, .wide-project, .credential-grid article, .post-card, .contact-form, .stats div, .service, .timeline-row {
  position: relative;
  overflow: hidden;
  transition:
    transform .42s var(--ease-premium),
    border-color .42s var(--ease-premium),
    box-shadow .42s var(--ease-premium),
    background .42s var(--ease-premium) !important;
}

.project-card::before, .wide-project::before, .credential-grid article::before, .post-card::before, .contact-form::before, .stats div::before, .service::before, .timeline-row::before, .cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .09), transparent 34%),
    radial-gradient(circle at var(--mx, 22%) var(--my, 18%), rgba(184, 121, 58, .16), transparent 34%);
  opacity: .72;
}

.project-card > *, .wide-project > *, .credential-grid article > *, .post-card > *, .contact-form > *, .stats div > *, .service > *, .timeline-row > *, .cta > * {
  position: relative;
  z-index: 1;
}

.project-card:hover, .wide-project:hover, .credential-grid article:hover, .post-card:hover, .stats div:hover, .service:hover {
  border-color: var(--bronze-line) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .11),
    0 28px 86px rgba(0, 0, 0, .4),
    0 0 42px rgba(184, 121, 58, .075) !important;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.stats div {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  padding: 18px 18px 16px !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
}

.stats div:first-child b {
  color: #e1aa73;
  text-shadow: 0 0 28px rgba(184, 121, 58, .28);
}

.stats b, .credential-grid span, .wide-info small, .post-card small, .contact-topics span, .kicker, .eyebrow {
  color: #d69a61 !important;
}

.contact-topics span {
  border-color: rgba(184, 121, 58, .24) !important;
  background: rgba(8, 12, 19, .42) !important;
  color: rgba(255, 238, 220, .82) !important;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.project-visual, .wide-art, .post-image, .portrait, .project-single-cover {
  background:
    radial-gradient(circle at 22% 16%, rgba(184, 121, 58, .16), transparent 34%),
    linear-gradient(145deg, rgba(10, 14, 22, .86), rgba(17, 20, 27, .58)) !important;
}

.project-visual img, .wide-art > img, .post-image img, .project-single-cover img, .portrait-shape.avatar img {
  transition: transform .8s var(--ease-premium), filter .8s var(--ease-premium), opacity .8s var(--ease-premium) !important;
}

.project-card:hover .project-visual img, .wide-project:hover .wide-art > img, .post-card:hover .post-image img {
  transform: scale(1.025) !important;
  filter: contrast(1.04) saturate(.96);
}

.page-hero h1 span, .contact-intro h1 span, .about-copy > p:not(.lead), .credential-grid p, .post-card p, .wide-info p, .project-single-summary, .timeline-row p, .stats span, .footer, .footer p {
  color: rgba(238, 244, 255, .68) !important;
}

.contact-form {
  padding: 34px;
  border: 1px solid #fff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px #0000000b;
  gap: 26px;
  border-color: rgba(184, 121, 58, .22) !important;
}

.contact-form::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(184, 121, 58, .16);
  border-radius: inherit;
}

.contact-form label {
  color: rgba(238, 244, 255, .76) !important;
}

.contact-form input, .contact-form textarea, .admin-form input, .admin-form textarea {
  border-bottom-color: rgba(255, 255, 255, .14) !important;
  color: #f8fbff !important;
  transition: border-color .32s var(--ease-premium), box-shadow .32s var(--ease-premium), background .32s var(--ease-premium) !important;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(184, 121, 58, .72) !important;
  box-shadow: 0 10px 26px rgba(184, 121, 58, .08);
}

.footer {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  background: rgba(8, 12, 19, .58) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 50px rgba(0, 0, 0, .26) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-premium), transform .9s var(--ease-premium) !important;
  transition-delay: .06s;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav, .site-header.scrolled .nav, .statement, .services, .cta, .page-hero, .about-grid, .timeline, .credentials, .project-list, .blog-grid, .contact-page, .single-post, .project-single-hero, .project-detail, .contact-form, .footer, .project-card, .wide-project, .post-card, .credential-grid article, .stats div {
    background: rgba(9, 13, 21, .92) !important;
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

}

.site-header {
  position: fixed !important;
  top: 16px !important;
  left: 24px !important;
  right: 24px !important;
  width: auto !important;
  border-radius: 15px !important;
  overflow: hidden;
  z-index: 1000 !important;
  padding: 0;
}

.preloader, .noise, .scroll-progress, .glass-filters {
  position: fixed !important;
}

.preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh !important;
  margin: 0;
  padding: 0;
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  background: #050506;
  color: #fff;
  text-align: right;
  direction: rtl;
  margin-top: 0 !important;
}

@media (max-width: 820px) {

  h1, h2, h3 {
    font-size: 18px !important;
    line-height: 1.5;
    letter-spacing: -.015em;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-cta {
    text-align: center;
  }

  .project-grid, .about-grid, .blog-grid, .contact-page, .credential-grid {
    grid-template-columns: 1fr;
  }

  .service p {
    grid-column: 2;
  }

  .footer {
    display: grid;
  }

  .page-hero {
    min-height: 54svh;
    padding-top: 130px;
  }

  .project-single-hero {
    min-height: 62svh;
    padding-top: 120px;
  }

  .project-single-cover {
    min-height: min(100vw, 580px);
    border-radius: 28px;
  }

  .portrait {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .wide-art {
    height: min(100vw, 580px);
    border-radius: 28px;
  }

  .project-single-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .wide-info a {
    grid-column: auto;
    margin-top: 10px;
  }

  .contact-form {
    width: 100%;
  }

  .admin-side {
    position: static;
    width: auto;
    margin: 0;
    border-radius: 0;
  }

  .admin-side nav {
    margin-top: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-side > a:last-child {
    margin-top: 20px;
  }

  .admin-main {
    width: 100%;
    margin: 0;
  }

  .admin-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  body {
    font-size: 15px;
  }

  .site-header {
  top: 16px;
  left: 24px;
  right: 24px;
  padding-top: 0;
}

  .nav {
  height: 60px;
  padding-inline: 14px 8px;
  border-radius: 16px;
}

  .brand {
    font-size: 14px;
  }

  .brand span {
    width: 34px;
    height: 34px;
  }

  .nav-links {
  position: fixed;
  top: 80px;
  right: var(--gutter);
  left: var(--gutter);
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #fff;
  border-radius: 16px;
  background: rgba(15, 27, 46, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  backdrop-filter: blur(18px);
  transition: .25s;
  color: #fff;
}

  .hero {
  width: 100%;
  min-height: 100svh;
  margin-top: 0;
  padding-top: 0;
  border-radius: 0;
  padding: 0;
}

  .hero-stage {
    min-height: 100svh;
    justify-content: center;
    padding: 88px 22px 116px;
    margin-top: 0;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    text-align: right;
  }

  .hero-title {
  letter-spacing: 0;
  font-size: clamp(34px, 12vw, 54px) !important;
}

  .hero-copy {
    max-width: none;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .statement {
    padding-block: 74px;
  }

  .section-head {
    margin-bottom: 28px;
    padding-top: 22px;
  }

  .project-grid {
    gap: 20px;
  }

  .project-card, .project-card:nth-child(2) {
  height: 460px;
  margin-top: 0;
  border-radius: 28px;
}

  .services {
  border-radius: 28px;
  padding: 26px 20px;
}

  .service {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding-block: 25px;
}

  .page-hero, .project-single-hero {
    padding-top: 140px;
    padding-bottom: 58px;
  }

  .about-grid, .contact-page {
    gap: 48px;
  }

  .project-list {
    gap: 68px;
  }

  .wide-info {
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 28px;
}

  .contact-page {
  align-items: start;
  padding-top: 140px;
  padding-bottom: 72px;
}

  .contact-intro {
    padding-top: 0;
  }

  .project-detail {
  gap: 48px;
}

  :root {
  --space-section: 72px;
  --text-display: clamp(3.1rem, 12vw, 5.3rem);
  --header-height: 60px;
}

}

.landing-stat b {
  max-width: 100%;
  color: #d69a61;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
  overflow-wrap: anywhere;
  white-space: normal;
  text-shadow: 0 0 34px rgba(184, 121, 58, .22);
}

.landing-stat span {
  color: rgba(238, 244, 255, .68);
  font-size: .9rem;
  line-height: 1.9;
}

.curriculum, .credibility, .booking {
  display: block;
}

.filter-pills, .consult-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 8px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02));
  color: rgba(238, 244, 255, .72);
  cursor: pointer;
  transition: background .34s var(--ease-premium), border-color .34s var(--ease-premium), color .34s var(--ease-premium), transform .34s var(--ease-premium);
}

.filter-pill:hover, .filter-pill.active {
  border-color: rgba(184, 121, 58, .42);
  background: linear-gradient(135deg, rgba(184, 121, 58, .26), rgba(255, 255, 255, .04));
  color: #fff4e8;
}

.program-grid, .flip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card.is-hidden {
  display: none;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 121, 58, .36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 30px 90px rgba(0, 0, 0, .42);
}

.program-image {
  aspect-ratio: 1.18;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 16px;
  background: #080c13;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.25) brightness(.68);
  transition: transform .8s var(--ease-premium), filter .8s var(--ease-premium);
}

.program-card:hover img {
  transform: scale(1.045);
  filter: grayscale(70%) contrast(1.2) brightness(.78);
}

.program-card > span, .flip-front > span, .story-card small {
  color: #d69a61;
  font-size: .75rem;
  font-weight: 800;
}

.program-card h3, .flip-card h3, .story-card h3, .booking h2 {
  margin: 12px 0 10px;
  color: #f8fbff;
  font-size: clamp(1.35rem, 1.1rem + .9vw, 2rem) !important;
  line-height: 1.45;
  letter-spacing: 0;
}

.program-card p, .flip-card p, .story-card p, .booking p {
  margin: 0;
  color: rgba(238, 244, 255, .68);
  line-height: 2;
}

.flip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flip-card {
  min-height: 310px;
  perspective: 1400px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 310px;
  transform-style: preserve-3d;
  transition: transform .78s var(--ease-premium);
}

.flip-card:hover .flip-card-inner, .flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-back {
  transform: rotateY(180deg);
  border-color: rgba(184, 121, 58, .32);
}

.stories {
  overflow: hidden;
}

.stories > .shell {
  padding-inline: var(--shell-outer-pad);
}

.drag-hint {
  align-self: end;
  color: rgba(238, 244, 255, .45);
  font-size: .8rem;
}

.story-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: end;
}

.story-nav {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(184, 121, 58, .28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(18, 23, 32, .92), rgba(8, 12, 19, .74)),
    radial-gradient(circle at 50% 0%, rgba(184, 121, 58, .22), transparent 68%);
  color: #f6dfc8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 14px 34px rgba(0, 0, 0, .28);
  cursor: pointer;
  transition: transform .32s var(--ease-premium), border-color .32s var(--ease-premium), box-shadow .32s var(--ease-premium), color .32s var(--ease-premium);
}

.story-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 154, 97, .56);
  color: #fff8ef;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 18px 42px rgba(0, 0, 0, .34),
    0 0 28px rgba(184, 121, 58, .12);
}

.story-nav:focus-visible {
  outline: 2px solid rgba(214, 154, 97, .74);
  outline-offset: 3px;
}

.story-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-container {
  overflow-x: auto;
  scroll-padding-inline: var(--shell-outer-pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  cursor: grab;
}

.story-container::-webkit-scrollbar {
  display: none;
}

.story-track {
  width: max-content;
  display: flex;
  gap: 18px;
  padding-block: 6px 12px;
  padding-inline: var(--shell-outer-pad);
}

.story-track.dragging {
  cursor: grabbing;
}

.story-card {
  width: min(380px, 82vw);
  flex: 0 0 auto;
  scroll-snap-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: var(--glass-bg-deep);
  box-shadow: var(--glass-shadow);
}

.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.24) brightness(.64);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.booking-form label {
  color: rgba(238, 244, 255, .76);
  font-size: .9rem;
  font-weight: 700;
}

.booking-form input, .booking-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  outline: none;
  background: transparent;
  color: #fff;
  resize: vertical;
}

.booking-form input:focus, .booking-form textarea:focus {
  border-color: rgba(184, 121, 58, .72);
}

.sticky-consult {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
  padding: 12px 14px;
  border: 1px solid rgba(184, 121, 58, .24);
  border-radius: 18px;
  background: rgba(8, 12, 19, .76);
  color: rgba(238, 244, 255, .72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .36);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  transform: translateY(140%);
  transition: transform .55s var(--ease-premium);
}

.sticky-consult.visible {
  transform: translateY(0);
}

.sticky-consult a {
  flex: none;
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(180deg, rgba(184, 121, 58, .95), rgba(112, 69, 37, .86));
  color: #fff8ef;
  font-weight: 800;
}

/* Content and spacing refinement only: keep the approved visual system intact */

main {
  display: block;
  gap: 0 !important;
}

main > .shell:not(.hero),
.footer.shell,
.project-single-cover.shell {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

main > section.shell:not(.hero), main > article.shell:not(.hero), main > div.shell:not(.hero) {
  padding-block: var(--section-y-lg) !important;
  padding-inline: var(--shell-outer-pad);
}

.footer.shell {
  padding-inline: var(--shell-outer-pad);
}

.services.shell {
  padding-inline: var(--shell-outer-pad);
}

.cta.shell {
  padding-inline: var(--shell-outer-pad);
}

.project-single-cover.shell {
  padding-inline: var(--shell-outer-pad);
}

.site-header {
  right: 24px !important;
  left: 24px !important;
  width: auto !important;
  padding-inline: 0;
}

.site-header .nav {
  width: var(--frame-width);
  max-width: none;
  margin-inline: auto;
  border-radius: 15px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.site-header,
.site-header.scrolled,
.site-header.is-scrolled,
.site-header.active,
.site-header .nav,
.site-header.scrolled .nav,
.site-header.is-scrolled .nav,
.site-header.active .nav,
.site-header .nav::before,
.site-header .nav::after,
.site-header.scrolled .nav::before,
.site-header.scrolled .nav::after,
.site-header.is-scrolled .nav::before,
.site-header.is-scrolled .nav::after,
.site-header.active .nav::before,
.site-header.active .nav::after {
  border-radius: 15px !important;
}

.landing-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px !important;
  padding-block: 0 !important;
  padding-inline: var(--shell-outer-pad) !important;
  overflow: hidden;
  border-block: 1px solid rgba(184, 121, 58, .16) !important;
  background: rgba(255, 255, 255, .06) !important;
}

.hero + .landing-stats {
  margin-top: 0 !important;
}

.cta {
  --mx: -200px;
  --my: -200px;
  position: relative;
  isolation: isolate;
  min-height: auto !important;
  margin-bottom: 0 !important;
  padding: 64px 30px;
  display: grid;
  place-content: center;
  overflow: hidden;
  border: 1px solid #ffffff12;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #101014, #20202a);
  color: #fff;
  text-align: center;
  padding-block: clamp(56px, 6vw, 80px) !important;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 5vw, 64px) !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.section-head p:not(.kicker) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(238, 244, 255, .66);
  line-height: 1.95;
}

.approach-copy {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(238, 244, 255, .72);
  line-height: 2;
}

#about.statement {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  grid-template-areas: "portrait content";
  align-items: center;
  gap: 0 clamp(40px, 4vw, 56px);
  direction: ltr;
}

#about .approach-content {
  grid-area: content;
  min-width: 0;
  direction: rtl;
}

#about .approach-portrait {
  grid-area: portrait;
  width: min(100%, 430px);
  justify-self: start;
  align-self: center;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  background: var(--glass-bg-deep);
  box-shadow: var(--glass-shadow);
}

#about .approach-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
}

.approach-copy p {
  margin: 0 0 18px;
}

.approach-copy strong {
  display: block;
  margin-top: 22px;
  color: #fff4e8;
  font-weight: 800;
  line-height: 1.9;
}

.landing-stat {
  min-width: 0 !important;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 32px 28px !important;
  overflow: hidden !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, rgba(10, 14, 22, .72), rgba(10, 14, 22, .36));
}

.landing-stat:nth-child(4) b {
  font-size: clamp(1.85rem, 3.5vw, 3.85rem);
}

@media (max-width: 1024px) {
  .landing-stat {
    padding: 28px 24px !important;
  }
}

.program-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.7vw, 34px) !important;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: var(--glass-bg-deep);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: transform .45s var(--ease-premium), border-color .45s var(--ease-premium), box-shadow .45s var(--ease-premium), opacity .35s var(--ease-premium);
}

.program-card h3 {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.program-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(238, 244, 255, .62);
  font-size: .88rem;
  line-height: 1.9;
}

.program-meta b {
  color: rgba(255, 244, 232, .86);
}

.program-card > a {
  display: inline-flex;
  margin-top: 22px;
  color: #d69a61;
  font-size: .9rem;
  font-weight: 800;
}

.service {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(260px, .8fr);
  gap: 24px;
  align-items: center;
  padding-block: clamp(30px, 4vw, 46px) !important;
  border-bottom: 1px solid var(--line);
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.5vw, 32px) !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 14%, rgba(184, 121, 58, .16), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, .72), rgba(8, 12, 19, .5));
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: var(--glass-shadow);
}

.story-card div {
  padding: clamp(22px, 2.6vw, 32px) !important;
}

.booking-form {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 40px) !important;
  border: 1px solid rgba(184, 121, 58, .22);
  border-radius: 22px;
  background: var(--glass-bg-deep);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.booking-copy p, .booking-form label, .form-note {
  line-height: 1.9;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(238, 244, 255, .52);
  font-size: .86rem;
}

@media (max-width: 980px) {
  .landing-stats, .program-grid, .flip-grid, .booking {
    grid-template-columns: 1fr 1fr;
  }

  #about.statement {
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr);
    gap: 0 40px;
  }

  #about .approach-portrait {
    width: min(100%, 360px);
  }

  .landing-stat {
    padding: 28px 24px !important;
  }

  main > section.shell:not(.hero), main > article.shell:not(.hero), main > div.shell:not(.hero) {
    padding-block: var(--section-y-md) !important;
  }

}

@media (max-width: 640px) {
  .landing-stats, .program-grid, .flip-grid, .booking {
    grid-template-columns: 1fr;
  }

  #about.statement {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "portrait";
    gap: 30px;
    direction: rtl;
  }

  #about .approach-portrait {
    width: min(100%, 390px);
    justify-self: center;
  }

  .sticky-consult {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  main > section.shell:not(.hero), main > article.shell:not(.hero), main > div.shell:not(.hero) {
    padding-block: var(--section-y-sm) !important;
  }

  .landing-stats {
    padding-block: 0 !important;
  }

  .landing-stat {
    padding: 22px 18px !important;
  }

  .section-head {
    margin-bottom: 40px !important;
  }

  .program-card, .flip-face, .story-card div, .booking-form {
    padding: 22px !important;
  }

}

@media (max-width: 820px) {
  :root {
    --frame-width: 100%;
  }

  .site-header {
    padding-inline: 0;
  }
}

/* CTA button style sync */
:root {
  --glass-bg: linear-gradient(
    180deg,
    rgba(255, 255, 255, .105) 0%,
    rgba(255, 255, 255, .055) 100%
  );
}

a.cta-type-1,
button.cta-type-1,
.cta-type-1 {
  border: 1px solid rgba(184, 121, 58, .42) !important;
  border-color: rgba(184, 121, 58, .42) !important;
  background: linear-gradient(180deg, rgba(184, 121, 58, .88), rgba(112, 69, 37, .78)) !important;
  color: #fff8ef !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 214, .22),
    0 14px 36px rgba(184, 121, 58, .16) !important;
  backdrop-filter: blur(14px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.25) !important;
}

a.cta-type-1:hover,
button.cta-type-1:hover,
.cta-type-1:hover {
  border-color: rgba(184, 121, 58, .52) !important;
  background: linear-gradient(180deg, rgba(184, 121, 58, .94), rgba(112, 69, 37, .84)) !important;
  color: #fff8ef !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 214, .26),
    0 18px 42px rgba(184, 121, 58, .22) !important;
}

a.cta-type-2,
button.cta-type-2,
.cta-type-2 {
  border: 1px solid rgba(255, 255, 255, .14) !important;
  background: var(--glass-bg) !important;
  color: #f8fbff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 12px 32px rgba(0, 0, 0, .22) !important;
  backdrop-filter: blur(14px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.25) !important;
}

a.cta-type-2:hover,
button.cta-type-2:hover,
.cta-type-2:hover {
  border-color: rgba(255, 255, 255, .22) !important;
  background: var(--glass-bg) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .10),
    0 16px 38px rgba(0, 0, 0, .28) !important;
}

.cta-type-1::before,
.cta-type-2::before {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.cta-type-1::after,
.cta-type-2::after {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-actions .cta-type-1::before,
.hero-actions .cta-type-2::before {
  background-color: rgba(255, 255, 255, .1) !important;
  box-shadow:
    inset 2px 2px 0 -2px rgba(255, 255, 255, .7),
    inset 0 0 3px 1px rgba(255, 255, 255, .7) !important;
}

.hero-actions .cta-type-1::before {
  background-color: rgba(184, 121, 58, .28) !important;
  box-shadow:
    inset 2px 2px 0 -2px rgba(255, 236, 214, .68),
    inset 0 0 3px 1px rgba(255, 236, 214, .32) !important;
}

.hero-actions .cta-type-1::after,
.hero-actions .cta-type-2::after {
  filter: url(#btn-glass);
  -webkit-filter: url(#btn-glass);
  backdrop-filter: blur(0) !important;
  -webkit-backdrop-filter: blur(0) !important;
}

button:hover,
.nav-cta:hover,
.hero .button:hover {
  border-color: rgba(184, 121, 58, .46) !important;
  background: linear-gradient(135deg, rgba(184, 121, 58, .24), rgba(255, 255, 255, .055)) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 18px 46px rgba(0, 0, 0, .32), 0 0 0 1px rgba(184, 121, 58, .12), 0 0 44px rgba(184, 121, 58, .18) !important;
  transform: translateY(-2px);
}

.button,
.hero .button.ghost {
  border-color: rgba(255, 255, 255, .14) !important;
  background: var(--glass-bg) !important;
  color: #f8fbff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 32px rgba(0, 0, 0, .22), 0 0 34px rgba(184, 121, 58, .14) !important;
  backdrop-filter: blur(14px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.25) !important;
}

a.cta-type-1,
button.cta-type-1,
.cta-type-1 {
  border-color: rgba(184, 121, 58, .42) !important;
  background: linear-gradient(180deg, rgba(184, 121, 58, .88), rgba(112, 69, 37, .78)) !important;
  color: #fff8ef !important;
  box-shadow: inset 0 1px 0 rgba(255, 236, 214, .22), 0 14px 36px rgba(184, 121, 58, .16), 0 0 42px rgba(184, 121, 58, .14) !important;
}

a.cta-type-1:hover,
button.cta-type-1:hover,
.cta-type-1:hover {
  border-color: rgba(184, 121, 58, .52) !important;
  background: linear-gradient(180deg, rgba(184, 121, 58, .94), rgba(112, 69, 37, .84)) !important;
  color: #fff8ef !important;
  box-shadow: inset 0 1px 0 rgba(255, 236, 214, .26), 0 18px 42px rgba(184, 121, 58, .22), 0 0 48px rgba(184, 121, 58, .18) !important;
}

/* Responsive QA fixes only: desktop layout above 1024px remains the source of truth. */
@media (max-width: 1024px) {
  .site-header {
    left: 18px !important;
    right: 18px !important;
  }

  .section-head {
    align-items: flex-start;
  }

  .filter-pills,
  .consult-pills {
    max-width: 100%;
  }

  .program-grid,
  .flip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .service p {
    grid-column: 2;
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    left: 16px !important;
    right: 16px !important;
    overflow: visible;
  }

  .site-header .nav {
    min-width: 0;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    right: 16px;
    left: 16px;
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .nav-links > a,
  .nav-cta {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-pills,
  .consult-pills {
    width: 100%;
  }

  .filter-pill {
    min-height: 44px;
    white-space: normal;
  }

  .hero-copy,
  .approach-copy,
  .section-head p:not(.kicker),
  .booking-copy p,
  .program-card p,
  .flip-card p,
  .story-card p {
    overflow-wrap: anywhere;
  }

  .landing-stat b {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .landing-stat:nth-child(4) b {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .booking-form input,
  .booking-form textarea,
  .contact-form input,
  .contact-form textarea {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell-outer-pad: max(16px, var(--gutter));
  }

  .site-header {
    left: 12px !important;
    right: 12px !important;
    top: 12px !important;
  }

  .site-header .nav {
    height: 58px;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .nav-links {
    top: 76px;
    right: 12px;
    left: 12px;
    max-width: calc(100vw - 24px);
  }

  .hero-stage {
    padding-inline: 18px;
  }

  .hero-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
  }

  [data-screen-label="hero"] > div {
    justify-content: center !important;
    padding: 86px 16px 96px !important;
  }

  [data-screen-label="hero"] > div > div:first-child {
    display: none !important;
  }

  [data-screen-label="hero"] > div > div:last-child {
    width: 100%;
    max-width: 100% !important;
    position: relative;
    z-index: 0;
    isolation: isolate;
    text-align: center !important;
  }

  [data-screen-label="hero"] > div > div:last-child::before {
    content: "";
    position: absolute;
    inset: -14px -12px;
    z-index: -1;
    border-radius: 24px;
    background: rgba(5, 5, 6, .08);
    pointer-events: none;
  }

  [data-screen-label="hero"] > div > div:last-child > div:first-child {
    justify-content: center !important;
    margin-bottom: 18px !important;
  }

  [data-screen-label="hero"] > div > div:last-child > div:first-child > div {
    display: none !important;
  }

  [data-screen-label="hero"] h1 {
    margin-inline: auto !important;
    font-size: clamp(32px, 11.5vw, 48px) !important;
    line-height: 1.28 !important;
    text-align: center !important;
  }

  [data-screen-label="hero"] p {
    margin-inline: auto !important;
    margin-top: 18px !important;
    font-size: 13px !important;
    line-height: 1.9 !important;
    text-align: center !important;
  }

  [data-screen-label="hero"] div[style*="pointer-events:auto"] {
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: 28px !important;
  }

  [data-screen-label="hero"] div[style*="pointer-events:auto"] > .button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    padding-inline: 22px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .hero-actions .button,
  .booking-form .button,
  .contact-form .button,
  .sticky-consult a {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .landing-stats,
  .program-grid,
  .flip-grid,
  .booking,
  .blog-grid,
  .credential-grid {
    grid-template-columns: 1fr !important;
  }

  .landing-stat {
    min-height: 126px;
  }

  .program-card > a {
    min-height: 44px;
    align-items: center;
  }

  .flip-card,
  .flip-card-inner {
    min-height: 280px;
  }

  .story-track {
    gap: 14px;
  }

  .story-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .story-card {
    width: min(340px, calc(100vw - 36px));
  }

  .booking-form,
  .contact-form {
    min-width: 0;
  }

  .footer {
    align-items: flex-start;
  }

  .footer div {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --shell-outer-pad: max(14px, var(--gutter));
  }

  main > section.shell:not(.hero),
  main > article.shell:not(.hero),
  main > div.shell:not(.hero),
  .footer.shell,
  .services.shell,
  .cta.shell,
  .project-single-cover.shell {
    padding-inline: var(--shell-outer-pad) !important;
  }

  .brand {
    font-size: 13px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .hero-stage {
    padding: 82px 16px 104px;
  }

  .hero-title {
    font-size: clamp(32px, 11.5vw, 48px) !important;
    line-height: 1.28;
  }

  .hero-copy {
    font-size: 13px;
    line-height: 1.9;
  }

  .landing-stat {
    padding: 20px 16px !important;
  }

  .filter-pills,
  .consult-pills {
    gap: 8px;
  }

  .filter-pill {
    flex: 1 1 calc(50% - 8px);
    padding-inline: 12px;
  }

  .program-card,
  .flip-face,
  .story-card div,
  .booking-form,
  .contact-form {
    padding: 20px !important;
  }

  .sticky-consult {
    right: 10px;
    left: 10px;
    bottom: 10px;
    padding: 12px;
  }

  .footer {
    margin-top: 20px;
  }
}

@media (max-width: 390px) {
  :root {
    --gutter: 12px;
    --shell-outer-pad: 12px;
  }

  .site-header {
    left: 10px !important;
    right: 10px !important;
  }

  .site-header .nav {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .brand {
    gap: 8px;
    font-size: 12px;
  }

  .menu-toggle {
    flex-basis: 42px;
    min-width: 42px;
    width: 42px;
    height: 42px;
  }

  .nav-links {
    right: 10px;
    left: 10px;
    max-width: calc(100vw - 20px);
  }

  .hero-stage {
    padding-inline: 14px;
  }

  .hero-title {
    font-size: clamp(30px, 11vw, 42px) !important;
  }

  .landing-stat:nth-child(4) b {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .filter-pill {
    flex-basis: 100%;
  }
}

/* PROJECT_CARD_META_STRUCTURE_FIX */
.featured .project-card .project-meta {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  box-sizing: border-box;
  min-height: 27%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 30px;
  background: linear-gradient(transparent, #0006);
}

.featured .project-card .project-meta > div {
  min-width: 0;
}

.featured .project-card .project-meta span {
  align-self: flex-end;
}

@media (max-width: 820px) {
  .featured .project-card .project-meta {
    padding: 26px;
  }
}

@media (max-width: 600px) {
  .featured .project-card .project-meta {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  .featured .project-card .project-meta {
    padding: 20px;
  }
}

/* ADMIN_COLOR_ONLY_FIX */
.admin-body {
  background:
    radial-gradient(circle at 18% 8%, rgba(184, 121, 58, .16), transparent 34%),
    linear-gradient(135deg, #05070d 0%, #090e17 48%, #100d10 100%);
  color: rgba(238, 244, 255, .86);
}

.admin-body .login-box,
.admin-body .admin-card,
.admin-body .admin-stats div {
  border-color: rgba(184, 121, 58, .22);
  background: linear-gradient(135deg, rgba(16, 20, 28, .82), rgba(8, 11, 18, .58));
  color: rgba(238, 244, 255, .88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 24px 80px rgba(0, 0, 0, .36);
}

.admin-body .featured-admin-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 121, 58, .18), transparent 36%),
    linear-gradient(135deg, rgba(16, 20, 28, .9), rgba(8, 11, 18, .68));
}

.admin-body .admin-side {
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 121, 58, .18), transparent 34%),
    linear-gradient(160deg, rgba(9, 12, 18, .96), rgba(15, 18, 25, .9));
  color: rgba(248, 251, 255, .9);
}

.admin-body .admin-side .brand,
.admin-body .login-box .brand,
.admin-body .admin-side nav a,
.admin-body .admin-main h1,
.admin-body .admin-main h2,
.admin-body .login-box h1,
.admin-body .admin-stats b,
.admin-body .admin-project-grid h3,
.admin-body .admin-list b {
  color: #fff8ef;
}

.admin-body .admin-side > a:last-child,
.admin-body .login-box small,
.admin-body .admin-main > header small,
.admin-body .admin-card-head span,
.admin-body .admin-card-head small,
.admin-body .admin-stats span,
.admin-body .admin-project-grid p,
.admin-body .admin-list small,
.admin-body .admin-list p {
  color: rgba(238, 244, 255, .66);
}

.admin-body .admin-form label,
.admin-body .login-box label {
  color: rgba(238, 244, 255, .78);
}

.admin-body .admin-form input,
.admin-body .admin-form textarea,
.admin-body .login-box input {
  border-color: rgba(184, 121, 58, .24);
  background: rgba(255, 255, 255, .045);
  color: #f8fbff;
}

.admin-body .admin-form input::placeholder,
.admin-body .admin-form textarea::placeholder,
.admin-body .login-box input::placeholder {
  color: rgba(238, 244, 255, .42);
}

.admin-body .admin-project-grid article {
  border-color: rgba(184, 121, 58, .18);
  background: rgba(255, 255, 255, .045);
}

.admin-body .admin-list > div {
  border-top-color: rgba(184, 121, 58, .18);
}

.admin-body .admin-list .unread {
  border-right-color: rgba(184, 121, 58, .72);
}

.admin-body .admin-view-link {
  color: #f3d3ad;
}

.admin-body .login-box .button,
.admin-body .admin-form .button {
  border-color: rgba(184, 121, 58, .42) !important;
  background: linear-gradient(180deg, rgba(184, 121, 58, .9), rgba(112, 69, 37, .82)) !important;
  color: #fff8ef !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 214, .24),
    0 14px 36px rgba(184, 121, 58, .18) !important;
}

.admin-body .login-box .button:hover,
.admin-body .admin-form .button:hover {
  border-color: rgba(184, 121, 58, .54) !important;
  background: linear-gradient(180deg, rgba(184, 121, 58, .96), rgba(112, 69, 37, .88)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 214, .28),
    0 18px 42px rgba(184, 121, 58, .24) !important;
}

.admin-body .admin-main > header .button,
.admin-body .admin-list button:not(.danger) {
  border-color: rgba(255, 255, 255, .16) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055)) !important;
  color: #f8fbff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 12px 32px rgba(0, 0, 0, .24) !important;
}

.admin-body .admin-main > header .button:hover,
.admin-body .admin-list button:not(.danger):hover {
  border-color: rgba(255, 255, 255, .24) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .075)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 16px 38px rgba(0, 0, 0, .3) !important;
}

.admin-body .danger,
.admin-body .admin-list .danger {
  background: linear-gradient(180deg, rgba(127, 29, 29, .82), rgba(69, 10, 10, .74)) !important;
  color: #ffe8e8 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 12px 30px rgba(127, 29, 29, .2) !important;
}

.admin-body .danger:hover,
.admin-body .admin-list .danger:hover {
  background: linear-gradient(180deg, rgba(153, 27, 27, .88), rgba(91, 12, 12, .8)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 16px 38px rgba(127, 29, 29, .28) !important;
}

/* PUBLIC_BUTTON_SYSTEM_MATCH_ADMIN_FIX */
body:not(.admin-body) .button,
body:not(.admin-body) .nav-cta,
body:not(.admin-body) .menu-toggle,
body:not(.admin-body) .filter-pill,
body:not(.admin-body) .sticky-consult a,
body:not(.admin-body) .cta-type-1,
body:not(.admin-body) .cta-type-2,
body:not(.admin-body) .wide-info a,
body:not(.admin-body) .empty .button {
  border-color: rgba(255, 255, 255, .16) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055)) !important;
  color: #f8fbff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 12px 32px rgba(0, 0, 0, .24) !important;
  backdrop-filter: blur(14px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.25) !important;
  transition:
    color .34s var(--ease-premium),
    background .34s var(--ease-premium),
    border-color .34s var(--ease-premium),
    box-shadow .34s var(--ease-premium),
    transform .34s var(--ease-premium) !important;
}

body:not(.admin-body) .button::before,
body:not(.admin-body) .nav-cta::before,
body:not(.admin-body) .menu-toggle::before,
body:not(.admin-body) .filter-pill::before,
body:not(.admin-body) .sticky-consult a::before,
body:not(.admin-body) .cta-type-1::before,
body:not(.admin-body) .cta-type-2::before {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body:not(.admin-body) .button::after,
body:not(.admin-body) .nav-cta::after,
body:not(.admin-body) .menu-toggle::after,
body:not(.admin-body) .filter-pill::after,
body:not(.admin-body) .sticky-consult a::after,
body:not(.admin-body) .cta-type-1::after,
body:not(.admin-body) .cta-type-2::after {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body:not(.admin-body) .nav-cta,
body:not(.admin-body) .button.primary,
body:not(.admin-body) .cta-type-1,
body:not(.admin-body) .sticky-consult a,
body:not(.admin-body) .booking-form .button,
body:not(.admin-body) .contact-form .button {
  border-color: rgba(184, 121, 58, .42) !important;
  background: linear-gradient(180deg, rgba(184, 121, 58, .9), rgba(112, 69, 37, .82)) !important;
  color: #fff8ef !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 214, .24),
    0 14px 36px rgba(184, 121, 58, .18) !important;
}

body:not(.admin-body) .button.ghost,
body:not(.admin-body) .cta-type-2,
body:not(.admin-body) .filter-pill,
body:not(.admin-body) .menu-toggle,
body:not(.admin-body) .wide-info a,
body:not(.admin-body) .empty .button {
  border-color: rgba(255, 255, 255, .16) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055)) !important;
  color: #f8fbff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 12px 32px rgba(0, 0, 0, .24) !important;
}

body:not(.admin-body) .nav-cta:hover,
body:not(.admin-body) .button.primary:hover,
body:not(.admin-body) .cta-type-1:hover,
body:not(.admin-body) .sticky-consult a:hover,
body:not(.admin-body) .booking-form .button:hover,
body:not(.admin-body) .contact-form .button:hover {
  border-color: rgba(184, 121, 58, .54) !important;
  background: linear-gradient(180deg, rgba(184, 121, 58, .96), rgba(112, 69, 37, .88)) !important;
  color: #fff8ef !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 214, .28),
    0 18px 42px rgba(184, 121, 58, .24) !important;
}

body:not(.admin-body) .button.ghost:hover,
body:not(.admin-body) .cta-type-2:hover,
body:not(.admin-body) .filter-pill:hover,
body:not(.admin-body) .filter-pill.active,
body:not(.admin-body) .menu-toggle:hover,
body:not(.admin-body) .wide-info a:hover,
body:not(.admin-body) .empty .button:hover {
  border-color: rgba(255, 255, 255, .24) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .075)) !important;
  color: #f8fbff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 16px 38px rgba(0, 0, 0, .3) !important;
}

/* ARTICLE_LEAD_MODAL_FIX */
body.article-modal-open {
  overflow: hidden;
}

body:not(.admin-body) .article-lead-modal[hidden] {
  display: none;
}

body:not(.admin-body) .article-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  direction: rtl;
}

body:not(.admin-body) .article-lead-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, .72);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

body:not(.admin-body) .article-lead-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(24, 21, 18, .94), rgba(9, 10, 12, .9)),
    var(--glass-bg);
  color: #f8fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 30px 90px rgba(0, 0, 0, .48);
  overflow: hidden;
}

body:not(.admin-body) .article-lead-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(184, 121, 58, .14), transparent 42%);
}

body:not(.admin-body) .article-lead-dialog > * {
  position: relative;
}

body:not(.admin-body) .article-lead-close {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

body:not(.admin-body) .article-lead-dialog h2 {
  margin: 0 0 12px;
  padding-left: 48px;
  font-size: clamp(1.7rem, 1.45rem + 1vw, 2.35rem);
}

body:not(.admin-body) .article-lead-dialog p {
  margin: 0 0 24px;
  color: rgba(248, 251, 255, .72);
  line-height: 1.9;
}

body:not(.admin-body) .article-lead-form {
  display: grid;
  gap: 16px;
}

body:not(.admin-body) .article-lead-form label {
  display: grid;
  gap: 9px;
  color: rgba(248, 251, 255, .82);
}

body:not(.admin-body) .article-lead-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  padding: 14px 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

body:not(.admin-body) .article-lead-form input:focus {
  border-color: rgba(184, 121, 58, .52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 0 0 3px rgba(184, 121, 58, .14);
}

body:not(.admin-body) .article-lead-error {
  min-height: 26px;
  margin: 0;
  color: #ffd3c4;
}

body:not(.admin-body) .article-lead-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

body:not(.admin-body) .article-download {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 10px;
}

body:not(.admin-body) .article-download p {
  margin: 0;
  color: rgba(248, 251, 255, .68);
  line-height: 1.9;
}

@media (max-width: 640px) {
  body:not(.admin-body) .article-lead-modal {
    padding: 16px;
  }

  body:not(.admin-body) .article-lead-dialog {
    padding: 28px 20px 22px;
  }

  body:not(.admin-body) .article-lead-actions,
  body:not(.admin-body) .article-lead-actions .button {
    width: 100%;
  }
}
