﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Stick No Bills', sans-serif;
    color: #fff;
}

/* Page Fade-In */
body {
    opacity: 1;
    background-color: #fff;
    transition: opacity 0.25s ease-in;
    overflow-x: hidden;
}

body.fade-in {
    opacity: 1;
}

/* Fade-Out Animation */
.fade-out {
    opacity: 0;
    background-color: #000;
    transition: opacity 0.75s ease-out;
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #d8d8d8; /* Semi-transparent white */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999; /* Ensure it's on top */
}

#loading-overlay img {
    max-width: 30%;  /* Adjust size relative to screen */
    height: auto;    /* Maintain aspect ratio */
    min-width: 100px; /* Prevent too small */
}


/* Loading Text */
#loading-overlay p {
    font-size: 32px;
    color: #fff;
    margin-top: 10px;
}



.fantasy {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(3, 3, 3, 0.733),rgba(97, 128, 175, 0.322));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.fantasy2 {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(3, 3, 3, 0.733),rgba(97, 128, 175, 0.322));
    position: relative;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.gallery-page,
.profile-page {
    display: block;
}

.profile-page {
    padding: 0;
}

.site-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 24px 20px;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}

.site-copyright {
    margin: 0;
    font-size: .875rem;
    letter-spacing: .08em;
}

.site-footer-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

nav p {
    color: #fff;
    font-size: 24px;
    cursor: default;
    
}

nav .logo {
    width: 50px;
    
}

nav ul li {
    list-style: none;
    display: inline-block;
    
}

nav ul li a {
    text-decoration: underline overline ;
    color: #fff;
    font-size: 17px;
    
}

.page-link {
    color: #d8d8d8;
}

.dropdown-item {
    white-space: nowrap; /* Prevents text from wrapping within each item */
    padding: 0.5rem 1rem; /* Adjusts spacing between items */
}

.dropdown-item:hover {
    color: #ffffff; /* Change text color */
    background-color: #0e043c; /* Change background color */
}


/* Optional: Adjust the width of the dropdown to fit the content */
.dropdown-menu {
    min-width: auto;
    padding: 0.5rem;
}


.content {
    text-align: center;
    width: min(920px, 100%);
    padding-bottom: 80px;
    padding-inline: 1rem;
}

p,
.project-card p,
.gallery-intro p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.content h1 {
    font-size: clamp(5rem, 12vw, 10rem);
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
    cursor: default;
}

.content h1:hover {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

.hero-kicker {
    margin: 0 0 .25rem;
    color: #000000;
    font-size: clamp(1rem, 2vw, 1.35rem);
    letter-spacing: .14em;
    -webkit-text-stroke: .6px #fff;
}

.intro-text {
    max-width: 760px;
    margin-inline: auto;
}

.intro-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    text-wrap: balance;
}


.intro-text p {
    max-width: 650px;
    margin-inline: auto;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.5rem;
}

.content .hero-cta {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 1.25rem;
    border: solid 2px #fff;
    padding: 12px 36px;
    border-radius: 50px;
    margin-top: 0;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.content .hero-cta-primary {
    color: #000;
    border-color: #504a37;
    background: #fff2a9;
}

.content .hero-cta:hover,
.content .hero-cta:focus-visible {
    transform: translateY(-2px);
    border-color: #fff2a9;
    outline: none;
}

.content .hero-cta-secondary:hover,
.content .hero-cta-secondary:focus-visible {
    background: rgba(114, 221, 255, .14);
}

.bg-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.intro-text h2 {
    opacity: 0;
    animation: fadeIn 200ms forwards;
}
.intro-text p {
    font-size: 20px;
    opacity: 0;
    animation: fadeIn 300ms forwards 15ms;
}

.skills {
    padding: 1rem 1rem;
}

.skill {
    margin-bottom: 1rem;
    font-size: 20px;
}

.progress-bar {
    width: 100%;
    background: #363c04;
    height: 10px;
    border-radius: 5px;
}

.progress {
    height: 100%;
    background-color: #fff2a9;
    border-radius: 5px;
}


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




.nav-link:hover {
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px;
  background-color: #807f7f;
  color: #000;
}

.nav-link:active {
       border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px;
  background-color: #acacacab;
  color: #000;
}


.space {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.profile-picture {
    height: 100px;
    border-radius: 70%;
}

.project-section {
      padding-bottom: 120px; /* Leave space for footer */
    }

    .sg-section2 {
      padding-bottom: 30px; /* Leave space for footer */
    }

    .project-wrap {
      aspect-ratio: 16 / 9;
      min-width: 480px;
      margin-inline: auto;
      display: grid;
      justify-content: center;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--card-gap);
      padding: 0 10px;
    }
    .project-wrap2 {
      padding-top: 100px;
      justify-content: center;
      height: 480px;
      margin-inline: auto;
      display: flex;
    }
  

  @media (max-width: 480px) {
        .project-wrap2 {
        height: 360px;
        }
    }




    .project-card {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 1rem;
      text-align: center;
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.15);
      transition: transform .2s ease, box-shadow .2s ease;
      align-self: flex-start;
      
    }

    .project-card2 {
      aspect-ratio: 16 / 9;

      padding: .3rem;
      text-align: center;
      backdrop-filter: blur(6px);
    }


    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    }

    .project-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 0.75rem;
    }

    .project-card h2 {
      font-size: 1.5rem;
      font-weight: 400;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .project-card p {
      font-size: 0.95rem;
      color: #ccc;
      line-height: 1.4;
      margin-bottom: 1rem;
    }

    .project-card a.btn {
      font-size: 0.9rem;
      padding: 8px 20px;
      border-radius: 30px;
    }

    iframe {
      aspect-ratio: 16 / 9;
      justify-content: center;
      border-radius: 10px;
      border: none;
    }

    /* === Footer (always bottom) === */
    .footer {
      width: 100%;
      text-align: center;
      color: #ccc;
      padding: 12px 0;
      font-size: 0.9rem;
    }

.custom-box {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    padding: 20px;
    margin: auto;
}



@media (min-aspect-ratio: 16/9){
    .bg-gif,
    .space {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-aspect-ratio: 16/9){
    .bg-gif,
    .space {
        width: auto;
        height: 100vh;
        object-fit: cover;
    }
}

/* ====== MOBILE VIEW (max-width: 680px) ====== */
@media (max-width: 680px){
    .bg-gif {
        object-fit: none;
        object-position: 30%;
        width: 100%;
    }

    .space {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    nav .logo {
        width: 50px;
    }

    .content h1 {
        font-size: clamp(4.5rem, 25vw, 7.5rem);
        color: #fff;
        font-weight: 600;
        transition: 0.5s;
        cursor: default;
    }

    .dropdown-item {
        display: block;
        padding: 0.5rem 1rem;
        width: 100%;
    }

    .video-container {
        padding-bottom: 25%;
        padding-top: 25%;
    }

    iframe {
        height: 240px;
    }

    /* Make Ocean button smaller on mobile */
    .nav-img-btn {
        height: 28px !important;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin-inline: auto;
        margin-top: 1rem;
    }

    .content .hero-cta {
        width: 100%;
        padding: 10px 24px;
    }
}

.gallery-intro {
    max-width: 720px;
    margin-bottom: 2rem;
}

.gallery-intro h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: .9;
    margin-bottom: .75rem;
}

.gallery-intro > p:last-child {
    color: rgba(255, 255, 255, .78);
    font-size: 1rem;
    line-height: 1.6;
}

/* ====== OCEAN BUTTON BASE STYLE ====== */
.nav-img-btn {
    height: 36px; /* match nav link height */
    width: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-img-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(255, 251, 0, 0.6);
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid #fff2a9;
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .bg-gif,
    .space {
        animation-play-state: paused;
    }
}

/* ====== TABLET & DESKTOP RESPONSIVE ====== */
@media (max-width: 992px){
    .navbar-collapse {
        margin-top: .75rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 12px;
        background: rgba(46, 46, 46, 0.94);
        backdrop-filter: blur(12px);
    }

    .nav-img-btn {
        height: 32px;
    }
}

@media (min-width: 993px){
    .nav-img-btn {
        height: 36px;
    }
}

/* ====== COMMISSION PAGE ====== */
.commission-page {
    display: block;
    padding: 0;
}

.commission-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
  
        linear-gradient(rgba(44, 44, 44, 0.72), rgba(255, 255, 255, 0.384));
}

.commission-main {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding: 150px 0 80px;
}

.commission-main2 {
    width: min(1780px, calc(100% - 40px));
    margin-inline: auto;
    padding: 185px 0 0px;
}


.commission-hero {
    min-height: 460px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    gap: 64px;
    padding-bottom: 72px;
}


.commission-hero h1 {
    max-width: 780px;
    margin: .2rem 0 1rem;
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: .86;
    text-wrap: balance;
}

.commission-lead {
    max-width: 680px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
}

.commission-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.commission-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid #fff2a9;
    border-radius: 999px;
    color: #fff;
    
    font-size: 1.2rem;
    letter-spacing: .04em;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease;
}

.commission-button:hover,
.commission-button:focus-visible {
    color: #fff;
    transform: translateY(-2px);
}

.commission-button-primary {
    color: #07101f;
        border-color: #504a37;

    background: #fff2a9;
}

.commission-button-primary:hover,
.commission-button-primary:focus-visible {
    color: #1f1007;
    background: #fff7ca;
}

.availability-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 253, 114, 0.36);
    border-radius: 18px;
    background: rgba(31, 31, 31, 0.72);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
}

.availability-card strong,
.availability-card span {
    display: block;
}

.availability-card strong {
    color: #fff2a9;
    font-size: 1.4rem;
}

.availability-card span {
    color: rgba(255, 255, 255, .68);
    font-family: system-ui, sans-serif;
    font-size: .9rem;
}

.availability-dot {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #65ff9a;
    box-shadow: 0 0 0 7px rgba(101, 255, 154, .12), 0 0 22px rgba(101, 255, 154, .7);
}

.commission-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.section-heading {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 36px;
}

.section-heading h2 {
    margin: 0;
    text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-heading p:not(.section-number) {
    margin: .25rem 0 0;
    text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077;
    color: rgb(255, 255, 255);
}

.section-number {
    margin: 9px 0 0;
    color: #fff2a9;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.15rem;
    letter-spacing: .1em;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    background: rgba(48, 48, 48, 0.425);
    backdrop-filter: blur(12px);
}

.service-example {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: #ffffff63;
}

.service-example img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    image-rendering: pixelated;
}

.service-example-pixel img {
    object-fit: contain;
    padding: 14px;
}

.service-example span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(163, 154, 130, 0.82);
    color: #fff2a9;
    font-size: .78rem;
    letter-spacing: .08em;
}

.service-card-featured {
    border-color: rgba(255, 241, 114, 0.55);
    background: linear-gradient(145deg, rgba(114, 103, 101, 0.76), rgba(219, 203, 148, 0.72));
}

.service-label {
    margin: 0 0 28px;
    color: #fff2a9;
    font-family: "Bebas Neue", sans-serif;
    
    letter-spacing: .12em;
}

.service-label2 {
    margin: 0 0 28px;
    color: #fff2a9;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
 text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077;
 font-size: 1.1rem;
 backdrop-filter: blur(5px); 
 border-radius:18px; 
 padding:5px;
    letter-spacing: .12em;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.service-card > p:not(.service-label):not(.price-note) {
    max-width: 500px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.6;
}

.service-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 28px;
}

.service-price span {
    color: rgba(255, 255, 255, .55);
}

.service-price strong {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 400;
}

.price-note {
    margin: -8px 0 0;
    color: #fff2a9;
    text-align: right;
}

.custom-quote {
    margin: 24px 0 0;
    color: rgb(255, 255, 255);
    text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077;
    text-align: center;
     backdrop-filter: blur(5px); 
 border-radius:18px; 
 padding:5px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-grid li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
      background: rgba(48, 48, 48, 0.425);
    backdrop-filter: blur(12px);
}

.process-grid li > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 217, 114, 0.842);
    text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
}

.process-grid h3 {
    margin: 2px 0 6px;
    font-size: 1.55rem;
   text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077;

}

.process-grid p {
    margin: 0;
    color: rgb(252, 252, 252);
    line-height: 1.6;
     font-size: 1.2rem;
     text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.terms-grid article {
    padding: 24px;
    border-top: 2px solid #fff2a9;
    background: rgba(32, 32, 32, 0.52);
}

.terms-grid h3 {
    font-size: 1.55rem;
}

.terms-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
}

.commission-final {
    margin-top: 40px;
    padding: 72px 30px;
    border: 1px solid #fff;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(143, 143, 143, 0.72), rgba(29, 29, 29, 0.72));
    text-align: center;
}

.commission-final h2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
}

.commission-final > p:not(.hero-kicker) {
    max-width: 600px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .commission-main {
        padding-top: 120px;
    }

    .commission-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .availability-card {
        max-width: 380px;
    }

    .terms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .commission-main {
        width: min(100% - 28px, 1180px);
        padding-bottom: 50px;
    }

    .commission-hero {
        padding-bottom: 56px;
    }

    .commission-hero h1 {
        font-size: clamp(3.5rem, 19vw, 5.5rem);
    }

    .commission-actions {
        display: grid;
    }

    .service-grid,
    .process-grid,
    .terms-grid {
        grid-template-columns: 1fr;
    }

    .commission-section {
        padding: 56px 0;
    }

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

    .service-card {
        min-height: 280px;
        padding: 24px;
    }

    .process-grid li {
        grid-template-columns: 40px 1fr;
        padding: 22px;
    }

    .process-grid li > span {
        width: 40px;
        height: 40px;
    }

    .commission-final {
        padding: 56px 20px;
    }
}

/* ====== PROFILE REDESIGN ====== */
.profile-main { width:min(1180px,calc(100% - 40px)); margin-inline:auto; padding:150px 0 80px; }
.profile-hero { min-height:570px; display:grid; grid-template-columns:minmax(300px,.82fr) minmax(0,1.18fr); align-items:center; gap:clamp(48px,8vw,110px); padding-bottom:80px; }
.profile-portrait-wrap { position:relative; width:min(100%,430px); aspect-ratio:1; display:grid; place-items:center; margin-inline:auto; }
.profile-portrait-wrap::before { inset:4%; }
.profile-portrait-wrap::after { inset:14%; border-style:dashed; }

.profile-portrait { position:relative; z-index:1; width:68%; aspect-ratio:1; border:2px solid rgba(234, 255, 114, 0.65); border-radius:50%; object-fit:cover; image-rendering:pixelated; box-shadow:0 0 0 3px rgba(255, 229, 114, 0.06),0 30px 80px rgba(0,0,0,.45); }
.profile-availability { position:absolute; right:2%; bottom:10%; z-index:2; display:inline-flex; align-items:center; gap:8px; padding:10px 15px; border:1px solid rgba(101,255,154,.35); border-radius:999px; background:rgba(54, 54, 54, 0.9); color:#d8ffe5; font-family:system-ui,sans-serif; font-size:.82rem; }
.profile-availability i { width:9px; height:9px; border-radius:50%; background:#65ff7a; box-shadow:0 0 12px rgba(101,255,154,.85); }
.profile-intro h1 { margin:.2rem 0 .8rem; font-size:clamp(5rem,10vw,9rem); line-height:.76; }
.profile-roles { color:#fff2a9; font-family:"Bebas Neue",sans-serif; font-size:clamp(1.15rem,2vw,1.55rem); letter-spacing:.06em; }
.profile-lead { max-width:650px; color:rgba(255,255,255,.76); font-size:1.08rem; line-height:1.75; }
.profile-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.profile-section { padding:80px 0; border-top:1px solid rgba(255,255,255,.12); }
.profile-story-grid { display:grid; grid-template-columns:100.85fr 1.15fr; gap:clamp(36px,7vw,90px); backdrop-filter: blur(5px); border-radius:18px; padding: 25px; background: #00000015;}
.profile-story-lead { margin:0; color:#fff; font-family:"Bebas Neue",sans-serif; font-size:clamp(2rem,4vw,3.5rem); line-height:1.08; }
.profile-story-copy p { margin:0 0 1.2rem; color:rgb(255, 255, 255); font-size:1.04rem; line-height:1.8; text-align: right; text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077; }
.expertise-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.expertise-card { min-height:20px; display:flex; flex-direction:column; padding:28px; border:1px solid rgba(255, 255, 255, 0.14); border-radius:18px;     background: rgba(48, 48, 48, 0.26);
    backdrop-filter: blur(12px); transition:transform .2s ease,border-color .2s ease; }
.expertise-card:hover { transform:translateY(-4px); border-color:rgba(255, 241, 114, 0.5); }
.expertise-index,.detail-label { color:#fff4b8; letter-spacing:.1em; }
.expertise-card h3 { margin:auto 0 12px; font-size:2rem; }
.expertise-card p,.profile-details-grid article>p:last-child { margin:0; color:rgba(255, 255, 255, 0.925); line-height:1.65; text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077; }
.profile-details-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; overflow:hidden; border:1px solid rgba(255,255,255,.13); border-radius:18px; background:#555555de; }
.profile-details-grid article { min-height:230px; padding:28px; background:rgb(34, 34, 34); }
.profile-details-grid h3 { margin:30px 0 10px; font-size:1.75rem; }
.profile-final { display:flex; align-items:center; justify-content:space-between; gap:30px; margin-top:40px; padding:52px; border:1px solid rgba(255, 255, 255, 0.35); border-radius:24px; background:#4e4e4e; }
.profile-final h2 { margin:0; font-size:clamp(2.8rem,6vw,5rem); }
@media(max-width:900px){.profile-main{padding-top:120px}.profile-hero{grid-template-columns:1fr;gap:38px;text-align:center}.profile-portrait-wrap{width:min(82vw,390px)}.profile-lead{margin-inline:auto}.profile-actions{justify-content:center}.expertise-grid,.profile-details-grid{grid-template-columns:1fr}.expertise-card,.profile-details-grid article{min-height:220px}}
@media(max-width:620px){.profile-main{width:min(100% - 28px,1180px);padding-bottom:50px}.profile-hero{padding-bottom:56px}.profile-intro h1{font-size:clamp(4.7rem,23vw,7rem)}.profile-availability{right:0;bottom:4%;font-size:.72rem}.profile-actions{display:grid}.profile-section{padding:56px 0}.profile-story-grid{grid-template-columns:1fr;gap:24px}.profile-final{display:block;padding:36px 24px;text-align:center}.profile-final .commission-button{width:100%;margin-top:22px}}
.profile-story-copy h3 { text-shadow: -1px -1px 0 #00000077, 1px -1px 0 #00000077, -1px 1px 0 #00000077, 1px 1px 0 #00000077; }
 .form-group { margin-bottom: 15px; }
        label { display: block; margin-bottom: 5px; font-weight: bold; }
        input, textarea { width: 100%; padding: 10px; border: 1px solid #fff7ca; border-radius: 4px;         
            color: black; 
 }
        button { 
            min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid #fff2a9;
    border-radius: 999px;
            background-color: #fff4b8; 
            color: black; 
           font-size: 1.2rem;
    letter-spacing: .04em;
    text-decoration: none;
        border-color: #504a37;

    transition: transform .2s ease, background-color .2s ease;
        }
        button:hover { background-color: #fff7ca; transform: translateY(-2px); }





          