:root {
  --bg: #0a0a0a;
  --fg: #fafafa;
  --muted: #999;
  --accent: #ffd700;
  --card: #1a1a1a;
  --border: #333;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif; 
  background: var(--bg); 
  color: var(--fg);
  line-height: 1.6;
}

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { 
  left: 1rem; top: 1rem; width: auto; height: auto; padding: .5rem .75rem; background: var(--accent); color: #000; border-radius: .25rem;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
nav a:hover, nav a:focus { color: var(--accent); outline: none; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5vw 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,215,0,.15), transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-100px, 100px); }
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.highlight { color: var(--accent); }
.hero-text p {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .1em;
  margin-top: .5rem;
}
.btn {
  display: inline-block;
  padding: 1.0rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  font-size: 1rem;
}
.btn:focus { outline: 2px dashed var(--accent); outline-offset: 3px; }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  margin-right: 1rem;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,215,0,.3);
}
.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); }

.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}

.brands-section {
  padding: min(12vw, 120px) 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.brand-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s;
  text-decoration: none;
  color: var(--fg);
}
.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  border-color: var(--accent);
}
.brand-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.brand-icon {
  width: 80px;
  height: 80px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(255,215,0,.3));
}
.brand-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .15;
}
.brand-header.pattern-1::before {
  background: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.1) 10px, rgba(255,255,255,.1) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 20px);
}
.brand-header.pattern-2::before {
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,.15) 0%, transparent 50%);
}
.brand-header.pattern-3::before {
  background: linear-gradient(45deg, rgba(255,255,255,.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.1) 75%),
              linear-gradient(45deg, rgba(255,255,255,.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.1) 75%);
  background-size: 40px 40px; background-position: 0 0, 20px 20px;
}
.brand-header.pattern-4::before {
  background: repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255,255,255,.1) 10px, transparent 20px);
}
.brand-header.pattern-5::before {
  background: 
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.brand-content { padding: 2rem; }
.brand-tag {
  display: inline-block;
  padding: .4rem 1rem;
  background: rgba(255,215,0,.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.brand-card h3 { font-size: 1.75rem; margin-bottom: .75rem; }
.brand-card p { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.brand-link { color: var(--accent); font-weight: 700; }

.mission-section {
  padding: min(12vw, 120px) 5vw;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.mission-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}
.mission-content p {
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--muted);
}

.cta-section { padding: min(12vw, 120px) 5vw; text-align: center; }
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: min(8vw, 60px);
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.cta-content p { font-size: 1.25rem; color: var(--muted); margin-bottom: 2.5rem; }

footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 5vw;
  margin-top: 4rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-about h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}
.footer-about p { color: var(--muted); line-height: 1.7; }
.footer-links h4 { margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  line-height: 2;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}

.page {
  padding: 120px 5vw 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.page p.lede {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.prose p { margin-bottom: 1rem; color: var(--fg); }
.prose h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 2rem; margin-bottom: .5rem;
  font-size: 1.6rem;
}
.prose ul { margin: .75rem 0 1rem 1.25rem; }
.prose li { margin-bottom: .5rem; color: var(--muted); }

form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
input, textarea {
  padding: .9rem 1rem;
  background: #121212;
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: .75rem;
}
input:focus, textarea:focus { border-color: var(--accent); outline: none; }

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
  .stat-item { text-align: center; }
  nav ul { gap: 1rem; }
  .footer-content { grid-template-columns: 1fr; }
}
