@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* ==================================================================
   TOKENS
================================================================== */

:root {

    /* ================================================================
       PRIMARY BRAND COLORS
    ================================================================ */

    --primary: #d2a22a;
    --primary-dark: #d1a32c;
    --primary-light: #f2cd57;
    --primary-soft: rgba(210, 162, 42, 0.12);


    /* ================================================================
       DARK / BRAND TEXT
    ================================================================ */

    --navy: #1f1d19;
    --navy-deep: #12110f;
    --navy-light: #3a352c;
    --navy-soft: rgba(31, 29, 25, 0.10);


    /* ================================================================
       NEUTRAL
    ================================================================ */

    --ink: #3f3d39;
    --ink-soft: #625f59;
    --ink-light: #8d8981;


    /* ================================================================
       BACKGROUNDS
    ================================================================ */

    --paper: #ffffff;
    --paper-soft: #faf9f6;
    --paper-warm: #f5f1e8;

    /* Dark luxury section */
    --blue-background: #1d1b17;


    /* ================================================================
       BORDERS
    ================================================================ */

    --line: #e3ded2;
    --line-soft: #eeeae1;


    /* ================================================================
       ACCENT
    ================================================================ */

    --blueprint-line: #d2a22a;
    --blueprint-line-soft: rgba(210, 162, 42, 0.14);


    /* ================================================================
       MUTED TEXT
    ================================================================ */

    --muted: #706c64;
    --muted-2: #a09b91;


    /* ================================================================
       GOLD / LIGHT TEXT SHADES
    ================================================================ */

    --sky-text: #f4df9a;
    --sky-text-2: #e7cf83;
    --sky-text-3: #d8bb61;
    --sky-text-4: #c9a94d;
    --sky-text-5: #b08d32;
    --sky-text-6: #927323;


    /* ================================================================
       WHITE
    ================================================================ */

    --white-text: #ffffff;


    /* ================================================================
       SHADOWS
    ================================================================ */

    --shadow-sm:
        0 2px 8px rgba(31, 29, 25, 0.08);

    --shadow-md:
        0 8px 24px rgba(31, 29, 25, 0.12);

    --shadow-lg:
        0 16px 40px rgba(31, 29, 25, 0.16);


    /* ================================================================
       FONTS
    ================================================================ */

    --font-display:
        "Poppins",
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    --font-body:
        "Poppins",
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    --font-mono:
        "Poppins",
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;


    /* ================================================================
       LAYOUT
    ================================================================ */

    --container-width: 1280px;
    --container-padding: 20px;

    --section-space: clamp(40px, 5vw, 80px);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}


/* ==================================================================
   GLOBAL RESET
================================================================== */

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


html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;

    color: var(--ink);
    background: var(--paper);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden;
}


img {
    display: block;
    max-width: 100%;
    height: auto;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


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


ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}


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


/* ==================================================================
   MAIN PROJECT WRAPPER
================================================================== */

.dsp {
    min-height: 100vh;

    color: var(--ink);
    background: var(--paper);

    font-family: var(--font-body);
}


.dsp *,
.dsp *::before,
.dsp *::after {
    box-sizing: border-box;
}


.dsp a {
    text-decoration: none;
}


.dsp button {
    font-family: inherit;
    cursor: pointer;
}


.dsp input,
.dsp textarea,
.dsp select {
    font-family: inherit;
}


.dsp ul,
.dsp ol {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* ==================================================================
   FONT HELPERS
================================================================== */

.font-display {
    font-family: var(--font-display);
}


.font-body {
    font-family: var(--font-body);
}


.font-mono {
    font-family: var(--font-mono);
}


/* ==================================================================
   BLUEPRINT GRID
================================================================== */

.blueprint-grid {
    background-size: 28px 28px;                                                         
}


/* ==================================================================
   CONTAINERS
================================================================== */

.header-wrap {
    width: 100%;
    max-width: 100%;

    margin: 0 auto;
    padding: 0 var(--container-padding);
}


.wrap {
    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 var(--container-padding);
}


.section {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}


/* ==================================================================
   EYEBROW
================================================================== */

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

    margin-bottom: 12px;

    color: var(--primary);

    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;

    line-height: 1.2;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}


.eyebrow::before,
.eyebrow::after {
    content: "";

    width: 24px;
    height: 1px;

    flex-shrink: 0;

    background: currentColor;
}


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


.eyebrow.light {
    color: var(--sky-text);
}


/* ==================================================================
   HEADING HELPERS
================================================================== */

.heading-section {
    max-width: 750px;
}


.heading-section h1 {
    margin: 0;

    color: var(--navy);

    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -0.035em;
}


.heading-section h2 {
    margin: 0;

    color: var(--navy);

    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 600;

    line-height: 1.12;
    letter-spacing: -0.025em;
}


.heading-section h3 {
    margin: 0;

    color: var(--navy);

    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 600;

    line-height: 1.2;
}

/* ==================================================================
   SECTION HEAD
================================================================== */

.section-head {
    display: flex;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: clamp(28px, 4vw, 52px);
}


/* ==================================================================
   CARD LINK / BUTTON
================================================================== */

.card-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 46px;

    margin-top: auto;
    padding: 12px 18px;

    background: var(--primary);
    color: var(--white-text) !important;

    border: 1px solid var(--primary);
    border-radius: var(--radius-md);

    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;

    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    text-decoration: none;

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



.card-link:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);

    color: var(--white-text) !important;

    transform: translateY(-2px);

    box-shadow: var(--shadow-sm);
}


.card-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}


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

.card {
    background: var(--paper);

    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.card:hover {
    transform: translateY(-4px);

    border-color: var(--line);

    box-shadow: var(--shadow-md);
}


/* ==================================================================
   IMAGE
================================================================== */

.card-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.card:hover .card-image {
    transform: scale(1.03);
}


/* ==================================================================
   FORM ELEMENTS
================================================================== */

input,
textarea,
select {
    width: 100%;

    color: var(--ink);
    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


input::placeholder,
textarea::placeholder {
    color: var(--ink-light);
}

/* Success message */
#formMessage .success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 12px 15px;
  margin-top: 15px;
  border-radius: 5px;
  font-size: 14px;
}

/* Error message */
#formMessage .error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 12px 15px;
  margin-top: 15px;
  border-radius: 5px;
  font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================================================
   TABLET
   768px – 1023px
================================================================== */

@media (min-width: 768px) and (max-width: 1023px) {

    :root {
        --container-padding: 24px;
    }


    .header-wrap,
    .wrap {
        padding-left: 24px;
        padding-right: 24px;
    }


    .wrap {
        max-width: 960px;
    }


    .section {
        padding:20px 0px;
    }


    .section-head {
        margin-bottom: 38px;
    }


    .eyebrow {
        font-size: 10px;
        letter-spacing: 0.22em;
    }


    .heading-section h1 {
        font-size: clamp(40px, 6vw, 58px);
    }


    .heading-section h2 {
        font-size: clamp(32px, 4.5vw, 46px);
    }


    .heading-section h3 {
        font-size: 26px;
    }


    .heading-section p {
        font-size: 15px;
    }


    .card-link {
        min-height: 44px;

        padding: 11px 16px;

        font-size: 11px;
    }

}

/* ==================================================================
   MOBILE
   767px and below
================================================================== */

@media (max-width: 767px) {

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

    :root {
        --container-padding: 16px;
        --section-space: 44px;
    }


    /* ================================================================
       CONTAINERS
    ================================================================ */

    .header-wrap,
    .wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding-top: var(--section-space);
        padding-bottom: var(--section-space);
    }


    /* ================================================================
       TYPOGRAPHY
    ================================================================ */

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    .eyebrow {
        gap: 6px;

        margin-bottom: 10px;

        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .eyebrow::before,
    .eyebrow::after {
        width: 16px;
    }


    /* ================================================================
       HEADINGS
    ================================================================ */

    .heading-section {
        max-width: 100%;
    }

    .heading-section h1 {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.1;
        letter-spacing: -0.025em;
    }

    .heading-section h2 {
        font-size: clamp(24px, 7vw, 34px);
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    .heading-section h3 {
        font-size: clamp(20px, 5.5vw, 26px);
        line-height: 1.2;
    }

    .heading-section p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* ================================================================
       SECTION HEAD
    ================================================================ */

    .section-head {
        display: flex;
        flex-direction: column;

        gap: 12px;

        margin-bottom: 28px;
    }


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

    .card {
        border-radius: var(--radius-md);

        box-shadow: var(--shadow-sm);
    }

    .card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }


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

    .card-image {
        width: 100%;
        height: auto;

        object-fit: cover;
    }

    .card:hover .card-image {
        transform: none;
    }


    /* ================================================================
       CARD LINK / BUTTON
    ================================================================ */

    .card-link {
        width: 100%;

        min-height: 44px;

        padding: 11px 16px;

        border-radius: var(--radius-md);

        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .card-link:hover {
        transform: none;
        box-shadow: none;
    }


    /* ================================================================
       FORM ELEMENTS
    ================================================================ */

    input,
    textarea,
    select {
        min-height: 44px;

        font-size: 14px;
        border-radius: 8px;
    }

    textarea {
        min-height: 110px;
    }


    /* ================================================================
       FORM MESSAGES
    ================================================================ */

    #formMessage .success,
    #formMessage .error {
        padding: 10px 12px;

        margin-top: 12px;

        border-radius: 6px;

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


    /* ================================================================
       TOUCH DEVICES
    ================================================================ */

    button,
    a,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: transparent;
    }


    /* ================================================================
       REMOVE HOVER LIFT ON TOUCH
    ================================================================ */

    .card:hover,
    .card-link:hover {
        transform: none;
    }
}


/* ==================================================================
   SMALL MOBILE
   480px and below
================================================================== */

@media (max-width: 480px) {

    :root {
        --container-padding: 14px;
        --section-space: 36px;
    }


    /* ================================================================
       CONTAINERS
    ================================================================ */

    .header-wrap,
    .wrap {
        padding-left: 14px;
        padding-right: 14px;
    }


    /* ================================================================
       TYPOGRAPHY
    ================================================================ */

    body {
        font-size: 13.5px;
    }

    .eyebrow {
        font-size: 8.5px;
        letter-spacing: 0.15em;
    }

    .eyebrow::before,
    .eyebrow::after {
        width: 12px;
    }


    .heading-section h1 {
        font-size: 28px;
    }

    .heading-section h2 {
        font-size: 24px;
    }

    .heading-section h3 {
        font-size: 20px;
    }

    .heading-section p {
        font-size: 13.5px;
    }


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

    .section-head {
        gap: 10px;
        margin-bottom: 24px;
    }


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

    .card {
        border-radius: 8px;
    }


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

    .card-link {
        min-height: 42px;

        padding: 10px 14px;

        font-size: 9.5px;
    }


    /* ================================================================
       FORM
    ================================================================ */

    input,
    textarea,
    select {
        min-height: 42px;

        padding: 10px;

        font-size: 13px;
    }

    textarea {
        min-height: 100px;
    }


    /* ================================================================
       FORM MESSAGES
    ================================================================ */

    #formMessage .success,
    #formMessage .error {
        padding: 9px 10px;

        font-size: 12px;
    }
}