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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f4f1;
    color: #171717;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    color: #111;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 140px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.5;
}

.hero {
    position: relative;
    width: 100%;
    height: 780px;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-45%);
    width: 450px;
    z-index: 2;
}

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

.eyebrow,
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(70px, 6vw, 105px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -3px;
    margin-bottom: 32px;
}

.hero p {
    width: 370px;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 30px;
}

.outline-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.circle-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.outline-button:hover .circle-arrow {
    background: #111;
    color: white;
}

.statistics {
    min-height: 115px;
    padding: 25px 7%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #302e2f;
    color: white;
}

.stat {
    position: relative;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.45);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.stat span {
    font-size: 11px;
    line-height: 1.35;
}

.stat-small {
    font-size: 10px !important;
    margin-bottom: 3px;
}

.about-section {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr 0.65fr 0.5fr;
    min-height: 390px;
    background: #f5f4f1;
}

.about-text {
    padding: 65px 45px;
    background: white;
}

.about-text h2,
.services-intro h2,
.work-content h2,
.insights-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -1px;
}

.about-text p {
    max-width: 350px;
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.about-image {
    height: 100%;
    overflow: hidden;
}

.about-image img {
    height: 100%;
    object-fit: cover;
}

.about-timeline {
    padding: 70px 30px;
    background: #e8e7e4;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    font-size: 11px;
}

.timeline-year {
    font-weight: 700;
    margin-bottom: 3px;
}

.timeline-item strong {
    font-size: 11px;
}

.timeline-item p {
    font-size: 10px;
}

.timeline-line {
    width: 1px;
    height: 22px;
    background: #333;
    margin: 2px 0 2px 4px;
}

.about-side-text {
    background: #e8e7e4;
    padding: 70px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 4px;
}

.small-line {
    width: 42px;
    height: 1px;
    background: currentColor;
    margin-top: 25px;
}

.light-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid #222;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    transition: 0.3s ease;
}

.light-button:hover {
    background: #222;
    color: white;
}

.services-section {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 30px;
    padding: 50px 3%;
    background: #eeece9;
}

.services-intro {
    padding: 0 15px;
}

.services-intro h2 {
    font-size: 52px;
}

.services-intro p {
    font-size: 13px;
    line-height: 1.55;
    margin: 25px 0;
}

.dark-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #29282a;
    color: white;
    border-radius: 12px;
    padding: 13px 17px;
    font-size: 12px;
    transition: 0.3s ease;
}

.dark-button:hover {
    background: #111;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 12px 6px 24px;
}

.service-card {
    position: relative;
    height: 390px;
    overflow: hidden;
    color: white;
    cursor: pointer;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 40px -18px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.09);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #fff;
    z-index: 4;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::before {
    width: 100%;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.1),
            rgba(0,0,0,0.8)
        );
    transition: background 0.45s ease;
}

.service-card:hover .service-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.88)
        );
}

.service-content {
    position: absolute;
    inset: 0;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    opacity: 0.65;
    transition: opacity 0.4s ease, letter-spacing 0.4s ease;
}

.service-card:hover .service-number {
    opacity: 1;
    letter-spacing: 3px;
}

.service-bottom {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-bottom {
    transform: translateY(-6px);
}

.service-bottom h3 {
    font-size: 15px;
    line-height: 1.15;
    margin-bottom: 15px;
}

.service-bottom p {
    font-size: 12px;
    line-height: 1.45;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-bottom p {
    opacity: 1;
}

.service-arrow {
    width: 19px;
    height: 19px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 8px;
    overflow: hidden;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-arrow {
    background: #fff;
    color: #111;
    width: 34px;
    height: 34px;
    font-size: 11px;
    transform: rotate(-45deg);
}

.work-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 390px;
    background: white;
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-image-overlay {
    position: absolute;
    inset: 0;
    padding: 60px 45px;
    background: rgba(0,0,0,0.2);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 4px;
    line-height: 2.5;
}

.work-content {
    padding: 65px 45px;
}

.work-content p {
    max-width: 480px;
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
    font-size: 13px;
    text-decoration: underline;
}

.text-link i {
    text-decoration: none;
}

.insights-section {
    padding: 65px 3%;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 35px;
    background: #eeece9;
}

.insights-intro h2 {
    font-size: 48px;
}

.insights-intro p {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.55;
}

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

.insight-card {
    padding-right: 12px;
    border-right: 1px solid #999;
}

.insight-card:last-child {
    border-right: none;
}

.insight-image {
    height: 140px;
    overflow: hidden;
    margin-bottom: 12px;
}

.insight-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.insight-card:hover img {
    transform: scale(1.04);
}

.insight-card h3 {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.insight-card span {
    font-size: 10px;
}

.cta-section {
    position: relative;
    min-height: 420px;
    color: white;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 220px;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 70px 5%;
}

.white-label {
    color: white;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    line-height: 0.95;
    font-weight: 500;
}

.cta-content h2 em {
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: white;
    color: #222;
    padding: 13px 17px;
    border-radius: 10px;
    margin-top: 25px;
    font-size: 13px;
}

.cta-right {
    position: relative;
    z-index: 2;
    padding: 80px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
}

.cta-right p {
    font-size: 11px;
    letter-spacing: 0;
    line-height: 1.45;
    margin-bottom: 5px;
}

.cta-right .small-line {
    margin: 20px 0;
}

.footer {
    background: #0d0d0d;
    color: white;
    padding: 40px 5% 25px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 140px;
    height: auto;
    display: block;
}

.footer-menu {
    display: flex;
    gap: 28px;
}

.footer-menu a {
    font-size: 12px;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding-left: 25px;
    border-left: 1px solid #777;
}

.social-icons a {
    font-size: 24px;
}

.social-icons img {
    width: 55px;
    height: auto;
    display: block;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: #777;
    margin: 35px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.journey-hero {
    min-height: 55vh;
    padding: 155px 8% 80px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.journey-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("../images/Evada_website (1).png");
    background-size: cover;
    background-position: center;
}

.journey-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
}

.journey-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.small-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 500;
}

.journey-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.85;
    font-weight: 400;
    letter-spacing: -3px;
    max-width: 700px;
}

.journey-hero p {
    margin-top: 35px;
    max-width: 440px;
    font-size: 13px;
    line-height: 1.9;
    color: #555;
}

.journey-intro {
    padding: 70px 8% 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.journey-intro-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 8px;
}

.journey-intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3vw, 47px);
    line-height: 1.15;
    font-weight: 400;
}

.journey-timeline {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 120px;
    box-sizing: border-box;
}

.journey-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    column-gap: 48px;
    min-height: 300px;
    align-items: start;
}

.journey-timeline-center {
    position: relative;
    width: 90px;
    height: 100%;
    display: flex;
    justify-content: center;
}

.journey-timeline-center::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -1px;
    left: 50%;
    width: 1px;
    background: #e0dedb;
}

.journey-timeline-center::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: var(--progress, 0%);
    background: #333;
    transform: translateX(-50%);
}

.journey-timeline-last
.journey-timeline-center::before {
    display: none;
}

.journey-timeline-dot {
    transform: scale(0.85);
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.journey-timeline-item.is-visible .journey-timeline-dot {
    transform: scale(1.5);
    background: #333;
    border-color: #333;
    box-shadow: 0 0 0 5px rgba(51, 51, 51, 0.12);
}

.journey-timeline-item.is-visible .journey-dot-final {
    transform: scale(1.7);
    box-shadow: 0 0 0 6px rgba(51, 51, 51, 0.15);
}

.journey-timeline-dot {
    position: relative;
    z-index: 3;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    background: #f5f4f1;
    border: 1px solid #777;
    border-radius: 50%;
    flex-shrink: 0;
}

.journey-dot-final {
    background: #333;
    border-color: #333;
}

.journey-timeline-content {
    width: 100%;
    max-width: 460px;
    padding-top: 30px;
}

.journey-content-right {
    justify-self: start;
    padding-left: 0;
}

.journey-timeline-content,
.journey-timeline-image {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.journey-timeline-item.is-visible .journey-timeline-content,
.journey-timeline-item.is-visible .journey-timeline-image {
    opacity: 1;
    transform: translateY(0);
}

.journey-content-left {
    justify-self: end;
    text-align: left;
    padding-right: 0;
}

.journey-timeline-number {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 4px;
    color: #555;
}

.journey-timeline-year {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #222;
}

.journey-timeline-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 500;
    color: #171717;
    margin: 0 0 6px;
}

.journey-timeline-subtitle {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 12px;
}

.journey-timeline-content p {
    max-width: 380px;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.journey-timeline-line {
    width: 44px;
    height: 1px;
    background: #aaa;
    margin-top: 20px;
    margin-bottom: 20px;
}

.journey-timeline-tag {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    max-width: 380px;
}

.journey-timeline-image {
    width: 100%;
    max-width: 460px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.journey-image-left {
    justify-self: start;
    margin-top: 4px;
}

.journey-image-right {
    justify-self: end;
    margin-top: 4px;
}

.journey-timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.journey-timeline-image:hover img {
    transform: scale(1.04);
}

.journey-timeline-item:nth-child(1) {
    min-height: 340px;
}

.journey-timeline-item:nth-child(2) {
    min-height: 340px;
}

.journey-timeline-item:nth-child(3) {
    min-height: 340px;
}

.journey-timeline-item:nth-child(4) {
    min-height: 340px;
}

.journey-timeline-item:nth-child(1)
.journey-timeline-content,
.journey-timeline-item:nth-child(3)
.journey-timeline-content {
    padding-top: 0;
}

.journey-timeline-item:nth-child(2)
.journey-timeline-content,
.journey-timeline-item:nth-child(4)
.journey-timeline-content {
    padding-top: 0;
}

.what-we-do-page {
    width: 100%;
    overflow: hidden;
    background: #f7f7f5;
    color: #303033;
}

.what-we-do-page * {
    box-sizing: border-box;
}

.wwd-hero {
    min-height: 750px;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background: #f7f7f5;
}

.wwd-hero-content {
    width: 46%;
    padding: 70px 6.5% 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.wwd-small-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #353438;
}

.wwd-hero h1 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 5.5vw, 100px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -3px;
    color: #303033;
}

.wwd-hero p {
    font-family: 'Poppins', sans-serif;
}

.wwd-hero-content > p {
    max-width: 570px;
    margin: 30px 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: #242426;
}

.wwd-button {
    width: fit-content;
    min-width: 310px;
    padding: 17px 24px;
    border-radius: 15px;
    background: #303033;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.wwd-button i {
    font-size: 20px;
    transition: 0.3s ease;
}

.wwd-button:hover {
    transform: translateY(-3px);
}

.wwd-button:hover i {
    transform: translateX(6px);
}

.wwd-tagline {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 45px;
}

.wwd-tagline > span {
    width: 2px;
    height: 48px;
    background: #353438;
}

.wwd-tagline p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 2px;
}

.wwd-hero-image {
    width: 54%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wwd-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wwd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(255, 255, 255, 0.9) 7%,
        rgba(255, 255, 255, 0.55) 11%,
        rgba(255, 255, 255, 0.15) 18%,
        rgba(255, 255, 255, 0) 65%
    );
}

.wwd-approach {
    min-height: 900px;
    position: relative;
    overflow: hidden;
    background-image:
        url("../images/.png");
    background-size: cover;
    background-position: center;
}

.wwd-approach-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(247,247,245,0.86),
            rgba(247,247,245,0.72) 55%,
            rgba(247,247,245,0.92)
        );
}

.wwd-approach-content {
    position: relative;
    z-index: 2;
    padding: 65px 7% 30px;
}

.wwd-approach h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 6vw, 100px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -3px;
}

.wwd-description {
    max-width: 610px;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #252527;
}

.wwd-build-heading {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    white-space: nowrap;
}

.build-line {
    height: 1px;
    background: #4a494b;
    flex: 1;
}

.build-line.short {
    flex: 0 0 55px;
}

.wwd-services {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.wwd-service {
    min-height: 390px;
    padding: 0 18px;
    border-left: 1px solid rgba(48,48,51,0.7);
}

.wwd-service:last-child {
    border-right: 1px solid rgba(48,48,51,0.7);
}

.service-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    line-height: 1;
}

.wwd-service h3 {
    margin: 15px 0 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1px;
}

.wwd-service p {
    max-width: 210px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #242426;
}

.wwd-progress {
    position: relative;
    width: 100%;
    height: 45px;
    margin-top: 0;
}

.progress-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 10px;
    border-radius: 10px;
    background: white;
    transform: translateY(-50%);
}

.progress-dot {
    position: absolute;
    right: -4px;
    top: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    transform: translateY(-50%);
}

.wwd-next-service {
    min-height: 550px;
    display: flex;
    background: #fff;
}

.next-service-content {
    width: 50%;
    padding: 70px 7%;
    position: relative;
}

.next-service-content h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(55px, 5vw, 85px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -3px;
}

.next-service-content p {
    max-width: 520px;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.next-service-arrow {
    position: absolute;
    right: 8%;
    top: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid #303033;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303033;
    text-decoration: none;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.next-service-arrow i {
    font-size: 22px;
}

.next-service-arrow:hover {
    background: #303033;
    color: white;
}

.next-service-image {
    width: 50%;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

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

.image-label {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 25px;
    border-left: 1px solid rgba(255,255,255,0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 2.4;
    letter-spacing: 2px;
    color: white;
}

@media (max-width: 1000px) {
    .wwd-hero {
        height: auto;
        flex-direction: column;
    }

    .wwd-hero-content {
        width: 100%;
        padding: 80px 8%;
    }

    .wwd-hero-image {
        width: 100%;
        height: 500px;
    }

    .wwd-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .wwd-service:nth-child(2n) {
        border-right: 1px solid rgba(48,48,51,0.7);
    }

    .wwd-next-service {
        flex-direction: column;
    }

    .next-service-content,
    .next-service-image {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .wwd-hero-content {
        padding: 60px 6%;
    }

    .wwd-hero h1 {
        font-size: 60px;
    }

    .wwd-button {
        min-width: 100%;
    }

    .wwd-approach-content {
        padding: 55px 6% 30px;
    }

    .wwd-approach h2 {
        font-size: 55px;
    }

    .wwd-build-heading {
        flex-wrap: wrap;
        white-space: normal;
    }

    .wwd-services {
        grid-template-columns: 1fr;
    }

    .wwd-service {
        border-right: 1px solid rgba(48,48,51,0.7);
        min-height: auto;
        padding: 30px 20px;
    }

    .next-service-content {
        padding: 60px 6%;
    }

    .next-service-arrow {
        position: static;
        margin-top: 35px;
        transform: none;
    }

    .next-service-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .journey-timeline {
        max-width: 760px;
        padding: 20px 30px 90px;
    }

    .journey-timeline-item {
        grid-template-columns: 1fr 60px 1fr;
        column-gap: 24px;
        min-height: 240px;
    }

    .journey-timeline-center {
        width: 60px;
    }

    .journey-timeline-content {
        max-width: 300px;
    }

    .journey-timeline-image {
        max-width: 300px;
        height: 200px;
    }

    .journey-timeline-content h2 {
        font-size: 24px;
    }

    .journey-timeline-content p {
        font-size: 11px;
        max-width: 280px;
    }

    .journey-timeline-subtitle {
        font-size: 8px;
    }

    .journey-timeline-tag {
        font-size: 8px;
        max-width: 280px;
    }
}

@media (max-width: 560px) {
    .journey-timeline {
        padding: 20px 20px 70px;
    }

    .journey-timeline-item {
        display: grid;
        grid-template-columns: 24px 1fr;
        min-height: auto;
        margin-bottom: 55px;
    }

    .journey-timeline-center {
        grid-column: 1;
        grid-row: 1;
        width: 24px;
    }

    .journey-timeline-content,
    .journey-timeline-image {
        grid-column: 2;
        grid-row: auto;
        justify-self: start;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }

    .journey-timeline-content {
        order: 1;
        padding-left: 24px;
        padding-top: 0;
    }

    .journey-timeline-image {
        order: 2;
        margin-top: 25px;
        height: 180px;
    }

    .journey-timeline-center {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
    }

    .journey-timeline-item:last-child
    .journey-timeline-center::before {
        display: none;
    }
}

.final-story {
    min-height: 390px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.final-story img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-story::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.78),
            rgba(0,0,0,0.05) 75%
        );
}

.final-story-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 55px;
    max-width: 650px;
}

.final-story-year {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.final-story h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 18px;
}

.final-story p {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 360px;
    margin-bottom: 25px;
}

.story-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 11px 18px;
    border: 1px solid rgba(255,255,255,0.65);
    color: white;
    text-decoration: none;
    font-size: 9px;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease;
}

.story-button:hover {
    background: white;
    color: #171717;
}

.story-button i {
    font-size: 10px;
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 20px;
    }

    .statistics {
        padding: 25px 4%;
    }

    .stat {
        padding: 0 25px;
    }

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

    .about-timeline,
    .about-side-text {
        min-height: 250px;
    }

    .services-section {
        grid-template-columns: 1fr;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px 6px 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 75px;
        padding: 0 25px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        height: 680px;
    }

    .hero-content {
        left: 25px;
        right: 25px;
        width: auto;
    }

    .hero h1 {
        font-size: 65px;
    }

    .hero p {
        width: 100%;
    }

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

    .stat {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }

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

    .about-image {
        height: 350px;
    }

    .services-section {
        padding: 45px 20px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 380px;
        transform: none;
    }

    .work-section {
        grid-template-columns: 1fr;
    }

    .work-image {
        height: 350px;
    }

    .insights-section {
        grid-template-columns: 1fr;
    }

    .insight-grid {
        grid-template-columns: 1fr;
    }

    .insight-card {
        border-right: none;
        border-bottom: 1px solid #999;
        padding-bottom: 20px;
    }

    .cta-section {
        grid-template-columns: 1fr;
    }

    .cta-right {
        padding: 20px 25px 50px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-menu {
        flex-wrap: wrap;
    }

    .social-icons {
        border-left: none;
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}

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

    .statistics {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
    }

    .about-text,
    .work-content {
        padding: 45px 25px;
    }

    .about-text h2,
    .services-intro h2,
    .work-content h2 {
        font-size: 46px;
    }

    .cta-content h2 {
        font-size: 45px;
    }
}


/* =========================================
   CONTACT US PAGE
========================================= */

.contact-page {
    width: 100%;
    overflow: hidden;
    background: #f5f4f1;
    color: #292727;
}


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    width: 100%;
    background: #ffffff;
}


.contact-hero-content {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 650px;
}


.contact-hero-text {
    padding: 100px 8% 70px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.contact-hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 6vw, 100px);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -3px;
    margin: 0 0 30px;
    color: #303033;
}


.contact-hero-text p {
    max-width: 470px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #454545;
    margin: 0 0 30px;
}


.contact-hero-button {
    width: 170px;
    padding: 15px 18px;
    border-radius: 12px;
    background: #303033;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    transition: 0.3s ease;
}


.contact-hero-button:hover {
    transform: translateY(-3px);
    background: #111;
}


.contact-hero-button .contact-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}


.contact-hero-button:hover .contact-arrow {
    transform: translateX(5px);
}


.contact-hero-tagline {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 45px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    color: #555;
}


.contact-hero-image {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
}


.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================
   CONTACT ENQUIRY
========================================= */

.contact-enquiry {
    background: #eeece9;
    padding: 75px 6% 80px;
}


.contact-enquiry-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
}


.contact-form-container {
    padding: 70px 7%;
}


.contact-section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 18px;
    color: #4b4a49;
}


.contact-form-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(45px, 4vw, 65px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 0 0 40px;
}


.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}


.contact-enquiry h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(45px, 4vw, 65px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 0 0 45px;
    color: #303033;
}


.contact-form-group {
    margin-bottom: 30px;
}


.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #555;
}


.contact-form-group input,
.contact-form-group select {
    width: 100%;
    height: 44px;
    border: none;
    border-bottom: 1px solid #b8b2ac;
    outline: none;
    background: transparent;
    padding: 0 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #303033;
    transition: border-color 0.25s ease;
    border-radius: 0;
}


.contact-form-group input:hover,
.contact-form-group select:hover {
    border-bottom-color: #6b6661;
}


.contact-form-group input:focus,
.contact-form-group select:focus {
    border-bottom-color: #303033;
}


.contact-form-group input::placeholder {
    color: #9a938d;
}


.contact-form-group.full-width {
    width: 100%;
}


.contact-select-wrapper {
    position: relative;
}


.contact-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 30px;
}


.contact-select-arrow {
    position: absolute;
    right: 5px;
    bottom: 12px;
    font-size: 18px;
    color: #6b6661;
    pointer-events: none;
    transition: transform 0.25s ease;
}


.contact-select-wrapper:focus-within .contact-select-arrow {
    transform: translateY(3px);
}


.contact-full-width {
    width: 100%;
}


.contact-form-group textarea {
    width: 100%;
    min-height: 140px;
    resize: vertical;
    border: none;
    border-bottom: 1px solid #b8b2ac;
    outline: none;
    background: transparent;
    padding: 5px 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: #303033;
    transition: border-color 0.25s ease;
    border-radius: 0;
}


.contact-form-group textarea:hover {
    border-bottom-color: #6b6661;
}


.contact-form-group textarea::placeholder {
    color: #9a938d;
}


.contact-form-group textarea:focus {
    outline: 1px solid #ccc;
}


.contact-submit-button {
    width: 185px;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    background: #303033;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin-top: 12px;
    transition: 0.3s ease;
}


.contact-submit-button .contact-arrow {
    transition: transform 0.3s ease;
}


.contact-submit-button:hover .contact-arrow {
    transform: translateX(5px);
}


.contact-submit-button:hover {
    background: #111;
    transform: translateY(-3px);
}


.contact-submit-button .contact-arrow {
    font-size: 20px;
}


/* =========================================
   DIRECT CONTACT
========================================= */

.contact-direct {
    background: #ddd3ca;
    padding: 75px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.contact-direct h2 {
    max-width: 360px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 4vw, 65px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 0;
}


.contact-direct-line {
    width: 70px;
    height: 1px;
    background: #55504c;
    margin: 25px 0 45px;
}


.contact-direct-item {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(85, 80, 76, 0.18);
}


.contact-direct-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}


.contact-direct-item h3 {
    margin: 0 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #55504c;
}


.contact-direct-item a,
.contact-direct-item p {
    display: inline-block;
    margin: 0;
    color: #484441;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    line-height: 1.4;
    transition: opacity 0.25s ease;
}


.contact-direct-item a:hover {
    text-decoration: underline;
}


/* =========================================
   CONTACT OFFICE
========================================= */

.contact-office {
    background: #fff;
}


.contact-office-wrapper {
    display: grid;
    grid-template-columns: 32% 68%;
    min-height: 380px;
}


.contact-office-info {
    padding: 65px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.contact-office-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(35px, 3vw, 52px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -1px;
    margin: 25px 0 15px;
}


.contact-office-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
}


.contact-office-map {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}


.contact-office-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}


.contact-map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.65);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-map-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #303033;
    border: 3px solid #fff;
}


/* =========================================
   CONTACT FOOTER
========================================= */

.contact-footer {
    background: #0d0d0d;
    color: white;
    padding: 40px 5% 25px;
}


.contact-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.contact-footer-logo img {
    width: 140px;
    height: auto;
    display: block;
}


.contact-footer-menu {
    display: flex;
    gap: 28px;
}


.contact-footer-menu a {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}


.contact-footer-menu a:hover {
    opacity: 0.5;
}


.contact-footer-social {
    display: flex;
    gap: 15px;
    padding-left: 25px;
    border-left: 1px solid #777;
}


.contact-footer-social a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}


.contact-footer-line {
    width: 100%;
    height: 1px;
    background: #777;
    margin: 35px 0 25px;
}


.contact-footer-bottom {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: #ddd;
}


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

@media (max-width: 1000px) {

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

    .contact-hero-text {
        padding: 80px 8%;
    }

    .contact-hero-image {
        min-height: 500px;
    }

    .contact-enquiry-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-direct {
        padding: 60px 8%;
    }

    .contact-office-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-office-info {
        min-height: 280px;
    }

    .contact-office-map {
        min-height: 400px;
    }

}


@media (max-width: 768px) {

    .contact-hero-text h1 {
        font-size: 65px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-enquiry {
        padding: 55px 7% 60px;
    }

    .contact-direct {
        padding: 55px 7%;
    }

    .contact-footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .contact-footer-menu {
        flex-wrap: wrap;
        gap: 18px;
    }

    .contact-footer-social {
        border-left: none;
        padding-left: 0;
    }

    .contact-footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

}


@media (max-width: 480px) {

    .contact-hero-text {
        padding: 70px 6%;
    }

    .contact-hero-text h1 {
        font-size: 55px;
    }

    .contact-hero-image {
        min-height: 400px;
    }

    .contact-enquiry h2 {
        font-size: 45px;
    }

    .contact-direct h2 {
        font-size: 45px;
    }

    .contact-office-info {
        padding: 50px 6%;
    }

}

.notfound-page {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #f7f7f5;
    color: #303033;
}

.notfound-page * {
    box-sizing: border-box;
}

.notfound-hero {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background: #f7f7f5;
}

.notfound-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.notfound-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark/light overlay to make the text readable */
.notfound-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(247, 247, 245, 0.96) 0%,
        rgba(247, 247, 245, 0.82) 35%,
        rgba(247, 247, 245, 0.35) 60%,
        rgba(247, 247, 245, 0.05) 100%
    );
}

.notfound-hero-content {
    width: 100%;
    min-height: 100vh;
    padding: 70px 6.5% 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.notfound-small-label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #353438;
}

.notfound-small-label1 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: 15px;
    color: #353438;
}

.notfound-hero h1 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 7vw, 110px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -3px;
    color: #303033;
}

.notfound-hero p {
    font-family: 'Poppins', sans-serif;
}

.notfound-hero-content > p {
    max-width: 570px;
    margin: 30px 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: #242426;
}

.notfound-button {
    width: fit-content;
    min-width: 310px;
    padding: 17px 24px;
    border-radius: 15px;
    background: #303033;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.notfound-button i {
    font-size: 20px;
    transition: 0.3s ease;
}

.notfound-button:hover {
    transform: translateY(-3px);
}

.notfound-button:hover i {
    transform: translateX(6px);
}

.notfound-tagline {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 45px;
}

.notfound-tagline > span {
    width: 2px;
    height: 48px;
    background: #353438;
}

.notfound-tagline p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 2px;
}

.notfound-logo,
.notfound-app-logo {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.notfound-logo img,
.notfound-app-logo img {
    width: 140px;
    height: auto;
    display: block;
}

.notfoundapptitle,
.notfound-app-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-left: 15px;
}

.notfound-app-title span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

.notfound-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}


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

@media (max-width: 1000px) {

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

    .notfound-hero-content {
        min-height: 100vh;
        padding: 120px 8% 70px;
    }

    /* Center the scrim so text stays readable on narrower screens */
    .notfound-hero-image::after {
        background: rgba(247, 247, 245, 0.82);
    }

}


@media (max-width: 768px) {

    .notfound-hero-content {
        padding: 110px 7% 60px;
    }

    .notfound-hero h1 {
        font-size: clamp(48px, 11vw, 70px);
        letter-spacing: -2px;
    }

    .notfound-small-label {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .notfound-hero-content > p {
        font-size: 14px;
        margin: 24px 0 28px;
    }

    .notfound-button {
        min-width: 0;
        width: 100%;
        max-width: 320px;
        padding: 15px 20px;
        font-size: 14px;
    }

    .notfound-logo {
        margin-bottom: 40px;
    }

    .notfound-logo img,
    .notfound-app-logo img {
        width: 110px;
    }

    .notfound-app-logo {
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 0;
    }

    .notfound-small-label1 {
        font-size: 11px;
        margin: 35px 0 14px;
    }

}


@media (max-width: 480px) {

    .notfound-hero-content {
        padding: 100px 6% 50px;
    }

    .notfound-hero h1 {
        font-size: clamp(40px, 12vw, 52px);
    }

    .notfound-logo img,
    .notfound-app-logo img {
        width: 92px;
    }

    .notfound-app-logo {
        gap: 12px;
    }

    .notfound-app-logo img {
        width: 84px;
    }

    .notfound-button {
        gap: 20px;
        padding: 14px 16px;
        font-size: 13px;
    }

    .notfound-small-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .notfound-small-label1 {
        letter-spacing: 2px;
    }

}