  :root {
    --bg: #101318;
    --bg2: #181c24;
    --bg3: #222830;
    --gold: #c8a96e;
    --gold-light: #e8d09e;
    --text: #eae6de;
    --text-secondary: #b0afc0;
    --muted: #9a99aa;
    --border: rgba(200,169,110,0.25);
    --accent: #2a6496;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  .container { max-width: 1200px; margin: 0 auto; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(13,15,20,0.98), transparent);
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-lang {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--border);
    transition: all 0.2s;
    margin-left: 1rem;
  }

  .nav-lang:hover { color: var(--gold); border-color: var(--gold); }

  /* HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s;
  }

  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 4rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(200,169,110,0.06) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(42,100,150,0.08) 0%, transparent 50%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }

  .hero-content {
    position: relative;
    max-width: 900px;
  }

  .hero-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

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

  .hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
    font-weight: 300;
  }

  .hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-ghost {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(200,169,110,0.05);
  }

  .hero-stats {
    position: absolute;
    right: 4rem;
    bottom: 8rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    animation: fadeLeft 0.8s 1s forwards;
  }

  .stat {
    text-align: right;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
  }

  .scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    animation: scrollPulse 2s infinite;
  }

  /* SECTIONS */
  section {
    padding: 8rem 4rem;
  }

  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  /* ABOUT */
  #about {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

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

  .about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
  }

  .about-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 50%);
    opacity: 0.15;
    z-index: 1;
  }

  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-frame {
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid var(--border);
    pointer-events: none;
  }

  .about-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--gold);
    color: var(--bg);
    padding: 1.5rem;
    text-align: center;
  }

  .about-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
  }

  .about-badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .about-highlight {
    color: var(--gold);
    font-size: 0.9rem;
  }

  .about-aside {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
  }

  .expertise-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 2.5rem;
  }

  .expertise-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text);
  }

  .expertise-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* EDUCATION */
  #education { background: var(--bg2); }

  .resume-edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-bottom: 3rem;
  }

  .resume-edu-item {
    background: var(--bg2);
    padding: 1.2rem 1.5rem;
  }

  .resume-edu-year {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }

  .resume-edu-name {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 400;
    line-height: 1.4;
  }

  .resume-edu-name strong {
    font-weight: 500;
  }

  .resume-langs {
    padding: 1.2rem 1.5rem;
    background: var(--bg2);
    grid-column: span 2;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .resume-lang {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }

  .resume-lang strong {
    color: var(--text);
    font-weight: 500;
  }

  .timeline {
    position: relative;
    margin-top: 1rem;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
  }

  .timeline-item {
    padding-left: 3rem;
    padding-bottom: 3.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s;
  }

  .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline-dot {
    position: absolute;
    left: -5px;
    top: 6px;
    width: 11px;
    height: 11px;
    background: var(--bg);
    border: 2px solid var(--gold);
  }

  .timeline-year {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .timeline-company {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .timeline-role {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
  }

  .timeline-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 600px;
  }

  /* SKILLS */
  #skills {
    background: var(--bg2);
  }

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1200px;
    margin: 0 auto;
  }

  .skill-card {
    background: var(--bg2);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .skill-card:hover { background: var(--bg3); }

  .skill-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .skill-card:hover::before { transform: scaleX(1); }

  .skill-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .skill-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .skill-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* PORTFOLIO */
  #portfolio {
    max-width: 1200px;
    margin: 0 auto;
  }

  .portfolio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
  }

  .pcard {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    cursor: pointer;
  }

  .pcard--wide {
    grid-column: span 2;
    min-height: 220px;
  }

  .pcard__bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s;
  }

  .pcard:hover .pcard__bg {
    transform: scale(1.04);
  }

  .pcard__deco {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
  }

  .pcard__body {
    position: relative;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    transition: background 0.3s;
  }

  .pcard:hover .pcard__body {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
  }

  .pcard__tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .pcard__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pcard--wide .pcard__title {
    font-size: 2.2rem;
  }

  .pcard__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 560px;
    flex: 1;
  }

  .pcard__link {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s;
  }

  .pcard:hover .pcard__link {
    opacity: 1;
    transform: translateY(0);
  }

  /* CASE STUDIES */
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1200px;
    margin: 0 auto;
  }

  .case-card {
    background: var(--bg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
  }

  .case-card:hover { background: var(--bg3); }

  .case-industry {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .case-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .case-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
  }

  .case-results {
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
    display: flex;
    gap: 1.5rem;
  }

  .case-metric {
    display: flex;
    flex-direction: column;
  }

  .case-metric-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }

  .case-metric-label {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonial {
    background: var(--bg2);
    padding: 2.5rem;
  }

  .testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
  }

  .testimonial-author {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted);
  }

  .testimonial-author strong {
    display: block;
    color: var(--text);
    font-size: 0.8rem;
    letter-spacing: 0;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 0.2rem;
  }

  /* PROCESS */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1200px;
    margin: 0 auto;
  }

  .process-step {
    background: var(--bg);
    padding: 2.5rem;
    position: relative;
  }

  .process-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .process-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.8rem;
  }

  .process-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* CHAT MESSAGES */
  .chat-msg {
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
  }

  .chat-msg--user {
    align-self: flex-end;
    background: var(--gold);
    color: #000;
    max-width: 80%;
    line-height: 1.5;
  }

  .chat-msg--bot {
    align-self: flex-start;
    background: var(--bg3);
    border: 1px solid var(--border);
    max-width: 85%;
    line-height: 1.6;
    color: var(--text);
  }

  /* CLIENTS */
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border);
  }

  .client-item {
    background: var(--bg2);
    padding: 1.2rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 400;
    transition: all 0.3s;
  }

  .client-item:hover {
    background: var(--bg3);
    color: var(--gold);
  }

  /* CONTACT */
  #contact {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
  }

  .contact-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }

  .contact-detail-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* FOOTER */
  footer {
    padding: 2.5rem 4rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 0.78rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.6); transform-origin: left; }
  }

  /* DIVIDER */
  .gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 2rem 0;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    section { padding: 5rem 2rem; }
    #hero { padding: 0 2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .skills-grid { grid-template-columns: 1fr; }
    .portfolio-cards { grid-template-columns: 1fr; }
    .pcard--wide { grid-column: span 1; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-stats { display: none; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); padding: 2rem; gap: 1.5rem; }
    .nav-hamburger { display: flex; }
    .expertise-list { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .resume-edu-grid { grid-template-columns: 1fr; }
    .resume-langs { grid-column: span 1; }
    .cases-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .page-hero-content { padding: 0 2rem 4rem; }
    .page-content { padding: 4rem 2rem; }
    .page-two-col { grid-template-columns: 1fr; gap: 3rem; }
    .service-cards { grid-template-columns: 1fr; }
    .cta-banner { padding: 3rem 2rem; }
  }

  /* ═══════════════════════════════════════════════════════
     SUBPAGE STYLES
  ═══════════════════════════════════════════════════════ */

  /* Page hero (shorter than homepage) */
  .page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--bg);
    margin-top: 60px;
  }

  .page-hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200,169,110,0.06) 0%, transparent 60%),
      linear-gradient(170deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
  }

  .page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,169,110,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,169,110,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 2rem;
  }

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

  .breadcrumb a:hover { color: var(--gold); }

  .breadcrumb span { color: var(--text); }

  .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }

  .page-title em {
    font-style: italic;
    color: var(--gold);
  }

  .page-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
  }

  /* Page content sections */
  .page-content {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .page-content h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .page-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }

  .page-content strong {
    color: var(--text);
    font-weight: 500;
  }

  /* Two column layout */
  .page-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  /* Service feature list */
  .service-features {
    list-style: none;
    margin: 2rem 0;
  }

  .service-feat {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
  }

  .service-feat::before {
    content: '→';
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
  }

  /* Service cards grid */
  .service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
  }

  .service-card {
    background: var(--bg2);
    padding: 2.5rem;
    transition: background 0.3s;
  }

  .service-card:hover { background: var(--bg3); }

  .service-card-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .service-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* CTA banner */
  .cta-banner {
    background: var(--bg2);
    padding: 5rem 4rem;
    text-align: center;
  }

  .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .cta-banner h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .cta-banner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Related links */
  .related-links {
    display: flex;
    gap: 1px;
    background: var(--border);
    max-width: 1200px;
    margin: 0 auto;
  }

  .related-link {
    flex: 1;
    background: var(--bg);
    padding: 2rem 2.5rem;
    text-decoration: none;
    color: var(--text);
    transition: background 0.3s;
  }

  .related-link:hover { background: var(--bg3); }

  .related-link-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .related-link-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
  }
