/* index.css - Full Corrected Version */

/* HERO SECTION */
.hero { 
    height: 60vh; 
    min-height: 550px;
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background: #000;
    overflow: hidden;
    padding-top: 100px; /* Account for fixed navbar */
    margin-top: 0;
}

.hero-bg-image { 
    position: absolute; 
    inset: 0;
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%); 
    z-index: 2; 
    transition: background 0.5s ease;
}

.hero:hover .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content { 
    position: relative; 
    z-index: 3; 
    padding: 0 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.5); 
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--dk-utility-white);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-content h1 { 
    font-size: clamp(2.2rem, 6vw, 3.8rem); 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInDown 1s ease-out;
}

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

.hero-content p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.home-page .hero-overlay {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.64) 0, rgba(0,0,0,0.50) 105px, rgba(0,0,0,0.18) 155px, transparent 215px),
        radial-gradient(ellipse at center 58%, rgba(0,0,0,0.64) 0, rgba(0,0,0,0.54) 20%, rgba(0,0,0,0.24) 36%, transparent 58%);
}

.home-page .hero:hover .hero-overlay {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.64) 0, rgba(0,0,0,0.50) 105px, rgba(0,0,0,0.18) 155px, transparent 215px),
        radial-gradient(ellipse at center 58%, rgba(0,0,0,0.64) 0, rgba(0,0,0,0.54) 20%, rgba(0,0,0,0.24) 36%, transparent 58%);
}

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

.accent-text { color: var(--brand-accent); }

.btn-primary { 
    background: var(--brand-accent); 
    color: var(--dk-utility-white); 
    padding: 16px 40px;
    border-radius: var(--radius-md) !important;
    text-decoration: none;
    font-family: var(--font-label);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-warm-sm);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.08em;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary::before {
    content: none;
}

.btn-primary:hover::before {
    width: 0;
    height: 0;
}

.btn-primary:hover {
    background: var(--dk-oxblood);
    color: var(--dk-utility-white);
    transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.btn-primary:active {
    transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(244, 232, 210, 0.08);
    color: var(--brand-accent);
    padding: 16px 40px;
    border-radius: var(--radius-md) !important;
    text-decoration: none;
    font-family: var(--font-label);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--brand-accent);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.08em;
    animation: fadeInUp 1s ease-out 0.4s both;
    box-shadow: none;
    cursor: pointer;
}

.btn-secondary::before {
    content: none;
}

.btn-secondary:hover::before {
    width: 0;
    height: 0;
}

.btn-secondary:hover {
    background: rgba(244, 232, 210, 0.14);
    color: var(--brand-accent);
    border-color: var(--brand-accent);
    transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.btn-secondary:active {
    transform: none;
    box-shadow: none;
}

.btn-secondary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: none;
}

.showcase-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.showcase-modal.is-open {
    display: flex;
}

.showcase-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.showcase-modal__dialog {
    position: relative;
    width: min(960px, 100%);
    max-height: min(86vh, 760px);
    background: var(--dk-iron);
    border: 1px solid rgba(244, 232, 210, 0.18);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(17, 17, 17, 0.38);
    overflow: hidden;
}

.showcase-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(244, 232, 210, 0.28);
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.42);
    color: var(--dk-bone);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.showcase-modal__close:hover {
    background: rgba(244, 232, 210, 0.12);
}

.showcase-player {
    padding: 22px;
}

.showcase-player__label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--dk-bone);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.showcase-player__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(244, 232, 210, 0.18);
    border-radius: var(--radius-md);
    background: var(--dk-utility-black);
}

.showcase-player__poster {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 0;
    background-color: var(--dk-utility-black);
    background-image: url('../images/home/hero/hero-1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.showcase-player.is-playing .showcase-player__poster {
    display: none;
}

.showcase-player__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 66px;
    height: 66px;
    transform: translate(-50%, -50%);
    place-items: center;
    border: 1px solid rgba(244, 232, 210, 0.62);
    border-radius: var(--radius-md);
    background: rgba(21, 63, 56, 0.76);
    color: var(--dk-bone);
    box-shadow: var(--shadow-warm-sm);
}

.showcase-player__embed,
.showcase-player__embed iframe {
    width: 100%;
    height: 100%;
}

.showcase-player__embed iframe {
    display: block;
    border: 0;
}

.showcase-player__meta {
    padding-top: 16px;
    color: var(--dk-bone);
}

.showcase-player__meta h2 {
    margin: 0 0 6px;
    color: var(--dk-bone);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 650;
    line-height: 1.08;
}

.showcase-player__meta p {
    margin: 0;
    color: var(--dk-driftwood);
    font-size: 15px;
    line-height: 1.45;
}

/* HOME HERO ROUND 2 */
.home-page .hero {
    min-height: 620px;
}

.home-page .hero-overlay,
.home-page .hero:hover .hero-overlay {
    background:
        linear-gradient(to bottom, rgba(17, 17, 17, 0.72) 0, rgba(17, 17, 17, 0.48) 104px, rgba(17, 17, 17, 0.12) 160px, transparent 230px);
}

.home-page .hero-content {
    width: min(84%, 560px);
    max-width: 560px;
    padding: clamp(18px, 2.4vw, 28px);
    border: 1px solid rgba(244, 232, 210, 0.14);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.74), rgba(17, 17, 17, 0.52));
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.20);
    text-shadow: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.home-page .hero-eyebrow {
    margin-bottom: 12px;
    color: var(--dk-bone);
    font-size: 11px;
}

.home-page .hero-content h1 {
    margin-bottom: 12px;
    color: var(--dk-utility-white);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.9vw, 2.72rem);
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0;
}

.home-page .hero-content p {
    max-width: 470px;
    margin: 0 auto 18px;
    color: rgba(250, 248, 242, 0.86);
    font-size: clamp(0.92rem, 1.25vw, 1.03rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
}

.home-page .hero-btns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px;
    border: 1px solid rgba(244, 232, 210, 0.18);
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.36);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.22);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.home-page .btn-primary,
.home-page .btn-secondary {
    display: inline-flex;
    box-sizing: border-box;
    height: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: var(--radius-md) !important;
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transform: none;
    overflow: hidden;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-page .btn-primary::before,
.home-page .btn-primary:hover::before,
.home-page .btn-secondary::before,
.home-page .btn-secondary:hover::before {
    content: none !important;
    display: none !important;
}

.home-page .btn-primary {
    border: 1px solid rgba(244, 232, 210, 0.14);
    background: var(--dk-clay);
    color: var(--dk-utility-white);
    box-shadow: var(--shadow-warm-sm);
}

.home-page .btn-primary:hover,
.home-page .btn-primary:focus-visible {
    background: var(--dk-oxblood);
    color: var(--dk-utility-white);
    box-shadow: var(--shadow-warm-sm);
}

.home-page .btn-secondary {
    border: 1px solid rgba(244, 232, 210, 0.48);
    background: rgba(244, 232, 210, 0.10);
    color: var(--dk-utility-white);
    box-shadow: none;
}

.home-page .btn-secondary:hover,
.home-page .btn-secondary:focus-visible {
    border-color: rgba(244, 232, 210, 0.72);
    background: rgba(244, 232, 210, 0.16);
    color: var(--dk-utility-white);
    box-shadow: var(--shadow-warm-sm);
}

.home-page .btn-secondary i {
    display: inline-grid;
    width: 24px;
    height: 24px;
    margin-right: 0;
    place-items: center;
    border: 1px solid rgba(244, 232, 210, 0.42);
    border-radius: var(--radius-md);
    background: rgba(21, 63, 56, 0.74);
    color: var(--dk-bone);
    font-size: 12px;
    transform: none;
}

.showcase-modal__dialog {
    width: min(1040px, 100%);
    background: var(--dk-iron);
}

.showcase-player {
    padding: clamp(18px, 3vw, 30px);
}

.showcase-player__masthead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.showcase-player__label {
    margin-bottom: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(244, 232, 210, 0.26);
    border-radius: var(--radius-md);
    background: rgba(244, 232, 210, 0.10);
}

.showcase-player__kicker,
.showcase-player__stamp {
    color: rgba(244, 232, 210, 0.72);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.showcase-player__stamp {
    text-align: right;
}

.showcase-player__frame {
    border-color: rgba(244, 232, 210, 0.24);
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.34);
}

.showcase-player__poster {
    background-color: var(--dk-utility-black);
    background-image: url('../images/home/hero/hero-1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.showcase-player__poster::after {
    content: none;
}

.showcase-player__poster-label {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 2;
    padding: 7px 10px;
    border: 1px solid rgba(244, 232, 210, 0.28);
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.34);
    color: var(--dk-bone);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.showcase-player__play {
    width: 78px;
    height: 78px;
    background: rgba(138, 53, 18, 0.86);
    color: var(--dk-utility-white);
}

.showcase-player__poster:hover .showcase-player__play,
.showcase-player__poster:focus-visible .showcase-player__play {
    background: var(--dk-oxblood);
}

.showcase-player__meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
}

.showcase-player__meta h2 {
    color: var(--dk-bone);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 650;
    line-height: 1.08;
}

.showcase-player__meta p {
    max-width: 390px;
    color: rgba(244, 232, 210, 0.70);
    text-align: right;
}

@media (max-width: 720px) {
    .home-page .hero {
        min-height: 650px;
        padding-top: 96px;
    }

    .home-page .hero-content {
        width: min(92%, 520px);
        padding: 24px 18px;
    }

    .home-page .hero-btns {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .home-page .btn-primary,
    .home-page .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 0 18px;
    }

    .showcase-modal {
        padding: 14px;
    }

    .showcase-player__masthead,
    .showcase-player__meta {
        display: block;
    }

    .showcase-player__stamp,
    .showcase-player__meta p {
        margin-top: 10px;
        text-align: left;
    }
}

/* FEATURED SERVICES */
.services-section { 
    padding: 62px 0 108px; 
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 53, 18, 0.12), transparent);
}

.section-header { 
    text-align: center; 
    margin-bottom: 46px; 
    animation: fadeInUp 0.8s ease-out;
}

.section-tag { 
    color: var(--brand-accent); 
    text-transform: uppercase; 
    font-weight: 600; 
    font-size: 0.78rem; 
    letter-spacing: 0.08em; 
    display: block; 
    margin-bottom: 12px; 
    position: relative;
    display: inline-block;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 2px;
    background: var(--brand-accent);
    opacity: 0.5;
}

.section-header h2 { 
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 4vw, 3.2rem); 
    font-weight: 650; 
    margin-bottom: 20px; 
    color: var(--dk-field); 
    letter-spacing: 0;
    line-height: 1.05;
    text-shadow: none;
}

.section-header p { 
    font-size: 1.08rem; 
    color: rgba(43, 36, 27, 0.72); 
    max-width: 680px; 
    margin: 0 auto; 
    line-height: 1.6;
    letter-spacing: 0;
}

.service-card-grid { 
    display: grid; 
    grid-template-columns: repeat(4, minmax(0, 1fr)); 
    align-items: start;
    gap: 24px; 
}

.service-card { 
    position: relative; 
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    border-radius: var(--radius-md); 
    overflow: hidden; 
    text-decoration: none; 
    color: var(--dk-field); 
    background: var(--dk-bone);
    border: 1px solid rgba(43, 36, 27, 0.10); 
    box-shadow: var(--shadow-warm-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible { 
    border-color: rgba(138, 53, 18, 0.32); 
    box-shadow: var(--shadow-warm-md);
}

.service-card--offset {
    margin-top: 34px;
}

.service-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: rgba(43, 36, 27, 0.06);
}

.service-card--tall img {
    aspect-ratio: 5 / 4;
}

.service-card--short img {
    aspect-ratio: 16 / 10;
}

.service-card__body {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    padding: 24px;
    background: var(--dk-bone);
}

.service-card__label {
    position: relative;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 7px 12px 6px;
    border: 1px solid rgba(43, 36, 27, 0.16);
    border-radius: 3px;
    background:
        linear-gradient(135deg, rgba(233, 216, 186, 0.96), rgba(244, 232, 210, 0.92));
    color: var(--dk-field);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
    box-shadow: 0 3px 8px rgba(43, 36, 27, 0.08);
    transform: rotate(-1.2deg);
    text-transform: uppercase;
}

.service-card:nth-child(even) .service-card__label {
    transform: rotate(1.1deg);
}

.service-card__label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(43, 36, 27, 0.28);
    transform: translateY(-50%);
}

.service-card__label {
    padding-left: 18px;
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--dk-field);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 650;
    line-height: 1.08;
}

.service-card p {
    margin: 0 0 22px;
    color: rgba(43, 36, 27, 0.72);
    font-size: 0.98rem;
    line-height: 1.5;
}

.service-card__link {
    margin-top: 4px;
    color: var(--dk-clay);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.service-card:hover .service-card__link,
.service-card:focus-visible .service-card__link {
    color: var(--dk-oxblood);
}

/* RESPONSIVE RULES - CORRECTED */
/* iPad specific styles - shrink text by 20% */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: clamp(1.76rem, 4.8vw, 3.04rem) !important; /* 20% smaller: 2.2rem * 0.8 = 1.76rem, 3.8rem * 0.8 = 3.04rem */
    }
    
    .hero-content p {
        font-size: 0.88rem !important; /* 20% smaller: 1.1rem * 0.8 = 0.88rem */
    }
    
    .btn-primary {
        font-size: 0.72rem !important; /* 20% smaller: 0.9rem * 0.8 = 0.72rem */
        padding: 12.8px 32px !important; /* 20% smaller */
    }
    
    .btn-secondary {
        font-size: 0.72rem !important; /* 20% smaller: 0.9rem * 0.8 = 0.72rem */
        padding: 12.8px 32px !important; /* 20% smaller */
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 100px; /* Maintain navbar spacing on tablets */
        height: 55vh; /* Slightly shorter on tablets */
        min-height: 500px;
    }
    
    .service-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-card--offset { margin-top: 26px; }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 80px; /* Slightly less padding on mobile */
        min-height: 350px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 0.75rem;
        padding: 14px 24px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    
    .services-section { padding: 72px 0 82px; }
    .section-header { margin-bottom: 40px; }
    .service-card-grid { grid-template-columns: 1fr; }
    .service-card--offset { margin-top: 0; }
    .service-card--tall img,
    .service-card--short img,
    .service-card img { aspect-ratio: 4 / 3; }
}
/* about.css */
/* about.css */

/* HERO */
.about-hero {
    height: 70vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dk-umber);
    overflow: hidden;
    margin-top: 0;
    text-align: center;
}
.about-hero .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center 42%;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: subtleZoom 20s ease-in-out infinite alternate;
}
@keyframes subtleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}
.about-hero:hover .hero-bg {
    transform: scale(1.03);
}
.about-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(to bottom, rgba(43, 36, 27, 0.72) 0, rgba(43, 36, 27, 0.48) 124px, transparent 232px),
        radial-gradient(ellipse at center, rgba(43, 36, 27, 0.74) 0%, rgba(43, 36, 27, 0.62) 24%, rgba(43, 36, 27, 0.26) 50%, transparent 70%);
    z-index: 2;
    transition: background 0.5s ease;
}
.about-hero:hover .hero-overlay {
    background:
        linear-gradient(to bottom, rgba(43, 36, 27, 0.72) 0, rgba(43, 36, 27, 0.48) 124px, transparent 232px),
        radial-gradient(ellipse at center, rgba(43, 36, 27, 0.74) 0%, rgba(43, 36, 27, 0.62) 24%, rgba(43, 36, 27, 0.26) 50%, transparent 70%);
}
.about-hero .hero-content { 
    position: relative; 
    z-index: 3; 
    color: var(--dk-utility-white); 
    max-width: 780px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(244, 232, 210, 0.14);
    border-radius: var(--radius-md);
    background:
        radial-gradient(ellipse at center, rgba(43, 36, 27, 0.74), rgba(43, 36, 27, 0.50) 68%, rgba(43, 36, 27, 0.34));
    box-shadow: 0 16px 42px rgba(43, 36, 27, 0.24);
    text-shadow: 0 3px 18px rgba(43, 36, 27, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.editorial-tag { 
    color: var(--brand-accent); 
    text-transform: uppercase; 
    font-family: var(--font-label);
    letter-spacing: 0.08em; 
    font-weight: 600; 
    font-size: 14px;
    line-height: 1.1;
    display: inline-block;
    animation: fadeInDown 1s ease-out;
}
.about-hero h1 { 
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem); 
    font-weight: 650; 
    margin: 20px auto; 
    line-height: 1.02;
    letter-spacing: 0;
    animation: fadeInDown 1s ease-out 0.2s both;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.accent-text { 
    color: var(--brand-accent);
    text-shadow: none;
}
.lead-para { 
    max-width: 690px;
    margin: 0 auto;
    font-size: clamp(1.08rem, 2vw, 1.32rem); 
    color: rgba(250, 248, 242, 0.86); 
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO BUTTONS */
.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: var(--dk-clay);
    color: var(--dk-utility-white);
    min-height: 52px;
    padding: 0 28px;
    border-radius: var(--radius-md) !important;
    text-decoration: none;
    font-family: var(--font-label);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-warm-sm);
    position: relative;
    overflow: visible;
    letter-spacing: 0.08em;
    border: 1px solid rgba(244, 232, 210, 0.14);
}

.btn-primary::before {
    content: none;
    display: none;
}

.btn-primary:hover::before {
    width: 0;
    height: 0;
}

.btn-primary:hover {
    background: var(--dk-oxblood);
    color: var(--dk-utility-white);
    transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.btn-primary:active {
    transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.btn-secondary {
    background: rgba(244, 232, 210, 0.10);
    color: var(--dk-utility-white);
    min-height: 52px;
    padding: 0 28px;
    border-radius: var(--radius-md) !important;
    text-decoration: none;
    font-family: var(--font-label);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(244, 232, 210, 0.48);
    position: relative;
    overflow: visible;
    letter-spacing: 0.08em;
    box-shadow: none;
    cursor: pointer;
}

.btn-secondary::before {
    content: none;
    display: none;
}

.btn-secondary:hover::before {
    width: 0;
    height: 0;
}

.btn-secondary:hover {
    background: rgba(244, 232, 210, 0.16);
    color: var(--dk-utility-white);
    border-color: rgba(244, 232, 210, 0.72);
    transform: none;
    box-shadow: var(--shadow-warm-sm);
}

.btn-secondary:active {
    transform: none;
    box-shadow: none;
}

.btn-secondary i {
    display: inline-grid;
    width: 24px;
    height: 24px;
    margin-right: 0;
    place-items: center;
    border: 1px solid rgba(244, 232, 210, 0.42);
    border-radius: var(--radius-md);
    background: rgba(21, 63, 56, 0.74);
    color: var(--dk-bone);
    font-size: 12px;
    transform: none;
}

.btn-secondary:hover i {
    transform: none;
}

/* PROFILE SECTION */
.profile-section { 
    padding: 120px 0; 
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
    position: relative;
}
.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 53, 18, 0.12), transparent);
}
.profile-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 100px; 
    align-items: center; 
}
.profile-text h2 { 
    font-size: 3.5rem; 
    margin-bottom: 30px;
    color: var(--dk-umber);
    background: none;
    -webkit-text-fill-color: currentColor;
}
.profile-text p { 
    color: var(--dk-umber); 
    line-height: 1.8; 
    font-size: 1.1rem; 
    margin-bottom: 25px;
    transition: none;
}
.profile-text p:hover {
    color: var(--dk-umber);
}
.profile-text strong { 
    color: var(--brand-accent);
    font-weight: 700;
    text-shadow: none;
}

.profile-text a {
    color: var(--dk-clay);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.profile-text a:hover,
.profile-text a:focus-visible {
    color: var(--dk-oxblood);
}

.profile-image-frame { 
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-image-frame:hover {
    transform: translateY(-8px);
}

/* PORTRAIT CROP - 3:4 Ratio */
.portrait { 
    width: 100%; 
    height: auto;
    aspect-ratio: 3 / 4; 
    object-fit: cover;
    object-position: 34% center; 
    border-radius: var(--radius-md); 
    border: 1px solid rgba(198, 169, 139, 0.82);
    filter: contrast(1.1) brightness(1.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 46px rgba(43, 36, 27, 0.18),
                0 0 0 0 rgba(138, 53, 18, 0);
    position: relative;
}
.portrait::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 8px;
    padding: 3px;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-soft, #B66F1E), var(--brand-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}
.profile-image-frame:hover .portrait {
    filter: contrast(1.15) brightness(1.1);
    box-shadow: 0 22px 54px rgba(43, 36, 27, 0.22),
                0 0 0 rgba(43, 36, 27, 0);
    transform: scale(1.02);
    border-color: rgba(198, 169, 139, 0.82);
}
.profile-image-frame:hover .portrait::before {
    opacity: 1;
}

.experience-card {
    position: absolute; 
    bottom: -30px; 
    left: -30px;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-soft, #B66F1E));
    color: #000; 
    padding: 30px;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4),
                0 0 0 0 rgba(138, 53, 18, 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    cursor: pointer;
}
.experience-card:hover {
    opacity: 0.9;
}
.profile-image-frame:hover .experience-card {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5),
                0 0 0 rgba(43, 36, 27, 0);
}
.profile-image-frame:hover .experience-card:hover {
    opacity: 0.9;
}
.card-num { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.card-text { 
    font-size: 0.85rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    line-height: 1.2;
    letter-spacing: 1px;
}

/* GLOBAL NARRATIVES */
.global-narratives { 
    padding: 150px 0; 
    background-color: var(--dk-umber); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--dk-utility-white); 
    text-align: center;
    position: relative;
}
.global-narratives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 53, 18, 0.12), transparent);
    z-index: 1;
}
.global-header { 
    max-width: 800px; 
    margin: 0 auto 60px; 
    position: relative; 
    z-index: 2;
}
.global-header h2 { 
    font-family: var(--font-display);
    font-size: 3.5rem; 
    font-weight: 650;
    margin-bottom: 20px;
    text-shadow: 0 3px 16px rgba(43, 36, 27, 0.58);
}
.global-header p { 
    color: rgba(250, 248, 242, 0.84); 
    font-size: 1.2rem; 
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(43, 36, 27, 0.44);
}

.location-grid { 
    display: flex; 
    justify-content: center; 
    align-content: center;
    gap: 15px; 
    flex-wrap: wrap; 
    position: relative; 
    z-index: 2;
}
.loc-item span {
    display: inline-block; 
    padding: 12px 28px; 
    border: 1px solid rgba(244, 232, 210, 0.24);
    background: rgba(43, 36, 27, 0.72);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md); 
    color: var(--dk-bone); 
    font-family: var(--font-label);
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    font-size: 0.85rem; 
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.loc-item span::before {
    content: none;
    display: none;
}
.loc-item span:hover {
    transform: none;
    border-color: rgba(244, 232, 210, 0.42);
    background: rgba(138, 53, 18, 0.58);
    box-shadow: none;
    color: var(--dk-utility-white);
}
.loc-item span:hover::before {
    opacity: 1;
}

/* MISSION STATEMENT */
.mission-statement { 
    padding: 180px 0; 
    background:
        linear-gradient(rgba(43, 36, 27, 0.58), rgba(43, 36, 27, 0.62)),
        url('../images/about/DKMS.webp') fixed center center;
    background-size: cover;
    position: relative;
}
.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 53, 18, 0.12), transparent);
}
.mission-flex { 
    display: flex; 
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}
.mission-box { 
    background: rgba(244, 232, 210, 0.92);
    background-image: var(--texture-paper-grain);
    background-size: 380px 380px, 140px 140px;
    padding: 58px; 
    max-width: 550px; 
    border: 1px solid rgba(198, 169, 139, 0.82);
    border-radius: var(--radius-md);
    color: var(--dk-umber);
    box-shadow: var(--shadow-warm-md);
    transition: box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}
.mission-box::before {
    content: none;
    display: none;
}
.mission-box:hover {
    transform: none;
    box-shadow: var(--shadow-warm-md);
}
.mission-box:hover::before {
    transform: none;
}
.mission-box h3 { 
    font-family: var(--font-display);
    font-size: 2.5rem; 
    font-weight: 650;
    margin-bottom: 25px; 
    line-height: 1.1;
    color: var(--dk-umber);
    background: none;
    -webkit-text-fill-color: currentColor;
}
.mission-box p { 
    color: var(--dk-slatebrown); 
    line-height: 1.8; 
    margin-bottom: 40px; 
    font-size: 1.1rem;
    transition: none;
}
.mission-box:hover p {
    color: var(--dk-slatebrown);
}

/* GOLD CTA BUTTON */
.cta-blue-btn {
    display: inline-block;
    padding: 18px 35px;
    background: var(--brand-accent) !important;
    color: #000 !important;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--brand-accent);
    box-shadow: var(--shadow-warm-sm);
    position: relative;
    overflow: hidden;
}

.cta-blue-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-blue-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-blue-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-blue-btn:hover::after {
    opacity: 1;
}

.cta-blue-btn:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-warm-md);
    border-color: var(--brand-accent);
}

.cta-blue-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.mission-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-page .cta-blue-btn,
.mission-showcase-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: visible;
    cursor: pointer;
}

.mission-box .cta-blue-btn,
.mission-box .mission-showcase-btn {
    width: 100%;
}

.about-page .cta-blue-btn {
    background: var(--dk-clay) !important;
    color: var(--dk-utility-white) !important;
    border: 1px solid rgba(90, 18, 8, 0.28);
    box-shadow: var(--shadow-warm-sm);
}

.mission-showcase-btn {
    background: rgba(138, 53, 18, 0.08);
    color: var(--dk-clay);
    border: 1px solid rgba(138, 53, 18, 0.38);
    box-shadow: var(--shadow-warm-sm);
}

.about-page .cta-blue-btn::before,
.about-page .cta-blue-btn::after,
.mission-showcase-btn::before,
.mission-showcase-btn::after {
    content: none;
    display: none;
}

.about-page .cta-blue-btn:hover,
.about-page .cta-blue-btn:focus-visible {
    background: var(--dk-oxblood) !important;
    color: var(--dk-utility-white) !important;
    border-color: rgba(90, 18, 8, 0.42);
    box-shadow: var(--shadow-warm-sm);
    transform: none;
}

.mission-showcase-btn:hover,
.mission-showcase-btn:focus-visible {
    background: rgba(138, 53, 18, 0.14);
    color: var(--dk-oxblood);
    border-color: rgba(138, 53, 18, 0.58);
    box-shadow: var(--shadow-warm-sm);
    transform: none;
}

.mission-showcase-btn i {
    display: inline-grid;
    width: 24px;
    height: 24px;
    margin-right: 0;
    place-items: center;
    border: 1px solid rgba(138, 53, 18, 0.28);
    border-radius: var(--radius-md);
    background: rgba(21, 63, 56, 0.12);
    color: currentColor;
    font-size: 12px;
    transform: none;
}

.mission-showcase-btn:hover i {
    transform: none;
}

/* MOBILE */
@media (max-width: 1024px) {
    .about-hero h1 { font-size: 3rem; }
    .profile-grid { grid-template-columns: 1fr; gap: 60px; }
    .mission-flex { justify-content: center; }
    .mission-box { padding: 40px; }
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 0.75rem;
        padding: 14px 24px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    
    .mission-btns {
        flex-direction: column;
    }
    
    .cta-blue-btn,
    .mission-showcase-btn {
        width: 100%;
        text-align: center;
        font-size: 0.75rem;
        padding: 14px 24px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}
/* contact.css */
/* contact.css */

/* HERO */
.contact-hero { 
    min-height: 430px;
    padding: 142px 0 52px; 
    border-bottom: 1px solid rgba(43, 36, 27, 0.10);
    background:
        linear-gradient(to bottom, rgba(17, 17, 17, 0.58) 0, rgba(17, 17, 17, 0.36) 112px, transparent 190px),
        linear-gradient(to right, rgba(17, 17, 17, 0.72) 0, rgba(17, 17, 17, 0.48) 42%, rgba(17, 17, 17, 0.14) 68%, transparent 100%),
        url('../images/contact/contacthero.webp') center / cover;
    text-align: left; 
    color: var(--dk-utility-white);
    position: relative;
}

.contact-hero::before {
    content: none;
}

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

.contact-hero__copy {
    width: min(92%, 680px);
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(244, 232, 210, 0.16);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(43, 36, 27, 0.78), rgba(43, 36, 27, 0.56));
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.22);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-hero h1 { 
    margin: 0 0 18px; 
    color: var(--dk-utility-white);
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 5vw, 4rem); 
    font-weight: 650; 
    letter-spacing: 0;
    line-height: 1.04;
    text-shadow: none;
}

.accent-text { color: var(--brand-accent); }

.editorial-tag { 
    color: var(--dk-clay); 
    font-family: var(--font-label);
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    font-weight: 600; 
    font-size: 14px;
    line-height: 1.1;
    display: inline-block;
    margin-bottom: 16px;
}

.lead-para { 
    color: rgba(250, 248, 242, 0.84); 
    font-size: clamp(1.05rem, 2vw, 1.22rem); 
    max-width: 720px; 
    margin: 0; 
    line-height: 1.55;
    text-shadow: none;
}

/* MAIN SECTION */
.contact-main { 
    padding: 100px 0 120px; 
    background-color: var(--dk-canvas);
    background-image: var(--texture-paper-grain);
    background-size: 420px 420px, 160px 160px;
    color: var(--dk-umber);
    position: relative;
}

.contact-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 53, 18, 0.12), transparent);
}

.contact-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 56px; 
    align-items: start; 
}

/* STATUS MESSAGES */
.status-msg {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    background: var(--dk-umber);
    color: var(--dk-bone);
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow-warm-sm);
}

.status-msg.success {
    border: 1px solid var(--dk-clay);
}

.status-msg.error {
    border: 1px solid var(--dk-oxblood);
}

/* FORM STYLING */
.maverick-form { 
    background: rgba(244, 232, 210, 0.92);
    background-image: var(--texture-paper-grain);
    background-size: 380px 380px, 140px 140px;
    padding: 42px; 
    border-radius: var(--radius-md); 
    border: 1px solid rgba(198, 169, 139, 0.82);
    box-shadow: var(--shadow-warm-md);
    position: relative;
    overflow: hidden;
}

.form-group { margin-bottom: 22px; }
.form-group label { 
    display: block; 
    margin-bottom: 9px; 
    font-family: var(--font-label);
    font-weight: 600; 
    color: var(--dk-clay); 
    font-size: 0.86rem; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
}

/* Honeypot field - completely hidden from view */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%; 
    padding: 14px 16px; 
    background: var(--dk-bone); 
    border: 1px solid var(--dk-driftwood); 
    color: var(--dk-umber);
    border-radius: var(--radius-md); 
    font-family: var(--font-body); 
    font-size: 1rem;
    outline: none; 
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dk-slatebrown);
    opacity: 1;
}

/* Specific Dropdown Fix */
.form-group select {
    height: 52px;
    appearance: none;
    cursor: pointer;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus { 
    border-color: var(--dk-clay); 
    background: var(--dk-utility-white); 
    box-shadow: 0 0 0 3px rgba(138, 53, 18, 0.12);
}

/* CONTACT CTA BUTTON */
.cta-blue-btn {
    width: 100%; 
    min-height: 54px;
    padding: 16px 28px; 
    background: var(--dk-clay) !important; 
    color: var(--dk-utility-white) !important; 
    border: 1px solid rgba(90, 18, 8, 0.28);
    font-family: var(--font-label);
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; 
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    margin-top: 10px;
    box-shadow: var(--shadow-warm-sm);
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-page .cta-blue-btn::before,
.contact-page .cta-blue-btn::after {
    content: none;
    display: none;
}

.cta-blue-btn:hover { 
    background: var(--dk-oxblood) !important; 
    border-color: rgba(90, 18, 8, 0.42);
    box-shadow: var(--shadow-warm-md);
    color: var(--dk-utility-white) !important;
}

.cta-blue-btn:active {
    background: var(--dk-umber) !important;
}

/* INFO SIDE */
.info-box { 
    margin-bottom: 28px; 
    padding: 30px; 
    background: rgba(244, 232, 210, 0.9);
    background-image: var(--texture-paper-grain);
    background-size: 380px 380px, 140px 140px;
    border-radius: var(--radius-md); 
    border: 1px solid rgba(198, 169, 139, 0.82);
    box-shadow: var(--shadow-warm-sm);
}

.section-sub { 
    color: var(--dk-clay); 
    font-family: var(--font-label);
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    font-size: 0.8rem; 
    display: block; 
    margin-bottom: 18px;
    position: relative;
}

.info-box h3 { 
    font-family: var(--font-display);
    font-size: 1.65rem; 
    margin-bottom: 22px; 
    color: var(--dk-umber);
    font-weight: 650;
    letter-spacing: 0;
}

.contact-details p {
    margin-bottom: 12px;
    color: var(--dk-slatebrown);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-radius: var(--radius-md);
    background: transparent;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.contact-details p:hover {
    background: rgba(233, 216, 186, 0.7);
    border-color: rgba(138, 53, 18, 0.12);
}

.contact-details i {
    color: var(--dk-clay);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.contact-details a { 
    color: var(--dk-umber); 
    text-decoration: none; 
    transition: color 0.2s ease;
    flex: 1;
}

.contact-details p:hover a { 
    color: var(--dk-clay); 
}

.contact-details span {
    color: var(--dk-slatebrown);
    transition: color 0.2s ease;
    flex: 1;
}

.contact-details p:hover span {
    color: var(--dk-umber);
}

.contact-showcase-btn-wrapper {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(198, 169, 139, 0.8);
}

.contact-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 15px 22px;
    background: rgba(138, 53, 18, 0.08);
    color: var(--dk-clay);
    text-decoration: none;
    font-family: var(--font-label);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(138, 53, 18, 0.38);
    box-shadow: var(--shadow-warm-sm);
    position: relative;
    overflow: visible;
    text-align: center;
    font-size: 0.85rem;
}

.contact-showcase-btn:hover {
    background: rgba(138, 53, 18, 0.14);
    color: var(--dk-oxblood);
    border-color: rgba(138, 53, 18, 0.58);
    box-shadow: var(--shadow-warm-md);
}

.contact-showcase-btn:active {
    background: rgba(138, 53, 18, 0.18);
}

.contact-showcase-btn i {
    color: currentColor;
}

.what-to-expect {
    background: rgba(233, 216, 186, 0.9);
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    margin-bottom: 13px;
    color: var(--dk-slatebrown);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.expect-list i {
    color: var(--dk-clay);
    font-size: 1rem;
}

.optional {
    color: var(--dk-slatebrown);
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

.contact-visual {
    margin-top: 28px;
}

.contact-map-img { 
    width: 100%; 
    border-radius: var(--radius-md); 
    filter: saturate(0.92) contrast(1.04); 
    border: 1px solid rgba(198, 169, 139, 0.82); 
    opacity: 0.95;
    box-shadow: var(--shadow-warm-sm);
}

/* MOBILE */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-hero h1 { font-size: 3rem; }
    .contact-hero { padding: 126px 0 48px; }
    .maverick-form { padding: 30px; }
    .info-box { padding: 25px; }
    .contact-details p {
        font-size: 1rem;
    }
}


/* Homepage sidebar hero moved from inline page styles */
.home-page.hero-left-test .hero {
            justify-content: flex-start;
            padding-top: 0;
            text-align: left;
        }

        .home-page.hero-left-test .hero-overlay,
        .home-page.hero-left-test .hero:hover .hero-overlay {
            background:
                linear-gradient(to bottom, rgba(17, 17, 17, 0.72) 0, rgba(17, 17, 17, 0.48) 104px, rgba(17, 17, 17, 0.12) 160px, transparent 230px),
                linear-gradient(to right, rgba(43, 36, 27, 0.34) 0, rgba(43, 36, 27, 0.10) 42%, transparent 66%);
        }

        .home-page.hero-left-test .hero-content {
            align-self: stretch;
            display: flex;
            width: min(46vw, 590px);
            max-width: 590px;
            min-height: 100%;
            flex-direction: column;
            justify-content: center;
            margin-left: 0;
            margin-right: 0;
            padding: clamp(120px, 14vh, 160px) clamp(32px, 4vw, 56px) clamp(48px, 7vh, 72px);
            border-width: 0 1px 0 0;
            border-radius: 0;
            background:
                linear-gradient(135deg, rgba(43, 36, 27, 0.76), rgba(43, 36, 27, 0.54)),
                radial-gradient(circle at 18% 12%, rgba(138, 53, 18, 0.18), transparent 38%),
                repeating-linear-gradient(135deg, rgba(244, 232, 210, 0.025) 0, rgba(244, 232, 210, 0.025) 1px, transparent 1px, transparent 7px);
            box-shadow: 14px 0 34px rgba(43, 36, 27, 0.22);
        }

        .home-page.hero-left-test .hero-eyebrow {
            margin-bottom: 20px;
        }

        .home-page.hero-left-test .hero-content h1 {
            margin-bottom: 24px;
        }

        .home-page.hero-left-test .hero-content p {
            margin-left: 0;
            margin-right: 0;
            margin-bottom: 34px;
        }

        .home-page.hero-left-test .hero-btns {
            width: min(100%, 476px);
            gap: 14px;
            padding: 10px;
            justify-content: flex-start;
        }

        .home-page.hero-left-test .btn-primary,
        .home-page.hero-left-test .btn-secondary {
            flex: 1 1 0;
            height: 54px;
            min-height: 54px;
            padding: 0 28px;
        }

        .home-page.hero-left-test .btn-primary {
            flex-grow: 1.08;
        }

        .home-page.hero-left-test .btn-secondary i {
            flex: 0 0 28px;
            width: 28px;
            height: 28px;
        }

        @media (max-width: 720px) {
            .home-page.hero-left-test .hero {
                justify-content: center;
                text-align: center;
            }

            .home-page.hero-left-test .hero-overlay,
            .home-page.hero-left-test .hero:hover .hero-overlay {
                background:
                    linear-gradient(to bottom, rgba(17, 17, 17, 0.72) 0, rgba(17, 17, 17, 0.48) 104px, rgba(17, 17, 17, 0.12) 160px, transparent 230px);
            }

            .home-page.hero-left-test .hero-content {
                align-self: center;
                width: min(92%, 520px);
                min-height: auto;
                margin-left: auto;
                margin-right: auto;
                padding: 24px 18px;
                border: 1px solid rgba(244, 232, 210, 0.14);
                border-radius: var(--radius-md);
            }

            .home-page.hero-left-test .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
        }


/* 404 page moved from inline page styles */
body.error-page {
            min-height: 100vh;
            background-color: var(--dk-bone);
            background-image: var(--texture-paper-grain);
            color: var(--dk-umber);
        }

        .error-main {
            padding-top: 90px;
            background-color: var(--dk-bone);
            background-image: var(--texture-paper-grain);
        }

        .error-hero {
            min-height: min(720px, calc(100vh - 90px));
            display: grid;
            align-items: stretch;
            grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
            border-bottom: 1px solid rgba(43, 36, 27, 0.12);
        }

        .error-copy {
            display: flex;
            min-width: 0;
            flex-direction: column;
            justify-content: center;
            padding: clamp(56px, 7vw, 96px);
            background:
                linear-gradient(135deg, rgba(233, 216, 186, 0.96), rgba(244, 232, 210, 0.90)),
                var(--texture-paper-grain);
        }

        .error-kicker {
            margin-bottom: 22px;
            color: var(--dk-rust);
            font-family: var(--font-label);
            font-size: 0.86rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .error-code {
            margin: 0 0 12px;
            color: var(--dk-rust);
            font-family: var(--font-display);
            font-size: clamp(4.2rem, 12vw, 8.5rem);
            font-weight: 650;
            letter-spacing: 0;
            line-height: 0.86;
        }

        .error-title {
            max-width: 620px;
            margin: 0 0 22px;
            color: var(--dk-umber);
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 5.5vw, 5.4rem);
            font-weight: 650;
            letter-spacing: 0;
            line-height: 0.98;
        }

        .error-message {
            max-width: 560px;
            margin: 0 0 34px;
            color: rgba(43, 36, 27, 0.78);
            font-size: clamp(1.05rem, 1.6vw, 1.25rem);
            line-height: 1.6;
        }

        .error-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .error-actions .btn-primary,
        .error-actions .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 168px;
            min-height: 54px;
            padding: 0 28px;
            border: 1px solid transparent;
            border-radius: var(--radius-md);
            font-family: var(--font-label);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.08em;
            line-height: 1;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        }

        .error-actions .btn-primary {
            border-color: rgba(244, 232, 210, 0.14);
            background: var(--dk-clay);
            color: var(--dk-utility-white);
            box-shadow: var(--shadow-warm-sm);
        }

        .error-actions .btn-primary:hover,
        .error-actions .btn-primary:focus-visible {
            background: var(--dk-oxblood);
            color: var(--dk-utility-white);
            box-shadow: var(--shadow-warm-sm);
        }

        .error-actions .btn-secondary {
            border-color: rgba(43, 36, 27, 0.28);
            background: rgba(244, 232, 210, 0.74);
            color: var(--dk-umber);
        }

        .error-actions .btn-secondary:hover,
        .error-actions .btn-secondary:focus-visible {
            border-color: rgba(138, 53, 18, 0.38);
            background: rgba(233, 216, 186, 0.96);
            color: var(--dk-rust);
        }

        .error-photo {
            position: relative;
            min-height: 420px;
            overflow: hidden;
            background: var(--dk-umber);
        }

        .error-photo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .error-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to bottom, rgba(43, 36, 27, 0.10), rgba(43, 36, 27, 0.22)),
                linear-gradient(to right, rgba(43, 36, 27, 0.16), transparent 34%);
            pointer-events: none;
        }

        .error-photo-note {
            position: absolute;
            left: clamp(20px, 4vw, 42px);
            bottom: clamp(20px, 4vw, 42px);
            z-index: 1;
            max-width: 330px;
            padding: 16px 18px;
            border: 1px solid rgba(244, 232, 210, 0.22);
            border-radius: var(--radius-md);
            background: rgba(43, 36, 27, 0.62);
            color: var(--dk-bone);
            font-size: 0.96rem;
            line-height: 1.45;
            box-shadow: var(--shadow-warm-md);
        }

        @media (max-width: 860px) {
            .error-hero {
                min-height: 0;
                grid-template-columns: 1fr;
            }

            .error-copy {
                padding: 54px 24px 42px;
            }

            .error-photo {
                min-height: 320px;
            }
        }

        @media (max-width: 520px) {
            .error-actions {
                align-items: stretch;
                flex-direction: column;
            }

            .error-actions .btn-primary,
            .error-actions .btn-secondary {
                justify-content: center;
                width: 100%;
            }
        }
