/* ============================================================
   Sound Art Studio Sarajevo — styles.css

   TABLE OF CONTENTS:
   1.  Variables
   2.  Reset & Base
   3.  Header / Nav
   4.  Buttons
   5.  Tab System
   6.  Hero Block
   7.  Section Commons
   8.  Biography
   9.  Services Grid
   10. Equipment Grid
   11. Contact
   12. Footer
   13. Animations
   14. Responsive
   15. Nav Social Icons
   16. Welcome Tab
   17. Welcome Slideshow
   18. Contact Form
   ============================================================ */


/* ── 1. VARIABLES ── */
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #181818;
  --surface3: #222222;
  --amber: #7b78aa;
  --amber-light: #a09dcf;
  --amber-dim: #4a4870;
  --amber-glow: rgba(123, 120, 170, 0.12);
  --cream: #f5f0e8;
  --text: #e0d8cc;
  --muted: #5a5550;
  --border: rgba(212, 146, 42, 0.1);
  --border-2: rgba(212, 146, 42, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 68px;
  --max-w: 1060px;
  --radius: 8px;
  --radius-lg: 14px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--amber-light);
}

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

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.site-brand:hover .brand-logo {
  opacity: 1;
}


/* ── 3. HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-brand {
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1.15;
}

.brand-studio {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.brand-city {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--cream);
}

.nav-link.active {
  color: var(--amber);
  background: var(--amber-glow);
}

.mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-shrink: 0;
}

.mobile-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--amber);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-btn.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.mobile-btn.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ── 4. BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: #000;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--amber-light);
  color: #000;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--amber);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--amber-dim);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber-light);
  transform: translateY(-2px);
}


/* ── 5. TAB SYSTEM ── */
.tab {
  display: none;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.tab.active {
  display: block;
}


/* ── 6. HERO BLOCK ── */
.hero-block {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-h) 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 146, 42, 0.06) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 146, 42, 0.015) 2px, rgba(212, 146, 42, 0.015) 4px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 3px, rgba(0, 0, 0, 0.08) 3px, rgba(0, 0, 0, 0.08) 4px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease both;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.15s both;
}

.hero-name em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.hero-role {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0.25s both;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--amber-dim);
  margin: 0 auto 2rem;
  animation: fadeUp 0.9s ease 0.35s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.45s both;
}


/* ── 7. SECTION COMMONS ── */
.container {
  max-width: clamp(320px, 92vw, 1100px);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-pad {
  padding: 1rem 0;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--amber);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}


/* ── 8. BIOGRAPHY ── */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.bio-photo-wrap {
  position: relative;
}

.bio-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  filter: grayscale(20%) contrast(1.05);
}

.bio-photo-wrap::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.bio-photo-placeholder {
  display: none;
  aspect-ratio: 3/4;
  background: var(--surface2);
  border: 1px dashed var(--amber-dim);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
}

.bio-photo-placeholder span {
  font-size: 2rem;
  opacity: 0.3;
}

.bio-photo-placeholder p {
  font-size: 0.78rem;
  color: var(--muted);
}

.bio-photo-placeholder strong {
  color: var(--amber-dim);
}

.bio-photo-wrap.no-photo .bio-photo {
  display: none;
}

.bio-photo-wrap.no-photo .bio-photo-placeholder {
  display: flex;
}

.bio-photo-wrap.no-photo::after {
  display: none;
}

.bio-body p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.bio-body p:last-child {
  margin-bottom: 0;
}


/* ── 9. SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.svc-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.svc-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}

.svc-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.svc-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}


/* ── 10. EQUIPMENT GRID ── */
.equipment-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eq-category {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.eq-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}

.eq-category-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.eq-category-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.eq-items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
}

.eq-item {
  font-size: 0.87rem;
  color: var(--text);
  padding: 0.85rem 1.75rem;
  border-bottom: 1px solid rgba(212, 146, 42, 0.05);
  border-right: 1px solid rgba(212, 146, 42, 0.05);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eq-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber-dim);
  flex-shrink: 0;
}


/* ── 11. CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.cc-icon {
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  background: var(--amber-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.cc-value {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

a.cc-value {
  color: var(--text);
}

a.cc-value:hover {
  color: var(--amber-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}


/* ── 12. FOOTER ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.6rem 2rem;
  text-align: center;
}

.footer-copy {
  font-size: 1rem;
  color: var(--muted);
}


/* ── 13. ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barPulse {

  0%,
  100% {
    transform: scaleY(0.3);
    opacity: 0.3;
  }

  50% {
    transform: scaleY(1);
    opacity: 0.7;
  }
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}

@keyframes waveForm {
  0% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  }

  25% {
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 70% 30% 50% 50% / 30% 70% 40% 60%;
  }

  75% {
    border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  }

  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  }
}

@keyframes waveForm2 {
  0% {
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  }

  25% {
    border-radius: 60% 40% 50% 50% / 40% 70% 30% 60%;
  }

  50% {
    border-radius: 30% 70% 60% 40% / 70% 30% 60% 40%;
  }

  75% {
    border-radius: 70% 30% 40% 60% / 30% 60% 50% 50%;
  }

  100% {
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  }
}

@keyframes waveForm3 {
  0% {
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
  }

  25% {
    border-radius: 30% 70% 50% 50% / 60% 40% 70% 30%;
  }

  50% {
    border-radius: 60% 40% 60% 40% / 50% 50% 30% 70%;
  }

  75% {
    border-radius: 40% 60% 30% 70% / 30% 70% 40% 60%;
  }

  100% {
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
  }
}


/* ── 14. RESPONSIVE ── */
@media (max-width: 780px) {
  .site-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-btn {
    display: flex;
  }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bio-photo-wrap::after {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  #tab-welcome {
    height: auto;
    overflow: visible;
    padding-bottom: 2rem;
  }

  .welcome-screen {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    padding: 2rem;
    gap: 2rem;
    overflow: visible;
  }

  .welcome-center {
    order: 1;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .welcome-slider {
    order: 2;
    width: 100%;
    margin-top: 1rem;
    overflow: visible;
  }

  .slider-track {
    width: 100%;
  }

  .slider-dots {
    margin-top: 1rem;
    padding-bottom: 1rem;
  }

  .ring-3 {
    display: none;
  }
}

/* ── 15. NAV SOCIAL ICONS ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding-left: 1.25rem;
  margin-left: 0.5rem;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-social-link:hover {
  color: var(--amber);
  background: var(--amber-glow);
}

.nav-social-link svg {
  width: 16px;
  height: 16px;
}


/* ── 16. WELCOME TAB ── */
#tab-welcome {
  padding-top: var(--nav-h);
  height: 100vh;
  overflow: hidden;
}

.welcome-screen {
  position: relative;
  height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  padding: 2rem 5%;
  overflow: hidden;
  gap: 1.5rem;
}

.welcome-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20%;
  pointer-events: none;
  z-index: 0;
}

.ring {
  position: absolute;
  animation: ringPulse 6s ease-in-out infinite;
}

.ring-1 {
  width: 340px;
  height: 340px;
  border: 2px solid rgba(123, 120, 170, 0.25);
  animation: ringPulse 6s ease-in-out infinite, waveForm 8s ease-in-out infinite;
}

.ring-2 {
  width: 560px;
  height: 560px;
  border: 2px solid rgba(123, 120, 170, 0.2);
  animation: ringPulse 6s ease-in-out infinite 1s, waveForm2 10s ease-in-out infinite;
}

.ring-3 {
  width: 780px;
  height: 780px;
  border: 2px solid rgba(123, 120, 170, 0.15);
  animation: ringPulse 6s ease-in-out infinite 2s, waveForm3 12s ease-in-out infinite;
}

.welcome-center {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.welcome-logo-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}

.welcome-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(123, 120, 170, 0.35));
  transition: filter 0.3s;
}

.welcome-logo:hover {
  filter: drop-shadow(0 0 36px rgba(123, 120, 170, 0.6));
}

.welcome-logo-fallback {
  width: 100%;
  height: 100%;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-logo-fallback svg {
  width: 100%;
  height: 100%;
}

.welcome-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  animation: fadeUp 1s ease 0.2s both;
}

.welcome-waveform span {
  display: block;
  width: 3px;
  height: var(--h, 20px);
  background: var(--amber);
  border-radius: 2px;
  opacity: 0.5;
  animation: barPulse 1.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 6vw, 1.5rem);
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.06em;
  line-height: 1;
  animation: fadeUp 1s ease 0.3s both;
}

.welcome-city {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  animation: fadeUp 1s ease 0.4s both;
}

.welcome-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  animation: fadeUp 1s ease 0.5s both;
}


/* ── 17. WELCOME SLIDESHOW ── */
.welcome-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  animation: fadeUp 1s ease 0.7s both;
}

.slider-track {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 6s ease;
}

.slide.active img {
  transform: scale(1.04);
}

.slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7), transparent);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--muted);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
  background: var(--amber);
  transform: scale(1.3);
}


/* ── 18. CONTACT FORM ── */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  max-width: 100%;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.cf-field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.cf-field input,
.cf-field textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.93rem;
  padding: 0.75rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--muted);
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--amber);
}

.cf-field textarea {
  resize: vertical;
}

.cf-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 0.95rem;
}

.cf-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

.cf-success {
  text-align: center;
  padding: 2rem;
}

.cf-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.cf-success p {
  color: var(--muted);
  font-size: 0.9rem;
}