/* ═══ DESIGN SYSTEM: INK & CREAM ═══ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Mono:wght@300;400;500&family=Figtree:wght@300;400;500;600;700&display=swap');

:root {
  --ink:    #0e0d0b;
  --ink2:   #1c1a16;
  --warm:   #f2efe8;
  --cream:  #faf9f6;
  --border: #dedad2;
  --mid:    #7a7568;
  --muted:  #aea89e;
  --acc:    #c8a96e;
  --acc2:   #e8d5a8;
  --white:  #ffffff;
}

*,*::before,*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Figtree', sans-serif;
  overflow-x: hidden;
  cursor: none; /* Custom cursor used instead */
}

/* ─── CURSOR ─── */
.cur {
  width: 8px;
  height: 8px;
  background: var(--acc);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform .08s;
}

.cur-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200,169,110,.35);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 4%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s cubic-bezier(0.23,1,0.32,1);
  background: rgba(250,249,246,.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(250,249,246,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  border-color: var(--border);
  height: 60px; /* Subtle height reduction on scroll */
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .02em;
}

.logo b {
  color: var(--acc);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-btn {
  background: var(--ink);
  color: var(--cream) !important;
  padding: .5rem 1.3rem;
  border-radius: 2px;
  font-size: .75rem !important;
  letter-spacing: .08em !important;
  transition: background .2s !important;
}

.nav-btn:hover {
  background: var(--acc) !important;
  color: var(--ink) !important;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(250,249,246,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mid);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

.lang-btn:hover {
  border-color: var(--acc);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.lang-btn span.sep {
  width: 1px;
  height: 8px;
  background: var(--border);
  opacity: 0.5;
}

.lang-btn .active {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}

.lang-btn .active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: var(--acc);
  border-radius: 50%;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.ham span {
  width: 22px;
  height: 1px;
  background: var(--ink);
  display: block;
  transition: transform .3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink2);
  padding: 10rem 5% 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 80%, rgba(200,169,110,.12) 0%, transparent 70%);
}

.hl-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  color: var(--acc);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: .8;
}

.hl-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--acc);
}

.hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--acc);
}

.hero-left p {
  font-size: 1rem;
  color: rgba(242,239,232,.55);
  font-weight: 300;
  max-width: 380px;
  line-height: 1.8;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-a {
  background: var(--acc);
  color: var(--ink);
  font-weight: 600;
  font-size: .82rem;
  padding: .85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .25s, transform .2s;
  display: inline-block;
}

.btn-a:hover {
  background: var(--acc2);
  transform: translateY(-2px);
}

.btn-b {
  border: 1px solid rgba(242,239,232,.2);
  color: rgba(242,239,232,.7);
  font-size: .8rem;
  padding: .85rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: border-color .2s, color .2s;
  display: inline-block;
}

.btn-b:hover {
  border-color: var(--acc);
  color: var(--acc);
}

/* HERO TICKER */
.hero-ticker {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 18s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(242,239,232,.18);
  letter-spacing: .04em;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HERO STATS */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
}

.hs {
  flex: 1;
  padding: 1.5rem 5%;
  border-right: 1px solid rgba(255,255,255,.06);
}

.hs:last-child {
  border-right: none;
}

.hs strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: -.03em;
  line-height: 1;
}

.hs strong span {
  color: var(--acc);
}

.hs small {
  font-size: .7rem;
  color: rgba(242,239,232,.35);
  font-family: 'DM Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .3rem;
  display: block;
}

/* HERO RIGHT */
.hero-right {
  background: var(--warm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hr-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem 10% 3rem;
}

.hr-tag {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hr-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.hr-cite {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .06em;
}

.hr-projects {
  border-top: 1px solid var(--border);
}

.proj-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 10%;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  position: relative;
  text-decoration: none;
}

.proj-item:hover {
  background: rgba(200,169,110,.06);
}

.proj-item:hover .proj-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.proj-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.proj-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.proj-type {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

.proj-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc);
}

.proj-arrow {
  font-size: .85rem;
  color: var(--acc);
  opacity: 0;
  transition: transform .2s, opacity .2s;
}

/* ─── MARQUEE DIVIDER ─── */
.marquee-bar {
  background: var(--acc);
  padding: .8rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(200,169,110,.3);
  border-bottom: 1px solid rgba(200,169,110,.3);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-sep {
  color: rgba(14,13,11,.35);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.sec {
  padding: 8rem 4%;
}

.sec-warm {
  background: var(--warm);
}

.sec-ink {
  background: var(--ink2);
}

.sec-cream {
  background: var(--cream);
}

.lbl {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  color: var(--acc);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.lbl::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--acc);
}

.ttl {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Increased slightly */
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.ttl-cream {
  color: var(--cream);
}

.ttl em {
  font-style: italic;
  color: var(--acc);
}

.sub {
  font-size: .95rem;
  color: var(--mid);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.85;
}

.sub-cream {
  color: rgba(242,239,232,0.5);
}

/* ─── SERVICES ─── */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.svc-sticky {
  position: sticky;
  top: 100px;
}

.svc-list {
  display: flex;
  flex-direction: column;
}

.svc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  cursor: default;
}

.svc-item:first-child {
  border-top: 1px solid var(--border);
}

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  letter-spacing: -.04em;
  transition: color .3s;
}

.svc-item:hover .svc-num {
  color: var(--acc);
}

.svc-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
  transition: color .3s;
}

.svc-item:hover .svc-content h3 {
  color: var(--acc);
}

.svc-content p {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 480px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1rem;
}

.svc-tag {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .2rem .55rem;
  border-radius: 1px;
  letter-spacing: .04em;
}

/* ─── PROCESS ─── */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 5rem;
}

.proc-step {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  transition: background .3s;
}

.proc-step:hover {
  background: rgba(255,255,255,.02);
}

.proc-step:nth-child(3n) {
  border-right: none;
}

.proc-step:nth-last-child(-n+3) {
  border-bottom: none;
}

.pn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -.04em;
}

.proc-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: .6rem;
}

.proc-step p {
  font-size: .83rem;
  color: rgba(242,239,232,0.4);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── PRICING ─── */
.price-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 5rem;
}

.price-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .3s;
}

.price-card:hover {
  background: var(--white);
}

.price-card.featured {
  background: var(--ink2);
}

.price-card.featured:hover {
  background: var(--ink);
}

.pc-top {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.price-card.featured .pc-top {
  color: var(--acc);
}

.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: -.01em;
}

.price-card.featured h3 {
  color: var(--cream);
}

.pc-from {
  font-size: .7rem;
  color: var(--muted);
  display: block;
  margin-bottom: .2rem;
  font-family: 'DM Mono', monospace;
}

.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
  display: block;
  margin-bottom: 2rem;
}

.price-card.featured .pc-from {
  color: rgba(242,239,232,0.35);
}

.price-card.featured .pc-price {
  color: var(--cream);
}

.pc-div {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.8rem;
}

.price-card.featured .pc-div {
  border-color: rgba(255,255,255,.08);
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
  margin-bottom: 2rem;
}

.pc-f {
  font-size: .83rem;
  color: var(--mid);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  line-height: 1.5;
}

.pc-f::before {
  content: '→';
  color: var(--acc);
  flex-shrink: 0;
  font-size: .7rem;
  margin-top: 2px;
  font-family: 'DM Mono', monospace;
}

.price-card.featured .pc-f {
  color: rgba(242,239,232,0.5);
}

.pc-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--acc);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  font-weight: 500;
  padding: .22rem .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0 0 3px 3px;
  white-space: nowrap;
}

.pc-btn {
  display: block;
  text-align: center;
  padding: .8rem 1rem;
  border-radius: 2px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
}

.pc-btn-out {
  border: 1px solid var(--border);
  color: var(--ink);
}

.pc-btn-out:hover {
  border-color: var(--acc);
  color: var(--acc);
}

.pc-btn-fill {
  background: var(--acc);
  color: var(--ink);
}

.pc-btn-fill:hover {
  background: var(--acc2);
}

.price-addon {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.8rem 2rem;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.price-addon strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
  margin-bottom: .2rem;
}

.price-addon span {
  font-size: .85rem;
  color: var(--mid);
}

/* ─── CALC ─── */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  margin-top: 5rem;
  align-items: start;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cf-label {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  color: var(--acc);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: block;
}

.cf-select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  color: var(--cream);
  padding: .9rem 1.1rem;
  font-family: 'Figtree', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23aea89e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.cf-select:focus {
  border-color: var(--acc);
}

.cf-select option {
  background: #1c1a16;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.ck {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.ck:hover {
  border-color: rgba(200,169,110,.3);
}

.ck input {
  accent-color: var(--acc);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.ck-t span {
  display: block;
  font-size: .83rem;
  color: var(--cream);
}

.ck-t small {
  font-size: .72rem;
  color: var(--muted);
}

.calc-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
  position: sticky;
  top: 88px;
}

.cp-lbl {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.cp-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 3.2rem;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .4rem;
}

.cp-price em {
  color: var(--acc);
  font-style: normal;
}

.cp-note {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-family: 'DM Mono', monospace;
  letter-spacing: .04em;
}

.cp-rows {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.cp-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--muted);
}

.cp-row span:last-child {
  color: var(--ink);
}

.calc-cta {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  font-weight: 500;
  font-size: .85rem;
  padding: .9rem;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s;
}

.calc-cta:hover {
  background: var(--acc);
  color: var(--ink);
}

/* ─── CASES ─── */
.cases-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 5rem;
}

.case-card {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: background .3s;
  text-decoration: none;
}

.case-card:hover {
  background: var(--white);
}

.case-card:hover .ca-arrow {
  opacity: 1;
  transform: translateX(0);
}

.case-thumb {
  height: 220px;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.case-card:hover .case-thumb img {
  opacity: 1;
}

.case-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(200,169,110,.12));
}

.ct-word {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--border);
  letter-spacing: -.04em;
  user-select: none;
  position: absolute;
  z-index: 1;
}

.ca-live {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  color: var(--acc);
  border: 1px solid rgba(200,169,110,.3);
  padding: .2rem .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 1px;
  background: rgba(250,249,246,.9);
  z-index: 2;
}

.case-body {
  padding: 2rem;
}

.ca-type {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.case-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}

.case-body p {
  font-size: .83rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
}

.ca-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.ca-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--acc);
  letter-spacing: -.03em;
  line-height: 1;
}

.ca-stat small {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .06em;
  font-family: 'DM Mono', monospace;
}

.ca-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: .85rem;
  color: var(--acc);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
}

/* ─── BLOG ─── */
.blog-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.blog-card {
  background: var(--cream);
  padding: 2.5rem;
  cursor: pointer;
  transition: background .25s;
  position: relative;
  text-decoration: none;
}

.blog-card:hover {
  background: var(--white);
}

.blog-card.hero-post {
  grid-row: span 2;
  border-right: 1px solid var(--border);
}

.bc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.bc-cat {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  color: var(--acc);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bc-date {
  font-size: .7rem;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}

.hero-post h3 {
  font-size: 1.7rem;
}

.blog-card:not(.hero-post) h3 {
  font-size: 1.1rem;
}

.blog-card p {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
}

.hero-post p {
  max-width: 400px;
}

.bc-read {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.5rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

.bc-read::after {
  content: '→';
  transition: transform .2s;
}

.blog-card:hover .bc-read::after {
  transform: translateX(4px);
}

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 8rem;
  align-items: start;
}

.contact-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.contact-left h3 em {
  font-style: italic;
  color: var(--acc);
}

.contact-left p {
  font-size: .88rem;
  color: rgba(242,239,232,0.45);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cl-links {
  display: flex;
  flex-direction: column;
}

.cl-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: color .2s;
}

.cl-link:last-child {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.cl-link:hover .cl-body strong {
  color: var(--acc);
}

.cl-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
}

.cl-body strong {
  display: block;
  font-size: .85rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: .1rem;
  transition: color .2s;
}

.cl-body small {
  font-size: .75rem;
  color: rgba(242,239,232,0.3);
}

.resp-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 2px;
  background: rgba(200,169,110,.05);
}

.resp-box strong {
  display: block;
  font-size: .83rem;
  color: var(--acc);
  margin-bottom: .2rem;
}

.resp-box small {
  font-size: .75rem;
  color: rgba(242,239,232,0.35);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ff {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ff label {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  color: rgba(242,239,232,0.35);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ff input, .ff select, .ff textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 2px;
  color: var(--cream);
  padding: .85rem 1rem;
  font-family: 'Figtree', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  resize: vertical;
}

.ff input::placeholder, .ff textarea::placeholder {
  color: rgba(242,239,232,0.2);
}

.ff input:focus, .ff select:focus, .ff textarea:focus {
  border-color: var(--acc);
}

.ff textarea {
  min-height: 120px;
}

.ff select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23aea89e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.ff select option {
  background: #1c1a16;
}

.dsgvo {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

.dsgvo input {
  accent-color: var(--acc);
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.dsgvo label {
  font-size: .78rem;
  color: rgba(242,239,232,0.35);
  cursor: pointer;
  line-height: 1.5;
}

.dsgvo a {
  color: var(--acc);
  text-decoration: underline;
}

.submit-btn {
  background: var(--acc);
  color: var(--ink);
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  padding: .95rem 2.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
  letter-spacing: .04em;
}

.submit-btn:hover {
  background: var(--acc2);
}

.submit-note {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  color: rgba(242,239,232,0.25);
  letter-spacing: .06em;
}

.form-ok {
  display: none;
  padding: 2.5rem;
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 3px;
  text-align: center;
  background: rgba(200,169,110,0.05);
}

.form-ok h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: .5rem;
}

.form-ok p {
  font-size: .85rem;
  color: rgba(242,239,232,0.4);
}

/* ─── FAQ ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 6rem;
  align-items: start;
}

.faq-sidebar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.faq-sidebar h3 em {
  font-style: italic;
  color: var(--acc);
}

.faq-sidebar p {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--border);
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  gap: 1.5rem;
}

.faq-q span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.35;
}

.faq-ico {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .3s, background .2s, border-color .2s;
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--acc);
  color: var(--ink);
  border-color: var(--acc);
}

.faq-a {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-weight: 300;
}

.faq-item.open .faq-a {
  max-height: 280px;
  padding-bottom: 1.5rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 5rem 4% 3rem;
  border-top: 1px solid rgba(255,255,255,.04);
}

.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.fb-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.fb-logo b {
  border-bottom: 1px solid rgba(242,239,232,0.1);
  padding-bottom: 6rem;
}

.fc h4, .ft-ttl {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--acc);
  margin-bottom: 2rem;
}

.brand-col .fb-logo {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.brand-desc {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(242,239,232,0.5);
  max-width: 320px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.social-pills {
  display: flex;
  gap: .75rem;
}

.social-pills a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242,239,232,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  color: var(--muted);
  text-decoration: none;
  transition: all .3s;
}

.social-pills a:hover {
  border-color: var(--acc);
  color: var(--acc);
  transform: translateY(-3px);
}

.fc ul {
  list-style: none;
}

.fc ul li {
  margin-bottom: 1rem;
}

.fc ul li a {
  font-size: .95rem;
  color: rgba(242,239,232,0.7);
  text-decoration: none;
  transition: color .2s;
  font-weight: 300;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 8rem 4% 4rem;
  color: var(--cream);
}

.ft {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr .8fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(242,239,232,0.1);
  padding-bottom: 6rem;
}

.fc h4, .ft-ttl {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--acc);
  margin-bottom: 2rem;
}

.brand-col .fb-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
  color: var(--cream);
  text-decoration: none;
}

.brand-col .fb-logo b {
  color: var(--acc);
}

.brand-desc {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(242,239,232,0.5);
  max-width: 320px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.social-pills {
  display: flex;
  gap: .75rem;
}

.social-pills a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242,239,232,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  color: var(--muted);
  text-decoration: none;
  transition: all .3s;
}

.social-pills a:hover {
  border-color: var(--acc);
  color: var(--acc);
  transform: translateY(-3px);
}

.fc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc ul li {
  margin-bottom: 1rem;
}

.fc ul li a {
  font-size: .95rem;
  color: rgba(242,239,232,0.7);
  text-decoration: none;
  transition: color .2s;
  font-weight: 300;
}

.fc ul li a:hover {
  color: var(--white);
}

.fb-bottom {
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--muted);
}

.fbb-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.fbb-right a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.fbb-right a:hover {
  color: var(--white);
}

.dot {
  opacity: .3;
}

/* ─── TRUST BAR ─── */
.trust {
  padding: 1rem 4%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--warm);
}

.trust-i {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .08em;
}

.ti {
  color: var(--acc);
}

/* ─── TRUST BADGES (NEW) ─── */
.trust-badges {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  cursor: default;
}

.trust-badge:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  border-color: var(--acc);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.trust-badge-dark {
  background: rgba(14,13,11,0.03);
  border: 1px solid rgba(14,13,11,0.06);
}

.trust-badge-dark:hover {
  background: var(--white);
  border-color: var(--acc);
}

.tb-icon {
  width: 18px;
  height: 18px;
  color: var(--acc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tb-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.tb-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  white-space: nowrap;
}

.trust-badge-dark .tb-text {
  color: var(--mid);
}

.trust-badge-dark:hover .tb-text {
  color: var(--ink);
}

/* ─── HERO SURVEY ─── */
.hero-survey {
  width: 100%;
  max-width: 440px;
  height: auto;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 1px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}

.survey-hdr {
  padding: 1.5rem 10% 1rem;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}

.survey-tag {
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.survey-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.2;
}

.survey-progress-bar {
  height: 2px;
  background: var(--border);
  width: 100%;
  position: relative;
}

.survey-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--acc);
  width: 20%;
  transition: width .6s cubic-bezier(0.23,1,0.32,1);
}

.survey-steps {
  flex: 1;
  position: relative;
  padding: 1.5rem 10%;
  overflow-y: auto;
}

.survey-step {
  display: none;
  animation: fadeIn .4s ease;
}

.survey-step.active {
  display: block;
}

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

.survey-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 1rem;
}

.survey-opt {
  padding: 1rem .75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--cream);
  cursor: pointer;
  transition: all .25s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.survey-opt:hover {
  border-color: var(--acc);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.survey-opt.selected {
  border-color: var(--acc);
  background: rgba(200,169,110,.05);
}

.survey-opt-icon {
  width: 24px;
  height: 24px;
  color: var(--acc);
  stroke-width: 1.5;
}

.survey-opt-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
}

.survey-field {
  margin-bottom: .75rem;
}

.survey-field label {
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: .5rem;
  display: block;
}

.survey-field input, .survey-field select, .survey-field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 1px;
  font-family: 'Figtree', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}

.survey-field input:focus {
  border-color: var(--acc);
}

.survey-footer {
  padding: 1rem 10% 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.survey-btn-prev {
  background: none;
  border: none;
  color: var(--muted);
  font-size: .75rem;
  cursor: pointer;
  padding: .5rem;
  transition: color .2s;
}

.survey-btn-prev:hover {
  color: var(--ink);
}

.survey-btn-next {
  background: var(--ink);
  color: var(--cream);
  padding: .75rem 1.8rem;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  font-size: .8rem;
  cursor: pointer;
  transition: background .2s;
}

.survey-btn-next:hover {
  background: var(--acc);
  color: var(--ink);
}

.survey-success {
  text-align: center;
  padding: 4rem 10%;
}

.survey-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--acc);
  margin-bottom: 1rem;
}

/* ─── REVEAL ─── */
.rev {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.rev.on {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: block; border-top: 1px solid var(--border); min-height: 500px; }
  .svc-layout { grid-template-columns: 1fr; }
  .price-layout { grid-template-columns: 1fr 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .cases-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.hero-post { grid-row: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .ft { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media(max-width:768px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .ham { display: flex; }
  .hero-left { padding: 8rem 5% 8rem; }
  .hero-stats-bar { display: none; }
  .hero-ticker { display: none; }
  .sec { padding: 5rem 5%; }
  .svc-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc-step { border-right: none; }
  .price-layout { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .ff-row { grid-template-columns: 1fr; }
  .trust { gap: 1.5rem; }
}
