/* BASE RESET */
/* ___________________________________________________ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* 1rem = 16px */
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* 
   Neue Montreal – Web Fonts */
/* ___________________________________________________ */

@font-face {
    font-family: "Neue Montreal";
    src: url("../fonts/neue-montreal/NeueMontreal-Light.woff2") format("woff2"),
        url("../fonts/neue-montreal/NeueMontreal-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Montreal";
    src: url("../fonts/neue-montreal/NeueMontreal-Regular.woff2") format("woff2"),
        url("../fonts/neue-montreal/NeueMontreal-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Montreal";
    src: url("../fonts/neue-montreal/NeueMontreal-Italic.woff2") format("woff2"),
        url("../fonts/neue-montreal/NeueMontreal-Italic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Neue Montreal";
    src: url("../fonts/neue-montreal/NeueMontreal-Medium.woff2") format("woff2"),
        url("../fonts/neue-montreal/NeueMontreal-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Montreal";
    src: url("../fonts/neue-montreal/NeueMontreal-Bold.woff2") format("woff2"),
        url("../fonts/neue-montreal/NeueMontreal-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Montreal";
    src: url("../fonts/neue-montreal/NeueMontreal-BoldItalic.woff2") format("woff2"),
        url("../fonts/neue-montreal/NeueMontreal-BoldItalic.woff") format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* DESIGN TOKENS  */
/* ___________________________________________________ */

:root {
    /* Brand */
    --color-primary: #00AE9C;
    --color-primary-contrast: #FFFFFF;

    /* Backgrounds */
    --color-bg-white: #FFFFFF;
    --color-bg-primary: #00AE9C;
    --color-bg-muted: #F4FBFB;
    --color-bg-black: #000000;

    /* Text */
    --color-text-black: #231F20;
    --color-text-white: #FFFFFF;
    --color-text-secondary: #00AE9C;
    --color-text-muted: #6F7C7C;

    /* Typography */
    --font-heading: "Playfair Display", serif;
    --font-body: "Neue Montreal", sans-serif;

    /* Font Sizes */
    /* Headings */

    /* H1
     Desktop: 60px / 400
     Mobile:  44px / 400 */
    --fs-h1: clamp(2.75rem, 3vw + 1rem, 3.75rem);

    /* H2
     Desktop: 48px / 400
     Mobile:  36px / 400 */
    --fs-h2: clamp(2.25rem, 2.5vw + 1rem, 3rem);

    /* H3 (reserved / balanced scale) */
    --fs-h3: clamp(1.75rem, 1.8vw + 1rem, 2.25rem);

    /* H4 (reserved / balanced scale) */
    --fs-h4: clamp(1.5rem, 1.5vw + 1rem, 2rem);

    /* H5
     Desktop: 24px / 500
     Mobile:  24px */
    --fs-h5: 1.5rem;

    /* H6
     Desktop: 20px / 500
     Mobile:  20px */
    --fs-h6: 1.25rem;

    /* Paragraphs */

    /* P – Small
     Desktop & Mobile: 14px */
    --fs-p-s: 0.875rem;

    /* P – Medium
     Desktop: 15px
     Mobile:  14px */
    --fs-p-m: clamp(0.875rem, 0.3vw + 0.8rem, 0.9375rem);

    /* P – Large
     Desktop: 16px
     Mobile:  14px */
    --fs-p-l: clamp(0.875rem, 0.4vw + 0.85rem, 1rem);

    /* P – Extra Large
     Desktop & Mobile: 18px */
    --fs-p-xl: 1.125rem;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-s: 0.5rem;
    --space-m: 1rem;
    --space-l: 1.5rem;
    --space-xl: 2.5rem;
    --space-xxl: 4rem;

    /* Radius */
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-l: 12px;

    /* Shadow */
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* TYPOGRAPHY BASE */
/* ___________________________________________________ */

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-main);
}

.h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: var(--fs-h1);
    line-height: 1.15;
}

.h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: var(--fs-h2);
    line-height: 1.2;
}

.h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: var(--fs-h3);
}

.h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: var(--fs-h4);
}

.h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--fs-h5);
    line-height: 29px;
}

.h6 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--fs-h6);
}

.p-s {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-p-s);
    line-height: 1.6;
}

.p-m {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-p-m);
    line-height: 1.6;
}

.p-l {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-p-l);
    line-height: 1.6;
}

.p-xl {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-p-xl);
    line-height: 1.6;
}



/* GLOBAL HELPERS (MINIMAL) */
/* ___________________________________________________ */

.main-container {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.btn-01 {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 12px 24px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-m);
    font-family: var(--font-body);
    font-size: var(--fs-p-s);
    cursor: pointer;
    height: fit-content;
    width: fit-content;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.btn-01:hover {
    background-color: var(--color-bg-black);
    color: var(--color-text-white);
    border: 1px solid var(--color-bg-black);
}

.btn-02 {
    background-color: transparent;
    color: var(--color-text-white);
    padding: 12px 24px;
    border: 1px solid var(--color-bg-white);
    border-radius: var(--radius-m);
    font-family: var(--font-body);
    font-size: var(--fs-p-s);
    cursor: pointer;
    height: fit-content;
    width: fit-content;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.btn-02:hover {
    background-color: var(--color-bg-black);
    color: var(--color-text-white);
    border: 1px solid var(--color-bg-white);
}

.btn-03 {
    background-color: var(--color-bg-black);
    color: var(--color-text-white);
    padding: 8px 24px;
    border: 1px solid var(--color-bg-black);
    border-radius: var(--radius-m);
    font-family: var(--font-body);
    font-size: var(--fs-p-s);
    cursor: pointer;
    height: fit-content;
    width: 100%;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.btn-03:hover {
    background-color: transparent;
    color: var(--color-text-black);
    border: 1px solid var(--color-bg-black);
}

.btn-04 {
    background-color: transparent;
    color: var(--color-text-black);
    padding: 8px 24px;
    border: 1px solid var(--color-bg-black);
    border-radius: var(--radius-m);
    font-family: var(--font-body);
    font-size: var(--fs-p-s);
    cursor: pointer;
    height: fit-content;
    width: 100%;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
    width: max-content;
}

.btn-04:hover {
    background-color: var(--color-bg-black);
    color: var(--color-text-white);
    border: 1px solid var(--color-bg-black);
}

.btn-05 {
    background-color: var(--color-bg-white);
    color: var(--color-text-secondary);
    padding: 14px 24px;
    border: 1px solid var(--color-text-secondary);
    border-radius: var(--radius-m);
    font-family: var(--font-body);
    font-size: var(--fs-p-s);
    cursor: pointer;
    height: fit-content;
    width: 100%;
    height: 100%;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
    width: max-content;
}

.btn-05:hover {
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid var(--color-bg-white);
}

.btn-06 {
    background-color: var(--color-bg-black);
    color: var(--color-text-white);
    padding: 12px 30px;
    border: 1px solid var(--color-bg-black);
    border-radius: var(--radius-m);
    font-family: var(--font-body);
    font-size: 12px;
    cursor: pointer;
    height: fit-content;
    width: 100%;
    text-align: center;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.btn-06:hover {
    background-color: transparent;
    color: var(--color-text-black);
    border: 1px solid var(--color-bg-black);
}

.container {
    width: 100%;
    padding: 0 24px;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* =========================
   Small devices (≥576px)
   ========================= */
@media (min-width: 576px) {
    .container {
        padding: 0 24px;
    }
}

/* =========================
   Medium devices / Tablets (≥768px)
   ========================= */
@media (min-width: 768px) {
    .container {
        padding: 0 36px;
    }
}

/* =========================
   Large devices / Laptops (≥992px)
   ========================= */
@media (min-width: 992px) {
    .container {
        padding: 0 80px;
    }
}

/* =========================
   Extra large devices / Desktops (≥1200px)
   ========================= */
@media (min-width: 1200px) {
    .container {
        padding: 0 80px;
    }
}

/* =========================
   2XL screens (≥1400px)
   ========================= */
@media (min-width: 1400px) {
    .container {
        padding: 0 100px;
    }
}