*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a1628;
  color: #b8c4d8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .nav-logo, blockquote { font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(192,155,83,.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(24px, 4vw); height: 62px;
}
.nav-logo { color: #d4b06a; font-size: 1.05rem; font-weight: 600; letter-spacing: .06em; text-decoration: none; }
.nav-links { display: flex; gap: clamp(12px, 2.5vw, 28px); list-style: none; }
.nav-links a { color: #7a8da8; font-size: .82rem; letter-spacing: .04em; text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #d4b06a; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px max(24px, 4vw) 72px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(192,155,83,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(40,70,120,.25) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1080px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(36px, 6vw, 72px); align-items: center;
}
@media (max-width: 768px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } }

.profile-wrap { position: relative; display: inline-block; }
.profile-wrap img {
  width: min(240px, 70vw); height: auto; aspect-ratio: 350/260;
  border-radius: 3px; border: 1px solid rgba(192,155,83,.45);
  box-shadow: 0 24px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.04);
  object-fit: cover; display: block;
}
.profile-wrap::before {
  content: ''; position: absolute; inset: -8px -8px auto auto; width: 40%; height: 40%;
  border-top: 1px solid rgba(192,155,83,.35); border-right: 1px solid rgba(192,155,83,.35);
  pointer-events: none;
}
.img-caption { margin-top: 12px; font-size: .72rem; color: #5a6d88; line-height: 1.55; max-width: 240px; }
@media (max-width: 768px) { .img-caption { margin: 12px auto 0; } }
.img-caption strong { color: #8a9bb4; font-weight: 500; }
.img-caption a { color: #5a6d88; text-decoration: none; border: none; }
.img-caption a:hover { color: #c09b53; }

.hero-eyebrow { font-size: .78rem; color: #c09b53; margin-bottom: 14px; font-weight: 500; letter-spacing: .04em; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 3.8rem); font-weight: 600; color: #ede4d4; line-height: 1.05; margin-bottom: 12px; }
.hero h1 em { color: #c09b53; font-style: italic; font-weight: 500; }
.hero-role { font-size: 1.05rem; color: #7a8da8; margin-bottom: 22px; }
.hero-lead { max-width: 520px; font-size: 1.02rem; line-height: 1.75; color: #94a3b8; margin-bottom: 32px; }
@media (max-width: 768px) { .hero-lead { margin-left: auto; margin-right: auto; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 768px) { .hero-actions { justify-content: center; } }

.btn {
  display: inline-block; padding: 11px 26px; border: 1px solid #c09b53;
  color: #d4b06a; text-decoration: none; font-size: .84rem; letter-spacing: .03em;
  transition: background .2s, color .2s, border-color .2s;
}
.btn:hover { background: #c09b53; color: #0a1628; }
.btn-ghost { border-color: rgba(192,155,83,.25); color: #7a8da8; }
.btn-ghost:hover { background: transparent; color: #d4b06a; border-color: #c09b53; }

/* SECTIONS */
.section { padding: clamp(64px, 10vw, 96px) max(24px, 4vw); max-width: 1080px; margin: 0 auto; }
.section-label { font-size: .75rem; color: #c09b53; margin-bottom: 10px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.section h2 { font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 600; color: #ede4d4; margin-bottom: 24px; line-height: 1.2; }
.section p { font-size: .98rem; line-height: 1.8; color: #8899b0; margin-bottom: 18px; max-width: 720px; }
.section p strong { color: #c8d4e4; font-weight: 500; }
.section a { color: #c09b53; text-decoration: none; border-bottom: 1px solid rgba(192,155,83,.3); }
.section a:hover { border-color: #c09b53; }

.about-grid { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; margin-top: 8px; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about-aside { border-left: 1px solid rgba(192,155,83,.2); padding-left: 28px; }
@media (max-width: 800px) { .about-aside { border-left: none; border-top: 1px solid rgba(192,155,83,.15); padding: 28px 0 0; } }
.about-aside dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #c09b53; margin-bottom: 4px; }
.about-aside dd { font-size: .88rem; color: #8899b0; margin: 0 0 20px; line-height: 1.5; }
.about-aside a { border: none; }

/* PROCESS STEPS */
.process-band { background: #0c1524; border-top: 1px solid rgba(192,155,83,.06); border-bottom: 1px solid rgba(192,155,83,.06); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { padding-top: 8px; }
.step-num { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; color: rgba(192,155,83,.35); line-height: 1; margin-bottom: 12px; }
.step h3 { font-family: "Source Sans 3", sans-serif; font-size: .9rem; font-weight: 600; color: #ddd0bc; margin-bottom: 8px; }
.step p { font-size: .86rem; line-height: 1.7; color: #6a7d96; margin: 0; max-width: none; }

/* WORK */
.work-band { background: #07101c; border-top: 1px solid rgba(192,155,83,.08); border-bottom: 1px solid rgba(192,155,83,.08); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 680px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  background: #0c1524; border: 1px solid rgba(192,155,83,.1);
  padding: 32px 28px; position: relative; overflow: hidden; transition: border-color .25s;
}
.work-card:hover { border-color: rgba(192,155,83,.28); }
.work-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #c09b53, transparent);
}
.work-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.work-card-head svg { width: 22px; height: 22px; stroke: #c09b53; fill: none; stroke-width: 1.75; flex-shrink: 0; }
.work-card h3 { font-family: "Source Sans 3", sans-serif; font-size: .92rem; font-weight: 600; color: #ddd0bc; margin: 0; }
.work-card p { font-size: .88rem; line-height: 1.72; color: #7788a0; margin: 0; max-width: none; }
.work-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.work-card .tags span {
  font-size: .72rem; color: #6a7d96; padding: 4px 10px;
  border: 1px solid rgba(192,155,83,.12); border-radius: 2px;
}

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(192,155,83,.1); margin-top: 48px; }
@media (max-width: 720px) { .principles { grid-template-columns: 1fr; } }
.principle { background: #0a1628; padding: 32px 28px; }
.principle h3 { font-family: "Source Sans 3", sans-serif; font-size: .88rem; font-weight: 600; color: #c09b53; margin-bottom: 10px; }
.principle p { font-size: .86rem; line-height: 1.65; color: #6a7d96; margin: 0; max-width: none; }

/* PRESS */
.press-band { background: #080f1a; padding: clamp(64px, 8vw, 80px) max(24px, 4vw); border-top: 1px solid rgba(192,155,83,.08); }
.press-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 720px) { .press-inner { grid-template-columns: 1fr; gap: 32px; } }
.press-inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: #ede4d4; margin-bottom: 16px; line-height: 1.2; }
.press-lead { font-size: .95rem; line-height: 1.75; color: #8899b0; max-width: 480px; margin-bottom: 0; }
.press-box { background: #0e1a2e; border: 1px solid rgba(192,155,83,.15); padding: 28px 32px; }
.press-box h3 { font-size: 1.1rem; color: #ddd0bc; margin-bottom: 14px; font-weight: 600; }
.press-box p, .press-box li { font-size: .88rem; line-height: 1.7; color: #8899b0; }
.press-box ul { margin: 12px 0 0 18px; }
.press-box li { margin-bottom: 6px; }
.press-box a { color: #c09b53; text-decoration: none; border: none; }
.press-credit {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15rem;
  color: #c09b53; padding: 14px 18px; background: rgba(192,155,83,.06);
  border-left: 2px solid #c09b53; margin: 16px 0;
}
.press-links { font-size: .88rem; color: #6a7d96; }
.press-links a { color: #c09b53; text-decoration: none; border: none; }

/* QUOTE */
.quote-wrap { padding: clamp(56px, 8vw, 80px) max(24px, 4vw); max-width: 720px; margin: 0 auto; text-align: center; }
blockquote { font-size: clamp(1.2rem, 2.5vw, 1.55rem); line-height: 1.65; color: #a8b8cc; font-style: italic; }
blockquote cite {
  display: block; margin-top: 20px; font-size: .85rem; color: #c09b53;
  font-style: normal; font-family: "Source Sans 3", sans-serif; letter-spacing: .04em;
}

/* LEGAL PAGES */
.page-legal {
  flex: 1; max-width: 780px; margin: 0 auto;
  padding: 100px max(24px, 4vw) 80px; width: 100%;
}
body.legal-page { display: flex; flex-direction: column; }
.page-legal h1 { font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 600; color: #ede4d4; margin-bottom: 8px; line-height: 1.2; }
.page-meta { font-size: .82rem; color: #5a6d88; margin-bottom: 40px; line-height: 1.6; }
.page-meta a { color: #c09b53; text-decoration: none; border: none; }

.page-legal h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: .88rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: #c09b53; margin: 40px 0 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(192,155,83,.15);
}
.page-legal p { font-size: .95rem; line-height: 1.8; color: #8899b0; margin-bottom: 16px; }
.page-legal ul, .page-legal ol { margin: 0 0 18px 20px; }
.page-legal li { font-size: .95rem; line-height: 1.75; color: #8899b0; margin-bottom: 8px; }
.page-legal a { color: #c09b53; text-decoration: none; border-bottom: 1px solid rgba(192,155,83,.25); }
.page-legal a:hover { border-color: #c09b53; }

.license-image-block {
  display: flex; gap: 28px; align-items: flex-start;
  background: #0c1524; border: 1px solid rgba(192,155,83,.15);
  padding: 28px; margin-bottom: 36px;
}
@media (max-width: 560px) { .license-image-block { flex-direction: column; align-items: center; text-align: center; } }
.license-image-block img {
  width: 160px; height: auto; border: 1px solid rgba(192,155,83,.45);
  border-radius: 3px; display: block; flex-shrink: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.license-image-meta { font-size: .86rem; color: #8899b0; line-height: 1.7; }
.license-image-meta strong { color: #ddd0bc; display: block; margin-bottom: 8px; font-size: .95rem; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; }
.license-image-meta p { margin: 0 0 6px; font-size: .86rem; }

.license-row { display: flex; gap: 16px; margin-bottom: 12px; font-size: .93rem; padding: 10px 0; border-bottom: 1px solid rgba(192,155,83,.06); }
@media (max-width: 480px) { .license-row { flex-direction: column; gap: 4px; } }
.license-row .label { color: #c09b53; min-width: 150px; font-weight: 500; font-size: .84rem; }
.license-row .val { color: #c8d4e4; }
.license-row .val.deny { color: #d08080; }
.license-row .val.allow { color: #70c890; }

.callout {
  background: rgba(192,155,83,.05); border-left: 2px solid #c09b53;
  padding: 20px 24px; margin: 28px 0; font-size: .92rem; line-height: 1.75; color: #8899b0;
}
.alert {
  background: rgba(192,155,83,.06); border: 1px solid rgba(192,155,83,.2);
  border-left: 3px solid #c09b53; padding: 20px 24px; margin: 28px 0;
}
.alert p { margin: 0; color: #a8b8cc; font-size: .92rem; }
.alert strong { color: #d4b06a; }
.alert-urgent {
  background: rgba(180,60,60,.08); border: 1px solid rgba(200,80,80,.35);
  border-left: 3px solid #c06060; padding: 20px 24px; margin: 28px 0;
}
.alert-urgent p { margin: 0; color: #c8a8a8; font-size: .92rem; line-height: 1.75; }
.alert-urgent strong { color: #e08080; }

.dmca-template {
  background: #070d18; border: 1px solid rgba(192,155,83,.12);
  padding: 24px 28px; margin: 20px 0 12px; overflow-x: auto;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .78rem; line-height: 1.65; color: #8a9bb4;
  white-space: pre-wrap; word-break: break-word;
}
.dmca-hint { font-size: .82rem; color: #5a6d88; margin-bottom: 24px; }

.enforcement-list { margin: 12px 0 0 18px; }
.enforcement-list li { font-size: .93rem; line-height: 1.75; color: #8899b0; margin-bottom: 8px; }

.dmca-box {
  background: #0c1524; border: 1px solid rgba(192,155,83,.15);
  padding: 28px 32px; margin-top: 20px;
}
.dmca-box h3 { font-family: "Source Sans 3", sans-serif; color: #ddd0bc; font-size: .95rem; font-weight: 600; margin-bottom: 14px; }
.dmca-box p { font-size: .88rem; color: #7788a0; }
.dmca-box .email { color: #c09b53; font-weight: 600; border: none; }

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(192,155,83,.1);
  padding: 28px max(24px, 4vw) 32px;
  max-width: 1080px; margin: 0 auto; width: 100%;
}
.footer-main {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 24px;
}
.footer-brand { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.1rem; color: #ddd0bc; margin-bottom: 6px; }
.footer-tagline { font-size: .82rem; color: #5a6d88; max-width: 320px; line-height: 1.55; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .82rem; }
.footer-links a { color: #7a8da8; text-decoration: none; }
.footer-links a:hover { color: #c09b53; }
.footer-legal {
  padding-top: 20px; border-top: 1px solid rgba(192,155,83,.08);
  font-size: .76rem; color: #4a5d72; line-height: 1.65;
}
.footer-legal a { color: #6a7d96; text-decoration: none; }
.footer-legal a:hover { color: #c09b53; }

@media (max-width: 600px) { .nav-links { gap: 10px; } .nav-links a { font-size: .75rem; } }
