@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --black: #0a0a0a;
  --gold: #C4A882;
  --gold-dark: #a88e6a;
  --cream: #EDE8E1;
  --warm: #F5F0EA;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.45);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; color: var(--black); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--black);
  padding: 0 60px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(196,168,130,0.1);
  transition: background var(--transition);
}
.nav.scrolled { background: rgba(10,10,10,0.97); }
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 44px; width: auto; display: block;
}
.footer-logo-img {
  height: 52px; width: auto; display: block; margin-bottom: 10px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 10px; letter-spacing: 2.5px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 10px 24px; cursor: pointer;
  transition: all var(--transition); background: transparent;
  font-family: var(--sans); font-weight: 400;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 1px; background: var(--gold); transition: all var(--transition); display: block; }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 32px; color: rgba(255,255,255,0.7); letter-spacing: 2px; }
.mobile-menu a:hover { color: var(--gold); }

/* ── Page offset ── */
.page-content { padding-top: 70px; }

/* ── Eyebrow ── */
.eyebrow { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 14px; }
.eyebrow-gold { color: var(--gold); }
.eyebrow-muted { color: rgba(255,255,255,0.35); }
.eyebrow-dark { color: rgba(0,0,0,0.4); }

/* ── Buttons ── */
.btn-gold { display: inline-block; background: var(--gold); color: var(--black); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; padding: 15px 36px; font-family: var(--sans); font-weight: 500; cursor: pointer; border: none; transition: background var(--transition); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline-gold { display: inline-block; border: 1px solid var(--gold); color: var(--gold); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; padding: 14px 34px; font-family: var(--sans); font-weight: 400; cursor: pointer; transition: all var(--transition); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-black { display: inline-block; background: var(--black); color: var(--white); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; padding: 15px 36px; font-family: var(--sans); font-weight: 400; cursor: pointer; border: none; transition: background var(--transition); }
.btn-black:hover { background: #1a1a1a; }
.btn-white { display: inline-block; background: var(--white); color: var(--black); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; padding: 15px 36px; font-family: var(--sans); font-weight: 500; cursor: pointer; border: none; transition: all var(--transition); }
.btn-white:hover { background: var(--cream); }

/* ── Ticker ── */
.ticker { background: var(--gold); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 25s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--black); font-weight: 500; padding: 0 32px; }
.ticker-sep { opacity: 0.4; padding: 0 4px; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section helpers ── */
.section-dark { background: var(--black); }
.section-cream { background: var(--cream); }
.section-warm { background: var(--warm); }
.section-white { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.section-title-dark { font-family: var(--serif); font-size: 48px; color: var(--white); font-weight: 300; line-height: 1.1; }
.section-title-dark em { font-style: italic; color: var(--gold); }
.section-title-light { font-family: var(--serif); font-size: 48px; color: var(--black); font-weight: 300; line-height: 1.1; }
.section-title-light em { font-style: italic; color: var(--gold); }
.see-all { display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: opacity var(--transition); }
.see-all:hover { opacity: 0.7; }
.see-all-dark { color: rgba(255,255,255,0.35); }
.see-all-dark .see-all-line { width: 36px; height: 1px; background: rgba(255,255,255,0.2); }
.see-all-light { color: rgba(0,0,0,0.35); }
.see-all-light .see-all-line { width: 36px; height: 1px; background: rgba(0,0,0,0.15); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Hero (Home) ── */
.hero {
  background: var(--black); min-height: calc(100vh - 70px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-lines { position: absolute; top: 0; right: 0; bottom: 0; width: 300px; pointer-events: none; }
.hero-line { position: absolute; top: 0; bottom: 0; width: 1px; }
.hero-line-1 { right: 200px; background: rgba(196,168,130,0.08); }
.hero-line-2 { right: 100px; background: rgba(196,168,130,0.05); }
.hero-est { position: absolute; top: 40px; right: 40px; font-size: 9px; letter-spacing: 3px; color: rgba(196,168,130,0.35); writing-mode: vertical-rl; text-transform: uppercase; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 80px; width: 100%; }
.hero-content { flex: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.hero-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.hero-tag-text { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.hero-h1 { font-family: var(--serif); font-size: 78px; line-height: 1.0; color: var(--white); font-weight: 300; margin-bottom: 28px; }
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.9; max-width: 400px; font-weight: 300; margin-bottom: 44px; letter-spacing: 0.2px; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.hero-ghost { display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); cursor: pointer; transition: color var(--transition); }
.hero-ghost:hover { color: var(--gold); }
.hero-ghost-line { width: 32px; height: 1px; background: rgba(255,255,255,0.25); transition: width var(--transition); }
.hero-ghost:hover .hero-ghost-line { width: 48px; background: var(--gold); }
.hero-image { position: relative; flex-shrink: 0; }
.hero-img { width: 320px; height: 480px; object-fit: cover; object-position: top; filter: grayscale(15%); }
.hero-img-border { position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px; border: 1px solid rgba(196,168,130,0.25); pointer-events: none; z-index: -1; }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 60px 20px; border-right: 1px solid rgba(0,0,0,0.08); }
.stat:last-child { border-right: none; }
.stat-number { font-family: var(--serif); font-size: 56px; color: var(--black); font-weight: 300; line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(0,0,0,0.4); margin-top: 10px; }

/* ── Services grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); }
.service-card { background: var(--black); padding: 48px 36px; cursor: pointer; transition: background var(--transition); }
.service-card:hover { background: #111; }
.service-num { font-family: var(--serif); font-size: 12px; color: rgba(196,168,130,0.35); margin-bottom: 28px; letter-spacing: 1px; }
.service-name { font-family: var(--serif); font-size: 26px; color: var(--white); font-weight: 400; margin-bottom: 16px; line-height: 1.2; }
.service-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.9; font-weight: 300; }
.service-arrow { margin-top: 32px; width: 28px; height: 1px; background: rgba(196,168,130,0.25); position: relative; transition: width var(--transition); }
.service-card:hover .service-arrow { width: 48px; background: var(--gold); }
.service-arrow::after { content: ''; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-top: 1px solid rgba(196,168,130,0.5); border-right: 1px solid rgba(196,168,130,0.5); transform: rotate(45deg); }

/* ── About teaser ── */
.about-inner { display: flex; align-items: center; gap: 80px; }
.about-image-wrap { position: relative; flex-shrink: 0; }
.about-img { width: 380px; height: 500px; object-fit: cover; object-position: top; }
.about-img-accent { position: absolute; bottom: -20px; right: -20px; width: 90px; height: 90px; border: 1px solid var(--gold); pointer-events: none; }
.about-content { flex: 1; }
.about-quote { font-family: var(--serif); font-size: 38px; color: var(--black); font-weight: 300; line-height: 1.3; margin-bottom: 24px; font-style: italic; }
.about-text { font-size: 14px; color: rgba(0,0,0,0.55); line-height: 1.9; max-width: 480px; font-weight: 300; margin-bottom: 36px; }

/* ── Portfolio grid ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.port-card { cursor: pointer; overflow: hidden; }
.port-thumb { height: 280px; overflow: hidden; position: relative; }
.port-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.port-card:hover .port-thumb img { transform: scale(1.05); }
.port-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.port-card:hover .port-overlay { background: rgba(10,10,10,0.3); }
.port-overlay-text { font-family: var(--serif); font-size: 14px; letter-spacing: 2px; color: var(--white); opacity: 0; transition: opacity var(--transition); text-transform: uppercase; }
.port-card:hover .port-overlay-text { opacity: 1; }
.port-meta { padding: 20px 0 0; }
.port-client { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.port-title { font-family: var(--serif); font-size: 22px; color: var(--black); margin-top: 6px; font-weight: 400; }
.port-tags { font-size: 11px; color: rgba(0,0,0,0.35); margin-top: 6px; letter-spacing: 0.5px; }

/* ── Testimonial ── */
.testimonial-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 36px; }
.star { width: 14px; height: 14px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.test-quote { font-family: var(--serif); font-size: 32px; color: var(--white); font-weight: 300; line-height: 1.55; font-style: italic; margin-bottom: 36px; }
.test-author { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.test-company { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 6px; }

/* ── CTA Banner ── */
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.cta-eyebrow { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,0.4); margin-bottom: 14px; display: block; }
.cta-title { font-family: var(--serif); font-size: 52px; color: var(--black); font-weight: 300; line-height: 1.1; }
.cta-title em { font-style: italic; }

/* ── Footer ── */
.footer { background: var(--black); padding: 60px 0 32px; border-top: 1px solid rgba(196,168,130,0.1); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-brand .footer-tagline { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.2); margin-top: 8px; text-transform: uppercase; }
.footer-nav { display: flex; gap: 10px; flex-direction: column; }
.footer-nav a { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.35); text-transform: uppercase; transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-social a { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.35); text-transform: uppercase; transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; }
.footer-copy { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.18); }
.footer-made { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.18); }

/* ── Page Hero (inner pages) ── */
.page-hero { background: var(--black); padding: 100px 0; text-align: center; }
.page-hero-eyebrow { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.page-hero-title { font-family: var(--serif); font-size: 72px; color: var(--white); font-weight: 300; line-height: 1.0; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: 14px; color: rgba(255,255,255,0.4); max-width: 500px; margin: 24px auto 0; line-height: 1.9; font-weight: 300; }

/* ── About page ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-story-img { position: relative; }
.about-story-img img { width: 100%; height: 560px; object-fit: cover; object-position: top; }
.about-story-img-accent { position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; border: 1px solid var(--gold); }
.about-story-content { padding-top: 20px; }
.about-story-title { font-family: var(--serif); font-size: 42px; color: var(--black); font-weight: 300; line-height: 1.2; margin-bottom: 28px; }
.about-story-title em { font-style: italic; color: var(--gold); }
.about-story-text { font-size: 14px; color: rgba(0,0,0,0.6); line-height: 1.95; font-weight: 300; margin-bottom: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); margin-top: 0; }
.value-card { background: var(--black); padding: 44px 32px; }
.value-num { font-family: var(--serif); font-size: 40px; color: rgba(196,168,130,0.15); font-weight: 300; margin-bottom: 16px; }
.value-name { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 14px; font-weight: 400; }
.value-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.85; font-weight: 300; }

/* ── Services page ── */
.services-full { display: flex; flex-direction: column; gap: 1px; background: rgba(0,0,0,0.06); }
.service-row { background: var(--white); display: grid; grid-template-columns: 80px 1fr 1fr; gap: 60px; padding: 60px; align-items: start; transition: background var(--transition); cursor: pointer; }
.service-row:hover { background: var(--warm); }
.service-row-num { font-family: var(--serif); font-size: 48px; color: rgba(0,0,0,0.08); font-weight: 300; padding-top: 8px; }
.service-row-name { font-family: var(--serif); font-size: 34px; color: var(--black); font-weight: 400; line-height: 1.2; }
.service-row-detail { font-size: 13px; color: rgba(0,0,0,0.55); line-height: 1.9; font-weight: 300; }
.service-row-includes { margin-top: 20px; }
.service-row-includes li { font-size: 12px; color: rgba(0,0,0,0.45); line-height: 2; list-style: none; padding-left: 16px; position: relative; }
.service-row-includes li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(196,168,130,0.2); }
.process-step { background: var(--black); padding: 44px 32px; }
.process-step-num { font-family: var(--serif); font-size: 48px; color: rgba(196,168,130,0.15); font-weight: 300; line-height: 1; margin-bottom: 16px; }
.process-step-name { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 12px; font-weight: 400; }
.process-step-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.85; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(0,0,0,0.06); }
.pricing-card { background: var(--white); padding: 52px 40px; position: relative; }
.pricing-card.featured { background: var(--black); }
.pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 20px; font-weight: 500; }
.pricing-tier { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 32px; }
.pricing-tier-light { color: rgba(0,0,0,0.4); }
.pricing-tier-dark { color: rgba(196,168,130,0.6); }
.pricing-price { font-family: var(--serif); font-size: 60px; font-weight: 300; line-height: 1; margin-bottom: 6px; }
.pricing-price-light { color: var(--black); }
.pricing-price-dark { color: var(--white); }
.pricing-period { font-size: 12px; letter-spacing: 1px; color: rgba(0,0,0,0.35); margin-bottom: 36px; }
.pricing-period-dark { color: rgba(255,255,255,0.3); }
.pricing-divider { height: 1px; background: rgba(0,0,0,0.08); margin-bottom: 32px; }
.pricing-divider-dark { background: rgba(255,255,255,0.08); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.pricing-features li { font-size: 13px; color: rgba(0,0,0,0.6); padding-left: 20px; position: relative; line-height: 1.5; }
.pricing-features.dark li { color: rgba(255,255,255,0.5); }
.pricing-features li::before { content: '✦'; position: absolute; left: 0; font-size: 8px; color: var(--gold); top: 3px; }
.pricing-note { font-size: 11px; color: rgba(0,0,0,0.3); line-height: 1.7; font-style: italic; margin-top: 20px; }
.pricing-note-dark { color: rgba(255,255,255,0.2); }

/* ── Contact ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }
.contact-info-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(0,0,0,0.35); margin-bottom: 6px; margin-top: 32px; }
.contact-info-label:first-of-type { margin-top: 0; }
.contact-info-value { font-family: var(--serif); font-size: 22px; color: var(--black); font-weight: 400; }
.contact-info-value a { color: var(--black); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--gold); }
.contact-social-links { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.contact-social-links a { font-size: 13px; color: rgba(0,0,0,0.5); transition: color var(--transition); letter-spacing: 1px; }
.contact-social-links a:hover { color: var(--gold); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.4); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 12px 0; font-size: 14px; color: var(--black); font-family: var(--sans); font-weight: 300;
  outline: none; transition: border-color var(--transition); appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: none; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ── Work page ── */
.work-filter { display: flex; gap: 0; margin-bottom: 60px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.filter-btn { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 14px 24px; cursor: pointer; background: none; border: none; color: rgba(0,0,0,0.35); border-bottom: 2px solid transparent; margin-bottom: -1px; font-family: var(--sans); transition: all var(--transition); }
.filter-btn.active, .filter-btn:hover { color: var(--black); border-bottom-color: var(--gold); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.work-card { cursor: pointer; }
.work-thumb { position: relative; overflow: hidden; height: 400px; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover .work-thumb img { transform: scale(1.04); }
.work-thumb-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.02); transition: background var(--transition); }
.work-card:hover .work-thumb-overlay { background: rgba(10,10,10,0.25); }
.work-meta { padding: 24px 0 0; display: flex; justify-content: space-between; align-items: flex-start; }
.work-meta-left {}
.work-client { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.work-title { font-family: var(--serif); font-size: 28px; color: var(--black); margin-top: 8px; font-weight: 400; }
.work-tags { font-size: 11px; color: rgba(0,0,0,0.35); margin-top: 8px; }
.work-year { font-size: 12px; color: rgba(0,0,0,0.25); letter-spacing: 1px; }

/* ── FAQ ── */
.faq-list { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; cursor: pointer; }
.faq-q-text { font-family: var(--serif); font-size: 22px; color: var(--white); font-weight: 400; }
.faq-icon { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); transition: transform var(--transition); }
.faq-icon::before { width: 14px; height: 1px; top: 9px; left: 3px; }
.faq-icon::after { width: 1px; height: 14px; top: 3px; left: 9px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.9; font-weight: 300; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding var(--transition); }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 28px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .hero-h1 { font-size: 60px; }
  .hero-img { width: 260px; height: 380px; }
  .hero-inner { gap: 48px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .hero-inner { flex-direction: column-reverse; gap: 40px; padding: 60px 0 40px; }
  .hero-image { align-self: center; }
  .hero-img { width: 240px; height: 320px; }
  .hero-h1 { font-size: 48px; }
  .hero-sub { font-size: 13px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.08); }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; gap: 48px; }
  .about-img { width: 100%; height: 360px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-title-dark, .section-title-light { font-size: 36px; }
  .cta-inner { flex-direction: column; gap: 32px; }
  .cta-title { font-size: 38px; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-social { align-items: flex-start; }
  .page-hero-title { font-size: 48px; }
}
