/* Design tokens */
:root {
  --radius: 0.5rem;
  --background: oklch(0.04 0 0);
  --foreground: oklch(0.98 0 0);
  --card: oklch(0.08 0 0);
  --card-foreground: oklch(0.98 0 0);
  --muted: oklch(0.14 0 0);
  --muted-foreground: oklch(0.65 0.01 90);
  --border: oklch(0.22 0.005 90 / 60%);
  --accent: oklch(0.78 0.13 82);
  --accent-foreground: oklch(0.08 0 0);
  --primary: oklch(0.98 0 0);
  --primary-foreground: oklch(0.04 0 0);
  --gold: oklch(0.78 0.13 82);
  --gold-soft: oklch(0.85 0.09 85);
  --font-display: "Montserrat", "Helvetica Neue", sans-serif;
  --font-sans: "Inter", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: black; }

.container-px {
  padding-inline: 1.25rem;
  max-width: 100%;
}
@media (min-width: 768px) { .container-px { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container-px { padding-inline: 5rem; } }

.text-balance { text-wrap: balance; }
.gold-gradient {
  background: linear-gradient(135deg, oklch(0.88 0.1 85), oklch(0.7 0.14 78));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.15em;
  padding-right: 0.08em;
  line-height: 1.15;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes scroll-indicator {
    0%{transform: translateX(-50%) translateY(-4px);opacity:0;}
    40%{opacity:1;}
    100%{transform: translateX(-50%) translateY(12px); opacity:0;}
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.float-slow { animation: float-slow 6s ease-in-out infinite; }
.scroll-dot { animation: scroll-indicator 2s ease-in-out infinite; }
.marquee-track { animation: marquee 40s linear infinite; }
.reveal { opacity: 0; transform: translateY(32px); }
.reveal.is-visible {
  animation: reveal-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}

.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
}
.site-header.is-scrolled {
  backdrop-filter: blur(12px);
  background: oklch(0.04 0 0 / 70%);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.logo-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--gold);
}
.logo-muted { color: var(--muted-foreground); font-weight: 300; }
.nav-links { display: none; align-items: center; gap: 2.5rem; font-size: 0.875rem; }
.nav-links a { color: var(--muted-foreground); transition: color 0.2s; }
.nav-links a:hover { color: var(--foreground); }
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--background);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--foreground); color: var(--primary-foreground); }
.menu-toggle { display: block; padding: 0.5rem; }
.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--foreground);
}
.menu-toggle span + span { margin-top: 0.375rem; }
.mobile-nav {
  display: none;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--background);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding: 1.5rem 0; }
.mobile-nav li + li { margin-top: 1rem; }
.mobile-nav a { display: block; font-size: 1.125rem; font-family: var(--font-display); }
.mobile-nav .nav-cta {
  display: inline-flex;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(0.04 0 0 / 40%), oklch(0.04 0 0 / 30%), var(--background));
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6rem;
}
@media (min-width: 768px) { .hero-content { padding-bottom: 8rem; } }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: hero-fade-up 0.8s 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  text-wrap: balance;
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-size: clamp(2.75rem, 8vw, 7.5rem);
  max-width: 64rem;
  animation: hero-fade-up 1s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-subtitle {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  animation: hero-fade-up 0.8s 0.6s both;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  animation: hero-fade-up 0.8s 0.8s both;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--accent-foreground);
  font-weight: 500;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-soft); }
.btn-gold .icon { transition: transform 0.2s; }
.btn-gold:hover .icon { transform: translate(2px, -2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--foreground); }
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.scroll-line {
  width: 1px;
  height: 3rem;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0.75rem;
  background: var(--gold);
  animation: scroll-indicator 2s ease-in-out infinite;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 768px) { .marquee-item { font-size: 1.5rem; } }
.marquee-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--gold);
}

/* Sections */
.section { padding: 8rem 0; }
@media (min-width: 768px) { .section { padding: 11rem 0; } }
.section-muted {
  background: oklch(0.08 0 0 / 50%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  text-wrap: balance;
  line-height: 1.05;
  font-size: clamp(2rem, 5vw, 3.75rem);
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
}
.section-header p { max-width: 24rem; color: var(--muted-foreground); }

/* About grid */
.about-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(12, 1fr); }
  .about-left { grid-column: span 5; }
  .about-right { grid-column: 7 / span 6; }
}
.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
}
@media (min-width: 768px) { .stat-num { font-size: 3rem; } }
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

/* Services */
.services-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  background: var(--background);
  padding: 2rem;
  height: 100%;
  transition: background 0.5s, transform 0.5s;
}
@media (min-width: 768px) { .service-card { padding: 3rem; } }
.service-card:hover {
  background: var(--card);
  transform: translateY(-4px);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.service-num {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
}
.service-top svg { color: var(--gold); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .service-card h3 { font-size: 1.875rem; } }
.service-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.service-card li + li { margin-top: 0.75rem; }
.service-card:hover li { color: var(--foreground); }
.service-card li::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.25rem;
  }
}
.portfolio-item { height: 100%; }
.portfolio-item.span-2 { grid-row: span 2; }
.portfolio-btn {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
  background: var(--card);
  text-align: left;
}
.portfolio-btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}
.portfolio-btn:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1), transparent);
  opacity: 0.9;
}
.portfolio-info {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.portfolio-tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .portfolio-title { font-size: 1.25rem; } }
.portfolio-title .icon {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s;
}
.portfolio-btn:hover .portfolio-title .icon {
  opacity: 1;
  transform: translateX(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fade-in 0.3s;
}
@media (min-width: 768px) { .lightbox { padding: 3rem; } }
.lightbox.is-open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
}
.lightbox img {
  max-height: 85vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0.375rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Showcase */
.showcase-wrap { text-align: center; margin-bottom: 4rem; }
.monitor-wrap {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}
.monitor {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  padding: 0.5rem;
  box-shadow: 0 60px 120px -30px rgba(201, 162, 39, 0.25), 0 30px 80px -20px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .monitor { border-radius: 28px; padding: 0.75rem; }
}
.monitor-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: black;
}
@media (min-width: 768px) { .monitor-screen { border-radius: 20px; } }
.monitor-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  transform: scale(1.04);
}
.monitor-screen img.is-active {
  opacity: 1;
  transform: scale(1);
}
.monitor-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent, transparent);
  pointer-events: none;
}
.monitor-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
@media (min-width: 768px) { .play-btn { width: 6rem; height: 6rem; } }
.play-btn:hover { background: var(--gold); border-color: var(--gold); }
.play-btn:hover svg { color: var(--accent-foreground); }
.play-btn svg { width: 1.75rem; height: 1.75rem; }
@media (min-width: 768px) { .play-btn svg { width: 2rem; height: 2rem; } }
.play-btn .icon-play { transform: translateX(2px); }
.monitor-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .monitor-info { padding: 2rem; } }
.monitor-count {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
}
.monitor-notch {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) { .monitor-notch { top: 0.75rem; } }
.monitor-stand {
  margin: 1rem auto 0;
  width: 7rem;
  height: 1.5rem;
  border-radius: 0 0 1rem 1rem;
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
}
.monitor-base {
  margin: -0.25rem auto 0;
  width: 11rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.carousel-controls {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.carousel-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.dots { display: flex; align-items: center; gap: 0.5rem; }
.dot{
    width:10px;
    height:10px;
    border-radius:999px;
    background:#4b4b4b;
    position:relative;
    z-index:2;
    flex-shrink:0;
    transition:
        background .3s,
        transform .3s;
}
.dot:hover{
    transform:scale(1.15);
}
.dot.is-active{
    background:transparent;
}
.rating-dots{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    height:12px;
}
.dot-slider{
    position:absolute;
    left:0;
    top:50%;
    width:10px;
    height:10px;
    transform:translateY(-50%);
    border-radius:999px;
    background:
    linear-gradient(135deg, oklch(0.88 0.1 85), oklch(0.7 0.14 78));
    box-shadow:
        0 0 10px rgba(226,180,55,.35),
        inset 0 1px 1px rgba(255,255,255,.35);
    pointer-events:none;
}

/* Why us */
.why-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: var(--background);
  padding: 2rem;
  height: 100%;
  transition: background 0.2s;
}
@media (min-width: 768px) { .why-card { padding: 2.5rem; } }
.why-card:hover { background: var(--card); }
.why-card svg { width: 2rem; height: 2rem; color: var(--gold); margin-bottom: 2rem; }
.why-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }

/* Ratings */
.rating-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .rating-grid { grid-template-columns: repeat(12, 1fr); }
  .rating-left { grid-column: span 4; }
  .rating-right { grid-column: 6 / span 7; }
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 2rem; }
.stars svg { width: 1rem; height: 1rem; fill: var(--gold); color: var(--gold); }
.rating-quote {
  font-family: var(--font-display);
  font-weight: 300;
  text-wrap: balance;
  font-size: 1.5rem;
  line-height: 1.375;
  transition: opacity 0.5s, transform 0.5s;
}
@media (min-width: 768px) { .rating-quote { font-size: 1.875rem; } }
.rating-author {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--gold), var(--gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
  font-family: var(--font-display);
  font-size: 0.875rem;
}
.author-company { font-size: 0.875rem; color: var(--muted-foreground); }
.rating-dots { margin-top: 3rem; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(12, 1fr); gap: 5rem; }
  .contact-left { grid-column: span 6; }
  .contact-right { grid-column: span 6; }
}
.contact-intro { margin-top: 2rem; font-size: 1.125rem; color: var(--muted-foreground); max-width: 28rem; }
.contact-links { margin-top: 3rem; }
.contact-link {
  display: block;
}
.contact-link + .contact-link { margin-top: 1.25rem; }
.contact-link-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.contact-link:hover .contact-icon { border-color: var(--gold); color: var(--gold); }
.contact-form {
  padding: 2rem;
  background: oklch(0.08 0 0 / 60%);
  border: 1px solid var(--border);
  border-radius: 1rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.form-field { position: relative; }
.form-field + .form-field { margin-top: 1.5rem; }
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0 0.5rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field label {
  position: absolute;
  left: 0;
  top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: all 0.2s;
  pointer-events: none;
}
.form-field input:placeholder-shown + label,
.form-field textarea:placeholder-shown + label {
  top: 1.5rem;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
}
.form-field input:focus + label,
.form-field textarea:focus + label {
  top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.form-submit {
  width: 100%;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--accent-foreground);
  font-weight: 500;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-soft); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); }
.footer-inner { padding: 4rem 0; }
@media (min-width: 768px) { .footer-inner { padding: 5rem 0; } }
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(12, 1fr); } }
.footer-brand { }
@media (min-width: 768px) { .footer-brand { grid-column: span 5; } }
.footer-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 24rem;
}
.footer-col-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-menu { grid-column: span 3; }
  .footer-studio { grid-column: span 4; }
}
.footer-menu li + li,
.footer-studio li + li { margin-top: 0.5rem; }
.footer-menu a,
.footer-studio a { transition: color 0.2s; }
.footer-menu a:hover,
.footer-studio a:hover { color: var(--gold); }
.footer-studio { font-size: 0.875rem; }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-copy { font-size: 0.75rem; color: var(--muted-foreground); }
.socials { display: flex; align-items: center; gap: 0.75rem; }
.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 1rem; height: 1rem; }

.hidden { display: none !important; }

/* rating effekt*/
#rating-content{
    transition:
        opacity .35s ease,
        transform .35s cubic-bezier(.22,1,.36,1);
}
#rating-content.is-changing{
    opacity:0;
    transform:translateY(18px) scale(.98);
}
.author-avatar{
    transition:
        transform .35s ease,
        opacity .35s ease;
}
#rating-content.is-changing .author-avatar{
    transform:scale(.75) rotate(-10deg);
    opacity:0;
}
#rating-name,
#rating-company,
.rating-quote{

    transition:
        opacity .35s ease,
        transform .35s ease;
}
#rating-content.is-changing
#rating-name,
#rating-content.is-changing
#rating-company,
#rating-content.is-changing
.rating-quote{
    opacity:0;
    transform:translateY(14px);
}
.stars svg{
    opacity:0;
    transform:translateY(8px) scale(.7);
    animation:starPop .45s forwards;
}
.stars svg:nth-child(1){animation-delay:.02s;}
.stars svg:nth-child(2){animation-delay:.06s;}
.stars svg:nth-child(3){animation-delay:.10s;}
.stars svg:nth-child(4){animation-delay:.14s;}
.stars svg:nth-child(5){animation-delay:.18s;}
@keyframes starPop{
    to{
        opacity:1;
        transform:none;
    }

}