*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0d0d12;
  --cream: #faf8f3;
  --gold: #c9a84c;
  --gold-light: #e8d49a;
  --slate: #3a3f5c;
  --mist: #e8e6df;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* CURSOR */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}

/* NAV — slim height, elegant small-caps style text */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 4rem;
  background: rgba(250, 248, 243, 0.97);
  border-bottom: 1px solid var(--mist);
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
}

nav.scrolled {
  background: rgba(250, 248, 243, 0.97);
  border-bottom: 1px solid var(--mist);
  padding: 0.45rem 4rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  transition: opacity 0.35s;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: invert(0) brightness(1);
  transition: filter 0.35s;
}

nav.scrolled .nav-logo img {
  filter: invert(0) brightness(1);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  transition: color 0.35s;
  line-height: 1.1;
}

.nav-logo-text span {
  color: var(--gold);
}

nav.scrolled .nav-logo-text {
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

nav.scrolled .nav-links a {
  color: var(--slate);
}

nav.scrolled .nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.42rem 1.3rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
}

nav.scrolled .nav-cta {
  color: var(--ink);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 6rem;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin-top: 2rem;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--slate);
  max-width: 420px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover span {
  color: var(--ink);
}

.btn-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.btn-link:hover {
  color: var(--gold);
}

.btn-link svg {
  transition: transform 0.3s;
}

.btn-link:hover svg {
  transform: translateX(4px);
}

.hero-right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.4s forwards;
}

.hero-right-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #0d1026 60%, #060810 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 18s linear infinite;
}

@keyframes gridDrift {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(48px, 48px)
  }
}

.hero-right-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.u-svg {
  width: 110px;
  height: 110px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: scaleIn 1s ease 1.2s forwards;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 360px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 1.4rem 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.stat-card:nth-child(1) {
  animation: fadeUp 0.7s ease 1.4s forwards
}

.stat-card:nth-child(2) {
  animation: fadeUp 0.7s ease 1.6s forwards
}

.stat-card:nth-child(3) {
  animation: fadeUp 0.7s ease 1.8s forwards
}

.stat-card:nth-child(4) {
  animation: fadeUp 0.7s ease 2.0s forwards
}

.sc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
}

.sc-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

.sc-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* DIVIDER */
.dq {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 6rem;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.dq-line {
  flex: 1;
  height: 1px;
  background: var(--mist);
}

.dq-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--slate);
  text-align: center;
  font-weight: 600;
}

/* ABOUT */
.about {
  padding: 8rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sec-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sec-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.sec-h2 em {
  font-style: italic;
  color: var(--gold);
}

.sec-body {
  margin-top: 1.5rem;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--slate);
  font-weight: 300;
}

.about-visual {
  position: relative;
  height: 480px;
}

.av-back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 82%;
  height: 88%;
  background: linear-gradient(135deg, var(--slate), #1a1f3a);
}

.av-grid-pat {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(250, 248, 243, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(250, 248, 243, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.av-gold {
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 56%;
  background: var(--gold);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-gold-inner {
  text-align: center;
  color: var(--ink);
}

.av-gold-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
}

.av-gold-txt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.av-quote {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--cream);
  border: 1px solid var(--mist);
  padding: 1.4rem 1.8rem;
  max-width: 250px;
  z-index: 4;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.av-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

.av-quote cite {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* SUBJECTS */
.subjects {
  padding: 8rem 6rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.subjects::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.subj-hd {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.subj-hd .sec-h2 {
  color: var(--cream);
}

.subj-hd .sec-h2 em {
  color: var(--gold);
}

.subj-hd .sec-tag {
  color: rgba(201, 168, 76, 0.8);
}

.subj-hd .sec-tag::before {
  background: rgba(201, 168, 76, 0.8);
}

.subj-intro {
  max-width: 300px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(250, 248, 243, 0.45);
  font-weight: 300;
}

.subj-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.12);
}

.subj-card {
  background: var(--ink);
  padding: 2.5rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.subj-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.subj-card:hover {
  background: rgba(201, 168, 76, 0.05);
}

.subj-card:hover::after {
  transform: scaleX(1);
}

.subj-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
  transition: transform 0.3s;
  color: var(--gold);
}

.subj-card:hover .subj-icon {
  transform: translateY(-4px);
}

.subj-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.subj-desc {
  font-size: 0.81rem;
  line-height: 1.72;
  color: rgba(250, 248, 243, 0.42);
}

.subj-pills {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: rgba(201, 168, 76, 0.65);
}

/* APPROACH */
.approach {
  padding: 8rem 6rem;
}

.appr-ctr {
  text-align: center;
  margin-bottom: 4rem;
}

.appr-ctr .sec-tag {
  justify-content: center;
}

.appr-ctr .sec-tag::before {
  display: none;
}

.appr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mist);
}

.appr-card {
  background: var(--cream);
  padding: 3.2rem 2.4rem;
  position: relative;
  transition: background 0.3s;
}

.appr-card:hover {
  background: #f3f0e8;
}

.appr-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1;
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
}

.appr-icon {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}

.appr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}

.appr-desc {
  font-size: 0.87rem;
  line-height: 1.82;
  color: var(--slate);
  font-weight: 300;
}

.appr-line {
  display: block;
  margin-top: 2rem;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* SMART ROOM */
.smartroom {
  padding: 8rem 0 8rem 6rem;
  background: linear-gradient(155deg, #0f1228 0%, #1a1f3a 100%);
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.smartroom .sec-tag {
  color: rgba(201, 168, 76, 0.8);
}

.smartroom .sec-tag::before {
  background: rgba(201, 168, 76, 0.8);
}

.smartroom .sec-h2 {
  color: var(--cream);
}

.smartroom .sec-h2 em {
  color: var(--gold);
}

.smartroom .sec-body {
  color: rgba(250, 248, 243, 0.5);
}

.sr-feats {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.sr-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(201, 168, 76, 0.14);
  transition: border-color 0.3s, background 0.3s;
}

.sr-feat:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
}

.sr-feat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sr-feat-body {
  font-size: 0.86rem;
  color: rgba(250, 248, 243, 0.6);
  line-height: 1.5;
}

.sr-feat-body strong {
  display: block;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.cls-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 13;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 100%);
  mask-image: linear-gradient(to right, transparent, black 15%, black 100%);
  transform: translateX(5%);
}

.cls-slideshow::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 100px 0 100px -50px #1a1f3a;
  pointer-events: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(8, 10, 22, 0.8));
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  text-align: right;
  letter-spacing: 0.05em;
}


/* TESTIMONIALS */
.testi {
  padding: 8rem 6rem;
}

.testi-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  padding: 2.4rem;
  border: 1px solid var(--mist);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: -0.8rem;
  left: 1.4rem;
  line-height: 1;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--slate);
  font-weight: 300;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testi-auth {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}

.testi-role {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

/* CTA */
.cta-sec {
  padding: 8rem 6rem;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: 'UNICORN';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.018);
  letter-spacing: 0.1em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.cta-tag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.75);
}

.cta-tag-wrap span {
  width: 28px;
  height: 1px;
  background: rgba(201, 168, 76, 0.5);
  display: inline-block;
}

.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-sub {
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(250, 248, 243, 0.42);
  max-width: 460px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  position: relative;
  z-index: 2;
}

.btn-gold {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-ol {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 248, 243, 0.28);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-ol:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* FOOTER */
footer {
  padding: 4rem 6rem;
  background: #07090f;
  border-top: 1px solid #1a1d28;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.ft-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.ft-logo span {
  color: var(--gold);
}

.ft-desc {
  font-size: 0.81rem;
  line-height: 1.72;
  color: rgba(250, 248, 243, 0.3);
  max-width: 230px;
}

.ft-col-title {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.ft-links {
  list-style: none;
}

.ft-links li+li {
  margin-top: 0.65rem;
}

.ft-links a {
  font-size: 0.81rem;
  color: rgba(250, 248, 243, 0.38);
  text-decoration: none;
  transition: color 0.3s;
}

.ft-links a:hover {
  color: var(--cream);
}

.ft-btm {
  padding: 1.4rem 6rem;
  background: #07090f;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-btm p {
  font-size: 0.7rem;
  color: rgba(250, 248, 243, 0.18);
  letter-spacing: 0.05em;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

/* reveal — starts visible, animates when JS adds class */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--ink)
}

::-webkit-scrollbar-thumb {
  background: var(--gold)
}

/* RESPONSIVE */
@media(max-width:1024px) {

  nav,
  nav.scrolled {
    padding: 0.5rem 1.5rem
  }

  .nav-links {
    display: none
  }

  .hero {
    grid-template-columns: 1fr
  }

  .hero-left {
    padding: 7rem 1.8rem 4rem
  }

  .hero-right {
    height: auto;
    min-height: 480px;
    position: relative;
    z-index: 5;
  }

  .hero-right-inner {
    position: relative;
    padding: 3rem 1.5rem;
  }

  .dq {
    padding: 2.5rem 2rem
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem
  }

  .about-visual {
    height: 320px
  }

  .av-quote {
    left: 0
  }

  .subjects {
    padding: 5rem 2rem
  }

  .subj-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem
  }

  .subj-grid {
    grid-template-columns: 1fr 1fr
  }

  .approach {
    padding: 5rem 2rem
  }

  .appr-grid {
    grid-template-columns: 1fr;
    gap: 1px
  }

  .smartroom {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }

  .cls-slideshow {
    transform: none;
    mask-image: none;
    -webkit-mask-image: none;
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 4px;
    aspect-ratio: 16 / 11;
  }

  .cls-slideshow::before {
    display: none;
  }

  .testi {
    padding: 5rem 2rem
  }

  .testi-hd {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .cta-sec {
    padding: 5rem 2rem
  }

  .cta-btns {
    flex-direction: column
  }

  footer {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 2rem;
    gap: 2.5rem;
  }

  .ft-btm {
    padding: 1.2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .subj-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:800px) {
  .subj-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .subj-grid {
    grid-template-columns: 1fr;
  }

  .stat-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .nav-logo-text {
    font-size: 1.2rem;
  }

  .hero-h1 {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media(max-width:380px) {

  nav,
  nav.scrolled {
    padding: 0.5rem 1rem;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  .nav-logo-text span {
    display: block;
    font-size: 0.8em;
    margin-top: -2px;
  }

  .nav-cta {
    padding: 0.35rem 0.8rem;
    font-size: 0.65rem;
  }

  .hero-left {
    padding: 6rem 1.2rem 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .btn-primary,
  .btn-link {
    justify-content: center;
  }

  .sec-h2 {
    font-size: 1.8rem;
  }

  .appr-num {
    font-size: 2.5rem;
    top: 0.5rem;
    right: 1rem;
    opacity: 0.4;
  }

  .testi-card {
    padding: 1.8rem 1.2rem;
  }

  .av-quote {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    max-width: none;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }

  .stat-card {
    padding: 1.2rem 1rem;
  }
}