﻿/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --bg-primary: #0b0b0a;
  --bg-secondary: #13110f;
  --bg-card: #1b1714;
  --bg-card-hover: #241d19;
  --bg-elevated: #171412;
  --text-primary: #f6efe4;
  --text-secondary: #c4b8a7;
  --text-muted: #817769;
  --accent: #d6b56d;
  --accent-light: #efd697;
  --accent-dim: #8f7140;
  --burgundy: #5b1826;
  --emerald: #0e5b45;
  --walnut: #4a2d1f;
  --border: rgba(214, 181, 109, 0.14);
  --border-strong: rgba(214, 181, 109, 0.32);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

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

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

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  background: rgba(15, 14, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(15, 14, 11, 0.95);
  box-shadow: 0 1px 0 var(--border);
}

.gBa9Bc {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.zdvj9ZMqVW {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0;
  transition: color 0.3s;
}

.zdvj9ZMqVW span {
  color: var(--accent);
}

.SRRed0AXkqE {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.SRRed0AXkqE a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-out);
  position: relative;
  padding: 0.3rem 0;
}

.SRRed0AXkqE a::before,
.SRRed0AXkqE a::after {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1.1em;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
}

.SRRed0AXkqE a::before {
  content: '[';
  left: -0.6em;
  transform: translateX(4px);
}

.SRRed0AXkqE a::after {
  content: ']';
  right: -0.6em;
  transform: translateX(-4px);
}

.SRRed0AXkqE a:hover,
.SRRed0AXkqE a.active {
  color: var(--accent);
  letter-spacing: 0;
}

.SRRed0AXkqE a:hover::before,
.SRRed0AXkqE a:hover::after,
.SRRed0AXkqE a.active::before,
.SRRed0AXkqE a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.C73MBVYllb {
  font-size: 0.82rem !important;
  letter-spacing: 0;
  padding: 0.75rem 1.8rem !important;
  border: 1px solid var(--accent-dim);
  color: var(--accent) !important;
  transition: all 0.3s var(--ease-smooth) !important;
}

.C73MBVYllb::before,
.C73MBVYllb::after { display: none !important; }

.C73MBVYllb:hover {
  background: var(--accent);
  color: var(--bg-primary) !important;
  border-color: var(--accent);
  letter-spacing: 0;
}

/* Mobile menu */
.Zu845ap {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.Zu845ap span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.Zu845ap.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.Zu845ap.open span:nth-child(2) {
  opacity: 0;
}

.Zu845ap.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ========================================
   HERO â€” SPLIT LAYOUT
   ======================================== */
.sYCuGNLv3hR {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.NAfF049B7g {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 10vh, 8rem) clamp(2rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.u1y4bmif {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
}

.u1y4bmif::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.z6YZwbaB6h {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.4s forwards;
}

.z6YZwbaB6h em {
  font-style: italic;
  color: var(--accent);
}

.vjE4gN6ywwK {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.6s forwards;
}

.qgamd9Qa {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.8s forwards;
}

.airzaTYi {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.airzaTYi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.airzaTYi:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
}

.airzaTYi:hover::before {
  opacity: 1;
}

.airzaTYi svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.airzaTYi:hover svg {
  transform: translateX(3px);
}

.IcOzfH58h {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.IcOzfH58h:hover {
  color: var(--accent);
}

/* Hero visual side */
.XAAXJegsf {
  position: relative;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.XAAXJegsf::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
}

.NL0RL8vxorX {
  position: relative;
  width: 80%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeScale 1s var(--ease-out) 0.5s forwards;
}

.hNSlUoaXj {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.tnk2m7 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.tnk2m7:nth-child(1) { background: #e06c60; opacity: 0.7; }
.tnk2m7:nth-child(2) { background: #e5bf4e; opacity: 0.7; }
.tnk2m7:nth-child(3) { background: #61c354; opacity: 0.7; }

.rQVhTxE {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0;
}

.nipGZZq {
  padding: 24px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.nipGZZq .kw { color: #c792ea; }
.nipGZZq .BPipLoUNT { color: #82aaff; }
.nipGZZq .str { color: #c3e88d; }
.nipGZZq .cm { color: var(--text-muted); font-style: italic; }
.nipGZZq .EDJeZlOTvCv { color: #f78c6c; }
.nipGZZq .op { color: #89ddff; }
.nipGZZq .pr { color: var(--accent); }
.nipGZZq .JRTQPhs { color: #ffcb6b; }

/* Floating decorative elements */
.lWtOv4 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}

.jLKC1AQiT {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.VnJDd3 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 8%;
  animation-delay: -2s;
}

.F2QVU5qddE {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 20%;
  opacity: 0.4;
  animation-delay: -4s;
}

/* ========================================
   SECTIONS â€” SHARED
   ======================================== */
.section {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.ZesmjuZk {
  max-width: 1100px;
  margin: 0 auto;
}

.RcM9a3CalP {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.RcM9a3CalP::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-dim);
}

.tapfIoVJNl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.oxpNmhK91mh {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

.Eux041 {
  width: 100%;
  height: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ========================================
   ABOUT
   ======================================== */
.BasFmlZ {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.Hg30jI4p {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.A3eys0zcYgq {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
}

.A3eys0zcYgq svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.A3eys0zcYgq span {
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tMLf7vjWxO0 h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tMLf7vjWxO0 p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.9;
}

.GKaa3nmt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.Bb2T8t {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.ERuAnPkSM {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  letter-spacing: 0;
}

/* ========================================
   SKILLS / TECH STACK
   ======================================== */
.cxszPUpW {
  background: var(--bg-secondary);
}

.bVdeTk6U {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.TblNY2 h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.GdKv8KJg {
  margin-bottom: 1.4rem;
}

.izGd6pFS {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.QI4GZ4tT {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.ZL66LgTHq {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.D1eI3bOs8E {
  width: 100%;
  height: 3px;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.qLrXNZUW3 {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 2px;
  width: var(--w);
  animation: barFill 1.2s var(--ease-out) forwards;
}

@keyframes barFill {
  from { width: 0; }
  to { width: var(--w); }
}

/* Service tags */
.dnpU8NZzKv {
  margin-top: 3rem;
}

.dnpU8NZzKv h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.B3omhNtxIF3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.qL1yVd5yjcK {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
}

.qL1yVd5yjcK:hover {
  border-color: var(--border-strong);
  color: var(--accent);
  transform: translateY(-2px);
}

.qL1yVd5yjcK svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================================
   PROJECTS
   ======================================== */
.GXzhc8Ylb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.8rem;
}

.wkzRrwVTd:first-child {
  grid-row: 1 / 3;
}

.wkzRrwVTd:first-child .GbQIZQao {
  aspect-ratio: 4/3;
}

.wkzRrwVTd {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.wkzRrwVTd:nth-child(2),
.wkzRrwVTd:nth-child(3) {
  flex-direction: row;
}

.wkzRrwVTd:nth-child(2) .GbQIZQao,
.wkzRrwVTd:nth-child(3) .GbQIZQao {
  aspect-ratio: auto;
  min-width: 180px;
  max-width: 200px;
  flex-shrink: 0;
}

.wkzRrwVTd:nth-child(4) {
  grid-column: 1 / -1;
  flex-direction: row;
}

.wkzRrwVTd:nth-child(4) .GbQIZQao {
  aspect-ratio: auto;
  min-width: 280px;
  max-width: 340px;
  flex-shrink: 0;
}

.wkzRrwVTd:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.GbQIZQao {
  aspect-ratio: 16/10;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kr3rnNQ3ZN {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 1px 1px, var(--accent) 1px, transparent 0);
  background-size: 20px 20px;
}

.ftY4nyIgG {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  color: var(--accent-dim);
}

.S1iKJqc {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rVAqriDqol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rRAWnq90 {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 169, 110, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

.OEiQ4Kash {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.swK6h3 {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.vgai5tO {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease-out);
}

.vgai5tO:hover {
  gap: 0.8rem;
}

.vgai5tO svg {
  width: 14px;
  height: 14px;
}

/* ========================================
   EXPERIENCE
   ======================================== */
.kOQgg5l {
  background: var(--bg-secondary);
}

.kOQgg5l .RcM9a3CalP {
  justify-content: center;
}

.kOQgg5l .tapfIoVJNl {
  text-align: center;
}

.kOQgg5l .oxpNmhK91mh {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.KZJS9pH2 {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.KZJS9pH2::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-dim), var(--border), transparent);
  transform: translateX(-50%);
}

.aLR4EQs {
  position: relative;
  padding-bottom: 3.5rem;
  width: 46%;
}

.aLR4EQs:nth-child(odd) {
  margin-left: 0;
  text-align: right;
  padding-right: 2.5rem;
}

.aLR4EQs:nth-child(even) {
  margin-left: 54%;
  text-align: left;
  padding-left: 2.5rem;
}

.aLR4EQs:last-child {
  padding-bottom: 0;
}

.EZ7z2TKg {
  position: absolute;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
}

.aLR4EQs:nth-child(odd) .EZ7z2TKg {
  right: -6px;
}

.aLR4EQs:nth-child(even) .EZ7z2TKg {
  left: -6px;
}

.wMceNECZdp {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.rer3HwXhGe {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.XUOn22 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.ytazOijQjf {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ========================================
   CONTACT
   ======================================== */
.qgPl6W5qKr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.eV0vHm h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.eV0vHm p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.CYFB00KWB {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s;
  margin-bottom: 2rem;
}

.CYFB00KWB:hover {
  color: var(--accent-light);
}

.CYFB00KWB svg {
  width: 20px;
  height: 20px;
}

.AZPBINI {
  display: flex;
  gap: 1rem;
}

.KgPCOOjc {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-smooth);
}

.KgPCOOjc:hover {
  color: var(--accent);
  border-color: var(--border-strong);
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-2px);
}

.KgPCOOjc svg {
  width: 18px;
  height: 18px;
}

/* Contact form */
.tVI0ee {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.XwAoz69ldL0 {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.XwAoz69ldL0 label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-muted);
}

.XwAoz69ldL0 input,
.XwAoz69ldL0 textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}

.XwAoz69ldL0 input::placeholder,
.XwAoz69ldL0 textarea::placeholder {
  color: var(--text-muted);
}

.XwAoz69ldL0 input:focus,
.XwAoz69ldL0 textarea:focus {
  border-color: var(--accent-dim);
}

.XwAoz69ldL0 textarea {
  resize: vertical;
  min-height: 120px;
}

.bofl9wFylng {
  align-self: flex-start;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.bofl9wFylng:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */
.VmuoVEma {
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--border);
}

.VmuoVEma p {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0;
}

.VmuoVEma p + p {
  margin-top: 0.4rem;
}

.VmuoVEma a {
  color: var(--accent);
  transition: color 0.3s;
}

.VmuoVEma a:hover {
  color: var(--accent-light);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .sYCuGNLv3hR {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .NAfF049B7g {
    padding: 8rem 2rem 4rem;
    order: 1;
  }

  .XAAXJegsf {
    order: 2;
    min-height: 50vh;
    padding: 3rem 2rem;
  }

  .bVdeTk6U {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .BasFmlZ {
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
  }

  .qgPl6W5qKr {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .wkzRrwVTd:nth-child(2),
  .wkzRrwVTd:nth-child(3) {
    flex-direction: column;
  }

  .wkzRrwVTd:nth-child(2) .GbQIZQao,
  .wkzRrwVTd:nth-child(3) .GbQIZQao {
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 16/10;
  }
}

@media (max-width: 768px) {
  .SRRed0AXkqE {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-elevated);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 120px 2rem 80px;
    border-left: 1px solid var(--border);
    transition: right 0.4s var(--ease-smooth);
    overflow-y: auto;
  }

  .SRRed0AXkqE.open {
    right: 0;
  }

  .Zu845ap {
    display: flex;
    z-index: 1001;
  }

  .NAfF049B7g {
    padding: 7rem 1.5rem 3rem;
  }

  .BasFmlZ {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .Hg30jI4p {
    max-width: 220px;
  }

  .GKaa3nmt {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

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

  .wkzRrwVTd:first-child {
    grid-row: auto;
  }

  .wkzRrwVTd:nth-child(2),
  .wkzRrwVTd:nth-child(3),
  .wkzRrwVTd:nth-child(4) {
    flex-direction: column;
  }

  .wkzRrwVTd:nth-child(2) .GbQIZQao,
  .wkzRrwVTd:nth-child(3) .GbQIZQao,
  .wkzRrwVTd:nth-child(4) .GbQIZQao {
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 16/10;
  }

  .wkzRrwVTd:nth-child(4) {
    grid-column: auto;
  }

  /* Timeline collapse to single column */
  .KZJS9pH2::before {
    left: 0;
    transform: none;
  }

  .aLR4EQs {
    width: 100%;
    text-align: left !important;
    padding-left: 2rem !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
  }

  .EZ7z2TKg {
    left: -6px !important;
    right: auto !important;
  }

  .pF2nb7O {
    grid-template-columns: repeat(26, 1fr);
  }
}

@media (max-width: 480px) {
  .z6YZwbaB6h {
    font-size: 2.4rem;
  }

  .qgamd9Qa {
    flex-direction: column;
    align-items: flex-start;
  }

  .Bb2T8t {
    font-size: 1.6rem;
  }
}


/* ========================================
   SOLTREVIAN ADAPTATION
   ======================================== */
.XAAXJegsf.yRT7wjQayL {
  min-height: 100vh;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, rgba(91, 24, 38, 0.26), rgba(14, 91, 69, 0.18)), var(--bg-secondary);
}

.DzU61ewWG {
  position: relative;
  z-index: 1;
  width: min(82%, 460px);
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.46);
  opacity: 0;
  animation: fadeScale 1s var(--ease-out) 0.5s forwards;
}

.DzU61ewWG.yMBomzaX {
  width: min(86%, 520px);
  aspect-ratio: 16/11;
}

.DzU61ewWG img,
.x5jI26v7Z img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.DzU61ewWG::after,
.GbQIZQao::after,
.Hg30jI4p::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,10,0.34));
  pointer-events: none;
}

.lWe52Uy4Z,
.hOh8rn68wA9,
.llE4dbB0sc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.vh112SEiX,
.rRAWnq90,
.BbOoQdD {
  border: 1px solid var(--border);
}

.vh112SEiX,
.BbOoQdD {
  color: var(--accent);
  background: rgba(214, 181, 109, 0.08);
  padding: 0.36rem 0.74rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.llE4dbB0sc {
  list-style: none;
  margin-top: 1.5rem;
}

.llE4dbB0sc li {
  color: var(--text-secondary);
  background: rgba(246, 239, 228, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
}

.X8K4lW9yD0 {
  background: linear-gradient(135deg, rgba(91, 24, 38, 0.26), rgba(14, 91, 69, 0.18));
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-secondary);
}

.X8K4lW9yD0 strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.onEUgGa7XZK {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.OoPgwBQ0 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.U8N2cX {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
}

.U8N2cX h4,
.cnolR3mbVN h3,
.faq-question span,
.tTn7sHuyor strong,
.QVkfB1PcK47 strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
}

.U8N2cX h4 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.U8N2cX p,
.cnolR3mbVN p,
.cnolR3mbVN li,
.h8Jh2TsRAO p,
.tTn7sHuyor span,
.QVkfB1PcK47 span {
  color: var(--text-secondary);
  font-weight: 300;
}

.QH50lhdP {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  color: var(--text-primary);
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 1.1rem;
}

.QhSFOg9RcS3 {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex: 0 0 auto;
  position: relative;
}

.QhSFOg9RcS3::before,
.QhSFOg9RcS3::after {
  content: '';
  position: absolute;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.QhSFOg9RcS3::before { width: 10px; height: 1px; }
.QhSFOg9RcS3::after { width: 1px; height: 10px; transition: opacity 0.25s; }
.faq-item.open .QhSFOg9RcS3::after { opacity: 0; }

.h8Jh2TsRAO {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth);
}

.faq-item.open .h8Jh2TsRAO {
  max-height: 260px;
}

.h8Jh2TsRAO p {
  padding: 0 1.25rem 1.2rem;
  line-height: 1.8;
}

.cnolR3mbVN {
  display: grid;
  gap: 1.4rem;
}

.ho4Pe2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.cnolR3mbVN h3 {
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
}

.cnolR3mbVN ul {
  padding-left: 1.2rem;
}

.cnolR3mbVN li + li {
  margin-top: 0.45rem;
}

.QVkfB1PcK47,
.tTn7sHuyor {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.PPbKYPhV0,
.ujRx4XziKc {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.myNjVShrm {
  min-height: 320px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214,181,109,0.12), rgba(14,91,69,0.12)),
    repeating-linear-gradient(45deg, rgba(246,239,228,0.04) 0, rgba(246,239,228,0.04) 1px, transparent 1px, transparent 24px),
    var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
}

.myNjVShrm strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.VmuoVEma {
  text-align: left;
}

.wziyagXa {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.P6dj4ycQlGa {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.VmuoVEma h4 {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.vT9GwzFN6RC {
  display: grid;
  gap: 0.35rem;
}

.CacZQGFZnz {
  max-width: 1100px;
  margin: 1.8rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.wc0gYB {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  bottom: 1rem;
  z-index: 1200;
  max-width: 760px;
  margin: 0 auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: rgba(23, 20, 18, 0.96);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.wc0gYB.visible {
  display: flex;
}

.wc0gYB p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.wc0gYB button {
  flex: 0 0 auto;
  padding: 0.75rem 1.2rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .XAAXJegsf.yRT7wjQayL {
    min-height: 54vh;
  }

  .OoPgwBQ0,
  .wziyagXa {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wc0gYB,
  .PPbKYPhV0,
  .ujRx4XziKc {
    align-items: flex-start;
    flex-direction: column;
  }

  .wc0gYB.visible {
    display: flex;
  }

  .OoPgwBQ0 {
    gap: 0.8rem;
  }
}

