:root{
--primary:#B8894A;
--primary-light:#D4AB6E;
--primary-dark:#8A6532;
--text:#1A1A1A;
--text-soft:#4A4A4A;
--text-muted:#888;
--bg:#FAF8F5;
--bg-alt:#F3EFE8;
--bg-dark:#121212;
--white:#FFFFFF;
--border:#E5DFD5;
--border-dark:#333;
--shadow-sm:0 4px 20px rgba(0,0,0,.04);
--shadow:0 20px 60px rgba(0,0,0,.08);
--shadow-lg:0 40px 100px rgba(0,0,0,.12);
--radius:16px;
--radius-lg:24px;
--radius-sm:10px;
--serif:'Cormorant Garamond',serif;
--sans:'Inter',sans-serif;
--transition:.35s cubic-bezier(.4,0,.2,1);
--maxw:1240px;
}

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

html{scroll-behavior:smooth;font-size:16px;}

body{
font-family:var(--sans);
background:var(--bg);
color:var(--text);
line-height:1.65;
min-height:100vh;
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}

img{display:block;max-width:100%;height:auto;}
a{color:inherit;text-decoration:none;transition:var(--transition);}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
ul{list-style:none;}

.container{
max-width:var(--maxw);
margin:0 auto;
padding:0 28px;
}

.scroll-progress{
position:fixed;
top:0;left:0;
height:3px;
background:linear-gradient(90deg,var(--primary),var(--primary-light));
z-index:9999;
width:0;
transition:width .1s;
}

::selection{background:var(--primary);color:var(--white);}

/* ===== REVEAL ANIMATIONS ===== */
.reveal{
opacity:0;
transform:translateY(30px);
transition:opacity .8s ease,transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.visible{
opacity:1;
transform:translateY(0);
}
.reveal-left{
opacity:0;
transform:translateX(-40px);
transition:opacity .8s ease,transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible{
opacity:1;
transform:translateX(0);
}
.reveal-right{
opacity:0;
transform:translateX(40px);
transition:opacity .8s ease,transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible{
opacity:1;
transform:translateX(0);
}
.reveal-scale{
opacity:0;
transform:scale(.95);
transition:opacity .8s ease,transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-scale.visible{
opacity:1;
transform:scale(1);
}

/* ===== BUTTONS ===== */
.btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:14px 28px;
border-radius:var(--radius-sm);
font-weight:600;
font-size:15.5px;
letter-spacing:.2px;
transition:var(--transition);
white-space:nowrap;
}
.btn-primary{
background:var(--primary);
color:var(--white);
box-shadow:0 10px 30px rgba(184,137,74,.25);
}
.btn-primary:hover{
background:var(--primary-dark);
transform:translateY(-2px);
box-shadow:0 16px 40px rgba(184,137,74,.35);
}
.btn-outline{
border:1.5px solid var(--text);
color:var(--text);
background:transparent;
}
.btn-outline:hover{
background:var(--text);
color:var(--white);
transform:translateY(-2px);
}
.btn-dark{
background:var(--text);
color:var(--white);
}
.btn-dark:hover{
background:var(--primary);
transform:translateY(-2px);
}
.btn-white{
background:var(--white);
color:var(--text);
}
.btn-white:hover{
background:var(--primary);
color:var(--white);
transform:translateY(-2px);
}

/* ===== SECTION BASE ===== */
section{
padding:42px 0;
position:relative;
}
.section-heading{
text-align:center;
max-width:640px;
margin:0 auto 48px;
}
.section-label{
display:inline-block;
font-size:12px;
font-weight:700;
letter-spacing:2.5px;
text-transform:uppercase;
color:var(--primary);
margin-bottom:14px;
}
.section-heading h2,
h2.section-title{
font-family:var(--serif);
font-size:clamp(32px,4.5vw,48px);
font-weight:600;
line-height:1.15;
color:var(--text);
margin-bottom:16px;
}
.section-heading p{
color:var(--text-soft);
font-size:16px;
line-height:1.7;
}

/* ===== HEADER ===== */
header{
position:fixed;
top:0;left:0;right:0;
z-index:900;
background:rgba(250,248,245,.85);
backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);
border-bottom:1px solid transparent;
transition:var(--transition);
}
header.scrolled{
border-bottom-color:var(--border);
box-shadow:var(--shadow-sm);
}
header .container{
display:flex;
align-items:center;
justify-content:space-between;
height:72px;
}
.logo{
display:flex;
align-items:center;
gap:10px;
font-family:var(--serif);
font-size:22px;
font-weight:700;
color:var(--text);
letter-spacing:.3px;
}
.logo img{
height:56px;
width:auto;
}
.logo span{
color:var(--primary);
}
.nav-menu{
display:flex;
align-items:center;
gap:36px;
}
.nav-menu a{
font-size:14.5px;
font-weight:500;
color:var(--text-soft);
position:relative;
padding-bottom:6px;
}
.nav-menu a:hover{
color:var(--text);
}
.nav-menu a.active{
color:var(--primary);
font-weight:700;
}
.nav-menu a::after{
content:'';
position:absolute;
left:0;bottom:0;
width:0;height:2px;
background:var(--primary);
transition:width .3s ease, height .3s ease;
}
.nav-menu a:hover::after{
width:100%;
height:2px;
}
.nav-menu a.active::after{
width:100%;
height:4px;
}
.desktop-cta{display:inline-flex;}
.menu-toggle{
display:none;
flex-direction:column;
gap:5px;
padding:8px;
z-index:1001;
}
.menu-toggle span{
width:26px;
height:2.5px;
background:var(--text);
border-radius:2px;
transition:var(--transition);
}
.menu-toggle.active span:nth-child(1){
transform:translateY(7.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){opacity:0;}
.menu-toggle.active span:nth-child(3){
transform:translateY(-7.5px) rotate(-45deg);
}
.menu-overlay{
position:fixed;inset:0;
background:rgba(0,0,0,.5);
opacity:0;visibility:hidden;
z-index:950;
pointer-events:none;
transition:var(--transition);
}


@media(max-width:991px){
.nav-menu{
position:fixed;
top:0;right:-100%;
width:340px;max-width:85%;
height:100vh;
background:var(--white);
padding:100px 36px 36px;
flex-direction:column;
align-items:flex-start;
gap:24px;
z-index:1000;
box-shadow:var(--shadow-lg);
transition:right .45s cubic-bezier(.4,0,.2,1);
}
.nav-menu.active{right:0;}
.nav-menu a{
font-size:18px;
width:100%;
padding:10px 0;
border-bottom:1px solid var(--border);
}
.desktop-cta{display:none;}
.menu-toggle{display:flex;}
}

/* =========================================================
   AMANDA JAY ONOS — HOMEPAGE HERO
   ========================================================= */

.amanda-hero {
    --black: #11100f;
    --cream: #f6f1e9;
    --white: #fffdf9;
    --orange: #ff6038;
    --yellow: #f4c84a;
    --muted: #827b73;

    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;

    overflow: hidden;

    background: var(--cream);
    color: var(--black);

    isolation: isolate;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.ah-bg-text {
    position: absolute;

    right: -5vw;
    bottom: -7vh;

    font-size: clamp(180px, 25vw, 430px);
    line-height: .7;

    font-weight: 900;
    letter-spacing: -.09em;

    color: rgba(17,16,15,.035);

    pointer-events: none;

    z-index: -3;
}


.ah-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);

    z-index: -2;
}

.ah-glow-one {
    width: 500px;
    height: 500px;

    right: 5%;
    top: -250px;

    background: rgba(255,96,56,.13);
}

.ah-glow-two {
    width: 400px;
    height: 400px;

    left: -250px;
    bottom: -250px;

    background: rgba(244,200,74,.12);
}


/* subtle grid */

.ah-grid {
    position: absolute;
    inset: 0;

    opacity: .25;

    background-image:
        linear-gradient(
            rgba(17,16,15,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17,16,15,.035) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 25%,
            black 75%,
            transparent
        );

    z-index: -2;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ah-container {
    width: min(1380px, calc(100% - 70px));

    height: 100%;

    margin: auto;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   TOPBAR
   ========================================================= */

.ah-topbar {
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-shrink: 0;
}


.ah-brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15.5px;
    font-weight: 900;

    letter-spacing: .12em;
}


.ah-mark-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 5px rgba(255,96,56,.1);
}


.ah-availability {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .1em;

    color: var(--muted);
}


.ah-availability span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #4eaf68;

    animation: ahLive 1.6s infinite;
}

@keyframes ahLive {
    50% {
        box-shadow: 0 0 0 5px rgba(78,175,104,.08);
    }
}


/* =========================================================
   MAIN
   ========================================================= */

.ah-main {
    flex: 1;

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(480px, 1.05fr);

    align-items: center;

    gap: 40px;

    min-height: 0;
}


/* =========================================================
   COPY
   ========================================================= */

.ah-copy {
    position: relative;
    z-index: 5;
    padding-bottom: 5px;
    padding-top: 43px;
}


.ah-kicker {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .18em;
}


.ah-kicker span {
    width: 32px;
    height: 2px;

    background: var(--orange);
}


/* headline */

.ah-copy h1 {
    max-width: 620px;

    margin: 0;

    font-size: clamp(65px, 6.5vw, 98px);

    line-height: .84;

    letter-spacing: -.075em;

    font-weight: 900;
}


.ah-copy h1 em {
    display: block;

    color: var(--orange);

    font-family: Georgia, serif;

    font-weight: 500;

    letter-spacing: -.07em;
}


/* description */

.ah-description {
    max-width: 510px;

    margin: 23px 0 21px;

    color: #6e6861;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.ah-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 32px;
    padding-top: 16px;
}


.ah-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 13px 17px;

    border-radius: 100px;

    background: var(--black);
    color: white;

    text-decoration: none;

    font-size: 15.5px;
    font-weight: 900;

    transition:
        transform .25s ease,
        background .25s ease;
}


.ah-primary i {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);

    font-size: 15.5px;
}


.ah-primary:hover {
    transform: translateY(-3px);
    background: var(--orange);
}


.ah-secondary {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--black);

    text-decoration: none;

    font-size: 15.5px;
    font-weight: 900;

    transition: gap .2s ease;
}


.ah-secondary:hover {
    gap: 12px;
}

/* =========================================================
   AUDIO BOX
   ========================================================= */

.ah-audio {

    width: min(100%, 650px);

    padding: 12px;

    border: 1px solid rgba(17,16,15,.08);

    border-radius: 15px;

    background: rgba(255,253,249,.82);

    box-shadow:
        0 15px 45px rgba(17,16,15,.06);

    backdrop-filter: blur(16px);
}


/* heading */

.ah-audio-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 8px;
}


.ah-audio-title {

    display: flex;

    align-items: center;

    gap: 8px;
}


.ah-pulse {

    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 4px rgba(255,96,56,.1);

    animation: audioPulse 1.5s infinite;
}


@keyframes audioPulse {

    50% {
        box-shadow:
            0 0 0 8px rgba(255,96,56,0);
    }

}


.ah-audio-title small {

    display: block;

    margin-bottom: 2px;

    color: #a09a92;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .12em;
}


.ah-audio-title strong {

    display: block;

    font-size: 15.5px;

    line-height: 1;
}


.ah-demo-count {

    color: #aaa;

    font-size: 15.5px;

    font-weight: 900;

    letter-spacing: .1em;
}


/* =========================================================
   MAIN PLAYER
   ========================================================= */

.ah-player {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 10px;

    border-radius: 10px;

    background: var(--black);

    color: white;
}


.ah-main-play {

    width: 37px;
    height: 37px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border: 0;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    cursor: pointer;

    font-size: 18px;

    transition:
        transform .2s ease,
        background .2s ease;
}


.ah-main-play:hover {

    transform: scale(1.08);

    background: var(--orange-dark);
}


.ah-player-content {

    flex: 1;

    min-width: 0;
}


.ah-player-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 3px;
}


.ah-player-top span {

    color: #777;

    font-size: 15.5px;

    font-weight: 800;

    letter-spacing: .1em;
}


.ah-player-top time {

    color: #999;

    font-size: 15.5px;

    font-variant-numeric: tabular-nums;
}


/* waveform */

.ah-wave {

    height: 16px;

    display: flex;

    align-items: center;

    gap: 2px;

    overflow: hidden;

    margin-bottom: 4px;
}


.ah-wave span {

    flex: 1;

    max-width: 4px;

    min-width: 2px;

    border-radius: 10px;

    background: #555;

    animation:
        ahWaveAnim .75s
        ease-in-out infinite alternate;
}


@keyframes ahWaveAnim {

    from {
        transform: scaleY(.45);
    }

    to {
        transform: scaleY(1);
    }

}


.ah-progress {

    width: 100%;

    height: 2px;

    border-radius: 10px;

    background: #3b3b3b;

    cursor: pointer;
}


.ah-progress span {

    display: block;

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background: var(--orange);
}


/* =========================================================
   DEMO GRID
   ========================================================= */

.ah-demo-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 5px;

    margin-top: 7px;
}


.ah-demo {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 7px;

    border: 1px solid #e8e1d9;

    border-radius: 9px;

    background: rgba(255,255,255,.55);

    color: var(--black);

    text-align: left;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.ah-demo:hover {

    transform: translateY(-2px);

    border-color: rgba(255,96,56,.35);

    background: white;

    box-shadow:
        0 7px 18px rgba(0,0,0,.06);
}


.ah-demo.active {

    border-color: var(--orange);

    background: #fff8f4;

}
/* icon */

.ah-demo-icon {

    width: 27px;
    height: 27px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 7px;

    background: #f0eae3;

    color: var(--orange);

    font-size: 15.5px;
}


.ah-demo.active .ah-demo-icon {

    background: var(--orange);

    color: white;
}


/* text */

.ah-demo-info {

    flex: 1;

    min-width: 0;
}


.ah-demo-info strong {

    display: block;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 10px;

    font-weight: 900;
}


.ah-demo-info small {

    display: block;

    margin-top: 2px;

    color: #aaa;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .08em;
}


/* play */

.ah-demo-play {

    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #eee8e1;

    color: var(--black);

    font-size: 15.5px;

    transition:
        background .2s ease,
        color .2s ease;
}


.ah-demo:hover .ah-demo-play,
.ah-demo.active .ah-demo-play {

    background: var(--orange);

    color: white;
}




/* =========================================================
   VISUAL
   ========================================================= */

.ah-visual {
    position: relative;

    height: min(650px, calc(100vh - 120px));

    min-height: 530px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* portrait background */

.ah-portrait-bg {
    position: absolute;

    inset: 9%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffe4bf,
            #f3aa65 55%,
            #df6834
        );

    box-shadow:
        0 35px 80px rgba(70,40,20,.16);
}


/* portrait */

.ah-portrait {
    position: relative;

    width: min(510px, 90%);

    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    z-index: 4;
}


.ah-portrait img {
    position: relative;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 30px 25px rgba(0,0,0,.18)
        );

    transform: scale(1.02);

    transition: transform .5s ease;
}


.ah-portrait:hover img {
    transform: scale(1.045);
}


/* =========================================================
   SOUND CIRCLE
   ========================================================= */

.ah-sound-circle {
    position: absolute;

    width: 88%;
    aspect-ratio: 1;

    border: 1px solid rgba(17,16,15,.13);

    border-radius: 50%;

    z-index: 2;

    animation: ahRotate 25s linear infinite;
}


.ah-circle-inner {
    position: absolute;

    inset: 6%;

    border: 1px dashed rgba(17,16,15,.13);

    border-radius: 50%;
}


@keyframes ahRotate {
    to {
        transform: rotate(360deg);
    }
}


.ah-circle-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--orange);
}


.dot-one {
    top: 8%;
    left: 23%;
}


.dot-two {
    right: 7%;
    top: 42%;

    background: var(--yellow);
}


.dot-three {
    left: 13%;
    bottom: 20%;
}


/* =========================================================
   NUMBER
   ========================================================= */

.ah-number {
    position: absolute;

    right: 3%;
    top: 12%;

    z-index: 7;

    display: flex;
    align-items: flex-end;

    color: var(--black);

    font-size: 54px;

    line-height: .8;

    font-weight: 900;

    letter-spacing: -.08em;
}


.ah-number span {
    color: var(--orange);
}


.ah-number small {
    margin-left: 7px;
    margin-bottom: 2px;

    font-size: 11px;

    line-height: 1.25;

    letter-spacing: .12em;

    color: #827b73;
}


/* =========================================================
   QUOTE
   ========================================================= */

.ah-quote {
    position: absolute;

    left: 0;
    top: 27%;

    z-index: 8;

    width: 135px;

    padding: 12px;

    background: rgba(255,253,249,.92);

    border: 1px solid rgba(17,16,15,.08);

    border-radius: 13px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.1);

    backdrop-filter: blur(12px);

    animation: ahFloat 5s ease-in-out infinite;
}


.ah-quote i {
    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-size: 16px;
}


.ah-quote span {
    display: block;

    font-size: 15.5px;

    line-height: 1.25;
}


.ah-quote strong {
    color: var(--orange);
}


/* =========================================================
   TAGS
   ========================================================= */

.ah-tag {
    position: absolute;

    z-index: 9;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 8px 11px;

    border-radius: 100px;

    background: var(--black);

    color: white;

    font-size: 15.5px;
    font-weight: 900;

    box-shadow: 0 12px 30px rgba(0,0,0,.12);

    white-space: nowrap;

    animation: ahFloat 5.5s ease-in-out infinite;
}


.ah-tag i {
    color: var(--orange);
}


.ah-tag-one {
    left: 7%;
    bottom: 17%;
}


.ah-tag-two {
    right: 2%;
    top: 36%;

    animation-delay: -2s;
}


@keyframes ahFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   VERTICAL TEXT
   ========================================================= */

.ah-vertical {
    position: absolute;

    right: -15px;
    bottom: 22%;

    writing-mode: vertical-rl;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: .18em;

    color: #aaa29a;
}


/* =========================================================
   BOTTOM
   ========================================================= */

.ah-bottom {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    color: #948d85;
    font-size: 15.5px;
    font-weight: 800;
    letter-spacing: .06em;
    padding-top: 36px;
}


.ah-bottom i {
    color: var(--orange);

    margin-right: 4px;
}


.ah-scroll-hint {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 9px;
}


.ah-scroll-hint span {
    display: block;

    width: 35px;
    height: 1px;

    background: #aaa;

    position: relative;
}


.ah-scroll-hint span::after {
    content: "";

    position: absolute;

    right: 0;
    top: -2px;

    width: 5px;
    height: 5px;

    border-right: 1px solid #777;
    border-bottom: 1px solid #777;

    transform: rotate(45deg);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .amanda-hero {
        height: auto;
        min-height: 100vh;
    }

    .ah-container {
        height: auto;
    }

    .ah-main {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .ah-copy h1 {
        font-size: clamp(54px, 7vw, 78px);
    }

    .ah-visual {
        height: 570px;
        min-height: 0;
    }

    .ah-description {
        max-width: 440px;
    }

}


@media (max-width: 800px) {

    .amanda-hero {
        height: auto;
        min-height: 100vh;
    }

    .ah-container {
        width: calc(100% - 30px);
    }

    .ah-topbar {
        height: 65px;
    }

    .ah-main {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 5px;
    }

    .ah-copy {
        padding-top: 15px;
    }

    .ah-copy h1 {
        font-size: clamp(58px, 15vw, 90px);
    }

    .ah-description {
        font-size: 13px;
        max-width: 500px;
    }

    .ah-visual {
        height: 500px;
        min-height: 0;
    }

    .ah-bottom {
        height: 45px;
    }

}


@media (max-width: 500px) {

    .ah-container {
        width: calc(100% - 22px);
    }

    .ah-availability {
        display: none;
    }

    .ah-brand-mark {
        font-size: 9px;
    }

    .ah-copy {
        padding-top: 18px;
    }

    .ah-copy h1 {
        font-size: 65px;
    }

    .ah-description {
        margin: 17px 0;

        font-size: 12px;

        line-height: 1.55;
    }

    .ah-actions {
        gap: 15px;
        margin-bottom: 17px;
    }

    .ah-primary {
        padding: 12px 14px;
    }

    .ah-audio {
        padding: 10px;
    }

    .ah-audio-heading {
        margin-bottom: 7px;
    }

    .ah-demo {
        padding: 5px 8px;
    }

    .ah-visual {
        height: 390px;
    }

    .ah-number {
        right: 2%;
        top: 5%;

        font-size: 38px;
    }

    .ah-number small {
        font-size: 6px;
    }

    .ah-quote {
        left: -3px;
        top: 25%;

        transform: scale(.85);
        transform-origin: left;
    }

    .ah-tag-one {
        left: 0;
        bottom: 10%;
    }

    .ah-tag-two {
        right: 0;
        top: 37%;
    }

    .ah-vertical {
        display: none;
    }

    .ah-bottom {
        padding-bottom: 10px;
    }

    .ah-bottom span:nth-child(2) {
        display: none;
    }

    .ah-scroll-hint {
        display: none;
    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

}

/* =========================================================
   SERVICE PILLS
========================================================= */

.service-pill {
  position: absolute;

  z-index: 9;

  padding: 10px 14px;

  display: flex;
  align-items: center;
  gap: 7px;

  border-radius: 100px;

  background: white;

  box-shadow: 0 15px 35px rgba(0,0,0,.1);

  font-size: 10px;
  font-weight: 800;

  transition: transform .3s;
}

.service-pill:hover {
  transform: scale(1.08) rotate(-3deg);
}

.service-pill i {
  color: var(--hero-accent);
}

.pill-one {
  right: 4%;
  top: 18%;
}

.pill-two {
  left: 0;
  bottom: 32%;
}

.pill-three {
  right: 5%;
  bottom: 9%;
}


/* =========================================================
   FLOATING ANIMATIONS
========================================================= */

.float-one {
  animation: floatOne 4s ease-in-out infinite;
}

.float-two {
  animation: floatTwo 5s ease-in-out infinite;
}

.pill-one {
  animation: floatOne 6s ease-in-out infinite;
}

.pill-two {
  animation: floatTwo 5s ease-in-out infinite;
}

.pill-three {
  animation: floatOne 7s ease-in-out infinite;
}

@keyframes floatOne {
  0%,100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-13px) rotate(2deg);
  }
}

@keyframes floatTwo {
  0%,100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(12px) rotate(-2deg);
  }
}


/* =========================================================
   SCROLL
========================================================= */

.hero-scroll {
  position: absolute;

  bottom: 25px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 7px;

  z-index: 10;
}

.hero-scroll span {
  width: 1px;
  height: 35px;

  background: var(--hero-dark);

  animation: scrollLine 1.7s ease-in-out infinite;
}

.hero-scroll small {
  font-size: 7px;
  letter-spacing: .2em;
  font-weight: 800;
}

@keyframes scrollLine {
  0%,100% {
    transform: scaleY(.5);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ==========================================
   ABOUT HERO
========================================== */

.about-hero {
  position: relative;

  min-height: 680px;

  display: flex;

  align-items: center;

  padding:
    145px 0
    75px;

  overflow: hidden;

  background: #f7f8f7;
}


/* ==========================================
   GIANT BACKGROUND WORD
========================================== */

.about-hero-bg-text {
  position: absolute;

  z-index: 0;

  right: -45px;

  bottom: -85px;

  font-size: clamp(180px, 28vw, 430px);

  line-height: .75;

  font-weight: 900;

  letter-spacing: -.12em;

  color: rgba(23,36,63,.035);

  pointer-events: none;

  user-select: none;
}


/* ==========================================
   TOP LINE
========================================== */

.about-hero-top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 70px;
}


.about-hero-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  font-size: 15.5px;

  font-weight: 800;

  letter-spacing: .16em;

  color: var(--primary);
}


.about-hero-label i {
  font-size: 15.5px;
}


.about-hero-number {
  font-size: 15.5px;

  font-weight: 700;

  letter-spacing: .15em;

  color: #9a9da5;
}


/* ==========================================
   CONTENT
========================================== */

.about-hero-content {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);

  gap: 60px;

  align-items: center;
}


/* ==========================================
   MAIN HEADING
========================================== */

.about-hero-main h1 {
  margin: 0;

  max-width: 850px;

  font-size: clamp(75px, 10vw, 145px);

  line-height: .78;

  letter-spacing: -.095em;

  font-weight: 800;

  color: var(--text, #17243f);
}


.about-hero-main h1 span {
  display: block;

  padding-left: .9em;

  font-size: .65em;

  font-weight: 400;

  letter-spacing: -.07em;
}


.about-hero-main h1 em {
  display: block;

  color: var(--primary);

  font-family: Georgia, serif;

  font-size: .9em;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -.08em;
}


/* ==========================================
   DESCRIPTION
========================================== */

.about-hero-description {
  display: flex;

  align-items: flex-end;

  gap: 45px;

  margin-top: 55px;

  margin-left: 19%;
}


.about-hero-description p {
  max-width: 360px;

  margin: 0;

  font-size: 15.5px;

  line-height: 1.8;

  color: #656a77;
}


/* ==========================================
   SCROLL LINK
========================================== */

.about-hero-scroll {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 13px;

  color: var(--text, #17243f);

  text-decoration: none;

  font-size: 15.5px;

  font-weight: 800;

  letter-spacing: .12em;

  text-transform: uppercase;

  white-space: nowrap;
}


.about-hero-scroll i {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  border: 1px solid rgba(23,36,63,.2);

  border-radius: 50%;

  font-size: 15px;

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    background .3s ease,
    color .3s ease;
}


.about-hero-scroll:hover i {
  transform: translateY(6px);

  background: var(--primary);

  color: #fff;

  border-color: var(--primary);
}


/* ==========================================
   RIGHT SIDE
========================================== */

.about-hero-side {
  position: relative;

  min-height: 350px;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* ==========================================
   ORBIT
========================================== */

.hero-orbit {
  position: relative;

  width: 245px;

  height: 245px;

  display: flex;

  align-items: center;

  justify-content: center;
}


.orbit-ring {
  position: absolute;

  border: 1px solid rgba(23,36,63,.12);

  border-radius: 50%;
}


.ring-one {
  inset: 0;

  animation:
    orbitRotate 18s linear infinite;
}


.ring-two {
  inset: 25px;

  border-style: dashed;

  animation:
    orbitRotateReverse 14s linear infinite;
}


.orbit-center {
  width: 75px;

  height: 75px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  font-size: 27px;

  box-shadow:
    0 20px 50px rgba(0,0,0,.12);

  animation:
    gentlePulse 3s ease-in-out infinite;
}


/* ==========================================
   FLOATING WORDS
========================================== */

.hero-side-word {
  position: absolute;

  font-size: 15.5px;

  font-weight: 800;

  letter-spacing: .18em;

  color: #7e838d;

  white-space: nowrap;

  animation:
    floatingWord 4s ease-in-out infinite;
}


.word-one {
  top: 15px;

  right: 30px;
}


.word-two {
  bottom: 35px;

  left: 10px;

  animation-delay: -1.3s;
}


.word-three {
  top: 50%;

  right: -10px;

  animation-delay: -2.5s;
}


/* ==========================================
   BOTTOM
========================================== */

.about-hero-bottom {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 20px;

  margin-top: 65px;

  font-size: 15.5px;

  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;

  color: #8b8e96;
}


.hero-line {
  width: 80px;

  height: 1px;

  background: #d6d8dc;
}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes orbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes orbitRotateReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}


@keyframes gentlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

}


@keyframes floatingWord {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .about-hero {
    min-height: auto;

    padding:
      135px 0
      65px;
  }


  .about-hero-content {
    grid-template-columns: 1fr;
  }


  .about-hero-side {
    display: none;
  }


  .about-hero-main h1 {
    max-width: 700px;
  }


  .about-hero-description {
    margin-left: 12%;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .about-hero {
    padding:
      120px 0
      50px;
  }


  .about-hero-top {
    margin-bottom: 50px;
  }


  .about-hero-main h1 {
    font-size: clamp(62px, 18vw, 95px);

    line-height: .82;
  }


  .about-hero-main h1 span {
    padding-left: .5em;
  }


  .about-hero-description {
    display: block;

    margin:
      40px 0 0;
  }


  .about-hero-description p {
    max-width: 100%;

    font-size: 15.5px;
  }


  .about-hero-scroll {
    flex-direction: row;

    margin-top: 28px;

    justify-content: space-between;

    width: 100%;
  }


  .about-hero-scroll i {
    width: 38px;

    height: 38px;
  }


  .about-hero-bottom {
    margin-top: 50px;

    flex-wrap: wrap;

    gap: 12px;
  }


  .hero-line {
    width: 40px;
  }


  .about-hero-bg-text {
    right: -20px;

    bottom: -20px;

    font-size: 150px;
  }

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.hero-reveal {
  opacity: 0;
  transform: translateY(35px);

  animation: heroReveal .9s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-copy .hero-reveal:nth-child(1) {
  animation-delay: .15s;
}

.hero-copy .hero-reveal:nth-child(2) {
  animation-delay: .25s;
}

.hero-copy .hero-reveal:nth-child(3) {
  animation-delay: .35s;
}

.hero-copy .hero-reveal:nth-child(4) {
  animation-delay: .45s;
}

.hero-copy .hero-reveal:nth-child(5) {
  animation-delay: .55s;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .hero-inner {
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(58px, 7vw, 90px);
  }

  .hero-visual {
    min-height: 650px;
  }

  .portrait-container {
    width: 390px;
  }

  .audio-ring {
    width: 440px;
    height: 440px;
  }

  .orbit-one {
    width: 500px;
    height: 500px;
  }

  .orbit-two {
    width: 590px;
    height: 590px;
  }

}


@media (max-width: 800px) {

  .amanda-hero {
    min-height: auto;
  }

  .hero-topline {
    min-height: 55px;
  }

  .hero-topline span:nth-child(4),
  .topline-line:last-of-type {
    display: none;
  }

  .hero-inner {
    width: 90%;

    grid-template-columns: 1fr;

    padding: 60px 0 100px;

    gap: 50px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(62px, 15vw, 105px);
  }

  .hero-title span {
    margin-left: 8vw;
  }

  .hero-title em {
    margin-left: 3vw;
  }

  .hero-text {
    max-width: 600px;
  }

  .hero-actions {
    margin-bottom: 45px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .portrait-container {
    width: min(400px, 72vw);
  }

  .audio-ring {
    width: 440px;
    height: 440px;
  }

  .orbit-one {
    width: 500px;
    height: 500px;
  }

  .orbit-two {
    width: 590px;
    height: 590px;
  }

  .hero-scroll {
    display: none;
  }

}


@media (max-width: 550px) {

  .hero-topline {
    width: 88%;
    font-size: 15.5px;
  }

  .hero-topline span:nth-child(2) {
    margin-right: 0;
  }

  .hero-bg-word {
    top: 25%;
    font-size: 45vw;
  }

  .hero-inner {
    padding-top: 45px;
  }

  .hero-kicker {
    font-size: 9px;
  }

  .hero-title {
    font-size: clamp(56px, 17vw, 82px);
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  
  .service-pill {
    transform: scale(.8);
  }

  .pill-one {
    right: -10px;
    top: 12%;
  }

  .pill-two {
    left: -15px;
    bottom: 28%;
  }

  .pill-three {
    right: 0;
    bottom: 8%;
  }

  .hero-marquee {
    padding: 11px 0;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

}


/* =========================================================
   AMANDA ABOUT
========================================================= */

.amanda-about {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background: var(--background, #f7f3ed);
}

.amanda-about-bg {
  position: absolute;
  top: 50%;
  left: -4%;
  transform: translateY(-50%);

  font-size: clamp(150px, 22vw, 400px);
  font-weight: 900;
  letter-spacing: -.09em;

  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.045);

  pointer-events: none;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 70px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-eyebrow i {
  color: var(--primary);
}

.about-intro-line {
  width: 80px;
  height: 1px;
  background: currentColor;
  opacity: .2;
}

.about-intro-number {
  margin-left: auto;
  opacity: .45;
}


.about-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}


/* IMAGE */

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 510px;
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -15px 15px 15px -15px;
  border: 1px solid var(--primary);
  border-radius: 3px;
  opacity: .5;
  transform: rotate(-4deg);
  transition: transform .6s ease;
}

.about-image-wrap:hover::before {
  transform: rotate(2deg);
}

.about-image-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -30px;
  top: -30px;
  background: var(--primary);
  border-radius: 50%;
  opacity: .12;
}

.about-image-wrap img {
  position: relative;
  z-index: 2;

  width: 100%;
  aspect-ratio: .85;
  object-fit: cover;

  display: block;

  border-radius: 3px;
}

.about-image-label {
  position: absolute;
  z-index: 4;

  bottom: 25px;
  left: 25px;

  padding: 15px 20px;

  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);

  font-size: 9px;
  letter-spacing: .15em;
}

.about-image-label span {
  display: block;
  opacity: .5;
}

.about-image-label strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.about-floating-note {
  position: absolute;
  z-index: 5;

  right: -40px;
  bottom: 50px;

  width: 100px;
  height: 100px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: var(--primary);
  color: white;

  font-size: 9px;
  line-height: 1.3;
  text-align: center;

  animation: aboutFloat 4s ease-in-out infinite;
}

.about-floating-note i {
  font-size: 20px;
  margin-bottom: 6px;
}

@keyframes aboutFloat {
  0%,100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-12px) rotate(-4deg);
  }
}


/* ABOUT CONTENT */

.section-mini-label {
  display: block;
  margin-bottom: 20px;

  color: var(--primary);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 800px;

  margin: 0;

  font-size: clamp(52px, 6vw, 92px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 800;
}

.about-content h2 em {
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 400;
}

.about-copy {
  max-width: 650px;
  margin-top: 40px;
}

.about-copy p {
  margin: 0 0 18px;

  color: #777;
  font-size: 15px;
  line-height: 1.8;
}

.about-copy .about-lead {
  color: #222;
  font-size: 18px;
  line-height: 1.65;
}

.about-copy strong {
  color: var(--primary);
}


/* STATS */

.about-stats {
  display: flex;
  gap: 50px;

  margin: 45px 0;
  padding-top: 25px;

  border-top: 1px solid rgba(0,0,0,.1);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-stat strong {
  font-size: 35px;
  line-height: 1;
  letter-spacing: -.06em;
}

.about-stat strong span {
  color: var(--primary);
}

.about-stat small {
  color: #888;
  font-size: 9px;
  line-height: 1.3;
}

.about-more {
  display: inline-flex;
  align-items: center;
  gap: 20px;

  color: inherit;
  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
}

.about-more i {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(0,0,0,.2);
  border-radius: 50%;

  transition: .35s;
}

.about-more:hover i {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}


/* =========================================================
   SERVICES
========================================================= */

.amanda-services {
  position: relative;
  overflow: hidden;

  padding: 150px 0;

  background: #11100f;
  color: white;
}

.services-bg-word {
  position: absolute;
  right: -5%;
  top: 5%;

  font-size: clamp(150px, 22vw, 380px);
  font-weight: 900;
  letter-spacing: -.1em;

  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);

  pointer-events: none;
}

.services-header {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 80px;
  align-items: end;

  margin-bottom: 80px;
}

.services-header h2 {
  margin: 0;

  font-size: clamp(55px, 7vw, 100px);
  line-height: .88;
  letter-spacing: -.07em;
}

.services-header h2 em {
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 400;
}

.services-header p {
  margin: 0;

  color: rgba(255,255,255,.55);

  font-size: 15px;
  line-height: 1.8;
}


/* SERVICE CARDS */

.services-list {
  position: relative;
  z-index: 2;

  border-top: 1px solid rgba(255,255,255,.15);
}

.big-service-card {
  position: relative;

  display: grid;
  grid-template-columns: 80px 1fr 1fr 55px;
  align-items: center;

  gap: 30px;

  padding: 42px 20px;

  border-bottom: 1px solid rgba(255,255,255,.15);

  transition:
    background .45s ease,
    padding .45s ease;
}

.big-service-card:hover,
.big-service-card.service-active {
  background: rgba(255,255,255,.035);
  padding-left: 35px;
  padding-right: 35px;
}

.service-card-number {
  color: rgba(255,255,255,.3);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-large-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;

  color: var(--primary);

  transition: .4s;
}

.big-service-card:hover .service-large-icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(-10deg) scale(1.1);
}

.service-tag {
  padding: 6px 10px;

  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;

  color: rgba(255,255,255,.5);

  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.service-card-main h3 {
  margin: 20px 0 7px;

  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -.05em;
}

.service-card-main p {
  max-width: 330px;
  margin: 0;

  color: rgba(255,255,255,.5);

  font-size: 13px;
  line-height: 1.7;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-details span {
  padding: 8px 11px;

  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;

  color: rgba(255,255,255,.55);

  font-size: 9px;

  transition: .3s;
}

.big-service-card:hover .service-details span {
  border-color: rgba(216,91,56,.35);
}

.service-arrow {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;

  color: white;
  text-decoration: none;

  transition: .4s;
}

.big-service-card:hover .service-arrow {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}

.services-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 35px;

  color: rgba(255,255,255,.4);

  font-size: 11px;
}

.services-bottom a {
  display: flex;
  align-items: center;
  gap: 10px;

  color: white;
  text-decoration: none;
  font-weight: 700;
}

.services-bottom a i {
  transition: transform .3s;
}

.services-bottom a:hover i {
  transform: translateX(5px);
}


/* =========================================================
   SHOWREEL
========================================================= */

.amanda-showreel {
  position: relative;
  overflow: hidden;

  padding: 140px 0;

  background: var(--primary, #d85b38);
  color: white;
}

.showreel-outline-text {
  position: absolute;

  top: 48%;

  width: 100%;

  transform: rotate(-7deg);

  color: transparent;

  -webkit-text-stroke: 1px rgba(255,255,255,.12);

  font-size: clamp(80px, 13vw, 220px);
  font-weight: 900;
  letter-spacing: -.08em;

  white-space: nowrap;
  pointer-events: none;
}

.showreel-top {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;

  margin-bottom: 70px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.showreel-top span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showreel-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: .7fr 1.3fr;

  gap: 100px;
  align-items: center;
}

.showreel-copy {
  max-width: 550px;
}

.showreel-label {
  display: block;

  margin-bottom: 25px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;

  opacity: .7;
}

.showreel-copy h2 {
  margin: 0;

  font-size: clamp(60px, 7vw, 105px);
  line-height: .85;
  letter-spacing: -.08em;
}

.showreel-copy h2 em {
  display: block;

  font-family: Georgia, serif;
  font-weight: 400;
}

.showreel-copy > p {
  margin: 35px 0;

  max-width: 470px;

  font-size: 15px;
  line-height: 1.8;

  color: rgba(255,255,255,.75);
}

.showreel-meta {
  display: flex;
  gap: 45px;

  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,.25);
}

.showreel-meta strong {
  display: block;

  margin-bottom: 5px;

  font-size: 9px;
  letter-spacing: .15em;
}

.showreel-meta span {
  color: rgba(255,255,255,.6);
  font-size: 9px;
}


/* VIDEO */

.showreel-media {
  position: relative;
}

.showreel-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 1.5;

  background: #111;

  box-shadow: 25px 30px 70px rgba(0,0,0,.2);
}

.showreel-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}

.showreel-image:hover img {
  transform: scale(1.06);
}

.showreel-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(0,0,0,.05),
    rgba(0,0,0,.45)
  );
}

.showreel-play {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;

  color: white;
  text-decoration: none;
}

.showreel-play span {
  width: 90px;
  height: 90px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: white;
  color: var(--primary);

  font-size: 28px;

  transition:
    transform .4s,
    background .4s;
}

.showreel-play:hover span {
  transform: scale(1.15);
  background: var(--primary);
  color: white;
}

.showreel-play small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-align: center;
}

.showreel-corner {
  position: absolute;

  right: -20px;
  bottom: -20px;

  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  background: #111;
  color: white;

  font-size: 20px;
}

.showreel-bottom {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 60px;

  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,.25);
}

.showreel-bottom span {
  font-size: 12px;
  opacity: .7;
}

.showreel-bottom a {
  display: flex;
  align-items: center;
  gap: 12px;

  color: white;
  text-decoration: none;

  font-size: 11px;
  font-weight: 800;
}

.showreel-bottom a i {
  transition: transform .3s;
}

.showreel-bottom a:hover i {
  transform: translate(4px,-4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .amanda-about,
  .amanda-services,
  .amanda-showreel {
    padding: 100px 0;
  }

  .about-layout,
  .showreel-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 550px;
  }

  .about-content h2 {
    font-size: clamp(50px, 9vw, 80px);
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .big-service-card {
    grid-template-columns: 55px 1fr 55px;
  }

  .service-details {
    grid-column: 2 / 4;
  }

  .showreel-layout {
    gap: 60px;
  }

}


@media (max-width: 600px) {

  .about-intro {
    margin-bottom: 45px;
  }

  .about-intro-line {
    width: 30px;
  }

  .about-layout {
    gap: 70px;
  }

  .about-floating-note {
    right: -10px;
  }

  .about-content h2 {
    font-size: 53px;
  }

  .about-copy {
    margin-top: 30px;
  }

  .about-stats {
    gap: 25px;
    justify-content: space-between;
  }

  .about-stat strong {
    font-size: 27px;
  }

  .about-stat small {
    font-size: 8px;
  }


  .services-header h2 {
    font-size: 58px;
  }

  .big-service-card {
    grid-template-columns: 40px 1fr 45px;
    gap: 12px;
    padding: 30px 5px;
  }

  .big-service-card:hover,
  .big-service-card.service-active {
    padding-left: 12px;
    padding-right: 12px;
  }

  .service-card-number {
    align-self: start;
    padding-top: 8px;
  }

  .service-large-icon {
    width: 38px;
    height: 38px;
  }

  .service-card-main h3 {
    font-size: 31px;
  }

  .service-card-main p {
    font-size: 11px;
  }

  .service-details {
    grid-column: 2 / 4;
  }

  .service-details span {
    font-size: 8px;
  }

  .service-arrow {
    width: 40px;
    height: 40px;
  }

  .services-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }


  .showreel-copy h2 {
    font-size: 65px;
  }

  .showreel-meta {
    gap: 25px;
  }

  .showreel-play span {
    width: 70px;
    height: 70px;
  }

  .showreel-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  
  .voice-track.playing {
    border-color: var(--primary);
    background: rgba(216,91,56,.08);
}

.voice-track.playing .wave span{
    animation: soundWave .6s infinite alternate;
}

}

.reveal-word{
    overflow:hidden;
}

.reveal-word span{
    display:block;
    transform:translateY(120%);
}
.hero-image.playing .circle-bg{
    animation:pulseVoice 2s infinite;
}

/* =========================================================
   AMANDA ABOUT
========================================================= */

.amanda-about {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background: var(--background, #f7f3ed);
}

.amanda-about-bg {
  position: absolute;
  top: 50%;
  left: -4%;
  transform: translateY(-50%);

  font-size: clamp(150px, 22vw, 400px);
  font-weight: 900;
  letter-spacing: -.09em;

  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.045);

  pointer-events: none;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 70px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-eyebrow i {
  color: var(--primary);
}

.about-intro-line {
  width: 80px;
  height: 1px;
  background: currentColor;
  opacity: .2;
}

.about-intro-number {
  margin-left: auto;
  opacity: .45;
}


.about-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}


/* IMAGE */

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 510px;
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -15px 15px 15px -15px;
  border: 1px solid var(--primary);
  border-radius: 3px;
  opacity: .5;
  transform: rotate(-4deg);
  transition: transform .6s ease;
}

.about-image-wrap:hover::before {
  transform: rotate(2deg);
}

.about-image-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -30px;
  top: -30px;
  background: var(--primary);
  border-radius: 50%;
  opacity: .12;
}

.about-image-wrap img {
  position: relative;
  z-index: 2;

  width: 100%;
  aspect-ratio: .85;
  object-fit: cover;

  display: block;

  border-radius: 3px;
}

.about-image-label {
  position: absolute;
  z-index: 4;

  bottom: 25px;
  left: 25px;

  padding: 15px 20px;

  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);

  font-size: 9px;
  letter-spacing: .15em;
}

.about-image-label span {
  display: block;
  opacity: .5;
}

.about-image-label strong {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.about-floating-note {
  position: absolute;
  z-index: 5;

  right: -40px;
  bottom: 50px;

  width: 100px;
  height: 100px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: var(--primary);
  color: white;

  font-size: 9px;
  line-height: 1.3;
  text-align: center;

  animation: aboutFloat 4s ease-in-out infinite;
}

.about-floating-note i {
  font-size: 20px;
  margin-bottom: 6px;
}

@keyframes aboutFloat {
  0%,100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-12px) rotate(-4deg);
  }
}


/* ABOUT CONTENT */

.section-mini-label {
  display: block;
  margin-bottom: 20px;

  color: var(--primary);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 800px;

  margin: 0;

  font-size: clamp(52px, 6vw, 92px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 800;
}

.about-content h2 em {
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 400;
}

.about-copy {
  max-width: 650px;
  margin-top: 40px;
}

.about-copy p {
  margin: 0 0 18px;

  color: #777;
  font-size: 15px;
  line-height: 1.8;
}

.about-copy .about-lead {
  color: #222;
  font-size: 18px;
  line-height: 1.65;
}

.about-copy strong {
  color: var(--primary);
}


/* STATS */

.about-stats {
  display: flex;
  gap: 50px;

  margin: 45px 0;
  padding-top: 25px;

  border-top: 1px solid rgba(0,0,0,.1);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-stat strong {
  font-size: 35px;
  line-height: 1;
  letter-spacing: -.06em;
}

.about-stat strong span {
  color: var(--primary);
}

.about-stat small {
  color: #888;
  font-size: 9px;
  line-height: 1.3;
}

.about-more {
  display: inline-flex;
  align-items: center;
  gap: 20px;

  color: inherit;
  text-decoration: none;

  font-size: 23px;
  font-weight: 800;
}

.about-more i {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(0,0,0,.2);
  border-radius: 50%;

  transition: .35s;
}

.about-more:hover i {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}


/* =========================================================
   SERVICES
========================================================= */

.amanda-services {
  position: relative;
  overflow: hidden;

  padding: 150px 0;

  background: #11100f;
  color: white;
}

.services-bg-word {
  position: absolute;
  right: -5%;
  top: 5%;

  font-size: clamp(150px, 22vw, 380px);
  font-weight: 900;
  letter-spacing: -.1em;

  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);

  pointer-events: none;
}

.services-header {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 80px;
  align-items: end;

  margin-bottom: 80px;
}

.services-header h2 {
  margin: 0;

  font-size: clamp(55px, 7vw, 100px);
  line-height: .88;
  letter-spacing: -.07em;
}

.services-header h2 em {
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 400;
}

.services-header p {
  margin: 0;

  color: rgba(255,255,255,.55);

  font-size: 15.5px;
  line-height: 1.8;
}


/* SERVICE CARDS */

.services-list {
  position: relative;
  z-index: 2;

  border-top: 1px solid rgba(255,255,255,.15);
}

.big-service-card {
  position: relative;

  display: grid;
  grid-template-columns: 80px 1fr 1fr 55px;
  align-items: center;

  gap: 30px;

  padding: 42px 20px;

  border-bottom: 1px solid rgba(255,255,255,.15);

  transition:
    background .45s ease,
    padding .45s ease;
}

.big-service-card:hover,
.big-service-card.service-active {
  background: rgba(255,255,255,.035);
  padding-left: 35px;
  padding-right: 35px;
}

.service-card-number {
  color: rgba(255,255,255,.3);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-large-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;

  color: var(--primary);

  transition: .4s;
}

.big-service-card:hover .service-large-icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(-10deg) scale(1.1);
}

.service-tag {
  padding: 6px 10px;

  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;

  color: rgba(255,255,255,.5);

  font-size: 15.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.service-card-main h3 {
  margin: 20px 0 7px;

  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -.05em;
}

.service-card-main p {
  max-width: 330px;
  margin: 0;

  color: rgba(255,255,255,.5);

  font-size: 15.5px;
  line-height: 1.7;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-details span {
  padding: 8px 11px;

  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;

  color: rgba(255,255,255,.55);

  font-size: 15.5px;

  transition: .3s;
}

.big-service-card:hover .service-details span {
  border-color: rgba(216,91,56,.35);
}

.service-arrow {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;

  color: white;
  text-decoration: none;

  transition: .4s;
}

.big-service-card:hover .service-arrow {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}

.services-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 35px;

  color: rgba(255,255,255,.4);

  font-size: 15.5px;
}

.services-bottom a {
  display: flex;
  align-items: center;
  gap: 10px;

  color: white;
  text-decoration: none;
  font-weight: 700;
}

.services-bottom a i {
  transition: transform .3s;
}

.services-bottom a:hover i {
  transform: translateX(5px);
}


/* =========================================================
   SHOWREEL
========================================================= */

.amanda-showreel {
  position: relative;
  overflow: hidden;

  padding: 140px 0;

  background: var(--primary, #d85b38);
  color: white;
}

.showreel-outline-text {
  position: absolute;

  top: 48%;

  width: 100%;

  transform: rotate(-7deg);

  color: transparent;

  -webkit-text-stroke: 1px rgba(255,255,255,.12);

  font-size: clamp(80px, 13vw, 220px);
  font-weight: 900;
  letter-spacing: -.08em;

  white-space: nowrap;
  pointer-events: none;
}

.showreel-top {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;

  margin-bottom: 70px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.showreel-top span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showreel-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: .7fr 1.3fr;

  gap: 100px;
  align-items: center;
}

.showreel-copy {
  max-width: 550px;
}

.showreel-label {
  display: block;

  margin-bottom: 25px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;

  opacity: .7;
}

.showreel-copy h2 {
  margin: 0;

  font-size: clamp(60px, 7vw, 105px);
  line-height: .85;
  letter-spacing: -.08em;
}

.showreel-copy h2 em {
  display: block;

  font-family: Georgia, serif;
  font-weight: 400;
}

.showreel-copy > p {
  margin: 35px 0;

  max-width: 470px;

  font-size: 15.5px;
  line-height: 1.8;

  color: rgba(255,255,255,.75);
}

.showreel-meta {
  display: flex;
  gap: 45px;

  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,.25);
}

.showreel-meta strong {
  display: block;

  margin-bottom: 5px;

  font-size: 15.5px;
  letter-spacing: .15em;
}

.showreel-meta span {
  color: rgba(255,255,255,.6);
  font-size: 15.5px;
}


/* VIDEO */

.showreel-media {
  position: relative;
}

.showreel-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 1.5;

  background: #111;

  box-shadow: 25px 30px 70px rgba(0,0,0,.2);
}

.showreel-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}

.showreel-image:hover img {
  transform: scale(1.06);
}

.showreel-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(0,0,0,.05),
    rgba(0,0,0,.45)
  );
}

.showreel-play {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;

  color: white;
  text-decoration: none;
}

.showreel-play span {
  width: 90px;
  height: 90px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: white;
  color: var(--primary);

  font-size: 28px;

  transition:
    transform .4s,
    background .4s;
}

.showreel-play:hover span {
  transform: scale(1.15);
  background: var(--primary);
  color: white;
}

.showreel-play small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-align: center;
}

.showreel-corner {
  position: absolute;

  right: -20px;
  bottom: -20px;

  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  background: #111;
  color: white;

  font-size: 20px;
}

.showreel-bottom {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 60px;

  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,.25);
}

.showreel-bottom span {
  font-size: 15.5px;
  opacity: .7;
}

.showreel-bottom a {
  display: flex;
  align-items: center;
  gap: 15.5px;

  color: white;
  text-decoration: none;

  font-size: 23px;
  font-weight: 800;
}

.showreel-bottom a i {
  transition: transform .3s;
}

.showreel-bottom a:hover i {
  transform: translate(4px,-4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .amanda-about,
  .amanda-services,
  .amanda-showreel {
    padding: 100px 0;
  }

  .about-layout,
  .showreel-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 550px;
  }

  .about-content h2 {
    font-size: clamp(50px, 9vw, 80px);
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .big-service-card {
    grid-template-columns: 55px 1fr 55px;
  }

  .service-details {
    grid-column: 2 / 4;
  }

  .showreel-layout {
    gap: 60px;
  }

}


@media (max-width: 600px) {

  .about-intro {
    margin-bottom: 45px;
  }

  .about-intro-line {
    width: 30px;
  }

  .about-layout {
    gap: 70px;
  }

  .about-floating-note {
    right: -10px;
  }

  .about-content h2 {
    font-size: 53px;
  }

  .about-copy {
    margin-top: 30px;
  }

  .about-stats {
    gap: 25px;
    justify-content: space-between;
  }

  .about-stat strong {
    font-size: 27px;
  }

  .about-stat small {
    font-size: 8px;
  }


  .services-header h2 {
    font-size: 58px;
  }

  .big-service-card {
    grid-template-columns: 40px 1fr 45px;
    gap: 12px;
    padding: 30px 5px;
  }

  .big-service-card:hover,
  .big-service-card.service-active {
    padding-left: 12px;
    padding-right: 12px;
  }

  .service-card-number {
    align-self: start;
    padding-top: 8px;
  }

  .service-large-icon {
    width: 38px;
    height: 38px;
  }

  .service-card-main h3 {
    font-size: 31px;
  }

  .service-card-main p {
    font-size: 11px;
  }

  .service-details {
    grid-column: 2 / 4;
  }

  .service-details span {
    font-size: 8px;
  }

  .service-arrow {
    width: 40px;
    height: 40px;
  }

  .services-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }


  .showreel-copy h2 {
    font-size: 65px;
  }

  .showreel-meta {
    gap: 25px;
  }

  .showreel-play span {
    width: 70px;
    height: 70px;
  }

  .showreel-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  
  .voice-track.playing {
    border-color: var(--primary);
    background: rgba(216,91,56,.08);
}

.voice-track.playing .wave span{
    animation: soundWave .6s infinite alternate;
}

}

.reveal-word{
    overflow:hidden;
}

.reveal-word span{
    display:block;
    transform:translateY(120%);
}
.hero-image.playing .circle-bg{
    animation:pulseVoice 2s infinite;
}

/* ==========================================
   PROCESS SECTION
========================================== */

.process-section {
  position: relative;
  overflow: hidden;

  padding: 100px 0 110px;

  background: #fff;
}


/* ==========================================
   HEADER
========================================== */

.process-heading {
  text-align: center;

  margin-bottom: 80px;
}

.process-heading .section-label {
  display: block;

  margin-bottom: 18px;

  font-size: 15.5px;
  font-weight: 800;

  letter-spacing: .22em;
  text-transform: uppercase;

  color: var(--primary);
}


.process-heading h2 {
  margin: 0;

  font-size: clamp(45px, 5.5vw, 76px);

  line-height: .95;

  letter-spacing: -.065em;

  font-weight: 800;

  color: var(--text, #17243f);
}


.process-heading h2 em {
  color: var(--primary);

  font-family: Georgia, serif;

  font-weight: 400;

  font-style: italic;
}


/* LITTLE LINE UNDER HEADING */

.process-heading-line {
  width: 55px;
  height: 2px;

  margin: 28px auto 0;

  background: var(--primary);

  opacity: .65;
}


/* ==========================================
   THREE COLUMNS
========================================== */

.process-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: clamp(40px, 7vw, 110px);
}


/* ==========================================
   STEP
========================================== */

.process-step {
  position: relative;

  min-height: 320px;

  overflow: hidden;
}


/* ==========================================
   HUGE BACKGROUND NUMBER
========================================== */

.process-bg-number {
  position: absolute;

  top: -45px;
  right: -8px;

  z-index: 0;

  font-size: clamp(150px, 15vw, 230px);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -.12em;

  color: rgba(218, 226, 233, .75);

  pointer-events: none;

  user-select: none;

  transition:
    transform .6s cubic-bezier(.2,.8,.2,1),
    color .5s ease;
}


/* ==========================================
   CONTENT
========================================== */

.process-step-content {
  position: relative;

  z-index: 2;

  padding-top: 15px;
}


/* STEP LABEL */

.process-step-label {
  display: block;

  margin-bottom: 20px;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .18em;

  color: var(--primary);
}


/* ==========================================
   TITLE + ICON
========================================== */

.process-title-row {
  position: relative;

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  min-height: 125px;

  padding-right: 10px;
}


.process-title-row h3 {
  position: relative;

  z-index: 2;

  margin: 0;

  font-size: clamp(34px, 3.2vw, 52px);

  line-height: .94;

  letter-spacing: -.065em;

  font-weight: 800;

  color: var(--text, #17243f);
}


/* ==========================================
   ICON
========================================== */

.process-icon {
  position: relative;

  z-index: 3;

  flex-shrink: 0;

  width: 46px;
  height: 46px;

  display: grid;

  place-items: center;

  margin-top: 5px;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  font-size: 17px;

  opacity: .95;

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    box-shadow .4s ease;
}


/* ==========================================
   DESCRIPTION
========================================== */

.process-step p {
  position: relative;

  z-index: 2;

  max-width: 330px;

  margin: 20px 0 0;

  font-size: 15.5px;

  line-height: 1.75;

  color: #656b80;
}


/* ==========================================
   HOVER
========================================== */

.process-step:hover .process-bg-number {
  transform: translateY(-10px) rotate(-3deg);

  color: rgba(218, 226, 233, .45);
}

.process-step:hover .process-icon {
  transform: rotate(-12deg) scale(1.12);

  box-shadow:
    0 12px 30px rgba(0,0,0,.15);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .process-section {
    padding: 80px 0;
  }

  .process-heading {
    margin-bottom: 60px;
  }

  .process-grid {
    gap: 35px;
  }

  .process-bg-number {
    font-size: 150px;

    top: -20px;
  }

  .process-title-row h3 {
    font-size: 34px;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

  .process-section {
    padding: 70px 0;
  }

  .process-heading {
    text-align: left;

    margin-bottom: 50px;
  }

  .process-heading h2 {
    font-size: 48px;
  }

  .process-heading-line {
    margin-left: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .process-step {
    min-height: 260px;
  }

  .process-bg-number {
    top: -30px;
    right: 5%;

    font-size: 180px;
  }

  .process-title-row {
    min-height: 105px;
  }

  .process-title-row h3 {
    font-size: 42px;
  }

  .process-step p {
    max-width: 85%;
  }

}
</style>


<section class="featured-video">

  <div class="container">

    <div class="featured-video-header reveal">

      <div class="featured-video-title">

        <span class="section-label">
          Featured Video
        </span>

        <h2>
          See her
          <em>in action.</em>
        </h2>

      </div>

      <p>
        From voice to screen, Amanda brings
        personality, emotion and presence to
        every performance.
      </p>

    </div>


    <div
      class="featured-video-frame reveal-scale"
      data-video="https://youtu.be/DjDcBOM5t-Y?si=5aeK381WWt8HNRew"
    >

      <img
        src="assets/images/vid.jpg"
        alt="Amanda Jay Onos in action"
      >

      <div class="featured-video-overlay"></div>


      <!-- TOP LABEL -->

      <div class="featured-video-top">

        <span>
          <i class="ri-video-fill"></i>
          Amanda Jay Onos
        </span>

        <span>
          SHOWREEL / 01
        </span>

      </div>


      <!-- CENTER PLAY -->

      <button
        class="featured-play"
        type="button"
        aria-label="Play Amanda's featured video"
      >

        <span class="featured-play-icon">
          <i class="ri-play-fill"></i>
        </span>

        <span class="featured-play-text">
          PLAY VIDEO
        </span>

      </button>


      <!-- BOTTOM -->

      <div class="featured-video-bottom">

        <span>
          VOICE • ACTING • PERFORMANCE
        </span>

        <span>
          <i class="ri-arrow-down-right-line"></i>
        </span>

      </div>

    </div>


    <div class="featured-video-note reveal">

      <span>
        Watch Amanda bring the script to life.
      </span>

      <a href="portfolio.html">
        Explore more work
        <i class="ri-arrow-right-up-line"></i>
      </a>

    </div>

  </div>

</section>

<style>
/* ==========================================
   FEATURED VIDEO
========================================== */

.featured-video {
  position: relative;

  padding: 100px 0 110px;

  overflow: hidden;
}


/* ==========================================
   HEADER
========================================== */

.featured-video-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 45px;
}


.featured-video-title h2 {
  margin: 12px 0 0;

  font-size: clamp(50px, 6vw, 82px);

  line-height: .85;

  letter-spacing: -.075em;

  font-weight: 800;
}


.featured-video-title h2 em {
  display: block;

  color: var(--primary);

  font-family: Georgia, serif;

  font-weight: 400;

  font-style: italic;
}


.featured-video-header > p {
  max-width: 310px;

  margin: 0 0 5px;

  font-size: 15.5px;

  line-height: 1.75;

  color: var(--text-muted);
}


/* ==========================================
   VIDEO FRAME
========================================== */

.featured-video-frame {
  position: relative;

  width: 100%;

  height: min(650px, 58vw);

  min-height: 420px;

  overflow: hidden;

  background: #111;

  cursor: pointer;
}


/* IMAGE */

.featured-video-frame > img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 1.2s cubic-bezier(.2,.8,.2,1);
}


/* DARK OVERLAY */

.featured-video-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.35) 0%,
      rgba(0,0,0,.02) 35%,
      rgba(0,0,0,.18) 65%,
      rgba(0,0,0,.65) 100%
    );

  pointer-events: none;
}


/* ==========================================
   TOP INFORMATION
========================================== */

.featured-video-top {
  position: absolute;

  top: 25px;
  left: 28px;
  right: 28px;

  z-index: 3;

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #fff;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .15em;

  text-transform: uppercase;
}


.featured-video-top span:first-child {
  display: flex;

  align-items: center;

  gap: 8px;
}


.featured-video-top i {
  color: var(--primary);

  font-size: 14px;
}


/* ==========================================
   PLAY BUTTON
========================================== */

.featured-play {
  position: absolute;

  top: 50%;
  left: 50%;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 14px;

  transform:
    translate(-50%, -50%);

  padding: 0;

  border: 0;

  background: transparent;

  color: #fff;

  cursor: pointer;
}


.featured-play-icon {
  width: 82px;
  height: 82px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255,255,255,.7);

  border-radius: 50%;

  background: rgba(255,255,255,.08);

  backdrop-filter: blur(8px);

  font-size: 25px;

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    background .4s ease,
    color .4s ease;
}


.featured-play-text {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: .16em;

  opacity: .9;
}


/* ==========================================
   BOTTOM
========================================== */

.featured-video-bottom {
  position: absolute;

  bottom: 25px;
  left: 28px;
  right: 28px;

  z-index: 3;

  display: flex;

  align-items: center;
  justify-content: space-between;

  color: #fff;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .16em;
}


.featured-video-bottom span:last-child {
  width: 36px;
  height: 36px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255,255,255,.45);

  border-radius: 50%;

  font-size: 14px;
}


/* ==========================================
   HOVER
========================================== */

.featured-video-frame:hover > img {
  transform: scale(1.045);
}


.featured-video-frame:hover .featured-play-icon {
  transform: scale(1.12);

  background: var(--primary);

  border-color: var(--primary);

  color: #fff;
}


.featured-video-frame:hover .featured-video-bottom span:last-child {
  transform: rotate(45deg);
}


/* ==========================================
   BOTTOM NOTE
========================================== */

.featured-video-note {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-top: 20px;

  font-size: 10px;

  color: var(--text-muted);
}


.featured-video-note a {
  display: flex;

  align-items: center;

  gap: 7px;

  color: var(--text);

  font-weight: 700;

  text-decoration: none;

  transition: color .3s ease;
}


.featured-video-note a i {
  transition:
    transform .3s ease;
}


.featured-video-note a:hover {
  color: var(--primary);
}


.featured-video-note a:hover i {
  transform: translate(3px, -3px);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

  .featured-video {
    padding: 70px 0 75px;
  }


  .featured-video-header {
    display: block;

    margin-bottom: 30px;
  }


  .featured-video-header > p {
    margin-top: 20px;
  }


  .featured-video-title h2 {
    font-size: 54px;
  }


  .featured-video-frame {
    height: 115vw;

    min-height: 400px;
  }


  .featured-video-top {
    top: 18px;
    left: 18px;
    right: 18px;
  }


  .featured-video-top span:last-child {
    display: none;
  }


  .featured-video-bottom {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }


  .featured-video-bottom span:first-child {
    font-size: 8px;
  }


  .featured-play {
    flex-direction: column;

    gap: 10px;
  }


  .featured-play-icon {
    width: 72px;
    height: 72px;
  }


  .featured-video-note {
    display: block;

    line-height: 1.6;
  }


  .featured-video-note a {
    margin-top: 12px;
  }

}



/* ==========================================
   TESTIMONIAL SECTION
========================================== */

.testimonial-section {
  position: relative;

  padding: 110px 0 120px;

  overflow: hidden;

  background: var(--background, #f8f8f6);
}


/* ==========================================
   HEADER
========================================== */

.testimonial-header {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 60px;

  margin-bottom: 65px;
}


.testimonial-heading {
  max-width: 760px;
}


.testimonial-heading .section-label {
  display: block;

  margin-bottom: 15px;
}


.testimonial-heading h2 {
  margin: 0;

  font-size: clamp(48px, 6vw, 84px);

  line-height: .88;

  letter-spacing: -.075em;

  font-weight: 800;

  color: var(--text, #17243f);
}


.testimonial-heading h2 em {
  color: var(--primary);

  font-family: Georgia, serif;

  font-weight: 400;

  font-style: italic;
}


/* INTRO */

.testimonial-intro {
  display: flex;

  align-items: flex-end;

  gap: 25px;

  max-width: 330px;
}


.testimonial-intro p {
  margin: 0;

  font-size: 15.5px;

  line-height: 1.7;

  color: var(--text-muted, #707070);
}


/* COUNT */

.testimonial-count {
  display: flex;

  flex-direction: column;

  flex-shrink: 0;
}


.testimonial-count strong {
  font-size: 30px;

  line-height: .8;

  letter-spacing: -.06em;

  color: var(--primary);
}


.testimonial-count small {
  margin-top: 8px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: .15em;

  white-space: nowrap;
}


/* ==========================================
   SLIDER
========================================== */

.testimonial-slider-wrap {
  position: relative;
}


.testimonialSwiper {
  width: 100%;

  overflow: visible;
}


.testimonialSwiper .swiper-slide {
  width: 62%;

  opacity: .35;

  transform: scale(.88);

  transition:
    opacity .6s ease,
    transform .7s cubic-bezier(.2,.8,.2,1);
}


.testimonialSwiper .swiper-slide-active {
  opacity: 1;

  transform: scale(1);

  z-index: 5;
}


/* ==========================================
   CARD
========================================== */

.testimonial-card {
  position: relative;

  min-height: 430px;

  padding: 45px 50px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background: #fff;

  overflow: hidden;

  box-shadow:
    0 25px 70px rgba(0,0,0,.07);

  transform-style: preserve-3d;

  transition:
    box-shadow .5s ease;
}


.swiper-slide-active .testimonial-card {
  box-shadow:
    0 35px 90px rgba(0,0,0,.11);
}


/* ==========================================
   CARD TOP
========================================== */

.testimonial-card-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;
}


.testimonial-number {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: .15em;

  color: var(--primary);
}


.testimonial-quote {
  font-size: 60px;

  line-height: .6;

  color: var(--primary);

  opacity: .9;
}


/* ==========================================
   STARS
========================================== */

.testimonial-stars {
  display: flex;

  gap: 4px;

  margin-top: 35px;

  color: var(--primary);

  font-size: 12px;
}


.testimonial-stars span {
  display: inline-block;

  opacity: 0;

  transform: translateY(8px) scale(.6);
}


.swiper-slide-active .testimonial-stars span {
  animation:
    testimonialStar .5s ease forwards;
}


.swiper-slide-active .testimonial-stars span:nth-child(1) {
  animation-delay: .1s;
}

.swiper-slide-active .testimonial-stars span:nth-child(2) {
  animation-delay: .16s;
}

.swiper-slide-active .testimonial-stars span:nth-child(3) {
  animation-delay: .22s;
}

.swiper-slide-active .testimonial-stars span:nth-child(4) {
  animation-delay: .28s;
}

.swiper-slide-active .testimonial-stars span:nth-child(5) {
  animation-delay: .34s;
}


@keyframes testimonialStar {

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


/* ==========================================
   QUOTE
========================================== */

.testimonial-card blockquote {
  max-width: 820px;

  margin: 22px 0 35px;

  font-size: clamp(20px, 2.3vw, 31px);

  line-height: 1.35;

  letter-spacing: -.025em;

  font-weight: 500;

  color: var(--text, #17243f);
}


/* ==========================================
   CLIENT
========================================== */

.testimonial-client {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: auto;
}


.client-avatar {
  width: 45px;
  height: 45px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  font-size: 14px;

  font-weight: 800;
}


.client-info {
  display: flex;

  flex-direction: column;

  gap: 4px;
}


.client-info strong {
  font-size: 15.5px;

  letter-spacing: -.01em;
}


.client-info span {
  font-size: 15.5px;

  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;

  color: var(--text-muted);
}


/* ==========================================
   CONTROLS
========================================== */

.testimonial-controls {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 30px;
}


/* PROGRESS */

.testimonial-progress {
  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 15.5px;

  font-weight: 800;

  letter-spacing: .08em;
}


.progress-current {
  color: var(--primary);
}


.progress-total {
  color: #aaa;
}


.progress-line {
  position: relative;

  width: 150px;

  height: 1px;

  background: rgba(0,0,0,.12);

  overflow: hidden;
}


.progress-line span {
  position: absolute;

  left: 0;
  top: 0;

  width: 20%;

  height: 100%;

  background: var(--primary);

  transition: width .5s ease;
}


/* ==========================================
   NAVIGATION
========================================== */

.testimonial-navigation {
  display: flex;

  gap: 8px;
}


.testimonial-navigation button {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(0,0,0,.12);

  border-radius: 50%;

  background: transparent;

  color: var(--text);

  cursor: pointer;

  font-size: 16px;

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease,
    border-color .35s ease;
}


.testimonial-navigation button:hover {
  background: var(--primary);

  border-color: var(--primary);

  color: #fff;

  transform: translateY(-3px);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 800px) {

  .testimonial-section {
    padding: 75px 0 85px;
  }


  .testimonial-header {
    display: block;

    margin-bottom: 40px;
  }


  .testimonial-intro {
    margin-top: 25px;
  }


  .testimonialSwiper .swiper-slide {
    width: 88%;
  }


  .testimonial-card {
    min-height: 400px;

    padding: 30px;
  }


  .testimonial-card blockquote {
    font-size: 20px;
  }


  .progress-line {
    width: 90px;
  }

}


@media (max-width: 500px) {

  .testimonialSwiper .swiper-slide {
    width: 94%;
  }


  .testimonial-card {
    min-height: 420px;

    padding: 25px;
  }


  .testimonial-heading h2 {
    font-size: 50px;
  }


  .testimonial-card blockquote {
    font-size: 19px;

    line-height: 1.4;
  }


  .testimonial-quote {
    font-size: 45px;
  }


  .testimonial-progress {
    display: none;
  }

}


/* ===== ABOUT PREVIEW ===== */
.about-preview{
padding:72px 0;
}
.about-grid{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:60px;
align-items:center;
}
.about-image{
position:relative;
}
.about-image img{
width:100%;
border-radius:var(--radius-lg);
box-shadow:var(--shadow);
aspect-ratio:4/5;
object-fit:cover;
}
.about-image::before{
content:'';
position:absolute;
top:-16px;left:-16px;
right:16px;bottom:16px;
border:2px solid var(--primary);
border-radius:var(--radius-lg);
z-index:-1;
}
.about-content > span{
display:inline-block;
font-size:12px;
font-weight:700;
letter-spacing:2.5px;
text-transform:uppercase;
color:var(--primary);
margin-bottom:14px;
}
.about-content h2{
font-family:var(--serif);
font-size:clamp(32px,4vw,44px);
font-weight:600;
line-height:1.15;
margin-bottom:20px;
color:var(--text);
}
.about-content p{
color:var(--text-soft);
font-size:15.5px;
line-height:1.75;
margin-bottom:14px;
}
.about-content a{
display:inline-flex;
align-items:center;
gap:8px;
margin-top:8px;
color:var(--primary);
font-weight:600;
font-size:15px;
}
.about-content a:hover{gap:14px;}
.about-content a::after{content:'→';}

@media(max-width:991px){
.about-grid{grid-template-columns:1fr;gap:40px;}
.about-image{max-width:440px;margin:0 auto;}
}

/* ===== SERVICES ===== */
.services-section{
background:var(--bg-alt);
}
.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}
.service-card{
position:relative;
background:var(--white);
border-radius:var(--radius-lg);
padding:36px 32px;
box-shadow:var(--shadow-sm);
transition:var(--transition);
border:1px solid var(--border);
}
.service-card:hover{
transform:translateY(-8px);
box-shadow:var(--shadow-lg);
border-color:transparent;
}
.service-card.featured{
background:linear-gradient(160deg,var(--text) 0%,#2a2a2a 100%);
color:var(--white);
border-color:transparent;
transform:scale(1.03);
}
.service-card.featured:hover{transform:scale(1.03) translateY(-8px);}
.service-card.featured h3,
.service-card.featured li{color:var(--white);}
.service-card.featured p,
.service-card.featured ul li::before{color:rgba(255,255,255,.7);}
.service-badge,
.hot-tag{
position:absolute;
top:20px;right:20px;
padding:5px 12px;
font-size:11px;
font-weight:700;
letter-spacing:.8px;
border-radius:100px;
text-transform:uppercase;
}
.service-badge{
background:var(--primary);
color:var(--white);
}
.hot-tag{
background:rgba(184,137,74,.12);
color:var(--primary-dark);
}
.service-icon{
width:56px;height:56px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(184,137,74,.1);
color:var(--primary);
border-radius:var(--radius-sm);
font-size:26px;
margin-bottom:24px;
}
.service-card.featured .service-icon{
background:rgba(255,255,255,.12);
color:var(--primary-light);
}
.service-card h3{
font-family:var(--serif);
font-size:26px;
font-weight:600;
margin-bottom:10px;
}
.service-card > p{
color:var(--text-soft);
font-size:14.5px;
line-height:1.65;
margin-bottom:20px;
}
.service-card ul{
display:grid;
grid-template-columns:1fr 1fr;
gap:8px 16px;
margin-bottom:28px;
}
.service-card ul li{
position:relative;
padding-left:20px;
font-size:13.5px;
color:var(--text-soft);
}
.service-card ul li::before{
content:'✓';
position:absolute;
left:0;top:1px;
color:var(--primary);
font-weight:700;
font-size:12px;
}
.service-card .btn{
width:100%;
justify-content:center;
padding:12px 20px;
font-size:14px;
}
.service-card .btn-outline{
border-color:var(--text);
color:var(--text);
}
.service-card.featured .btn-outline{
border-color:rgba(255,255,255,.4);
color:var(--white);
}
.service-card.featured .btn-outline:hover{
background:var(--white);
color:var(--text);
}
.service-card .btn-primary{padding:13.5px 20px;}

@media(max-width:991px){
.services-grid{grid-template-columns:1fr;gap:20px;}
.service-card.featured{transform:none;}
.service-card.featured:hover{transform:translateY(-8px);}
}
@media(max-width:500px){
.service-card ul{grid-template-columns:1fr;}
}

/* ===== SHOWREEL ===== */
.showreel{
position:relative;
overflow:hidden;
background:var(--bg-dark);
color:var(--white);
padding:80px 0;
}
.showreel-bg-text{
position:absolute;
top:50%;left:50%;
transform:translate(-50%,-50%);
font-family:var(--serif);
font-size:clamp(60px,12vw,180px);
font-weight:700;
color:rgba(255,255,255,.03);
white-space:nowrap;
letter-spacing:-2px;
pointer-events:none;
}
.showreel-grid{
display:grid;
grid-template-columns:1fr 1.1fr;
gap:60px;
align-items:center;
position:relative;
z-index:1;
}
.showreel-content span{
display:inline-block;
font-size:12px;
font-weight:700;
letter-spacing:2.5px;
text-transform:uppercase;
color:var(--primary-light);
margin-bottom:18px;
}
.showreel-content h2{
font-family:var(--serif);
font-size:clamp(30px,4vw,46px);
font-weight:600;
line-height:1.15;
margin-bottom:20px;
color:var(--white);
}
.showreel-content p{
font-size:15.5px;
line-height:1.75;
color:rgba(255,255,255,.72);
margin-bottom:28px;
}
.showreel-video{
position:relative;
border-radius:var(--radius-lg);
overflow:hidden;
aspect-ratio:16/10;
box-shadow:0 30px 80px rgba(0,0,0,.5);
}
.showreel-video img{
width:100%;height:100%;
object-fit:cover;
}
.showreel-play{
position:absolute;
top:50%;left:50%;
transform:translate(-50%,-50%);
width:80px;height:80px;
background:var(--primary);
color:var(--white);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
box-shadow:0 16px 50px rgba(184,137,74,.5);
transition:var(--transition);
}
.showreel-play:hover{
transform:translate(-50%,-50%) scale(1.1);
background:var(--primary-light);
}
.showreel-play::before{
content:'';
position:absolute;
inset:0;
border-radius:50%;
border:2px solid var(--primary);
animation:pulseRing 2s ease-out infinite;
}
@keyframes pulseRing{
0%{transform:scale(1);opacity:.6;}
100%{transform:scale(1.6);opacity:0;}
}

@media(max-width:991px){
.showreel-grid{grid-template-columns:1fr;gap:40px;}
}

/* ===== PROCESS ===== */
.process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}
.process-card{
position:relative;
background:var(--white);
border-radius:var(--radius-lg);
padding:36px 30px;
box-shadow:var(--shadow-sm);
border:1px solid var(--border);
transition:var(--transition);
}
.process-card:hover{
transform:translateY(-6px);
box-shadow:var(--shadow);
border-color:var(--primary-light);
}
.step-number{
font-family:var(--serif);
font-size:48px;
font-weight:700;
color:rgba(184,137,74,.15);
line-height:1;
margin-bottom:16px;
}
.process-icon{
width:48px;height:48px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(184,137,74,.1);
color:var(--primary);
border-radius:var(--radius-sm);
font-size:22px;
margin-bottom:20px;
}
.process-card h3{
font-family:var(--serif);
font-size:22px;
font-weight:600;
margin-bottom:10px;
}
.process-card p{
font-size:14.5px;
color:var(--text-soft);
line-height:1.7;
}

@media(max-width:991px){
.process-grid{grid-template-columns:1fr;gap:18px;}
}



/* ===== FEATURED VIDEO ===== */
.featured-video{
padding:72px 0;
}
.video-box{
position:relative;
border-radius:var(--radius-lg);
overflow:hidden;
aspect-ratio:16/9;
box-shadow:var(--shadow-lg);
max-width:960px;
margin:0 auto;
cursor:pointer;
}
.video-box img{
width:100%;height:100%;
object-fit:cover;
transition:transform .6s ease;
}
.video-box:hover img{transform:scale(1.04);}
.video-btn{
position:absolute;
top:50%;left:50%;
transform:translate(-50%,-50%);
width:88px;height:88px;
background:var(--white);
color:var(--text);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
box-shadow:var(--shadow);
transition:var(--transition);
}
.video-btn:hover{
background:var(--primary);
color:var(--white);
transform:translate(-50%,-50%) scale(1.08);
}

/* ===== TESTIMONIALS (SWIPER) ===== */
.testimonial-section{
background:var(--bg-alt);
}
.swiper.testimonialSwiper{
padding:10px 4px 60px;
}
.testimonial-card{
background:var(--white);
border-radius:var(--radius-lg);
padding:36px 32px;
box-shadow:var(--shadow-sm);
border:1px solid var(--border);
height:auto;
}
.testimonial-card .quote{
font-size:40px;
color:var(--primary);
line-height:1;
margin-bottom:8px;
font-family:var(--serif);
}
.testimonial-card .stars{
color:var(--primary);
letter-spacing:2px;
font-size:16px;
margin-bottom:16px;
}
.testimonial-card p{
color:var(--text-soft);
font-size:15px;
line-height:1.75;
margin-bottom:24px;
}
.testimonial-card .client{
display:flex;
align-items:center;
gap:14px;
padding-top:20px;
border-top:1px solid var(--border);
}
.testimonial-card .client img{
width:52px;height:52px;
border-radius:50%;
object-fit:cover;
}
.testimonial-card .client h4{
font-size:15px;
font-weight:600;
margin-bottom:2px;
}
.testimonial-card .client span{
font-size:13px;
color:var(--text-muted);
}
.swiper-pagination{
bottom:4px !important;
}
.swiper-pagination .swiper-pagination-bullet{
width:8px;height:8px;
background:var(--border);
opacity:1;
transition:var(--transition);
}
.swiper-pagination .swiper-pagination-bullet-active{
width:28px;
border-radius:4px;
background:var(--primary);
}
.swiper-button-next,
.swiper-button-prev{
color:var(--primary) !important;
width:44px !important;
height:44px !important;
background:var(--white);
border-radius:50%;
box-shadow:var(--shadow-sm);
top:calc(50% - 30px) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after{
font-size:18px !important;
font-weight:700;
}
@media(max-width:768px){
.swiper-button-next,.swiper-button-prev{display:none !important;}
}


/* ==========================================
   SOCIAL SECTION
========================================== */

/* ==========================================
   SOCIAL SECTION
========================================== */

.social-section {
  padding: 90px 0 100px;
  background: #fff;
  overflow: hidden;
}


/* ==========================================
   HEADING
========================================== */

.social-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
}


.social-heading .section-label {
  display: block;
  margin-bottom: 12px;
}


.social-heading h2 {
  margin: 0;

  font-size: clamp(46px, 6vw, 72px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 800;

  color: var(--text, #17243f);
}


.social-heading h2 em {
  color: var(--primary);

  font-family: Georgia, serif;

  font-weight: 400;
  font-style: italic;
}


.social-heading p {
  max-width: 500px;

  margin: 20px auto 0;

  font-size: 15.5px;
  line-height: 1.7;

  color: var(--text-muted, #707070);
}


/* ==========================================
   SOCIAL GRID
========================================== */

.social-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  width: 100%;

  border-top: 1px solid #e5e5e5;
}


/* ==========================================
   SOCIAL ITEM
========================================== */

.social-item {
  position: relative;

  min-height: 255px;

  padding: 35px 18px 25px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  text-decoration: none;

  color: var(--text, #17243f);

  border-right: 1px solid #e5e5e5;

  transition:
    background .4s ease,
    transform .4s ease;
}


.social-item:last-child {
  border-right: 0;
}


/* ==========================================
   ABOUT INTRO
========================================== */

.about-intro {
  position: relative;

  padding: 110px 0 120px;

  background: #fff;

  overflow: hidden;
}


/* ==========================================
   TOP
========================================== */

.about-intro-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 55px;
}


.about-intro-top .section-label {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .15em;

  color: var(--primary);
}


.about-intro-top .section-label i {
  font-size: 14px;
}


.about-intro-index {
  font-size: 9px;

  font-weight: 700;

  letter-spacing: .14em;

  color: #999;
}


/* ==========================================
   GRID
========================================== */

.about-intro-grid {
  display: grid;

  grid-template-columns:
    minmax(320px, .85fr)
    minmax(0, 1.15fr);

  gap: clamp(55px, 8vw, 120px);

  align-items: center;
}


/* ==========================================
   IMAGE
========================================== */

.about-intro-visual {
  position: relative;

  padding-bottom: 45px;
}


.about-image-wrap {
  position: relative;

  width: 100%;

  height: min(620px, 48vw);

  min-height: 450px;

  overflow: hidden;

  background: #e9e9e7;
}


.about-image-wrap::before {
  content: "";

  position: absolute;

  z-index: 2;

  inset: 14px;

  border: 1px solid rgba(255,255,255,.45);

  pointer-events: none;
}


.about-image-wrap img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: saturate(.9);

  transform: scale(1.03);

  transition:
    transform 1s cubic-bezier(.2,.8,.2,1);
}


.about-intro-visual:hover
.about-image-wrap img {
  transform: scale(1.09);
}


.about-image-overlay {
  position: absolute;

  z-index: 1;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(15,25,40,.28)
    );

  pointer-events: none;
}


/* ==========================================
   IMAGE CAPTION
========================================== */

.about-image-caption {
  position: absolute;

  z-index: 4;

  left: 25px;

  bottom: 70px;

  display: flex;

  flex-direction: column;

  gap: 5px;

  color: #fff;
}


.about-image-caption span:first-child {
  font-size: 14px;

  font-weight: 700;
}


.about-image-caption span:last-child {
  font-size: 8px;

  letter-spacing: .12em;

  text-transform: uppercase;

  opacity: .8;
}


/* ==========================================
   EXPERIENCE
========================================== */

.about-experience {
  position: absolute;

  z-index: 5;

  right: -28px;

  bottom: 0;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px 22px;

  background: var(--primary);

  color: #fff;

  box-shadow:
    0 20px 45px rgba(0,0,0,.12);
}


.about-experience strong {
  font-size: 45px;

  line-height: .8;

  letter-spacing: -.08em;

  font-weight: 800;
}


.about-experience span {
  font-size: 8px;

  line-height: 1.4;

  letter-spacing: .1em;

  text-transform: uppercase;

  opacity: .85;
}


/* ==========================================
   CONTENT
========================================== */

.about-intro-copy {
  max-width: 680px;
}


.about-copy-kicker {
  display: block;

  margin-bottom: 17px;

  color: var(--primary);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .15em;

  text-transform: uppercase;
}


.about-intro-copy h2 {
  max-width: 700px;

  margin: 0 0 32px;

  font-size: clamp(42px, 5vw, 72px);

  line-height: .94;

  letter-spacing: -.065em;

  font-weight: 800;

  color: var(--text, #17243f);
}


.about-intro-copy h2 span {
  display: block;

  color: var(--primary);

  font-family: Georgia, serif;

  font-style: italic;

  font-weight: 400;

  letter-spacing: -.06em;
}


/* ==========================================
   TEXT
========================================== */

.about-intro-text {
  max-width: 610px;

  border-left: 1px solid rgba(23,36,63,.15);

  padding-left: 25px;
}


.about-intro-text p {
  margin: 0 0 17px;

  font-size: 13px;

  line-height: 1.85;

  color: #676c77;
}


.about-intro-text p:last-child {
  margin-bottom: 0;
}


.about-intro-text .intro-lead {
  font-size: 15px;

  line-height: 1.75;

  color: var(--text, #17243f);
}


.about-intro-text strong {
  color: var(--primary);

  font-weight: 700;
}


/* ==========================================
   SPECIALTIES
========================================== */

.about-specialties {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  margin-top: 38px;

  border-top: 1px solid #e5e6e8;

  border-bottom: 1px solid #e5e6e8;
}


.specialty {
  display: flex;

  gap: 13px;

  padding: 20px 15px 20px 0;

  border-right: 1px solid #e5e6e8;
}


.specialty:not(:first-child) {
  padding-left: 15px;
}


.specialty:last-child {
  border-right: 0;
}


.specialty-number {
  font-size: 8px;

  font-weight: 800;

  color: var(--primary);
}


.specialty strong {
  display: block;

  margin-bottom: 5px;

  font-size: 9px;

  letter-spacing: .1em;

  color: var(--text, #17243f);
}


.specialty small {
  display: block;

  font-size: 8px;

  line-height: 1.5;

  color: #999;

  text-transform: none;
}


/* ==========================================
   BOTTOM STATEMENT
========================================== */

.about-intro-statement {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 15px;
}


.statement-line {
  flex: 1;

  height: 1px;

  background: #dedfe2;
}


.about-intro-statement p {
  max-width: 600px;

  margin: 0;

  text-align: center;

  font-size: 17px;

  line-height: 1.5;

  letter-spacing: -.02em;

  color: var(--text, #17243f);
}


.about-intro-statement em {
  color: var(--primary);

  font-family: Georgia, serif;

  font-style: italic;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .about-intro {
    padding: 85px 0;
  }


  .about-intro-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }


  .about-image-wrap {
    height: 600px;
  }


  .about-intro-copy {
    max-width: 700px;
  }


  .about-specialties {
    max-width: 700px;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .about-intro {
    padding: 70px 0;
  }


  .about-intro-top {
    margin-bottom: 35px;
  }


  .about-intro-index {
    display: none;
  }


  .about-image-wrap {
    height: 460px;

    min-height: 0;
  }


  .about-experience {
    right: 12px;

    padding: 15px 17px;
  }


  .about-experience strong {
    font-size: 36px;
  }


  .about-image-caption {
    left: 20px;

    bottom: 50px;
  }


  .about-intro-copy h2 {
    font-size: 43px;

    margin-bottom: 25px;
  }


  .about-intro-text {
    padding-left: 17px;
  }


  .about-intro-text p {
    font-size: 12px;

    line-height: 1.8;
  }


  .about-intro-text .intro-lead {
    font-size: 14px;
  }


  .about-specialties {
    grid-template-columns: 1fr;

    margin-top: 30px;
  }


  .specialty,
  .specialty:not(:first-child) {
    padding: 15px 0;

    border-right: 0;

    border-bottom: 1px solid #e5e6e8;
  }


  .specialty:last-child {
    border-bottom: 0;
  }


  .about-intro-statement {
    margin-top: 65px;

    gap: 15px;
  }


  .about-intro-statement p {
    font-size: 14px;

    min-width: 75%;
  }

}


/* ==========================================
   VERSATILITY SECTION
========================================== */

.versatility-section {
  position: relative;

  padding: 120px 0 110px;

  overflow: hidden;

  background: #f5f6f4;
}


.versatility-bg {
  position: absolute;

  right: -30px;

  top: 60px;

  font-size: clamp(160px, 25vw, 390px);

  line-height: .7;

  font-weight: 900;

  letter-spacing: -.13em;

  color: rgba(23,36,63,.035);

  pointer-events: none;
}


/* ==========================================
   TOP
========================================== */

.versatility-top {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 75px;
}


.versatility-title .section-label {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 18px;

  color: var(--primary);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .15em;
}


.versatility-title h2 {
  margin: 0;

  font-size: clamp(55px, 7vw, 105px);

  line-height: .82;

  letter-spacing: -.09em;

  font-weight: 800;

  color: var(--text, #17243f);
}


.versatility-title h2 span {
  display: block;

  color: var(--primary);

  font-family: var(--serif, Georgia, serif);

  font-style: italic;

  font-weight: 400;

  letter-spacing: -.075em;
}


.versatility-intro {
  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 20px;

  padding-bottom: 5px;
}

.versatility-intro p {
  max-width: 380px;

  margin: 0;

  font-size: 15.5px;

  line-height: 1.8;

  color: #686d77;
}


/* ==========================================
   VOICE LIST
========================================== */

.voice-list {
  position: relative;

  z-index: 2;

  border-top: 1px solid #d9dbdc;
}


.voice-item {
  position: relative;

  display: grid;

  grid-template-columns:
    55px 65px 1fr 45px;

  align-items: center;

  gap: 20px;

  min-height: 130px;

  border-bottom: 1px solid #d9dbdc;

  transition:
    background .4s ease,
    padding .5s cubic-bezier(.2,.8,.2,1);
}


.voice-item::before {
  content: "";

  position: absolute;

  z-index: -1;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: var(--primary);

  transform: scaleY(0);

  transform-origin: bottom;

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1);
}


.voice-item:hover {

  padding-left: 25px;

  padding-right: 15px;

  color: #fff;
}


.voice-item:hover::before {
  transform: scaleY(1);
}


.voice-item-number {
  font-size: 10px;

  font-weight: 800;

  color: var(--primary);

  transition: color .3s ease;
}


.voice-item:hover .voice-item-number {
  color: rgba(255,255,255,.6);
}


/* ==========================================
   ICON
========================================== */

.voice-item-icon {
  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #d2d5d6;

  border-radius: 50%;

  color: var(--primary);

  font-size: 19px;

  transition:
    background .4s ease,
    color .4s ease,
    border-color .4s ease,
    transform .5s cubic-bezier(.2,.8,.2,1);
}


.voice-item:hover .voice-item-icon {
  background: rgba(255,255,255,.15);

  border-color: rgba(255,255,255,.35);

  color: #fff;

  transform:
    rotate(-8deg)
    scale(1.08);
}


/* ==========================================
   CONTENT
========================================== */

.voice-item-content {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}


.voice-item-content h3 {
  min-width: 190px;

  margin: 0;

  font-size: clamp(25px, 3vw, 42px);

  line-height: 1;

  letter-spacing: -.05em;

  font-weight: 700;

  color: var(--text, #17243f);

  transition: color .3s ease;
}


.voice-item-content p {
  max-width: 430px;

  margin: 0;

  font-size: 15.5px;

  line-height: 1.7;

  color: #777c85;

  transition: color .3s ease;
}


.voice-item:hover .voice-item-content h3,
.voice-item:hover .voice-item-content p {
  color: #fff;
}


/* ==========================================
   ARROW
========================================== */

.voice-item-arrow {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 38px;

  height: 38px;

  border: 1px solid #d2d5d6;

  border-radius: 50%;

  color: var(--text, #17243f);

  font-size: 15px;

  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}


.voice-item:hover .voice-item-arrow {
  transform:
    rotate(45deg);

  background: #fff;

  border-color: #fff;

  color: var(--primary);
}


/* ==========================================
   BOTTOM
========================================== */

.versatility-bottom {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 70px;
}


.versatility-bottom > span {
  flex: 1;

  height: 1px;

  background: #d9dbdc;
}


.versatility-bottom p {
  margin: 0;

  font-size: 13px;

  color: #777c85;

  text-align: center;
}


.versatility-bottom em {
  color: var(--primary);

  font-family: var(--serif, Georgia, serif);

  font-size: 16px;
}


/* ==========================================
   STORY SECTION
========================================== */

.story-section {
  position: relative;

  padding: 130px 0;

  overflow: hidden;

  background: var(--text, #17243f);

  color: #fff;
}


.story-bg-word {
  position: absolute;

  right: -30px;

  bottom: -80px;

  font-size: clamp(200px, 31vw, 500px);

  line-height: .7;

  font-weight: 900;

  letter-spacing: -.14em;

  color: rgba(255,255,255,.025);

  pointer-events: none;
}


/* ==========================================
   STORY GRID
========================================== */

.story-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    .85fr 1.15fr;

  gap: clamp(60px, 9vw, 130px);

  align-items: center;
}


/* ==========================================
   STORY IMAGE
========================================== */

.story-visual {
  position: relative;

  padding-bottom: 35px;

  padding-right: 30px;
}


.story-image {
  position: relative;

  height: 570px;

  overflow: hidden;
}


.story-image img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  filter: saturate(.8);

  transform: scale(1.02);

  transition:
    transform 1s cubic-bezier(.2,.8,.2,1);
}


.story-visual:hover .story-image img {
  transform: scale(1.08);
}


.story-image-shade {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(0,0,0,.45)
    );
}


/* ==========================================
   STORY TAG
========================================== */

.story-tag {
  position: absolute;

  right: 0;

  bottom: 0;

  display: flex;

  flex-direction: column;

  gap: 3px;

  padding: 20px 25px;

  background: var(--primary);

  color: #fff;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: .16em;

  line-height: 1.5;
}


/* ==========================================
   IMAGE NUMBER
========================================== */

.story-image-number {
  position: absolute;

  left: -15px;

  top: -20px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .1em;

  color: var(--primary-light);
}


/* ==========================================
   STORY COPY
========================================== */

.story-copy {
  max-width: 650px;
}


.story-copy .section-label {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 20px;

  color: var(--primary-light);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .15em;
}


.story-copy h2 {
  margin: 0 0 35px;

  font-size: clamp(55px, 6.5vw, 95px);

  line-height: .85;

  letter-spacing: -.09em;

  font-weight: 800;
}


.story-copy h2 em {
  display: block;

  color: var(--primary-light);

  font-family: var(--serif, Georgia, serif);

  font-style: italic;

  font-weight: 400;

  letter-spacing: -.07em;
}


/* ==========================================
   STORY TEXT
========================================== */

.story-lead {
  max-width: 570px;

  margin: 0 0 25px;

  font-size: 17px;

  line-height: 1.65;

  color: rgba(255,255,255,.9);
}


.story-text {
  max-width: 560px;

  border-left: 1px solid rgba(255,255,255,.2);

  padding-left: 25px;
}


.story-text p {
  margin: 0 0 18px;

  font-size: 12px;

  line-height: 1.85;

  color: rgba(255,255,255,.55);
}


.story-text p:last-child {
  margin-bottom: 0;
}


/* ==========================================
   SIGNATURE
========================================== */

.story-signature {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 40px;
}


.signature-line {
  width: 45px;

  height: 1px;

  background: var(--primary-light);
}


.story-signature strong {
  display: block;

  margin-bottom: 4px;

  font-size: 11px;

  letter-spacing: .04em;
}


.story-signature small {
  display: block;

  font-size: 8px;

  color: rgba(255,255,255,.4);

  letter-spacing: .08em;

  text-transform: uppercase;
}


/* ==========================================
   QUOTE
========================================== */

.story-quote {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 30px;

  margin-top: 120px;

  padding-top: 45px;

  border-top: 1px solid rgba(255,255,255,.12);
}


.quote-mark {
  font-family: Georgia, serif;

  font-size: 100px;

  line-height: .5;

  color: var(--primary-light);

  opacity: .8;
}


.story-quote p {
  max-width: 700px;

  margin: 0;

  font-size: clamp(20px, 2.5vw, 32px);

  line-height: 1.2;

  letter-spacing: -.04em;

  color: rgba(255,255,255,.75);
}


.story-quote em {
  color: var(--primary-light);

  font-family: Georgia, serif;

  font-style: italic;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .versatility-section,
  .story-section {
    padding: 85px 0;
  }


  .versatility-top {
    grid-template-columns: 1fr;

    gap: 25px;
  }


  .voice-item {
    grid-template-columns:
      40px 55px 1fr 40px;

    gap: 15px;
  }


  .voice-item-content {
    display: block;
  }


  .voice-item-content h3 {
    min-width: 0;

    margin-bottom: 8px;
  }


  .story-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }


  .story-image {
    height: 600px;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .versatility-section {
    padding: 70px 0;
  }


  .versatility-title h2 {
    font-size: 58px;
  }


  .voice-item {
    grid-template-columns:
      30px 45px 1fr 35px;

    gap: 10px;

    min-height: 105px;
  }


  .voice-item:hover {
    padding-left: 12px;

    padding-right: 8px;
  }


  .voice-item-icon {
    width: 42px;

    height: 42px;

    font-size: 16px;
  }


  .voice-item-content h3 {
    font-size: 22px;
  }


  .voice-item-content p {
    font-size: 9px;

    line-height: 1.5;
  }


  .voice-item-arrow {
    width: 30px;

    height: 30px;

    font-size: 12px;
  }


  .versatility-bottom {
    margin-top: 45px;

    gap: 12px;
  }


  .versatility-bottom p {
    min-width: 190px;

    font-size: 10px;
  }


  .story-section {
    padding: 75px 0;
  }


  .story-image {
    height: 470px;
  }


  .story-visual {
    padding-right: 15px;
  }


  .story-copy h2 {
    font-size: 56px;

    margin-bottom: 25px;
  }


  .story-lead {
    font-size: 14px;
  }


  .story-text {
    padding-left: 17px;
  }


  .story-text p {
    font-size: 11px;
  }


  .story-quote {
    margin-top: 75px;

    gap: 15px;
  }


  .quote-mark {
    font-size: 65px;
  }


  .story-quote p {
    font-size: 18px;
  }

}


/* ==========================================
   ACADEMIC SECTION
========================================== */

.academic-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #fff;
}

.academic-orbit {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -280px;
  top: -300px;
  border: 90px solid rgba(75, 145, 205, .055);
  border-radius: 50%;
  pointer-events: none;
}

.academic-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}


/* LEFT */

.academic-copy {
  max-width: 650px;
}

.academic-copy .section-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .14em;
}

.academic-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: .9;
  letter-spacing: -.075em;
  color: var(--text, #263654);
}

.academic-copy h2 em {
  display: block;
  color: var(--primary);
  font-family: var(--serif, Georgia, serif);
  font-style: italic;
  font-weight: 400;
}

.academic-lead {
  max-width: 580px;
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text, #263654);
  font-weight: 500;
}

.academic-copy > p:not(.academic-lead) {
  max-width: 560px;
  margin: 0;
  color: #70758a;
  font-size: 15.5px;
  line-height: 1.8;
}

.academic-line {
  width: 60px;
  height: 3px;
  margin: 35px 0 25px;
  background: var(--primary);
}

.academic-details {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.academic-details div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.academic-details strong {
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--text, #263654);
}

.academic-details span {
  font-size: 15.5px;
  color: #8a8e9d;
}


/* QUOTE */

.academic-quote {
  position: relative;
  min-height: 390px;
  padding: 55px 55px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--text, #263654);
  color: #fff;
  border-radius: 3px;
  box-shadow: 25px 25px 0 rgba(75, 145, 205, .12);
}

.academic-quote::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  bottom: -100px;
  border: 50px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

.quote-mark {
  position: absolute;
  top: 15px;
  left: 35px;
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
  color: var(--primary-light);
  opacity: .5;
}

.academic-quote blockquote {
  position: relative;
  z-index: 2;
  margin: 0 0 35px;
  max-width: 530px;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.18;
  letter-spacing: -.035em;
  font-weight: 600;
}

.quote-author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-author > span {
  width: 35px;
  height: 1px;
  background: var(--primary-light);
}

.quote-author strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.quote-author small {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quote-number {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
}


/* ==========================================
   VOCAL SECTION
========================================== */

.vocal-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: #f4f6f8;
}

.vocal-bg-text {
  position: absolute;
  left: -20px;
  bottom: -65px;
  font-size: clamp(130px, 20vw, 300px);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.13em;
  color: rgba(38,54,84,.035);
  pointer-events: none;
}

.vocal-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 65px;
}

.vocal-heading .section-label {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.vocal-heading h2 {
  margin: 0;
  font-size: clamp(55px, 7vw, 100px);
  line-height: .82;
  letter-spacing: -.09em;
  color: var(--text, #263654);
}

.vocal-heading h2 em {
  display: block;
  color: var(--primary);
  font-family: var(--serif, Georgia, serif);
  font-style: italic;
  font-weight: 400;
}

.vocal-intro {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  align-items: start;
}

.vocal-number {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}

.vocal-intro p {
  margin: 0;
  max-width: 450px;
  color: #70758a;
  font-size: 13px;
  line-height: 1.8;
}


/* ==========================================
   ACCENTS
========================================== */

.accent-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  padding: 45px 0;
  border-top: 1px solid #d8dce0;
  border-bottom: 1px solid #d8dce0;
}

.accent-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accent-title > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--primary);
}

.accent-title strong {
  font-size: 37px;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text, #263654);
}

.accent-title em {
  color: var(--primary);
  font-family: var(--serif, Georgia, serif);
  font-weight: 400;
}

.accent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.accent-list span {
  padding: 13px 17px;
  border: 1px solid #d5d9dd;
  border-radius: 100px;
  background: #fff;
  color: #4f5666;
  font-size: 15.5px;
  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}

.accent-list span:hover {
  transform: translateY(-4px);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}


/* ==========================================
   VOCAL BOTTOM
========================================== */

.vocal-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 70px;
}

.vocal-big-number {
  font-size: clamp(100px, 13vw, 190px);
  line-height: .7;
  font-weight: 900;
  letter-spacing: -.1em;
  color: var(--primary);
}

.vocal-bottom-copy {
  max-width: 800px;
}

.vocal-bottom-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(35px, 4vw, 55px);
  line-height: .9;
  letter-spacing: -.07em;
  color: var(--text, #263654);
}

.vocal-bottom-copy h3 span {
  color: var(--primary);
}

.vocal-bottom-copy h3 em {
  color: #9da5b1;
  font-family: var(--serif, Georgia, serif);
  font-weight: 400;
}

.vocal-bottom-copy p {
  max-width: 800px;
  margin: 0;
  color: #70758a;
  font-size: 15.5px;
  line-height: 1.8;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

  .academic-section,
  .vocal-section {
    padding: 80px 0;
  }

  .academic-grid,
  .vocal-heading {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .academic-quote {
    min-height: 350px;
  }

  .accent-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vocal-bottom {
    grid-template-columns: 130px 1fr;
    gap: 35px;
  }

}


@media (max-width: 600px) {

  .academic-section,
  .vocal-section {
    padding: 65px 0;
  }

  .academic-copy h2,
  .vocal-heading h2 {
    font-size: 55px;
  }

  .academic-lead {
    font-size: 16px;
  }

  .academic-details {
    gap: 20px;
  }

  .academic-quote {
    min-height: 320px;
    padding: 45px 30px 35px;
  }

  .academic-quote blockquote {
    font-size: 20px;
  }

  .vocal-heading {
    margin-bottom: 45px;
  }

  .accent-showcase {
    padding: 35px 0;
  }

  .accent-list span {
    font-size: 10px;
    padding: 10px 13px;
  }

  .vocal-bottom {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 55px;
  }

  .vocal-big-number {
    font-size: 120px;
  }

}


/* ==========================================
   CONTACT HERO
========================================== */

.contact-hero {
  position: relative;
  min-height: 520px;
  padding: 30px 0 45px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
}


/* HUGE BACKGROUND WORD */

.contact-hero-bg {
  position: absolute;
  left: -25px;
  bottom: -80px;

  font-size: clamp(180px, 27vw, 430px);
  line-height: .7;
  font-weight: 900;
  letter-spacing: -.12em;

  color: rgba(38, 54, 84, .035);

  pointer-events: none;
  user-select: none;

  transition: transform .8s cubic-bezier(.16,1,.3,1);
}


/* TOP */

.contact-hero-top {
  position: relative;
  z-index: 3;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 1px;
}

.contact-hero-top .section-label {
  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--primary);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-hero-top .section-label i {
  font-size: 15px;
}

.contact-hero-number {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #9ba1ae;
}


/* MAIN */

.contact-hero-main {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;

  align-items: end;
}


/* TITLE */

.contact-hero-title h1 {
  margin: 0;

  max-width: 850px;

  font-size: clamp(75px, 10vw, 150px);
  line-height: .78;
  letter-spacing: -.095em;

  font-weight: 800;
  color: var(--text, #263654);
}

.contact-hero-title h1 span {
  display: block;
  color: var(--primary);
}

.contact-hero-title h1 em {
  display: block;

  color: var(--text, #263654);

  font-family: var(--serif, Georgia, serif);
  font-weight: 400;
  font-style: italic;
}


/* RIGHT CONTENT */

.contact-hero-side {
  max-width: 360px;
  padding-bottom: 10px;
}

.contact-hero-line {
  width: 45px;
  height: 3px;

  margin-bottom: 25px;

  background: var(--primary);
}

.contact-hero-side p {
  margin: 0 0 35px;

  color: #70758a;

  font-size: 15.5px;
  line-height: 1.85;
}


/* START CONVERSATION */

.contact-scroll {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  color: var(--text, #263654);

  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;

  text-decoration: none;

  transition: gap .35s ease;
}

.contact-scroll i {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid #d9dde2;
  border-radius: 50%;

  font-size: 15px;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

.contact-scroll:hover {
  gap: 25px;
}

.contact-scroll:hover i {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(4px);
}


/* BOTTOM TAGS */

.contact-hero-bottom {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 75px;

  color: #8c92a0;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.contact-hero-bottom i {
  width: 25px;
  height: 1px;
  background: #d5d9de;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

  .contact-hero {
    min-height: auto;
    padding: 130px 0 50px;
  }

  .contact-hero-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-hero-title h1 {
    font-size: clamp(65px, 13vw, 110px);
  }

  .contact-hero-side {
    max-width: 520px;
  }

  .contact-hero-bottom {
    margin-top: 55px;
  }

}


@media (max-width: 600px) {

  .contact-hero {
    padding: 110px 0 40px;
  }

  .contact-hero-top {
    margin-bottom: 45px;
  }

  .contact-hero-number {
    display: none;
  }

  .contact-hero-title h1 {
    font-size: 64px;
    line-height: .82;
  }

  .contact-hero-side p {
    font-size: 15.5px;
  }

  .contact-hero-bottom {
    gap: 10px;
    flex-wrap: wrap;
  }

  .contact-hero-bottom i {
    width: 15px;
  }

  .contact-hero-bg {
    bottom: -20px;
    font-size: 180px;
  }

}


/* ==========================================
   CONTACT MAIN
========================================== */

.contact-main-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background: #f5f7f8;
}

.contact-bg-word {
  position: absolute;
  left: -30px;
  bottom: -80px;

  font-size: clamp(150px, 22vw, 330px);
  line-height: .7;
  font-weight: 900;
  letter-spacing: -.12em;

  color: rgba(38,54,84,.035);

  pointer-events: none;
  user-select: none;
}

.contact-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;

  align-items: start;
}


/* ==========================================
   CONTACT INFORMATION
========================================== */

.contact-info-block {
  padding-top: 20px;
}

.contact-info-block > .section-label {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 25px;

  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-info-block > .section-label i {
  font-size: 15px;
}

.contact-info-block h2 {
  max-width: 520px;

  margin: 0 0 25px;

  font-size: clamp(55px, 6vw, 85px);
  line-height: .86;
  letter-spacing: -.085em;

  color: var(--text, #263654);
}

.contact-info-block h2 em {
  display: block;

  color: var(--primary);

  font-family: var(--serif, Georgia, serif);
  font-weight: 400;
  font-style: italic;
}

.contact-intro {
  max-width: 430px;

  margin: 0 0 50px;

  color: #70758a;
  font-size: 15.5px;
  line-height: 1.8;
}


/* ==========================================
   CONTACT DETAILS
========================================== */

.contact-details {
  border-top: 1px solid #d7dce1;
}

.contact-detail {
  position: relative;

  display: grid;
  grid-template-columns: 35px 45px 1fr 30px;

  align-items: center;
  gap: 15px;

  padding: 22px 0;

  border-bottom: 1px solid #d7dce1;

  text-decoration: none;

  transition: padding .35s ease;
}

.contact-detail:hover {
  padding-left: 10px;
}

.contact-detail-number {
  font-size: 9px;
  color: #9ba2ad;
  letter-spacing: .08em;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--text, #263654);
  color: #fff;

  font-size: 15px;

  transition:
    background .3s ease,
    transform .3s ease;
}

.contact-detail:hover .contact-detail-icon {
  background: var(--primary);
  transform: rotate(-8deg) scale(1.08);
}

.contact-detail-info span {
  display: block;

  margin-bottom: 4px;

  color: #8a909d;

  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-detail-info strong {
  display: block;

  color: var(--text, #263654);

  font-size: 15.5px;
  font-weight: 700;
}

.contact-detail-arrow {
  color: #9ca2ad;

  font-size: 17px;

  transition:
    transform .3s ease,
    color .3s ease;
}

.contact-detail:hover .contact-detail-arrow {
  color: var(--primary);
  transform: translate(4px,-4px);
}


/* ==========================================
   SOCIALS
========================================== */

.contact-socials-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 35px;
  max-width: 450px;
}

.contact-socials-wrap > span {
  color: #8b919e;

  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-social-icons {
  display: flex;
  gap: 8px;
}

.contact-social-icons a {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d5dae0;
  border-radius: 50%;

  color: var(--text, #263654);

  text-decoration: none;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease;
}

.contact-social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}


/* ==========================================
   FORM
========================================== */

.contact-form-wrap {
  position: relative;

  padding: 45px 50px 50px;

  background: #fff;

  border: 1px solid #e2e5e8;

  box-shadow: 18px 18px 0 rgba(38,54,84,.055);
}

.form-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  margin-bottom: 12px;
}

.form-top .section-label {
  display: block;

  margin-bottom: 12px;

  color: var(--primary);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.form-top h3 {
  margin: 0;

  color: var(--text, #263654);

  font-size: clamp(30px, 3vw, 43px);
  line-height: .95;
  letter-spacing: -.06em;
}



.form-intro {
  max-width: 500px;

  margin: 0 0 35px;

  color: #818695;

  font-size: 15.5px;
  line-height: 1.7;
}


/* ==========================================
   FORM FIELDS
========================================== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  position: relative;

  margin-bottom: 24px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: var(--text, #263654);

  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 13px 0;

  border: 0;
  border-bottom: 1px solid #d5dae0;

  border-radius: 0;

  outline: none;

  background: transparent;

  color: var(--text, #263654);

  font-family: inherit;
  font-size: 15.5px;

  transition: border-color .3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b4bac4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--primary);
}

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


/* SELECT */

.form-group select {
  cursor: pointer;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.form-submit {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 8px;
  padding: 17px 20px;

  border: 0;

  background: var(--text, #263654);
  color: #fff;

  cursor: pointer;

  font-family: inherit;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;

  transition:
    background .3s ease,
    padding .3s ease;
}

.form-submit i {
  font-size: 17px;

  transition: transform .3s ease;
}

.form-submit:hover {
  background: var(--primary);
  padding-left: 25px;
  padding-right: 25px;
}

.form-submit:hover i {
  transform: translate(4px,-4px);
}



/* ==========================================
   LOGOS
========================================== */

.social-logo {
  width: 66px;
  height: 66px;

  margin-bottom: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 99px !important;

  color: #52758b;

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    color .35s ease;
}


/* FACEBOOK */

.facebook-logo {
  font-size: 38px;
}


/* TWITTER */

.twitter-logo {
  font-size: 31px;
}


/* YOUTUBE */

.youtube-logo {
  font-size: 39px;
}


/* INSTAGRAM */

.instagram-logo {
  font-size: 34px;
}


/* ==========================================
   UPWORK LOGO
========================================== */

.upwork-logo {
  width: 80px;
  height: 80px;

  margin-top: -10px;
  margin-bottom: 26px;

  border-radius: 50%;

  background: #52778d;

  color: #fff;
}


.upwork-logo span {
  font-size: 29px;

  font-weight: 800;

  letter-spacing: -3px;
}


/* ==========================================
   VOICES LOGO
========================================== */

.voices-logo {
  width: 80px;
  height: 80px;

  margin-top: -10px;
  margin-bottom: 26px;

  border-radius: 15px;

  background: #52778d;

  color: #fff;
}


.voices-logo span {
  font-family: Arial, sans-serif;

  font-size: 42px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -5px;
}


.voices-logo small {
  font-size: 27px;

  font-weight: 900;

  margin-left: 2px;
}


/* ==========================================
   TITLE
========================================== */

.social-item h3 {
  margin: 0;

  min-height: 38px;

  font-size: 14px;

  line-height: 1.35;

  font-weight: 700;

  color: #263754;
}


/* ==========================================
   DESCRIPTION
========================================== */

.social-item p {
  margin: 9px 0 0;

  font-size: 15.5px;

  line-height: 1.65;

  color: #6d7080;
}


/* ==========================================
   HOVER
========================================== */

.social-item:hover {
  background: #fafafa;
}


.social-item:hover .social-logo {
  transform:
    translateY(-7px)
    scale(1.08);

  color: var(--primary);
}


.social-item:hover .upwork-logo,
.social-item:hover .voices-logo {
  background: var(--primary);

  color: #fff;
}


/* ==========================================
   BOTTOM HOVER LINE
========================================== */

.social-item::after {
  content: "";

  position: absolute;

  left: 15%;
  right: 15%;
  bottom: 0;

  height: 3px;

  background: var(--primary);

  transform: scaleX(0);

  transform-origin: center;

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1);
}


.social-item:hover::after {
  transform: scaleX(1);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }


  .social-item:nth-child(3) {
    border-right: 0;
  }


  .social-item:nth-child(-n+3) {
    border-bottom: 1px solid #e5e5e5;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

  .social-section {
    padding: 65px 0 70px;
  }


  .social-heading {
    text-align: left;

    margin-left: 0;
    margin-right: 0;
  }


  .social-heading p {
    margin-left: 0;
  }


  /*
     Keep the six items on one line.
     User can swipe horizontally.
  */

  .social-grid {
    display: flex;

    overflow-x: auto;

    width: calc(100% + 30px);

    margin-left: -15px;

    scrollbar-width: none;

    border-top: 1px solid #e5e5e5;
  }


  .social-grid::-webkit-scrollbar {
    display: none;
  }


  .social-item {
    flex: 0 0 180px;

    min-height: 230px;

    border-right: 1px solid #e5e5e5 !important;

    border-bottom: 0 !important;
  }


  .social-item:last-child {
    border-right: 0 !important;
  }

}

/* ===== PAGE HERO (ABOUT / CONTACT / PORTFOLIO) ===== */
.page-hero{
padding:140px 0 72px;
text-align:center;
background:
radial-gradient(ellipse 70% 60% at 50% 0%,rgba(184,137,74,.08),transparent 60%),
var(--bg);
}
.page-hero .section-label{margin-bottom:16px;}
.page-hero h1{
font-family:var(--serif);
font-size:clamp(40px,5.5vw,64px);
font-weight:600;
line-height:1.1;
color:var(--text);
margin-bottom:18px;
letter-spacing:-.5px;
}
.page-hero h1 em{
font-style:italic;
color:var(--primary);
font-weight:500;
}
.page-hero p{
font-size:17px;
color:var(--text-soft);
max-width:620px;
margin:0 auto;
line-height:1.75;
}

/* ===== ABOUT PAGE ===== */
.about-intro{
padding:72px 0;
}
.about-intro-grid{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:56px;
align-items:center;
}
.about-intro-img{
position:relative;
}
.about-intro-img img{
width:100%;
border-radius:var(--radius-lg);
aspect-ratio:4/5;
object-fit:cover;
box-shadow:var(--shadow);
}
.about-intro-img::after{
content:'';
position:absolute;
top:20px;left:20px;
right:-20px;bottom:-20px;
border:2px solid var(--primary);
border-radius:var(--radius-lg);
z-index:-1;
}
.about-intro-copy h2{
font-family:var(--serif);
font-size:clamp(30px,3.8vw,42px);
font-weight:600;
line-height:1.2;
margin-bottom:20px;
}
.about-intro-copy h2 span{
color:var(--primary);
font-style:italic;
}
.about-intro-copy p{
color:var(--text-soft);
font-size:15.5px;
line-height:1.8;
margin-bottom:14px;
}

.stats-section{
background:var(--bg-dark);
color:var(--white);
padding:60px 0;
}
.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:32px;
text-align:center;
}
.stat-number{
font-family:var(--serif);
font-size:clamp(40px,5vw,60px);
font-weight:700;
color:var(--primary-light);
line-height:1;
margin-bottom:8px;
}
.stat-label{
font-size:14px;
color:rgba(255,255,255,.7);
letter-spacing:.5px;
}

.versatility-section{
padding:72px 0;
}
.versatility-head{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:48px;
align-items:end;
margin-bottom:48px;
}
.versatility-head h2{
font-family:var(--serif);
font-size:clamp(30px,4vw,44px);
font-weight:600;
line-height:1.15;
margin-top:12px;
}
.versatility-head h2 span{
color:var(--primary);
font-style:italic;
font-weight:500;
}
.versatility-head > p{
color:var(--text-soft);
font-size:15.5px;
line-height:1.75;
}
.voice-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
}
.voice-card{
background:var(--white);
border-radius:var(--radius);
padding:28px 26px;
border:1px solid var(--border);
transition:var(--transition);
}
.voice-card:hover{
transform:translateY(-6px);
box-shadow:var(--shadow);
border-color:var(--primary-light);
}
.voice-icon{
width:52px;height:52px;
background:rgba(184,137,74,.1);
color:var(--primary);
border-radius:var(--radius-sm);
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
margin-bottom:20px;
}
.voice-card h3{
font-family:var(--serif);
font-size:22px;
font-weight:600;
margin-bottom:8px;
}
.voice-card p{
font-size:14.5px;
color:var(--text-soft);
line-height:1.7;
}

.story-section{
background:var(--bg-alt);
}
.story-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}
.story-image{
position:relative;
}
.story-image img{
width:100%;
border-radius:var(--radius-lg);
aspect-ratio:4/5;
object-fit:cover;
box-shadow:var(--shadow);
}
.story-tag{
position:absolute;
bottom:24px;left:-16px;
background:var(--primary);
color:var(--white);
padding:16px 22px;
border-radius:var(--radius-sm);
font-family:var(--serif);
font-size:15px;
font-weight:600;
letter-spacing:1.5px;
line-height:1.5;
box-shadow:var(--shadow);
}
.story-copy h2{
font-family:var(--serif);
font-size:clamp(30px,3.8vw,42px);
font-weight:600;
line-height:1.15;
margin:14px 0 20px;
}
.story-copy h2 em{
font-style:italic;
color:var(--primary);
font-weight:500;
}
.story-copy p{
color:var(--text-soft);
font-size:15.5px;
line-height:1.8;
margin-bottom:14px;
}

.global-section{
padding:72px 0;
}
.global-layout{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:56px;
align-items:center;
}
.global-layout h2{
font-family:var(--serif);
font-size:clamp(30px,3.8vw,42px);
font-weight:600;
line-height:1.15;
margin:14px 0 20px;
}
.global-layout h2 em{
font-style:italic;
color:var(--primary);
}
.global-description{
color:var(--text-soft);
font-size:15.5px;
line-height:1.8;
margin-bottom:28px;
max-width:500px;
}
.accent-list{
display:flex;
flex-wrap:wrap;
gap:10px;
}
.accent-pill{
display:inline-flex;
padding:9px 18px;
background:var(--white);
border:1px solid var(--border);
border-radius:100px;
font-size:13.5px;
font-weight:500;
color:var(--text-soft);
transition:var(--transition);
}
.accent-pill:hover{
background:var(--primary);
border-color:var(--primary);
color:var(--white);
transform:translateY(-2px);
}
.global-visual{
position:relative;
aspect-ratio:1;
max-width:400px;
margin:0 auto;
}
.globe{
position:absolute;
inset:0;
border:1.5px dashed rgba(184,137,74,.35);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
animation:spinGlobe 40s linear infinite;
}
@keyframes spinGlobe{
to{transform:rotate(360deg);}
}
.globe-center{
position:absolute;
top:50%;left:50%;
transform:translate(-50%,-50%);
text-align:center;
font-family:var(--serif);
font-size:22px;
font-weight:700;
color:var(--primary);
letter-spacing:2px;
line-height:1.4;
}
.global-dot{
position:absolute;
width:12px;height:12px;
background:var(--primary);
border-radius:50%;
box-shadow:0 0 0 6px rgba(184,137,74,.18);
}
.global-dot.dot1{top:10%;left:30%;}
.global-dot.dot2{top:25%;right:12%;}
.global-dot.dot3{bottom:22%;left:14%;}
.global-dot.dot4{bottom:12%;right:28%;}

.academic-section{
background:var(--bg-alt);
}
.academic-card{
display:grid;
grid-template-columns:auto 1fr;
gap:36px;
align-items:center;
background:var(--white);
border-radius:var(--radius-lg);
padding:48px;
box-shadow:var(--shadow-sm);
border:1px solid var(--border);
}
.degree-icon{
width:88px;height:88px;
background:linear-gradient(135deg,var(--primary),var(--primary-light));
color:var(--white);
border-radius:var(--radius);
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
flex-shrink:0;
}
.academic-card h2{
font-family:var(--serif);
font-size:clamp(26px,3.2vw,36px);
font-weight:600;
line-height:1.2;
margin:12px 0 16px;
}
.academic-card h2 em{
font-style:italic;
color:var(--primary);
font-weight:500;
}
.academic-card p{
color:var(--text-soft);
font-size:15.5px;
line-height:1.8;
max-width:640px;
}

.quote-block{
padding:80px 0;
text-align:center;
background:var(--bg-dark);
color:var(--white);
}
.quote-mark{
font-family:var(--serif);
font-size:120px;
color:var(--primary);
line-height:.5;
margin-bottom:8px;
opacity:.5;
}
.quote-block .quote-text{
font-family:var(--serif);
font-size:clamp(22px,3vw,32px);
font-weight:500;
line-height:1.5;
max-width:780px;
margin:0 auto 28px;
color:var(--white);
font-style:italic;
}
.quote-author{
font-size:15px;
color:rgba(255,255,255,.7);
letter-spacing:1px;
text-transform:uppercase;
font-weight:600;
}

.final-cta-section{
padding:0 0 72px;
}
.cta-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
padding:56px 56px;
background:linear-gradient(135deg,var(--primary),var(--primary-dark));
border-radius:var(--radius-lg);
color:var(--white);
box-shadow:0 30px 80px rgba(184,137,74,.35);
flex-wrap:wrap;
}
.cta-inner h2{
font-family:var(--serif);
font-size:clamp(28px,3.5vw,40px);
font-weight:600;
line-height:1.15;
margin-bottom:6px;
}
.cta-inner p{
font-size:16px;
opacity:.9;
}
.cta-white{
display:inline-flex;
align-items:center;
gap:10px;
padding:16px 32px;
background:var(--white);
color:var(--text);
border-radius:var(--radius-sm);
font-weight:600;
font-size:15px;
transition:var(--transition);
white-space:nowrap;
}
.cta-white:hover{
transform:translateY(-3px);
box-shadow:0 16px 40px rgba(0,0,0,.2);
}

@media(max-width:991px){
.about-intro-grid,
.story-grid,
.global-layout,
.versatility-head{grid-template-columns:1fr;gap:36px;}
.stats-grid{grid-template-columns:repeat(2,1fr);gap:28px;}
.voice-grid{grid-template-columns:repeat(2,1fr);}
.academic-card{grid-template-columns:1fr;text-align:center;padding:36px 28px;}
.degree-icon{margin:0 auto;}
.cta-inner{padding:40px 32px;}
}
@media(max-width:600px){
.voice-grid{grid-template-columns:1fr;}
}



/* ===== PORTFOLIO PAGE ===== */
.portfolio-filters{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:10px;
margin-bottom:48px;
}
.filter-btn{
padding:10px 22px;
background:var(--white);
border:1.5px solid var(--border);
border-radius:100px;
font-size:13.5px;
font-weight:600;
color:var(--text-soft);
transition:var(--transition);
}
.filter-btn:hover{
border-color:var(--primary-light);
color:var(--primary);
}
.filter-btn.active{
background:var(--primary);
border-color:var(--primary);
color:var(--white);
}

.portfolio-section-block{
margin-bottom:64px;
}
.portfolio-section-title{
display:flex;
align-items:center;
gap:16px;
margin-bottom:28px;
}
.portfolio-section-title h3{
font-family:var(--serif);
font-size:28px;
font-weight:600;
}
.portfolio-section-title .section-line{
flex:1;
height:1px;
background:var(--border);
}
.portfolio-section-title .count-badge{
padding:6px 14px;
background:rgba(184,137,74,.12);
color:var(--primary-dark);
border-radius:100px;
font-size:12.5px;
font-weight:700;
}

.video-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
}
.video-card{
position:relative;
border-radius:var(--radius);
overflow:hidden;
background:var(--white);
box-shadow:var(--shadow-sm);
border:1px solid var(--border);
transition:var(--transition);
aspect-ratio:16/10;
}
.video-card-inner{
position:relative;
width:100%;height:100%;
cursor:pointer;
}
.video-thumb{
width:100%;height:100%;
object-fit:cover;
transition:transform .5s ease;
}
.video-card:hover{
transform:translateY(-6px);
box-shadow:var(--shadow-lg);
border-color:var(--primary-light);
}
.video-card:hover .video-thumb{transform:scale(1.06);}
.video-overlay{
position:absolute;
inset:0;
background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.75));
display:flex;
flex-direction:column;
justify-content:flex-end;
padding:20px;
transition:var(--transition);
}
.video-play-icon{
position:absolute;
top:50%;left:50%;
transform:translate(-50%,-50%);
width:56px;height:56px;
background:var(--white);
color:var(--text);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
box-shadow:var(--shadow);
transition:var(--transition);
opacity:0;
}
.video-card:hover .video-play-icon{
opacity:1;
background:var(--primary);
color:var(--white);
transform:translate(-50%,-50%) scale(1.08);
}
.video-category{
display:inline-block;
padding:4px 10px;
background:var(--primary);
color:var(--white);
border-radius:4px;
font-size:15.5px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:10px;
align-self:flex-start;
}
.video-title{
font-size:15.5px;
font-weight:600;
color:var(--white);
line-height:1.4;
}

@media(max-width:991px){
.video-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
.video-grid{grid-template-columns:1fr;}
.portfolio-section-title{flex-wrap:wrap;}
}

/* ===== LIGHTBOX ===== */
.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.92);
z-index:9999;
display:none;
align-items:center;
justify-content:center;
padding:28px;
}
.lightbox.active{display:flex;}
.lightbox-content{
position:relative;
width:100%;
max-width:960px;
aspect-ratio:16/9;
background:#000;
border-radius:var(--radius);
overflow:hidden;
box-shadow:0 50px 150px rgba(0,0,0,.6);
}
.lightbox-content iframe{
width:100%;height:100%;
border:0;
}
.lightbox-close{
position:absolute;
top:-48px;right:0;
width:40px;height:40px;
background:rgba(255,255,255,.12);
color:var(--white);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
transition:var(--transition);
}
.lightbox-close:hover{
background:var(--primary);
transform:rotate(90deg);
}

/* ==========================================
   FOOTER
========================================== */

.footer {
  position: relative;

  background: var(--dark, #17243f);

  color: #fff;

  overflow: hidden;
}


/* ==========================================
   CTA AREA
========================================== */

.footer-cta {
  position: relative;

  padding: 100px 0 95px;

  overflow: hidden;
}


/* subtle giant background word */

.footer-cta::after {
  content: "VOICE";

  position: absolute;

  right: -30px;
  bottom: -85px;

  font-size: clamp(160px, 24vw, 360px);

  line-height: .8;

  font-weight: 900;

  letter-spacing: -.1em;

  color: rgba(255,255,255,.025);

  pointer-events: none;
}


.footer-cta-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 30px;
}


.footer-label {
  display: inline-flex;

  align-items: center;

  gap: 15.5px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .16em;

  color: rgba(255,255,255,.55);
}


.footer-label i {
  color: var(--primary);
}



/* =========================================================
   CLIENTS SECTION
   ========================================================= */

.clients-section {

    position: relative;

    width: 100%;

    overflow: hidden;

    padding:
        110px
        30px
        100px;

    background:
        #f7f3ed;

    box-sizing: border-box;

}


/* =========================================================
   CONTAINER
   ========================================================= */

.clients-container {

    width: 100%;

    max-width: 1280px;

    margin: 0 auto;

}


/* =========================================================
   HEADING
   ========================================================= */

.clients-heading {

    max-width: 680px;

    margin:
        0
        auto
        55px;

    text-align: center;

}


.clients-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

    color: #8c837a;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .18em;

}


.clients-label-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #f25c3b;

    box-shadow:
        0 0 0 5px
        rgba(242,92,59,.10);

}


.clients-heading h2 {

    margin: 0;

    color: #171412;

    font-size:
        clamp(40px, 5vw, 68px);

    line-height: .94;

    font-weight: 900;

    letter-spacing: -.065em;

}


.clients-heading h2 em {

    display: block;

    color: #f25c3b;

    font-weight: 800;

    font-style: italic;

}


.clients-heading p {

    max-width: 510px;

    margin:
        20px
        auto
        0;

    color: #817870;

    font-size: 15.5px;

    line-height: 1.7;

}


/* =========================================================
   LOGO GRID
   ========================================================= */

.clients-grid {

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 12px;

}


/* =========================================================
   LOGO CARD
   ========================================================= */

.client-logo {

    position: relative;

    height: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    box-sizing: border-box;

    overflow: hidden;

    border:
        1px solid
        rgba(23,20,18,.055);

    border-radius: 18px;

    background:
        rgba(255,255,255,.63);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


/* subtle light */

.client-logo::before {

    content: "";

    position: absolute;

    width: 100px;

    height: 100px;

    top: -60px;

    right: -50px;

    border-radius: 50%;

    background:
        rgba(242,92,59,.06);

    filter: blur(25px);

    pointer-events: none;

}


/* =========================================================
   LOGO IMAGE
   ========================================================= */

.client-logo img {

    position: relative;
    z-index: 1;

    display: block;

    width: auto;
    height: auto;

    max-width: 82%;
    max-height: 62px;

    object-fit: contain;

    /* Keep logos fully visible and in their original colours */
    opacity: 1;

    filter: none;

    mix-blend-mode: normal;

    transition: transform .3s ease;
} opacity .3s ease,
        transform .3s ease;

}


/* =========================================================
   HOVER
   ========================================================= */

.client-logo:hover {

    transform:
        translateY(-5px);

    background:
        #ffffff;

    border-color:
        rgba(23,20,18,.10);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.08);

}


.client-logo:hover img {

    opacity: 1;

    filter:
        grayscale(0%);

    transform:
        scale(1.04);

}


/* =========================================================
   BOTTOM
   ========================================================= */

.clients-bottom {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 45px;

}


.clients-line {

    flex: 1;

    height: 1px;

    background:
        rgba(23,20,18,.08);

}


.clients-bottom span {

    flex-shrink: 0;

    color: #aaa098;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .16em;

    text-align: center;

}


/* =========================================================
   LARGE TABLETS
   ========================================================= */

@media (max-width: 1100px) {

    .clients-section {

        padding:
            90px
            25px;

    }


    .clients-grid {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

    }


    .client-logo {

        height: 115px;

    }

}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 800px) {

    .clients-section {

        padding:
            80px
            20px;

    }


    .clients-heading {

        margin-bottom: 40px;

    }


    .clients-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 10px;

    }


    .client-logo {

        height: 105px;

        padding: 18px;

        border-radius: 15px;

    }


    .client-logo img {

        max-width: 85%;

        max-height: 52px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .clients-section {

        padding:
            65px
            14px
            60px;

    }


    .clients-heading {

        margin-bottom: 30px;

    }


    .clients-heading h2 {

        font-size:
            clamp(36px, 11vw, 50px);

    }


    .clients-heading p {

        font-size: 11px;

        line-height: 1.65;

    }


    .clients-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;

    }


    .client-logo {

        height: 92px;

        padding: 15px;

        border-radius: 13px;

    }


    .client-logo img {

        max-width: 86%;

        max-height: 45px;

    }


    .clients-bottom {

        margin-top: 30px;

        gap: 9px;

    }


    .clients-bottom span {

        max-width: 150px;

        font-size: 15.5px;

        line-height: 1.4;

    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .clients-grid {

        gap: 6px;

    }


    .client-logo {

        height: 82px;

        padding: 12px;

    }


    .client-logo img {

        max-height: 38px;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .client-logo,
    .client-logo img {

        transition: none;


    }

}

.footer-cta h2 {
  position: relative;

  z-index: 2;

  max-width: 950px;

  margin: 0;

  font-size: clamp(60px, 9vw, 130px);

  line-height: .82;

  letter-spacing: -.085em;

  font-weight: 800;
}


.footer-cta h2 em {
  color: var(--primary);

  font-family: Georgia, serif;

  font-weight: 400;

  font-style: italic;

  letter-spacing: -.07em;
}


/* ==========================================
   CTA BOTTOM
========================================== */

.footer-cta-bottom {
  position: relative;

  z-index: 3;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 50px;

  margin-top: 55px;
}


.footer-cta-bottom p {
  max-width: 410px;

  margin: 0;

  font-size: 15.5px;

  line-height: 1.8;

  color: rgba(255,255,255,.55);
}


/* ==========================================
   CTA BUTTON
========================================== */

.footer-cta-link {
  display: inline-flex;

  align-items: center;

  gap: 35px;

  padding: 18px 0;

  min-width: 210px;

  color: #fff;

  text-decoration: none;

  border-bottom: 1px solid rgba(255,255,255,.3);

  font-size: 23px;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;

  transition:
    color .3s ease,
    border-color .3s ease;
}


.footer-cta-link i {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  border: 1px solid rgba(255,255,255,.3);

  border-radius: 50%;

  font-size: 17px;

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    background .3s ease,
    color .3s ease;
}


.footer-cta-link:hover {
  color: var(--primary);

  border-color: var(--primary);
}


.footer-cta-link:hover i {
  transform: rotate(45deg);

  background: var(--primary);

  color: #fff;

  border-color: var(--primary);
}


/* ==========================================
   FOOTER MAIN
========================================== */

.footer-main {
  position: relative;

  z-index: 5;

  border-top: 1px solid rgba(255,255,255,.12);

  padding: 55px 0 25px;
}


.footer-grid {
  display: grid;

  grid-template-columns:
    2fr 1.2fr 1fr 1fr;

  gap: 60px;
}


/* ==========================================
   BRAND
========================================== */

.footer-logo img{
height:86px;
width:auto;

  display: inline-block;

  margin-bottom: 18px;

}


.footer-logo span {
  color: var(--primary);
}


.footer-brand p {
  max-width: 310px;

  margin: 0;

  font-size: 15.5px;

  line-height: 1.8;

  color: rgba(255,255,255,.48);
}


/* ==========================================
   COLUMNS
========================================== */

.footer-heading {
  display: block;

  margin-bottom: 22px;

  font-size: 15.5px;

  font-weight: 800;

  letter-spacing: .16em;

  text-transform: uppercase;

  color: rgba(255,255,255,.38);
}


/* ==========================================
   CONTACT
========================================== */

.footer-contact-link {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 13px;

  color: rgba(255,255,255,.7);

  text-decoration: none;

  font-size: 15.5px;

  transition:
    color .3s ease,
    color .3s ease,
    transform .3s ease;
}


.footer-contact-link i {
  color: var(--primary);

  font-size: 15.5px;
}


.footer-contact-link:hover {
  color: #fff;

  transform: translateX(4px);
}


/* ==========================================
   NAVIGATION
========================================== */

.footer-nav {
  display: flex;

  flex-direction: column;

  gap: 15.5px;
}


.footer-nav a {
  width: fit-content;

  color: rgba(255,255,255,.7);

  text-decoration: none;

  font-size: 15.5px;

  transition:
    color .3s ease,
    transform .3s ease;
}


.footer-nav a:hover {
  color: var(--primary);

  transform: translateX(4px);
}


/* ==========================================
   SOCIAL
========================================== */

.footer-social {
  display: flex;

  gap: 8px;
}


.footer-social a {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 38px;

  height: 38px;

  color: rgba(255,255,255,.65);

  border: 1px solid rgba(255,255,255,.15);

  border-radius: 50%;

  text-decoration: none;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease;
}


.footer-social a:hover {
  background: var(--primary);

  color: #fff;

  border-color: var(--primary);

  transform: translateY(-4px);
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 55px;

  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,.1);

  font-size: 13px;

  letter-spacing: .05em;

  color: rgb(255 255 255 / 67%)
}


.footer-tagline {
  text-transform: uppercase;

  letter-spacing: .12em;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }


  .footer-brand {
    grid-column: 1 / -1;
  }


  .footer-cta h2 {
    font-size: clamp(55px, 10vw, 90px);
  }

}


@media (max-width: 600px) {

  .footer-cta {
    padding: 70px 0 65px;
  }


  .footer-cta-top {
    margin-bottom: 25px;
  }


  .footer-cta h2 {
    font-size: clamp(54px, 15vw, 75px);

    line-height: .88;
  }


  .footer-cta-bottom {
    display: block;

    margin-top: 40px;
  }


  .footer-cta-bottom p {
    margin-bottom: 30px;
  }


  .footer-cta-link {
    width: 100%;

    justify-content: space-between;
  }


  .footer-main {
    padding-top: 45px;
  }


  .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 40px 25px;
  }


  .footer-brand {
    grid-column: 1 / -1;
  }


  .footer-bottom {
    display: block;

    margin-top: 40px;

    line-height: 1.8;
  }


  .footer-tagline {
    display: block;

    margin-top: 8px;
  }

}

/* =========================================================
   AMANDA JAY ONOS
   VIDEO SHOWCASE
   ========================================================= */

.aj-video-section {

    --aj-black: #11100f;
    --aj-cream: #f7f2ea;
    --aj-orange: #b8894a;
    --aj-muted: #817a72;

    position: relative;

    padding: 110px 0;

    background: var(--aj-cream);

    overflow: hidden;
}


/* subtle oversized background word */

.aj-video-section::before {

    content: "WATCH";

    position: absolute;

    right: -50px;
    bottom: -80px;

    font-size: clamp(160px, 24vw, 340px);

    line-height: .7;

    font-weight: 900;

    letter-spacing: -.1em;

    color: rgba(17,16,15,.025);

    pointer-events: none;
}


/* container */

.aj-video-container {

    position: relative;
    z-index: 2;

    width: min(1280px, calc(100% - 60px));

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.aj-video-header {

    display: grid;

    grid-template-columns: minmax(0, 1fr) 400px;

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;
}


.aj-section-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--aj-orange);

    font-size: 15.5px;

    font-weight: 900;

    letter-spacing: .2em;
}


.aj-section-eyebrow span {

    width: 32px;

    height: 2px;

    background: var(--aj-orange);
}


.aj-video-heading h2 {

    margin: 0;

    max-width: 700px;

    font-size: clamp(58px, 6vw, 88px);

    line-height: .84;

    letter-spacing: -.075em;

    font-weight: 900;

    color: var(--aj-black);
}


.aj-video-heading h2 em {

    display: block;

    color: var(--aj-orange);

    font-family: Georgia, serif;

    font-weight: 500;

    letter-spacing: -.06em;
}


.aj-video-header > p {

    margin: 0 0 5px;

    max-width: 400px;

    color: var(--aj-muted);

    font-size: 15.5px;

    line-height: 1.75;
}


/* =========================================================
   VIDEO GRID
   ========================================================= */

.aj-video-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;
}


/* featured video */

.aj-video-featured {

    grid-column: span 2;
}


/* =========================================================
   VIDEO CARD
   ========================================================= */

.aj-video-card {

    min-width: 0;

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);
}


.aj-video-card:hover {

    transform: translateY(-8px);
}


/* =========================================================
   VIDEO FRAME
   ========================================================= */

.aj-video-frame {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 18px;

    background: #1b1917;

    box-shadow:
        0 20px 50px rgba(17,16,15,.10);
}


.aj-video-frame iframe {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.aj-video-overlay {

    position: absolute;

    inset: 0;

    z-index: 3;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 17px;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.38),
            transparent 40%
        );

    transition:
        opacity .3s ease;
}


/*
   The actual iframe remains clickable.
   Overlay is only decorative.
*/

.aj-video-type {

    padding: 7px 11px;

    border-radius: 100px;

    background: rgba(17,16,15,.78);

    color: white;

    font-size: 15.5px;

    font-weight: 900;

    letter-spacing: .13em;

    backdrop-filter: blur(10px);
}


/* =========================================================
   PLAY ICON
   ========================================================= */

.aj-big-play,
.aj-small-play {

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--aj-orange);

    color: white;

    box-shadow:
        0 8px 30px rgba(0,0,0,.25);
}


.aj-big-play {

    width: 58px;
    height: 58px;

    font-size: 24px;
}


.aj-small-play {

    width: 40px;
    height: 40px;

    font-size: 17px;
}


/* =========================================================
   VIDEO INFO
   ========================================================= */

.aj-video-info {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 14px 3px 0;
}


.aj-video-info span {

    display: block;

    margin-bottom: 4px;

    color: #aaa29a;

    font-size: 15.5px;

    font-weight: 900;

    letter-spacing: .14em;
}


.aj-video-info h3 {

    margin: 0;

    color: var(--aj-black);

    font-size: 15.5px;

    font-weight: 900;

    letter-spacing: -.025em;
}


.aj-video-info > i {

    flex-shrink: 0;

    display: grid;

    place-items: center;

    width: 31px;
    height: 31px;

    border-radius: 50%;

    background: white;

    color: var(--aj-black);

    font-size: 15.5px;

    transition:
        .3s ease;
}


.aj-video-card:hover .aj-video-info > i {

    background: var(--aj-orange);

    color: white;

    transform: rotate(45deg);
}


/* =========================================================
   FOOTER
   ========================================================= */

.aj-video-footer {

    display: grid;

    grid-template-columns: 1fr auto auto;

    align-items: center;

    gap: 35px;

    margin-top: 60px;
}


.aj-footer-line {

    height: 1px;

    background: rgba(17,16,15,.12);
}


.aj-video-footer-copy span {

    display: block;

    margin-bottom: 4px;

    color: #aaa29a;

    font-size: 15.5px;

    font-weight: 900;

    letter-spacing: .15em;
}


.aj-video-footer-copy strong {

    color: var(--aj-black);

    font-size: 14px;

    font-weight: 900;
}


.aj-video-footer a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 18px;

    border-radius: 100px;

    background: var(--aj-black);

    color: white;

    text-decoration: none;

    font-size: 15.5px;

    font-weight: 900;

    transition:
        transform .25s ease,
        background .25s ease;
}


.aj-video-footer a i {

    font-size: 15px;
}


.aj-video-footer a:hover {

    background: var(--aj-orange);

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .aj-video-section {

        padding: 90px 0;
    }


    .aj-video-header {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .aj-video-header > p {

        max-width: 600px;
    }


    .aj-video-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 22px;
    }


    .aj-video-featured {

        grid-column: span 2;
    }


    .aj-video-footer {

        grid-template-columns: 1fr auto;

        gap: 20px;
    }


    .aj-footer-line {

        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .aj-video-section {

        padding: 75px 0;
    }


    .aj-video-container {

        width: calc(100% - 30px);
    }


    .aj-video-heading h2 {

        font-size: 55px;
    }


    .aj-video-header > p {

        font-size: 15.5px;

        line-height: 1.65;
    }


    .aj-video-grid {

        grid-template-columns: 1fr;

        gap: 28px;
    }


    .aj-video-featured {

        grid-column: span 1;
    }


    .aj-video-frame {

        border-radius: 14px;
    }


    .aj-big-play {

        width: 48px;
        height: 48px;

        font-size: 20px;
    }


    .aj-video-info h3 {

        font-size: 13px;
    }


    .aj-video-footer {

        grid-template-columns: 1fr;

        margin-top: 45px;
    }


    .aj-video-footer a {

        justify-content: center;
    }

}

.backTop {
position: fixed;
right: 25px;
bottom: 25px;
width: 48px;
height: 48px;

display: flex;
align-items: center;
justify-content: center;

border: 0;
border-radius: 50%;

background: #111;
color: #fff;

font-size: 18px;

cursor: pointer;

opacity: 0;
visibility: hidden;
transform: translateY(15px);

transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease,
    background .3s ease;

z-index: 9999;
```

}

.backTop.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.backTop:hover {
background: var(--accent, #b58a5a);
transform: translateY(-3px);
}

@media (max-width: 600px) {
.backTop {
right: 16px;
bottom: 16px;

```
    width: 44px;
    height: 44px;

    font-size: 16px;
}
```

}





/* =========================================================
   FUN SERVICES SECTION
========================================================= */

.fun-services {
    position: relative;

    width: 100%;
    max-width: 100%;

    padding: clamp(70px, 9vw, 120px) 0;

    overflow: hidden;

    background: #fafafa;
}


/* =========================================================
   INTRO
========================================================= */

.fun-services-intro {

    width: min(720px, calc(100% - 40px));

    margin: 0 auto clamp(45px, 6vw, 70px);

    text-align: left;
}


.fun-services-kicker {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 20px;

    font-size: 15.5px;

    font-weight: 700;

    letter-spacing: 2.5px;

    opacity: .55;
}


.fun-services-kicker span {

    width: 25px;
    height: 1px;

    background: currentColor;
}


.fun-services-intro h2 {

    margin: 0;

    font-size: clamp(38px, 5.5vw, 70px);

    line-height: .98;

    letter-spacing: -2.5px;

    font-weight: 600;

    color: #1a1a1a;
}


.fun-services-intro h2 em {

    display: block;

    font-style: italic;

    color: #b58a5a;
}


.fun-services-intro p {

    max-width: 540px;

    margin: 22px auto 0;

    font-size: 15.5px;

    line-height: 1.75;

    color: #667085;

}


/* =========================================================
   GRID
========================================================= */

.fun-services-grid {

    width: min(1120px, calc(100% - 40px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, .92fr)
        minmax(0, .92fr);

    gap: 22px;

    align-items: start;
}


/* =========================================================
   CARD
========================================================= */

.fun-service-card {

    position: relative;

    min-width: 0;

    min-height: 560px;

    padding: 30px 30px 27px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border-radius: 4px;

    background: #fff;

    border: 1px solid rgba(30,40,60,.06);

    box-shadow:
        0 15px 45px rgba(30,40,60,.055);

    transform:
        perspective(1200px)
        rotateX(0)
        rotateY(0)
        translateY(0);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        box-shadow .5s ease;

    isolation: isolate;
}


/*
   Featured Voiceover card.
*/

.fun-service-voice {

    min-height: 620px;

    margin-top: -35px;

}


/* =========================================================
   COLOURED TOP STRIP
========================================================= */

.fun-service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    z-index: 3;

}


.fun-service-voice::before {
    background: #54c4d5;
}


.fun-service-singing::before {
    background: #df79b7;
}


.fun-service-video::before {
    background: #7269b5;
}


/* =========================================================
   HOVER
========================================================= */

.fun-service-card:hover {

    transform:
        perspective(1200px)
        rotateX(1deg)
        rotateY(-1.5deg)
        translateY(-12px);

    box-shadow:
        0 30px 70px rgba(30,40,60,.12);
}


.fun-service-singing:hover {

    transform:
        perspective(1200px)
        rotateX(1deg)
        rotateY(1.5deg)
        translateY(-12px);
}


.fun-service-video:hover {

    transform:
        perspective(1200px)
        rotateX(1deg)
        rotateY(1.5deg)
        translateY(-12px);
}


/* =========================================================
   BACKGROUND NUMBER
========================================================= */

.fun-card-bg-number {

    position: absolute;

    right: -12px;
    top: 40px;

    z-index: -1;

    font-size: 150px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -10px;

    color: rgba(40,53,77,.025);

    user-select: none;

    transition:
        transform .7s cubic-bezier(.2,.8,.2,1),
        color .5s ease;
}


.fun-service-card:hover .fun-card-bg-number {

    transform: translate(-10px, 8px) rotate(-5deg);

    color: rgba(40,53,77,.045);
}


/* =========================================================
   TOP
========================================================= */

.fun-card-top {

    position: relative;

    z-index: 2;

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 35px;
}


/* =========================================================
   ICON
========================================================= */

.fun-service-icon {

    position: relative;

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 22px;

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        box-shadow .5s ease;
}


.fun-service-icon::after {

    content: "";

    position: absolute;

    inset: -7px;

    border: 1px dashed currentColor;

    border-radius: 50%;

    opacity: .12;

    transition:
        transform .6s ease,
        opacity .4s ease;
}


.fun-service-card:hover .fun-service-icon {

    transform:
        rotate(-8deg)
        scale(1.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,.09);
}


.fun-service-card:hover .fun-service-icon::after {

    transform: rotate(45deg);

    opacity: .3;
}


/* VOICE */

.fun-service-voice .fun-service-icon {

    color: #42baca;

    background: #e2f7fa;
}


/* SINGING */

.fun-service-singing .fun-service-icon {

    color: #d86cac;

    background: #fae5f3;
}


/* VIDEO */

.fun-service-video .fun-service-icon {

    color: #665da6;

    background: #e7e4f6;
}


/* =========================================================
   TAG
========================================================= */

.fun-service-tag {

    padding: 8px 11px;

    border-radius: 30px;

    background: #f1f5f7;

    color: #1a1a1a;

    font-size: 15.5px;

    font-weight: 800;

    letter-spacing: 1.3px;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.fun-service-main {

    position: relative;

    z-index: 2;
}


.fun-service-small {

    display: block;

    margin-bottom: 7px;

    font-size: 15.5px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #9aa2b1;
}


.fun-service-main h3 {

    margin: 0 0 14px;

    font-size: clamp(28px, 3vw, 38px);

    line-height: .95;

    letter-spacing: -1.5px;

    font-weight: 650;

    color: #1a1a1a;

    transition:
        transform .4s ease;
}


.fun-service-card:hover .fun-service-main h3 {

    transform: translateX(3px);
}


.fun-service-main p {

    max-width: 370px;

    margin: 0 0 8px;

    font-size: 15.5px;

    line-height: 1.7;

    color: #657084;
}


/* =========================================================
   LIST
========================================================= */

.fun-service-main ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.fun-service-main li {

    position: relative;

    padding-left: 17px;

    margin-bottom: 4px;

    font-size: 15.5px;

    line-height: 1.6;

    color: #657084;
}


.fun-service-main li::before {

    content: "";

    position: absolute;

    left: 0;

    top: .65em;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #cbd1da;

    transition:
        transform .3s ease,
        background .3s ease;
}


.fun-service-card:hover li::before {

    transform: scale(1.35);

}


.fun-service-voice:hover li::before {
    background: #54c4d5;
}


.fun-service-singing:hover li::before {
    background: #df79b7;
}


.fun-service-video:hover li::before {
    background: #7269b5;
}


/* =========================================================
   CTA
========================================================= */

.fun-service-cta {

    position: relative;

    z-index: 3;

    margin-top: auto;

    padding-top: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    width: 100%;

    color: #1a1a1a;

    text-decoration: none;

    font-size: 15.5px;

    font-weight: 700;

    letter-spacing: .2px;
}


.fun-service-cta::before {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 13px;

    height: 1px;

    background: rgba(40,53,77,.08);

    transform-origin: left;

    transition:
        transform .5s ease;
}


.fun-service-cta i {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f4f6f8;

    font-size: 15.5px;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;
}


.fun-service-cta:hover i {

    transform: rotate(45deg);

    background: #1a1a1a;

    color: #fff;
}


/* =========================================================
   DECORATION
========================================================= */

.fun-card-decoration {

    position: absolute;

    right: 22px;
    bottom: 18px;

    display: flex;

    gap: 4px;

    opacity: .25;
}


.fun-card-decoration span {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: currentColor;
}


.fun-card-decoration span:nth-child(2) {

    width: 7px;
    height: 7px;

    margin-top: -3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .fun-services-grid {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 18px;
    }


    .fun-service-voice {

        grid-column: 1 / -1;

        min-height: auto;

        margin-top: 0;
    }


    .fun-service-singing,
    .fun-service-video {

        min-height: 480px;
    }


    .fun-service-main h3 {

        font-size: 32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

    .fun-services {

        padding:
            65px
            0
            75px;
    }


    .fun-services-intro {

        width: calc(100% - 30px);

        margin-bottom: 40px;
    }


    .fun-services-intro h2 {

        font-size: clamp(37px, 11vw, 52px);

        letter-spacing: -1.8px;
    }


    .fun-services-intro p {

        margin-top: 18px;

        font-size: 13px;
    }


    .fun-services-grid {

        width: calc(100% - 28px);

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .fun-service-card,
    .fun-service-voice,
    .fun-service-singing,
    .fun-service-video {

        grid-column: auto;

        min-height: auto;

        margin: 0;

        padding:
            28px
            23px
            27px;

        transform: none !important;
    }


    .fun-service-card:hover,
    .fun-service-singing:hover,
    .fun-service-video:hover {

        transform: translateY(-6px) !important;
    }


    .fun-card-bg-number {

        top: 35px;

        font-size: 110px;
    }


    .fun-card-top {

        margin-bottom: 28px;
    }


    .fun-service-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        font-size: 20px;
    }


    .fun-service-main h3 {

        font-size: 29px;
    }


    .fun-service-main p {

        font-size: 15.5px;

        line-height: 1.7;
    }


    .fun-service-main li {

        font-size: 15.5px;

        line-height: 1.65;
    }


    .fun-service-cta {

        margin-top: 28px;

        padding-top: 27px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .fun-services-grid {

        width: calc(100% - 22px);
    }


    .fun-service-card,
    .fun-service-voice,
    .fun-service-singing,
    .fun-service-video {

        padding:
            25px
            19px
            24px;
    }


    .fun-service-main h3 {

        font-size: 27px;
    }


    .fun-service-main p,
    .fun-service-main li {

        font-size: 15.5px;
    }


    .fun-service-tag {

        font-size: 15.5px;

        padding-left: 9px;
        padding-right: 9px;
    }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .fun-service-card,
    .fun-service-icon,
    .fun-service-icon::after,
    .fun-card-bg-number,
    .fun-service-main h3,
    .fun-service-cta,
    .fun-service-cta i {

        transition: none !important;
    }

}