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

  :root {
    --shuptrine-blue: #8BA9B5;
    --shuptrine-blue-light: #B5CDD6;
    --shuptrine-blue-dark: #5A7A87;
    --cream: #FAF8F5;
    --warm-gray: #E8E4DF;
    --text-dark: #3A3632;
    --text-muted: #7A756E;
    --warm-brown: #A89080;
    --soft-gold: #C4A962;
  }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    min-height: 100vh;
  }

  /* Header */
  header {
    height: 70px;
    background: white;
    border-bottom: 1px solid var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--shuptrine-blue);
    letter-spacing: 2px;
    text-decoration: none;
  }

  .logo span {
    font-size: 16px;
    color: var(--text-muted);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-left: 15px;
    letter-spacing: 1px;
  }

  nav {
    display: flex;
    gap: 8px;
  }

  nav a {
    background: transparent;
    border: 1px solid var(--warm-gray);
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
  }

  nav a:hover, nav a.active {
    border-color: var(--shuptrine-blue);
    color: var(--shuptrine-blue);
    background: rgba(139, 169, 181, 0.05);
  }

  /* Hero Section */
  .hero {
    text-align: center;
    padding: 100px 40px 80px;
    background: white;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(139, 169, 181, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(168, 144, 128, 0.06) 0%, transparent 50%);
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--shuptrine-blue);
    margin-bottom: 30px;
  }

  .hero p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
  }

  /* Section Navigation */
  .section-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px 40px;
    background: white;
    border-bottom: 1px solid var(--warm-gray);
    position: sticky;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 45;
  }

  .section-nav-btn {
    background: transparent;
    border: 1px solid var(--warm-gray);
    padding: 12px 28px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }

  .section-nav-btn:hover {
    border-color: var(--shuptrine-blue-light);
    color: var(--shuptrine-blue);
  }

  .section-nav-btn.active {
    background: var(--shuptrine-blue);
    border-color: var(--shuptrine-blue);
    color: white;
  }

  /* Main Content */
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
  }

  /* Section Styling */
  .content-section {
    margin-bottom: 120px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--shuptrine-blue);
    margin-bottom: 15px;
  }

  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
  }

  .section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
  }

  /* Craft Section - Two Column Layout */
  .craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .craft-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.06);
  }

  .craft-card-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .craft-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
  }

  .craft-card:nth-child(1) .craft-card-image {
    background: linear-gradient(135deg, var(--shuptrine-blue-light) 0%, var(--shuptrine-blue) 100%);
  }

  .craft-card:nth-child(2) .craft-card-image {
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--warm-brown) 100%);
  }

  .craft-card-body {
    padding: 40px;
  }

  .craft-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
  }

  .craft-card p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .craft-card p:last-of-type {
    margin-bottom: 0;
  }

  /* Studio Section */
  .studio-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
  }

  .studio-image {
    position: relative;
  }

  .studio-image-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  }

  .studio-image-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--shuptrine-blue-light);
    border-radius: 20px;
    z-index: -1;
  }

  .studio-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 25px;
  }

  .studio-content p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  /* Quote Block */
  .quote-block {
    background: white;
    border-radius: 20px;
    padding: 50px 60px;
    margin: 80px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    position: relative;
  }

  .quote-block::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 150px;
    color: var(--shuptrine-blue-light);
    position: absolute;
    top: -20px;
    left: 40px;
    line-height: 1;
    opacity: 0.5;
  }

  .quote-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
  }

  .quote-attribution {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* Commission Journey */
  .journey-section {
    margin-bottom: 100px;
  }

  .journey-timeline {
    position: relative;
    padding-left: 50px;
  }

  .journey-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--shuptrine-blue-light), var(--shuptrine-blue), var(--shuptrine-blue-light));
  }

  .journey-step {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
  }

  .journey-step:last-child {
    margin-bottom: 0;
  }

  .journey-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--shuptrine-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 169, 181, 0.4);
  }

  .journey-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
  }

  .journey-step p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 600px;
  }

  /* Offerings Grid */
  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
  }

  .offering-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
  }

  .offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  }

  .offering-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--shuptrine-blue-light) 0%, var(--shuptrine-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
  }

  .offering-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
  }

  .offering-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .offering-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
  }

  /* Pricing Section */
  .pricing-section {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
    margin-bottom: 80px;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .pricing-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .pricing-header p {
    font-size: 15px;
    color: var(--text-muted);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 30px;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s ease;
  }

  .pricing-item:hover {
    background: var(--shuptrine-blue-light);
  }

  .pricing-item:hover .pricing-label,
  .pricing-item:hover .pricing-desc {
    color: var(--shuptrine-blue-dark);
  }

  .pricing-info {
    flex: 1;
  }

  .pricing-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
  }

  .pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
  }

  .pricing-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--shuptrine-blue-dark);
    white-space: nowrap;
    margin-left: 20px;
  }

  .pricing-note {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--warm-gray);
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
  }

  /* Testimonials */
  .testimonials-section {
    margin-bottom: 80px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.05);
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--shuptrine-blue-light);
    position: absolute;
    top: 15px;
    left: 25px;
    line-height: 1;
    opacity: 0.5;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
  }

  .testimonial-author {
    font-size: 14px;
    color: var(--text-muted);
  }

  .testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 3px;
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, var(--shuptrine-blue-dark) 0%, var(--shuptrine-blue) 100%);
    border-radius: 24px;
    padding: 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  }

  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  }

  .cta-content {
    position: relative;
    z-index: 1;
  }

  .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .cta-section p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
  }

  .cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--shuptrine-blue-dark);
    text-decoration: none;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  }

  /* Responsive */
  @media (max-width: 1000px) {
    .craft-grid,
    .pricing-grid {
      grid-template-columns: 1fr;
    }

    .studio-section {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .offerings-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 38px;
    }

    .hero-subtitle {
      font-size: 20px;
    }

    main {
      padding: 50px 25px;
    }

    .section-header h2 {
      font-size: 32px;
    }

    .section-nav {
      flex-wrap: wrap;
      gap: 8px;
      padding: 20px;
    }

    .section-nav-btn {
      padding: 10px 20px;
      font-size: 12px;
    }

    .quote-block {
      padding: 40px 30px;
    }

    .quote-block p {
      font-size: 20px;
    }

    .pricing-section {
      padding: 40px 25px;
    }

    .cta-section {
      padding: 50px 30px;
    }

    .cta-section h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 600px) {
    header {
      padding: 0 15px;
    }

    nav {
      display: none;
    }

    .hero {
      padding: 60px 20px;
    }

    .journey-timeline {
      padding-left: 30px;
    }

    .journey-step {
      padding-left: 25px;
    }

    .journey-number {
      left: -30px;
      width: 26px;
      height: 26px;
      font-size: 12px;
    }

    .journey-timeline::before {
      left: 12px;
    }
  }