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

    :root {
        --primary: #34474D;
        --secondary: #6b7280;
        --accent: #F2EDDA;
        --light: #f9fafb;
        --border: #e5e7eb;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Lato', sans-serif;
        color: var(--primary);
        background: var(--light);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Header & Navigation */
    header {
        position: sticky;
        top: 0;
        background: var(--light);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(10px);
        background-color: rgba(249, 250, 251, 0.95);
        z-index: 1000;
    }

    nav {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        animation: fadeInDown 0.8s ease-out;
    }

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

    .nav-links a {
        text-decoration: none;
        color: var(--primary);
        font-size: 0.95rem;
        font-weight: 400;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    /* Hero Section */
    .hero {
        max-width: 1200px;
        margin: 0 auto;
        padding: 6rem 2rem;
        text-align: center;
        animation: fadeIn 1s ease-out 0.2s both;
    }

    h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1.25rem;
        color: var(--secondary);
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto 3rem;
        line-height: 1.8;
    }

    .cta-button {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--primary);
        color: var(--light);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        border: 2px solid var(--primary);
        transition: all 0.4s ease;
        letter-spacing: 0.5px;
    }



    .cta-button:hover {
        background: var(--light);
        color: var(--primary);
    }

    /* About Section */
    .about {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
    }

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

    .about-visual {
        aspect-ratio: 1;

        /*border: 1px solid var(--border);*/
        display: block;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        /*color: #d4d4d4;*/
        animation: slideInRight 0.8s ease-out 0.3s both;
    }

    #headshot{
      max-width:100%;
    }

    /* Contact Section */
    .contact {
        margin: 0 auto;
        padding: 2rem 4rem;
        background: var(--primary);
        color: var(--light);
      /*  margin-left: 2rem;
        margin-right: 2rem;*/
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }

    .contact-intro {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 3rem;
        max-width: 600px;
        line-height: 1.8;
    }

    .contact-methods {
max-width:605px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

        margin-bottom: 3rem;
    }

    .contact-item h3 {
        font-family: 'Lato', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent);
    }

    .contact-item p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.05rem;
    }

    .contact-item a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s ease;
    }

    .contact-item a:hover {
        color: var(--accent);
        border-bottom-color: var(--accent);
    }

    .contact-footer{
      margin: 0 auto;
max-width: 1200px;
padding-left: 2rem;
    }

  /* Form Styles
    .contact-form {
        max-width: 500px;
        margin-top: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--accent);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
        color: var(--light);
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent);
        background: rgba(255, 255, 255, 0.08);
    }

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

    .form-submit {
        padding: 0.85rem 2rem;
        background: var(--accent);
        color: var(--primary);
        border: none;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        text-transform: uppercase;
text-spacing:0.5px;
        transition: all 0.3s ease;
    }

    .form-submit:hover {
        background: var(--light);
        transform: translateY(-2px);
    } */

    /* Footer */
    footer {
        text-align: center;
        padding: 2rem;
        border-top: 1px solid var(--border);
        color: var(--secondary);
        font-size: 0.9rem;
    }
    .social-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--border);
        border-radius: 4px;
        color: var(--secondary);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-links a:hover {
        color: var(--accent);
        border-color: var(--accent);
        background: rgba(212, 175, 55, 0.05);
    }

    .social-links svg {
        width: 20px;
        height: 20px;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    /* Responsive */
    @media (max-width: 768px) {
        .nav-links {
            gap: 1.5rem;
            font-size: 0.85rem;
        }

        .hero {
            padding: 2rem 2rem;
        }

        .about {
          display:block;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem 2rem;
        }

        .about-content h2 {
            font-size: 2rem;
            text-align: center;
        }

        .about-content p{
          text-align: center;

        }
        .contact {
            padding: 4rem 2rem;
        }

        .contact h2 {
            font-size: 2rem;
        }

        .contact-footer{
          padding:0rem;
        }

        .contact-methods {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    @media screen and (min-width: 768px) and (max-width: 1180px) {

      .nav-links {
          gap: 1.5rem;
          font-size: 0.85rem;
      }

      .hero {
          padding: 2rem 2rem;
      }

      .about {
          display: block;
          grid-template-columns: 1fr;
          gap: 2rem;
          padding: 2rem 2rem;
      }

      .about-content h2 {
          font-size: 2rem;
          text-align: center;
      }

      .about-content p{
        text-align: center;

      }
      .contact {
          padding: 4rem 2rem;
      }

      .contact h2 {
          font-size: 2rem;
      }

      .contact-footer{
        padding:0rem;
      }
     }
