/* =========================================================
   DEER SPORTS AUSTRALIA
   Main Stylesheet
   HTML5 + CSS3 only
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #090b0d;
    --black-soft: #101316;
    --black-light: #171b1f;

    --white: #ffffff;
    --off-white: #f5f5f2;
    --grey: #a3a8ad;
    --grey-dark: #62686d;

    --accent: #d8ff00;
    --accent-dark: #b9dd00;

    --border: rgba(255, 255, 255, 0.10);
    --border-light: rgba(0, 0, 0, 0.10);

    --max-width: 1240px;

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--black);
    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin-inline: auto;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.18em;

    color: var(--grey-dark);
}

.section-label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid var(--border-light);

    font-size: 10px;
    color: var(--black);
}

.section-label.light {
    color: rgba(255, 255, 255, 0.55);
}

.section-label.light span {
    color: var(--accent);
    border-color: rgba(216, 255, 0, 0.4);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-height: 56px;

    padding: 0 28px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn span {
    font-size: 18px;
    transition: transform var(--transition);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--black);
    background: var(--accent);
}

.btn-primary:hover {
    background: var(--white);
}

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: var(--accent);
}

.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header {
    position: absolute;
    z-index: 100;

    top: 0;
    left: 0;
    right: 0;

    background: rgba(9, 11, 13, 0.75);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Brand */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent);

    color: var(--black);

    font-size: 24px;
    font-weight: 900;

    font-style: italic;
}

.brand-text {
    display: flex;
    flex-direction: column;

    color: var(--white);

    line-height: 1;
}

.brand-text strong {
    font-size: 15px;
    letter-spacing: 0.12em;
}

.brand-text small {
    margin-top: 5px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.28em;

    color: var(--accent);
}


/* Main navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;

    margin-left: auto;
    margin-right: 42px;
}

.main-nav a {
    position: relative;

    padding: 32px 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition: color var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 23px;

    height: 2px;

    background: var(--accent);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}


.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    background: var(--accent);
    color: var(--black);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.nav-cta span {
    font-size: 16px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 800px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(216, 255, 0, 0.10),
            transparent 30%
        ),
        var(--black);
}

.hero-background {
    position: absolute;
    inset: 0;

    opacity: 0.45;

    background-image:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,0.025) 50%,
            transparent 50%
        );

    background-size: 220px 220px;
}

.hero-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            var(--black) 0%,
            rgba(9,11,13,0.8) 45%,
            rgba(9,11,13,0.15) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    min-height: 800px;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;

    gap: 50px;

    padding-top: 70px;
}


/* Hero content */

.hero-content {
    max-width: 680px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.2em;
}

.eyebrow span {
    width: 35px;
    height: 2px;

    background: var(--accent);
}

.hero h1 {
    max-width: 720px;

    font-size: clamp(52px, 6vw, 84px);

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 800;
}

.hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.hero h1 strong {
    font-weight: 800;
}

.hero-description {
    max-width: 570px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 35px;
}

.hero-trust {
    display: flex;
    align-items: center;

    margin-top: 55px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;

    padding-right: 28px;
}

.trust-item strong {
    color: var(--white);

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 0.06em;
}

.trust-item span {
    color: var(--grey);

    font-size: 10px;
    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.trust-divider {
    width: 1px;
    height: 32px;

    margin-right: 28px;

    background: rgba(255, 255, 255, 0.15);
}


/* Hero visual */

.hero-visual {
    position: relative;

    height: 570px;
}

.visual-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    top: 70px;
    right: 20px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(216, 255, 0, 0.15),
            transparent 68%
        );
}

.sports-circle {
    position: absolute;

    width: 330px;
    height: 330px;

    top: 105px;
    right: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(216, 255, 0, 0.45);

    box-shadow:
        0 0 0 25px rgba(216, 255, 0, 0.025),
        0 0 0 60px rgba(216, 255, 0, 0.015);

    transform: rotate(-12deg);
}

.sports-circle::before,
.sports-circle::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sports-circle::before {
    width: 275px;
    height: 275px;
}

.sports-circle::after {
    width: 390px;
    height: 390px;
}

.sports-circle span {
    color: var(--accent);

    font-size: 82px;
    font-weight: 900;

    font-style: italic;

    letter-spacing: -0.12em;
}


/* Floating cards */

.sports-card {
    position: absolute;
    z-index: 3;

    width: 205px;

    padding: 20px;

    background: rgba(20, 24, 27, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.sports-card span {
    display: block;

    margin-bottom: 7px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.16em;
}

.sports-card strong {
    display: block;

    color: var(--white);

    font-size: 15px;
}

.card-number {
    margin-bottom: 18px;

    color: rgba(255,255,255,0.3);

    font-size: 10px;
    font-weight: 900;
}

.card-one {
    top: 100px;
    left: 0;

    transform: rotate(-5deg);
}

.card-two {
    right: 0;
    bottom: 90px;

    transform: rotate(5deg);
}

.visual-label {
    position: absolute;

    right: 100px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    text-align: right;

    color: rgba(255,255,255,0.3);

    font-size: 9px;
    letter-spacing: 0.2em;
}

.visual-label strong {
    margin-top: 4px;

    color: var(--accent);

    font-size: 10px;
}

.hero-bottom-line {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: var(--accent);
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 125px 0;

    background: var(--off-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.35fr 1fr;

    gap: 100px;
}

.intro-content {
    max-width: 850px;
}

.intro-content h2 {
    max-width: 820px;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -0.045em;
}

.intro-content h2 span {
    color: #969b9e;
}

.intro-content p {
    max-width: 760px;

    margin-top: 30px;

    color: #606568;

    font-size: 16px;

    line-height: 1.9;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 30px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    border-bottom: 1px solid var(--black);

    padding-bottom: 8px;
}

.text-link span {
    font-size: 18px;

    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 125px 0;

    background: var(--white);
}

.section-heading {
    max-width: 850px;

    margin-bottom: 60px;
}

.section-heading h2 {
    margin-top: 24px;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.section-heading h2 span {
    color: #a1a6a9;
}

.section-heading > p {
    max-width: 650px;

    margin-top: 24px;

    color: #707578;

    font-size: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    background: var(--black);
}

.service-card {
    min-height: 520px;

    padding: 35px;

    display: flex;
    flex-direction: column;

    background: var(--off-white);
}

.service-featured {
    background: var(--black);
    color: var(--white);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-number {
    font-size: 11px;
    font-weight: 900;

    color: var(--grey-dark);
}

.service-featured .service-number {
    color: rgba(255,255,255,0.35);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: var(--black);

    background: var(--accent);

    font-size: 12px;
}

.service-content {
    margin-top: auto;
}

.service-tag {
    color: #7b8084;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.18em;
}

.service-featured .service-tag {
    color: var(--accent);
}

.service-content h3 {
    margin-top: 12px;

    font-size: 31px;

    line-height: 1.05;

    letter-spacing: -0.035em;
}

.service-content p {
    margin-top: 20px;

    color: #71767a;

    font-size: 14px;
    line-height: 1.7;
}

.service-featured .service-content p {
    color: rgba(255,255,255,0.58);
}

.service-content ul {
    display: grid;
    gap: 8px;

    margin-top: 22px;

    list-style: none;
}

.service-content li {
    position: relative;

    padding-left: 17px;

    color: #5f6467;

    font-size: 11px;
}

.service-featured .service-content li {
    color: rgba(255,255,255,0.65);
}

.service-content li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 5px;
    height: 5px;

    background: var(--accent);
}

.service-link {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid var(--border-light);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-featured .service-link {
    border-color: rgba(255,255,255,0.12);
}

.service-link span {
    font-size: 17px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 125px 0;

    background: var(--off-white);
}

.products-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 60px;

    margin-bottom: 60px;
}

.products-heading h2 {
    margin-top: 22px;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.products-heading h2 span {
    color: #969b9e;
}

.products-heading > p {
    max-width: 340px;

    color: #6c7275;

    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.product-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(0,0,0,0.06);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.product-visual {
    position: relative;

    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #30363a,
            #111416 70%
        );
}

.product-large .product-visual {
    height: 360px;
}


/* Cricket ball */

.ball {
    position: relative;

    width: 135px;
    height: 135px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #4e5356,
            #191d20 65%,
            #0b0d0e
        );

    box-shadow:
        -20px 30px 40px rgba(0,0,0,0.5),
        inset -15px -15px 25px rgba(0,0,0,0.35);
}

.ball::before {
    content: "";

    position: absolute;

    top: 10px;
    bottom: 10px;
    left: 50%;

    width: 2px;

    background: var(--accent);

    transform: rotate(28deg);

    box-shadow:
        4px 0 0 rgba(216,255,0,0.25),
        -4px 0 0 rgba(216,255,0,0.25);
}

.ball-shadow {
    position: absolute;

    width: 170px;
    height: 30px;

    bottom: 45px;

    border-radius: 50%;

    background: rgba(0,0,0,0.45);

    filter: blur(15px);
}


/* Jersey */

.jersey-visual {
    background:
        linear-gradient(
            135deg,
            #d8ff00 0%,
            #9ebd00 100%
        );
}

.jersey-shape {
    position: relative;

    width: 160px;
    height: 180px;

    background: var(--black);

    clip-path: polygon(
        25% 0,
        42% 12%,
        58% 12%,
        75% 0,
        100% 17%,
        85% 42%,
        77% 34%,
        77% 100%,
        23% 100%,
        23% 34%,
        15% 42%,
        0 17%
    );

    display: flex;
    align-items: center;
    justify-content: center;
}

.jersey-shape span {
    color: var(--accent);

    font-size: 38px;
    font-weight: 900;

    font-style: italic;
}


/* Equipment */

.equipment-visual {
    background:
        linear-gradient(
            135deg,
            #252a2e,
            #101214
        );
}

.bat-shape {
    position: absolute;

    width: 42px;
    height: 210px;

    border-radius: 22px 22px 10px 10px;

    background:
        linear-gradient(
            90deg,
            #b8a273,
            #e1cca1,
            #927c50
        );

    transform: rotate(25deg);

    box-shadow: -20px 25px 30px rgba(0,0,0,0.4);
}

.bat-shape::after {
    content: "";

    position: absolute;

    width: 20px;
    height: 70px;

    left: 11px;
    top: -55px;

    background: #242628;
}

.glove-shape {
    width: 95px;
    height: 95px;

    border-radius: 50% 50% 35% 35%;

    background: #555b5e;

    transform: translate(55px, 35px) rotate(-20deg);

    box-shadow: inset -12px -12px 20px rgba(0,0,0,0.35);
}


/* Accessories */

.accessories-visual {
    background:
        radial-gradient(
            circle at center,
            #33383b,
            #121517
        );
}

.accessory {
    position: absolute;

    background: var(--accent);
}

.accessory-one {
    width: 100px;
    height: 45px;

    border-radius: 5px;

    transform: rotate(-15deg);
}

.accessory-two {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: var(--white);

    transform: translate(65px, -15px);
}

.accessory-three {
    width: 70px;
    height: 35px;

    transform: translate(-60px, 45px) rotate(20deg);

    background: #777e82;
}


/* Product information */

.product-info {
    padding: 27px 30px 32px;
}

.product-info > span {
    color: #81878a;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.18em;
}

.product-info h3 {
    margin-top: 8px;

    font-size: 24px;

    letter-spacing: -0.025em;
}

.product-info p {
    margin-top: 10px;

    color: #73787b;

    font-size: 13px;
}


/* =========================================================
   CUSTOM SECTION
========================================================= */

.custom-section {
    position: relative;

    overflow: hidden;

    padding: 120px 0;

    color: var(--white);

    background: var(--black);
}

.custom-section::before {
    content: "CUSTOM";

    position: absolute;

    right: -50px;
    bottom: -100px;

    color: rgba(255,255,255,0.025);

    font-size: 220px;
    font-weight: 900;

    letter-spacing: -0.08em;
}

.custom-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.custom-content h2 {
    margin-top: 25px;

    font-size: clamp(50px, 6vw, 80px);

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.custom-content h2 em {
    color: var(--accent);

    font-style: normal;
}

.custom-content p {
    max-width: 520px;

    margin-top: 28px;

    color: rgba(255,255,255,0.55);

    font-size: 15px;

    line-height: 1.8;
}

.custom-content .btn {
    margin-top: 35px;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 2px;

    background: rgba(255,255,255,0.1);
}

.custom-feature {
    min-height: 190px;

    padding: 28px;

    background: #111518;
}

.feature-icon {
    display: block;

    color: var(--accent);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.1em;
}

.custom-feature strong {
    display: block;

    margin-top: 45px;

    font-size: 15px;
}

.custom-feature p {
    margin-top: 7px;

    color: rgba(255,255,255,0.4);

    font-size: 11px;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    padding: 125px 0;

    background: var(--white);
}

.centered {
    margin-inline: auto;

    text-align: center;
}

.centered .section-label {
    justify-content: center;
}

.centered > p {
    margin-inline: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: var(--border-light);

    border: 1px solid var(--border-light);
}

.why-card {
    position: relative;

    min-height: 260px;

    padding: 30px;

    background: var(--white);

    transition: background var(--transition);
}

.why-card:hover {
    background: var(--off-white);
}

.why-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: #c2c6c8;

    font-size: 10px;
    font-weight: 900;
}

.why-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);

    color: var(--accent);

    font-size: 12px;
    font-weight: 900;
}

.why-card h3 {
    margin-top: 40px;

    font-size: 20px;

    letter-spacing: -0.025em;
}

.why-card p {
    max-width: 300px;

    margin-top: 10px;

    color: #777c7f;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 130px 0;

    color: var(--white);

    background: var(--black);
}

.cta-container {
    position: relative;
    z-index: 2;

    text-align: center;
}

.cta-section .section-label {
    justify-content: center;
}

.cta-container h2 {
    margin-top: 25px;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.cta-container h2 em {
    color: var(--accent);
    font-style: normal;
}

.cta-container > p {
    max-width: 600px;

    margin: 30px auto 0;

    color: rgba(255,255,255,0.55);

    font-size: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}

.cta-decoration {
    position: absolute;

    left: 50%;
    top: -100px;

    width: 650px;
    height: 650px;

    transform: translateX(-50%);

    pointer-events: none;
}

.cta-decoration span {
    position: absolute;

    inset: 0;

    border: 1px solid rgba(216,255,0,0.07);

    border-radius: 50%;
}

.cta-decoration span:nth-child(2) {
    inset: 70px;
}

.cta-decoration span:nth-child(3) {
    inset: 140px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 75px 0 25px;

    color: var(--white);

    background: #050607;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr 1.2fr;

    gap: 60px;

    padding-bottom: 65px;
}

.footer-brand-link {
    display: inline-flex;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 22px;

    color: rgba(255,255,255,0.42);

    font-size: 12px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    color: rgba(255,255,255,0.45);

    font-size: 11px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.25);

    font-size: 9px;

    letter-spacing: 0.05em;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 22px;
        margin-right: 20px;
    }

    .nav-cta {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr 0.7fr;
    }

    .hero-visual {
        transform: scale(0.85);
        transform-origin: center;
    }

    .custom-container {
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 850px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--max-width)
        );
    }

    .nav-container {
        min-height: 72px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 13px;
    }

    .main-nav {
        gap: 15px;
        margin-right: 0;
    }

    .main-nav a {
        padding: 27px 0;

        font-size: 9px;
    }

    .main-nav a::after {
        bottom: 18px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;

        grid-template-columns: 1fr;

        padding-top: 145px;
        padding-bottom: 80px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        height: 380px;

        margin-top: 20px;

        transform: scale(0.8);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 480px;
    }

    .products-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-container {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .main-nav {
        gap: 12px;
    }

    .main-nav a {
        font-size: 8px;
        letter-spacing: 0.05em;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 20px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        padding-right: 10px;
    }

    .hero-visual {
        display: none;
    }

    .intro-section,
    .services-section,
    .products-section,
    .why-section {
        padding: 85px 0;
    }

    .custom-section,
    .cta-section {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-large .product-visual {
        height: 300px;
    }

    .custom-features {
        grid-template-columns: 1fr;
    }

    .custom-feature {
        min-height: 150px;
    }

    .custom-feature strong {
        margin-top: 25px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 230px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .cta-container h2 {
        font-size: 48px;
    }
}


@media (max-width: 420px) {

    .brand-text {
        display: none;
    }

    .main-nav {
        gap: 10px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .btn {
        padding-inline: 20px;
    }
}



/* Contact Us */
/* =========================================================
   CONTACT PAGE
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(216, 255, 0, 0.11),
            transparent 28%
        ),
        var(--black);
}

.contact-hero-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(
            45deg,
            transparent 48%,
            rgba(216,255,0,0.08) 49%,
            rgba(216,255,0,0.08) 51%,
            transparent 52%
        );

    background-size: 120px 120px;
}

.contact-hero-pattern::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            var(--black),
            rgba(9,11,13,0.65),
            transparent
        );
}

.contact-hero-container {
    position: relative;
    z-index: 2;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding-top: 80px;
}

.contact-hero-content {
    max-width: 800px;
}

.contact-hero h1 {
    margin-top: 20px;

    font-size: clamp(52px, 7vw, 88px);

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.contact-hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.contact-hero-content > p {
    max-width: 620px;

    margin-top: 28px;

    color: rgba(255,255,255,0.58);

    font-size: 15px;
    line-height: 1.8;
}

.contact-hero-number {
    position: relative;

    width: 270px;
    height: 270px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(216,255,0,0.3);

    border-radius: 50%;
}

.contact-hero-number::before {
    content: "";

    position: absolute;

    width: 205px;
    height: 205px;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 50%;
}

.contact-hero-number span {
    position: absolute;

    top: 48px;

    color: rgba(255,255,255,0.35);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.2em;
}

.contact-hero-number strong {
    color: var(--accent);

    font-size: 70px;
    font-style: italic;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {
    padding: 120px 0;

    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}

.contact-information h2 {
    margin-top: 25px;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.contact-information h2 span {
    color: #999fa2;
}

.contact-intro {
    max-width: 480px;

    margin-top: 25px;

    color: #6d7376;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 15px;
    padding: 20px;

    background: var(--white);

    border: 1px solid rgba(0,0,0,0.07);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.contact-detail:first-of-type {
    margin-top: 40px;
}

.contact-detail:hover {
    transform: translateX(5px);

    border-color: var(--black);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--black);

    background: var(--accent);

    font-size: 13px;
    font-weight: 900;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.contact-detail-content small {
    color: #92979a;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.15em;
}

.contact-detail-content strong {
    margin-top: 3px;

    color: var(--black);

    font-size: 13px;

    word-break: break-word;
}

.contact-detail-arrow {
    margin-left: auto;

    color: #8d9396;

    font-size: 18px;
}

.contact-service-note {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid rgba(0,0,0,0.1);
}

.note-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    background: var(--black);

    color: var(--accent);

    font-size: 9px;
    font-weight: 900;
}

.contact-service-note strong {
    font-size: 12px;
}

.contact-service-note p {
    margin-top: 4px;

    color: #777d80;

    font-size: 11px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    padding: 45px;

    background: var(--black);

    color: var(--white);

    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.form-heading > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.18em;
}

.form-heading h2 {
    margin-top: 10px;

    font-size: 36px;

    line-height: 1;

    letter-spacing: -0.04em;
}

.form-heading h2 strong {
    color: var(--accent);
}

.form-heading p {
    max-width: 500px;

    margin-top: 15px;

    color: rgba(255,255,255,0.45);

    font-size: 12px;
}

.contact-form {
    margin-top: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,0.55);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    border: 1px solid rgba(255,255,255,0.12);

    outline: none;

    background: #15191c;

    color: var(--white);

    padding: 15px 16px;

    font-size: 12px;

    transition:
        border-color var(--transition),
        background var(--transition);
}

.form-group input,
.form-group select {
    height: 50px;
}

.form-group textarea {
    resize: vertical;

    min-height: 145px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group select {
    color: rgba(255,255,255,0.65);

    appearance: auto;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);

    background: #191e21;
}

.btn-form {
    width: 100%;

    border: 0;

    cursor: pointer;

    background: var(--accent);

    color: var(--black);
}

.btn-form:hover {
    background: var(--white);
}

.form-note {
    margin-top: 15px;

    color: rgba(255,255,255,0.25);

    font-size: 9px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   CONTACT SERVICES
========================================================= */

.contact-services {
    padding: 120px 0;

    background: var(--white);
}

.contact-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: rgba(0,0,0,0.1);

    border: 1px solid rgba(0,0,0,0.1);
}

.contact-service-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    background: var(--white);

    transition: background var(--transition);
}

.contact-service-card:hover {
    background: var(--off-white);
}

.contact-service-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: #b8bdc0;

    font-size: 10px;
    font-weight: 900;
}

.contact-service-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);

    color: var(--accent);

    font-size: 11px;
    font-weight: 900;
}

.contact-service-card h3 {
    margin-top: 55px;

    font-size: 19px;

    letter-spacing: -0.025em;
}

.contact-service-card p {
    margin-top: 12px;

    color: #777d80;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {
    position: relative;

    overflow: hidden;

    padding: 115px 0;

    background: var(--black);

    color: var(--white);

    text-align: center;
}

.contact-cta-container {
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    margin-top: 25px;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.contact-cta h2 em {
    color: var(--accent);

    font-style: normal;
}

.contact-cta p {
    max-width: 580px;

    margin: 25px auto 0;

    color: rgba(255,255,255,0.48);

    font-size: 14px;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .contact-information {
        max-width: 700px;
    }

    .contact-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-hero-number {
        width: 210px;
        height: 210px;
    }

    .contact-hero-number::before {
        width: 160px;
        height: 160px;
    }

    .contact-hero-number strong {
        font-size: 55px;
    }
}


@media (max-width: 700px) {

    .contact-hero-container {
        min-height: 570px;

        padding-top: 100px;
        padding-bottom: 60px;
    }

    .contact-hero-number {
        display: none;
    }

    .contact-hero h1 {
        font-size: 52px;
    }

    .contact-main,
    .contact-services {
        padding: 85px 0;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-service-grid {
        grid-template-columns: 1fr;
    }

    .contact-service-card {
        min-height: 260px;
    }
}


@media (max-width: 480px) {

    .contact-hero h1 {
        font-size: 45px;
    }

    .contact-detail {
        padding: 15px;
    }

    .contact-detail-content strong {
        font-size: 11px;
    }

    .form-heading h2 {
        font-size: 30px;
    }

    .contact-cta h2 {
        font-size: 45px;
    }
}


/* About Us */

/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(216,255,0,0.10),
            transparent 27%
        ),
        var(--black);
}

.about-hero-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.35;

    background-image:
        linear-gradient(
            135deg,
            transparent 45%,
            rgba(216,255,0,0.08) 46%,
            rgba(216,255,0,0.08) 47%,
            transparent 48%
        );

    background-size: 140px 140px;
}

.about-hero-pattern::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            var(--black) 0%,
            rgba(9,11,13,0.8) 55%,
            rgba(9,11,13,0.1) 100%
        );
}

.about-hero-container {
    position: relative;
    z-index: 2;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;

    padding-top: 80px;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero h1 {
    margin-top: 20px;

    font-size: clamp(52px, 7vw, 88px);

    line-height: 0.94;

    letter-spacing: -0.06em;
}

.about-hero h1 em {
    color: var(--accent);

    font-style: normal;
}

.about-hero-content > p {
    max-width: 600px;

    margin-top: 28px;

    color: rgba(255,255,255,0.56);

    font-size: 15px;

    line-height: 1.8;
}

.about-hero-mark {
    position: relative;

    width: 270px;
    height: 270px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(216,255,0,0.35);

    border-radius: 50%;

    transform: rotate(-8deg);
}

.about-hero-mark::before {
    content: "";

    position: absolute;

    width: 205px;
    height: 205px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;
}

.about-hero-mark span {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,0.35);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.25em;
}

.about-hero-mark strong {
    position: relative;
    z-index: 2;

    margin: 8px 0;

    color: var(--accent);

    font-size: 70px;

    line-height: 1;

    font-style: italic;

    letter-spacing: -0.1em;
}

.about-hero-mark small {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,0.35);

    font-size: 7px;
    font-weight: 900;

    line-height: 1.6;

    text-align: center;

    letter-spacing: 0.2em;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
    padding: 125px 0;

    background: var(--off-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.35fr 1fr;

    gap: 100px;
}

.about-intro-content {
    max-width: 850px;
}

.about-intro-content h2 {
    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.about-intro-content h2 span {
    color: #999fa2;
}

.about-intro-content p {
    max-width: 760px;

    margin-top: 24px;

    color: #666c70;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   OWNERSHIP
========================================================= */

.ownership-section {
    position: relative;

    overflow: hidden;

    padding: 125px 0;

    color: var(--white);

    background: var(--black);
}

.ownership-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 100px;

    align-items: center;
}

.ownership-content {
    max-width: 650px;
}

.ownership-content h2 {
    margin-top: 25px;

    font-size: clamp(50px, 6vw, 78px);

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.ownership-content h2 em {
    color: var(--accent);

    font-style: normal;
}

.ownership-content p {
    max-width: 560px;

    margin-top: 25px;

    color: rgba(255,255,255,0.52);

    font-size: 15px;

    line-height: 1.85;
}

.ownership-content .btn {
    margin-top: 30px;
}


/* Ownership visual */

.ownership-visual {
    position: relative;

    height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.australia-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(216,255,0,0.12);
}

.ring-one {
    width: 250px;
    height: 250px;
}

.ring-two {
    width: 350px;
    height: 350px;
}

.ring-three {
    width: 430px;
    height: 430px;

    border-color: rgba(255,255,255,0.06);
}

.australia-mark {
    position: relative;
    z-index: 2;

    width: 155px;
    height: 155px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent);

    clip-path: polygon(
        14% 17%,
        34% 5%,
        54% 14%,
        75% 9%,
        92% 28%,
        87% 51%,
        96% 68%,
        78% 86%,
        57% 79%,
        41% 94%,
        21% 81%,
        7% 58%,
        15% 38%
    );

    transform: rotate(-8deg);
}

.australia-mark span {
    color: var(--black);

    font-size: 34px;
    font-weight: 900;

    font-style: italic;
}

.australia-label {
    position: absolute;

    bottom: 25px;

    color: rgba(255,255,255,0.35);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.25em;
}


/* =========================================================
   ABOUT PRODUCTS
========================================================= */

.about-products {
    padding: 125px 0;

    background: var(--white);
}

.about-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    background: var(--black);
}

.about-product-card {
    position: relative;

    min-height: 480px;

    padding: 35px;

    background: var(--off-white);

    transition: background var(--transition);
}

.about-product-card.featured {
    color: var(--white);

    background: var(--black);
}

.about-product-card:hover {
    background: #ecece8;
}

.about-product-card.featured:hover {
    background: #111518;
}

.about-product-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: #a8adaf;

    font-size: 10px;
    font-weight: 900;
}

.featured .about-product-number {
    color: rgba(255,255,255,0.3);
}

.about-product-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent);

    color: var(--black);

    font-size: 12px;
}

.about-product-category {
    display: block;

    margin-top: 65px;

    color: #7d8386;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.18em;
}

.featured .about-product-category {
    color: var(--accent);
}

.about-product-card h3 {
    margin-top: 10px;

    font-size: 29px;

    line-height: 1.05;

    letter-spacing: -0.035em;
}

.about-product-card p {
    max-width: 350px;

    margin-top: 20px;

    color: #707578;

    font-size: 13px;

    line-height: 1.75;
}

.featured .about-product-card p {
    color: rgba(255,255,255,0.55);
}

.about-product-list {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 25px;
}

.about-product-list span {
    padding: 7px 10px;

    border: 1px solid rgba(0,0,0,0.12);

    color: #6c7275;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
}

.featured .about-product-list span {
    border-color: rgba(255,255,255,0.15);

    color: rgba(255,255,255,0.5);
}


/* =========================================================
   MANUFACTURING
========================================================= */

.manufacturing-section {
    padding: 125px 0;

    background: var(--off-white);
}

.manufacturing-container {
    display: grid;
    grid-template-columns: 0.8fr 1fr;

    gap: 100px;

    align-items: center;
}

.manufacturing-visual {
    position: relative;

    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.manufacturing-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(0,0,0,0.12);
}

.circle-one {
    width: 210px;
    height: 210px;
}

.circle-two {
    width: 330px;
    height: 330px;
}

.circle-three {
    width: 470px;
    height: 470px;

    border-color: rgba(216,255,0,0.35);
}

.manufacturing-center {
    position: relative;
    z-index: 2;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--black);

    color: var(--white);

    transform: rotate(-8deg);
}

.manufacturing-center strong {
    color: var(--accent);

    font-size: 48px;

    line-height: 1;

    font-style: italic;
}

.manufacturing-center span {
    margin-top: 8px;

    color: rgba(255,255,255,0.4);

    font-size: 7px;
    font-weight: 900;

    line-height: 1.5;

    text-align: center;

    letter-spacing: 0.2em;
}

.manufacturing-content h2 {
    margin-top: 25px;

    font-size: clamp(43px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.manufacturing-content h2 span {
    color: #999fa2;
}

.manufacturing-content > p {
    max-width: 600px;

    margin-top: 25px;

    color: #686e71;

    font-size: 14px;

    line-height: 1.85;
}

.manufacturing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 1px;

    margin-top: 35px;

    background: rgba(0,0,0,0.1);

    border: 1px solid rgba(0,0,0,0.1);
}

.manufacturing-features div {
    padding: 20px;

    background: var(--white);
}

.manufacturing-features span {
    display: block;

    color: #a0a5a7;

    font-size: 9px;
    font-weight: 900;
}

.manufacturing-features strong {
    display: block;

    margin-top: 10px;

    font-size: 12px;
}


/* =========================================================
   QUALITY
========================================================= */

.quality-section {
    padding: 125px 0;

    background: var(--white);
}

.quality-heading h2 {
    margin-top: 22px;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.quality-heading h2 span {
    color: #999fa2;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 2px;

    margin-top: 60px;

    background: var(--black);
}

.quality-card {
    position: relative;

    min-height: 360px;

    padding: 32px;

    background: var(--off-white);
}

.quality-main {
    color: var(--white);

    background: var(--black);
}

.quality-card-top {
    display: flex;
    justify-content: space-between;

    color: var(--accent);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.12em;
}

.quality-card-top strong {
    text-align: right;

    line-height: 1.5;
}

.quality-symbol {
    margin-top: 45px;

    color: var(--accent);

    font-size: 100px;
    font-weight: 900;

    font-style: italic;

    line-height: 0.8;

    letter-spacing: -0.1em;
}

.quality-main p {
    max-width: 430px;

    margin-top: 45px;

    color: rgba(255,255,255,0.5);

    font-size: 13px;

    line-height: 1.8;
}

.quality-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: #aeb3b5;

    font-size: 10px;
    font-weight: 900;
}

.quality-small-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);

    color: var(--accent);

    font-size: 11px;
}

.quality-card h3 {
    margin-top: 55px;

    font-size: 23px;

    line-height: 1.05;

    letter-spacing: -0.03em;
}

.quality-card:not(.quality-main) p {
    margin-top: 15px;

    color: #777d80;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   ABOUT WHY
========================================================= */

.about-why {
    padding: 125px 0;

    background: var(--off-white);
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    margin-top: 60px;

    background: rgba(0,0,0,0.1);

    border: 1px solid rgba(0,0,0,0.1);
}

.about-why-item {
    min-height: 250px;

    padding: 30px;

    background: var(--white);
}

.about-why-item > span {
    color: #a3a8aa;

    font-size: 10px;
    font-weight: 900;
}

.about-why-item h3 {
    margin-top: 45px;

    font-size: 18px;

    line-height: 1.15;

    letter-spacing: -0.025em;
}

.about-why-item p {
    margin-top: 12px;

    color: #777d80;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    position: relative;

    overflow: hidden;

    padding: 125px 0;

    color: var(--white);

    background: var(--black);

    text-align: center;
}

.about-cta::before {
    content: "DS";

    position: absolute;

    left: 50%;
    bottom: -180px;

    transform: translateX(-50%);

    color: rgba(255,255,255,0.025);

    font-size: 400px;
    font-weight: 900;

    line-height: 1;
}

.about-cta-container {
    position: relative;
    z-index: 2;
}

.about-cta .section-label {
    justify-content: center;
}

.about-cta h2 {
    margin-top: 25px;

    font-size: clamp(48px, 6vw, 80px);

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.about-cta h2 em {
    color: var(--accent);

    font-style: normal;
}

.about-cta p {
    max-width: 600px;

    margin: 28px auto 0;

    color: rgba(255,255,255,0.5);

    font-size: 14px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-hero-mark {
        width: 220px;
        height: 220px;
    }

    .about-hero-mark::before {
        width: 170px;
        height: 170px;
    }

    .about-hero-mark strong {
        font-size: 58px;
    }

    .ownership-container,
    .manufacturing-container {
        gap: 60px;
    }

    .quality-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quality-main {
        grid-column: 1 / -1;
    }
}


@media (max-width: 850px) {

    .about-hero-container {
        min-height: 540px;
    }

    .about-hero-mark {
        display: none;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .ownership-container,
    .manufacturing-container {
        grid-template-columns: 1fr;
    }

    .ownership-visual {
        height: 380px;
    }

    .manufacturing-visual {
        order: 2;

        height: 400px;
    }

    .about-product-grid {
        grid-template-columns: 1fr;
    }

    .about-product-card {
        min-height: 420px;
    }

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 650px) {

    .about-hero {
        min-height: 520px;
    }

    .about-hero-container {
        min-height: 520px;

        padding-top: 100px;
    }

    .about-hero h1 {
        font-size: 48px;
    }

    .about-intro,
    .ownership-section,
    .about-products,
    .manufacturing-section,
    .quality-section,
    .about-why {
        padding: 85px 0;
    }

    .ownership-visual {
        height: 320px;
    }

    .ring-one {
        width: 180px;
        height: 180px;
    }

    .ring-two {
        width: 260px;
        height: 260px;
    }

    .ring-three {
        width: 330px;
        height: 330px;
    }

    .australia-mark {
        width: 120px;
        height: 120px;
    }

    .australia-mark span {
        font-size: 27px;
    }

    .manufacturing-visual {
        height: 320px;
    }

    .circle-one {
        width: 160px;
        height: 160px;
    }

    .circle-two {
        width: 240px;
        height: 240px;
    }

    .circle-three {
        width: 310px;
        height: 310px;
    }

    .manufacturing-center {
        width: 120px;
        height: 120px;
    }

    .manufacturing-center strong {
        font-size: 38px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-main {
        grid-column: auto;
    }

    .quality-card {
        min-height: 300px;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-why-item {
        min-height: 210px;
    }

    .manufacturing-features {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 450px) {

    .about-hero h1 {
        font-size: 43px;
    }

    .about-hero-content > p {
        font-size: 13px;
    }

    .about-product-card {
        padding: 28px;
    }

    .about-product-card h3 {
        font-size: 26px;
    }

    .about-cta h2 {
        font-size: 45px;
    }
}