:root {
  --navy: #0d1f33;
  --navy-mid: #132a45;
  --navy-light: #1a3a5c;
  --gold: #C9921A;
  --gold-light: #e0a830;
  --gold-dim: rgba(201,146,26,0.15);
  --white: #ffffff;
  --off-white: #f5f3ef;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.7);
  --border: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; }

/* NAV */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 56px; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s; }
#nav.scrolled { background: rgba(13,31,51,0.96); backdrop-filter: blur(16px); padding: 16px 56px; border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--white); letter-spacing: 0.01em; }
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--text-muted); letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { font-size: 13px; font-weight: 500; color: var(--gold); border: 1px solid rgba(201,146,26,0.4); padding: 9px 22px; border-radius: 4px; transition: all 0.2s; letter-spacing: 0.02em; }
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 140px 56px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,146,26,0.06) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--border); }
.hero-noise { position: absolute; inset: 0; opacity: 0.02; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-inner { max-width: 780px; position: relative; z-index: 1; }
.hero-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 17px; font-weight: 300; color: var(--text-dim); max-width: 480px; line-height: 1.8; margin-bottom: 44px; }
.hero-ctas { display: flex; align-items: center; gap: 20px; margin-bottom: 72px; }
.cta-primary { background: var(--gold); color: var(--navy); padding: 14px 32px; border-radius: 4px; font-size: 14px; font-weight: 500; transition: all 0.2s; letter-spacing: 0.02em; }
.cta-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.cta-secondary { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 400; color: var(--text-dim); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; transition: all 0.2s; }
.cta-secondary:hover { color: var(--white); border-color: var(--white); }
.hero-bar { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; width: fit-content; }
.hero-stat { padding: 14px 28px; text-align: center; }
.hero-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero-stat span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }
.hero-sep { width: 1px; height: 48px; background: var(--border); }
.hero-scroll { position: absolute; bottom: 40px; right: 56px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll span { font-size: 10px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--text-muted), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.4} }

/* ABOUT */
.about-section { padding: 120px 56px; border-bottom: 1px solid var(--border); }
.about-inner { max-width: 780px; }
.about-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; }
.about-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 28px; }
.about-section p { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.85; margin-bottom: 16px; max-width: 620px; }

/* SHARED SECTION */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.section-top { margin-bottom: 64px; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 20px; }
.section-top h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 16px; }
.section-desc { font-size: 15px; font-weight: 300; color: var(--text-muted); max-width: 480px; line-height: 1.75; }

/* SERVICES */
.services-section { padding: 120px 0; border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-item { padding: 48px; background: var(--navy); transition: background 0.3s; opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s, background 0.3s; }
.service-item.visible { opacity: 1; transform: translateY(0); }
.service-item:nth-child(2) { transition-delay: 0.1s; }
.service-item:nth-child(3) { transition-delay: 0.15s; }
.service-item:nth-child(4) { transition-delay: 0.2s; }
.service-item:hover { background: var(--navy-mid); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--gold-dim); line-height: 1; margin-bottom: 20px; }
.service-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.service-item p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.8; }

/* WORK */
.work-section { padding: 120px 0; border-bottom: 1px solid var(--border); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.work-card { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.3s; cursor: pointer; opacity: 0; transform: translateY(24px); }
.work-card.visible { opacity: 1; transform: translateY(0); }
.work-card:nth-child(2) { transition-delay: 0.1s; }
.work-card:nth-child(3) { transition-delay: 0.15s; }
.work-card:nth-child(4) { transition-delay: 0.2s; }
.work-card:hover { border-color: rgba(201,146,26,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.work-card.placeholder:hover { transform: none; cursor: default; box-shadow: none; border-color: var(--border); }
.work-mockup { padding: 28px 28px 0; display: flex; gap: 12px; align-items: flex-end; }
.mockup-desktop { flex: 1; background: #1e2d3d; border-radius: 6px 6px 0 0; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.md-bar { background: #162232; padding: 6px 10px; display: flex; gap: 5px; align-items: center; }
.md-bar span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15); display: block; }
.md-screen { }
.ms-nav { height: 18px; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.ms-nav.thin { height: 12px; }
.ms-hero { height: 56px; }
.ms-hero.small { height: 36px; }
.ms-hero.navy { background: #1a3a5c; }
.ms-hero.dark { background: #1a1a2e; }
.ms-hero.warm { background: #3d2b1a; }
.ms-hero.green { background: #1a2e1a; }
.ms-content { padding: 10px; }
.ms-content.tight { padding: 6px; }
.ms-row { display: flex; gap: 6px; margin-bottom: 8px; }
.ms-block { height: 6px; background: rgba(255,255,255,0.12); border-radius: 2px; flex: 1; }
.ms-block.short { flex: 0.6; }
.ms-cards { display: flex; gap: 6px; }
.ms-card { flex: 1; height: 28px; background: rgba(255,255,255,0.07); border-radius: 3px; }
.mockup-mobile { width: 56px; background: #1e2d3d; border-radius: 6px 6px 0 0; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.mm-screen { }
.work-info { padding: 24px 28px; }
.work-type { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.work-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.work-info p { font-size: 13px; font-weight: 300; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.work-link { font-size: 12px; font-weight: 500; color: var(--gold); display: flex; align-items: center; gap: 6px; letter-spacing: 0.04em; }
.work-link.muted { color: var(--text-muted); }

/* PRICING */
.pricing-section { padding: 120px 0; border-bottom: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.pricing-card { border: 1px solid var(--border); border-radius: 8px; padding: 40px; display: flex; flex-direction: column; transition: all 0.3s; opacity: 0; transform: translateY(20px); }
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }
.pricing-card:hover { border-color: rgba(201,146,26,0.2); }
.pricing-card.featured { border-color: var(--gold); position: relative; background: rgba(201,146,26,0.04); }
.pc-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 600; padding: 4px 16px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.06em; }
.pc-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.pc-price { font-size: 52px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 8px; }
.pc-price span { font-size: 18px; color: var(--text-muted); }
.pc-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); line-height: 1.65; }
.pc-list { list-style: none; flex: 1; margin-bottom: 28px; }
.pc-list li { font-size: 13px; font-weight: 300; color: var(--text-dim); padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: center; }
.pc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.pc-btn { display: block; border: 1px solid var(--border); color: var(--white); padding: 12px; border-radius: 4px; font-size: 13px; font-weight: 500; text-align: center; transition: all 0.2s; letter-spacing: 0.04em; }
.pc-btn:hover { border-color: var(--gold); color: var(--gold); }
.pricing-card.featured .pc-btn { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.pricing-card.featured .pc-btn:hover { background: var(--gold-light); }

/* FAQ */
.faq-section { padding: 120px 0; border-bottom: 1px solid var(--border); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); opacity: 0; transform: translateY(12px); transition: opacity 0.4s, transform 0.4s; }
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item:nth-child(2) { transition-delay: 0.05s; }
.faq-item:nth-child(3) { transition-delay: 0.1s; }
.faq-item:nth-child(4) { transition-delay: 0.15s; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 20px; }
.faq-q span { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--white); line-height: 1.3; }
.faq-icon { flex-shrink: 0; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 24px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15px; font-weight: 300; color: var(--text-dim); line-height: 1.85; max-width: 680px; }

/* CONTACT */
.contact-section { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-left h2 { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.contact-left p { font-size: 15px; font-weight: 300; color: var(--text-dim); line-height: 1.8; margin-bottom: 32px; }
.contact-meta { display: flex; flex-direction: column; gap: 14px; }
.contact-link { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.contact-link:hover { color: var(--gold); }
.contact-form { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border-radius: 4px; border: 1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: rgba(201,146,26,0.5); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { height: 110px; resize: none; }
.form-group select option { background: var(--navy); }
.form-submit { width: 100%; background: var(--gold); color: var(--navy); padding: 14px; border-radius: 4px; border: none; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 6px; letter-spacing: 0.04em; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 28px 56px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--white); }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero h1 { font-size: 60px; }
  .work-grid, .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #nav, #nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 80px; }
  .hero h1 { font-size: 44px; }
  .hero-bar { flex-direction: column; width: 100%; }
  .hero-sep { width: 100%; height: 1px; }
  .hero-scroll { display: none; }
  .about-section, .services-section, .work-section, .pricing-section, .faq-section, .contact-section { padding: 80px 0; }
  .section-inner, .about-section { padding-left: 24px; padding-right: 24px; }
  .section-top h2, .about-section h2 { font-size: 38px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
