* { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: #0d0d0d;
    color: #f5f5f3;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 4rem;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
.page-template-default .entry-content,
.page-template-default .site-main,
body.page {
  background: #0d0d0d !important;
  color: #f5f5f3 !important;
}

.page-template-default h1,
.page-template-default h2,
.page-template-default h3,
.page-template-default p,
.page-template-default li {
  color: #f5f5f3 !important;
}

  .nav-logo {
    text-decoration: none;
    line-height: 1.15;
  }

  .nav-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #f5f5f3;
    display: block;
  }

  .nav-logo-main span { color: #7b2fff; }

  .nav-logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a8089;
    display: block;
    padding-left: 0.1rem;
  }

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

  .nav-links a {
    text-decoration: none;
    color: #c8ccd2;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #7b2fff; }

  .nav-cta {
    background: #7b2fff;
    color: #f5f5f3 !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.85; }

  /* ─── HERO ─── */
  #home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 6rem;
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 50% at 85% 50%, rgba(123,47,255,0.15) 0%, transparent 65%),
      radial-gradient(ellipse 30% 40% at 5% 85%, rgba(138,158,140,0.07) 0%, transparent 55%);
    z-index: 0;
  }

  /* ─── TOOLS PHOTO ─── */
  .tools-photo-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: min(480px, 52vw);
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }

  .tools-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0.55;
  }

  .tools-photo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, #0d0d0d 0%, rgba(13,13,13,0.55) 45%, transparent 100%),
      linear-gradient(to top, #0d0d0d 0%, transparent 20%),
      linear-gradient(to bottom, #0d0d0d 0%, transparent 12%);
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8a9e8c;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 2.5rem;
    height: 1px;
    background: #8a9e8c;
  }

  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 6rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.01em;
    max-width: 700px;
    position: relative;
    z-index: 2;
    margin-bottom: 1.4rem;
  }

  .hero-headline em {
    font-style: italic;
    color: #7b2fff;
  }

  /* ─── ROTATING TAGLINES ─── */
  .tagline-wrapper {
    position: relative;
    height: 3.6rem;
    max-width: 640px;
    margin-bottom: 2.8rem;
    z-index: 2;
  }

  .tagline {
    position: absolute;
    top: 0; left: 0; right: 0;
    font-size: 0.97rem;
    color: #7a8089;
    line-height: 1.75;
    opacity: 0;
    transition: opacity 1.2s ease;
    white-space: normal;
  }

  .tagline.active { opacity: 1; }

  .hero-actions {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
  }

  .btn-primary {
    background: #7b2fff;
    color: #f5f5f3;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
  }

  .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: #c8ccd2;
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-outline:hover { border-color: #7b2fff; color: #7b2fff; }

  .hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a8089;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
  }

  .hero-scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 2.5rem;
    background: #7a8089;
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  /* ─── SECTION BASE ─── */
  section { padding: 7rem 4rem; }

  .section-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7b2fff;
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .section-title em { font-style: italic; color: #8a9e8c; font-weight: 600; }

  .divider {
    width: 3rem;
    height: 1px;
    background: #7b2fff;
    margin-bottom: 2rem;
  }

  /* ─── ABOUT ─── */
  #about {
    background: #3a3f47;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* Tools overlap into About from hero */
  #about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -20px;
    width: 320px;
    height: 320px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3C/svg%3E") no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .about-text { position: relative; z-index: 1; }

  .about-text p {
    color: #c8ccd2;
    line-height: 1.85;
    font-size: 0.97rem;
    margin-bottom: 1.2rem;
  }

  .about-text p:last-child { margin-bottom: 0; }

  .about-travel {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(138,158,140,0.3);
    border-radius: 2px;
    background: rgba(138,158,140,0.05);
  }

  .about-travel span {
    font-size: 1rem;
  }

  .about-travel p {
    font-size: 0.82rem !important;
    color: #8a9e8c !important;
    margin-bottom: 0 !important;
    letter-spacing: 0.04em;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }

  .stat-card {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.8rem;
    border-radius: 2px;
    background: rgba(13,13,13,0.4);
    transition: border-color 0.2s;
  }

  .stat-card:hover { border-color: #7b2fff; }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #7b2fff;
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.78rem;
    color: #7a8089;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ─── SERVICES ─── */
  #services { background: #0d0d0d; }

  .services-intro {
    max-width: 560px;
    margin-bottom: 4rem;
  }

  .services-intro p {
    color: #7a8089;
    line-height: 1.8;
    font-size: 0.97rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.05);
  }

  .service-card {
    background: #0d0d0d;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: #7b2fff;
    transition: height 0.4s ease;
  }

  .service-card:hover { background: rgba(123,47,255,0.04); }
  .service-card:hover::before { height: 100%; }

  .service-icon {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
    display: block;
  }

  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
  }

  .service-desc {
    color: #7a8089;
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
  }

  .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }

  .service-tag {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a9e8c;
    border: 1px solid rgba(138,158,140,0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 1px;
  }

  .service-link {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7b2fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
  }

  .service-link:hover { gap: 0.7rem; }
  .service-link::after { content: '→'; }

  /* ─── CONTACT ─── */
  #contact {
    background: #111214;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-info p {
    color: #7a8089;
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .contact-travel {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(138,158,140,0.25);
    border-radius: 2px;
    background: rgba(138,158,140,0.04);
    margin-bottom: 2rem;
  }

  .contact-travel p {
    font-size: 0.82rem !important;
    color: #8a9e8c !important;
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
  }

  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .contact-detail a {
    color: #c8ccd2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .contact-detail a:hover { color: #7b2fff; }

  /* ─── FORM ─── */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7a8089;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    color: #f5f5f3;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8089' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: rgba(255,255,255,0.04);
    padding-right: 2.5rem;
    cursor: pointer;
  }

  .form-group select option { background: #1a1c1f; color: #f5f5f3; }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #7b2fff;
    background: rgba(123,47,255,0.04);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(122,128,137,0.6); }

  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-submit {
    background: #7b2fff;
    color: #f5f5f3;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: opacity 0.2s, transform 0.2s;
    width: 100%;
  }

  .form-submit:hover { opacity: 0.85; transform: translateY(-1px); }

  .form-note {
    font-size: 0.75rem;
    color: #7a8089;
    line-height: 1.6;
    text-align: center;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #f5f5f3;
    letter-spacing: 0.06em;
    display: block;
    line-height: 1.2;
  }

  .footer-logo-main span { color: #7b2fff; }

  .footer-logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a8089;
  }

  .footer-text { font-size: 0.75rem; color: #7a8089; }
  .footer-badge { font-size: 0.7rem; color: #8a9e8c; letter-spacing: 0.12em; text-transform: uppercase; }

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

  .hero-eyebrow { animation: fadeUp 0.7s ease both 0.1s; }
  .hero-headline { animation: fadeUp 0.8s ease both 0.25s; }
  .tagline-wrapper { animation: fadeUp 0.8s ease both 0.4s; }
  .hero-actions  { animation: fadeUp 0.8s ease both 0.55s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 5rem 1.5rem; }
    #home { padding: 7rem 1.5rem 5rem; background: #0d0d0d; }
    #about, #contact { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 0.8rem; text-align: center; }
    .hero-scroll-hint { left: 1.5rem; }
    .tools-photo-wrap { width: 100%; height: 50%; top: auto; bottom: 0; opacity: 0.35; }
    .tools-photo-wrap::before {
      background:
        linear-gradient(to bottom, #0d0d0d 0%, transparent 30%),
        linear-gradient(to top, #0d0d0d 0%, transparent 20%);
    }
    .tagline-wrapper { height: 5rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .btn-primary, .btn-outline { text-align: center; }
  }

.site-header { display: none; }
.entry-header { display: none; }
.page-title { display: none; }
.site-footer { display: none; }
.navigation { display: none; }