 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --purple: #554563;
    --purple-dark: #4f3f5e;
    --lavender: #a198a9;
    --lavender-light: #e8e4ea;
    --offwhite: #fbfbfb;
    --text-dark: #1a1520;
    --text-mid: #4a4050;
    --text-muted: #7a6e80;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dark);
    background: var(--offwhite);
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(85, 69, 99, 0.97);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .nav-logo-text {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .nav-logo-text span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--lavender);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--white) !important;
    color: var(--purple) !important;
    padding: 9px 22px;
    border-radius: 3px;
    letter-spacing: 0.06em !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.88; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--purple-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 5% 80px;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(161,152,169,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(161,152,169,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-accent {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(161,152,169,0.12);
    pointer-events: none;
  }

  .hero-accent::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(161,152,169,0.09);
  }

  .hero-accent::after {
    content: '';
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    border: 1px solid rgba(161,152,169,0.06);
  }

  .hero-content {
    position: relative;
    max-width: 680px;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--lavender);
    flex-shrink: 0;
  }

  .hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--lavender);
  }

  .hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 560px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--purple);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 3px;
    transition: opacity 0.2s, transform 0.15s;
  }

  .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

  .btn-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 3px;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(161,152,169,0.2);
  }

  .stat-num {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }

  .stat-label {
    font-size: 11px;
    color: var(--lavender);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* ── SECTION BASE ── */
  section {
    padding: 100px 5%;
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--purple);
    flex-shrink: 0;
  }

  .section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
  }

  /* ── SERVICES ── */
  #services {
    background: var(--white);
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
  }

  .services-intro {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: var(--lavender-light);
  }

  .service-card {
    background: var(--white);
    padding: 44px 40px;
    position: relative;
    transition: background 0.2s;
  }

  .service-card:hover {
    background: #faf8fb;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--purple);
  }

  .service-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
  }

  .service-card .service-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple);
    border-top: 1px solid var(--lavender-light);
    padding-top: 16px;
    width: 100%;
  }

  .pricing-note {
    margin-top: 56px;
    padding: 36px 40px;
    background: var(--purple);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .pricing-note-text h4 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
  }

  .pricing-note-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }

  .pricing-badge {
    flex-shrink: 0;
    text-align: center;
    color: var(--white);
  }

  .pricing-badge .rate {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
  }

  .pricing-badge .rate-label {
    font-size: 12px;
    color: var(--lavender);
    letter-spacing: 0.08em;
    margin-top: 4px;
  }

  /* ── ABOUT ── */
  #about {
    background: var(--offwhite);
  }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-visual-main {
    background: var(--purple);
    border-radius: 4px;
    padding: 50px 44px;
    color: var(--white);
  }

  .about-visual-main blockquote {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
  }

  .about-visual-main cite {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lavender);
    font-style: normal;
  }

  .about-pillars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(161,152,169,0.25);
  }

  .pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 4px 0;
  }

  .pillar::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lavender);
    flex-shrink: 0;
  }

  .about-text p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
  }

  .about-text p:last-child { margin-bottom: 0; }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .feature {
    padding: 20px;
    background: var(--white);
    border-radius: 4px;
    border-left: 3px solid var(--purple);
  }

  .feature h4 {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
  }

  .feature p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 !important;
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--purple-dark);
    position: relative;
    overflow: hidden;
  }

  #contact .hero-grid {
    opacity: 0.5;
  }

  .contact-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  #contact .section-label {
    color: var(--lavender);
  }

  #contact .section-label::before {
    background: var(--lavender);
  }

  #contact .section-title {
    color: var(--white);
  }

  #contact .section-subtitle {
    color: rgba(255,255,255,0.65);
  }

  .contact-info {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(161,152,169,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lavender);
  }

  .contact-item-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-item-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 4px;
  }

  .contact-item-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
  }

  .contact-item-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-item-value a:hover {
    color: var(--lavender);
  }

  /* ── FORM ── */
  .contact-form {
    background: var(--white);
    border-radius: 4px;
    padding: 44px 40px;
  }

  .contact-form h3 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 28px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--offwhite);
    border: 1px solid var(--lavender-light);
    border-radius: 3px;
    padding: 12px 15px;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--purple);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 110px;
  }

  .form-submit {
    width: 100%;
    background: var(--purple);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    padding: 16px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
  }

  .form-submit:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
  }

  /* ── FOOTER ── */
  footer {
    background: #1a1520;
    padding: 36px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  footer .footer-logo {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
  }

  footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }

  footer nav a {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s;
  }

  footer nav a:hover {
    color: rgba(255,255,255,0.8);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .services-header,
    .about-layout,
    .contact-layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .form-row { grid-template-columns: 1fr; }

    .nav-links { display: none; }

    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .pricing-note { flex-direction: column; gap: 20px; }

    .about-features { grid-template-columns: 1fr; }
  }