/* ==========================================================
   GILE HOLLOW HOBBYWORKS
   ========================================================== */

/* ==========================================================
   VARIABLES
   ========================================================== */

:root {
    --forest: #31533b;
    --forest-dark: #223c2b;
    --forest-light: #dfe8df;
    --charcoal: #171917;
    --charcoal-soft: #3e433e;
    --cream: #f7f5ef;
    --cream-dark: #eeeae0;
    --tan: #c7b99b;
    --white: #ffffff;
    --border: rgba(23, 25, 23, 0.12);
    --shadow: 0 16px 40px rgba(23, 25, 23, 0.09);
    --container: 1180px;
    --radius-small: 12px;
    --radius-medium: 18px;
    --radius-large: 26px;
}

/* ==========================================================
   RESET
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--charcoal);
    background: var(--cream);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.12;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.02em;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 4vw, 3.75rem);
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 2.7vw, 2.65rem);
}

h3 {
    font-size: 1.3rem;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--forest);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #bed0c1;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 19px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--forest);
}

.button-primary:hover {
    background: var(--forest-dark);
}

.button-secondary {
    border-color: var(--charcoal);
    background: transparent;
}

.button-secondary:hover {
    background: var(--white);
}

.button-light {
    color: var(--forest-dark);
    background: var(--white);
}

.button-light:hover {
    background: var(--cream);
}

/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    /*background: rgba(247, 245, 239, 0.96);*/
	background: #FFF;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.brand {
    flex: 0 1 315px;
}

.brand img {
    width: 100%;
    max-height: 61px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 23px;
    font-size: 0.9rem;
    font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
    position: relative;
}

.main-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    background: var(--forest);
    content: "";
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a.active:not(.nav-cta)::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--white);
    background: var(--forest);
}

.nav-cta:hover {
    background: var(--forest-dark);
}

/* ==========================================================
   HERO
   ========================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0 52px;
}

.hero::before {
    position: absolute;
    top: -300px;
    right: -230px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: rgba(49, 83, 59, 0.05);
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(480px, 1.15fr);
    align-items: center;
    gap: 55px;
}

.hero-copy {
    max-width: 520px;
}

.hero-lead {
    max-width: 520px;
    margin-bottom: 24px;
    color: var(--charcoal-soft);
    font-size: 1.02rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ==========================================================
   PRODUCT SLIDER
   ========================================================== */

.product-slider {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow);
}

.slider-viewport {
    position: relative;
    min-height: 410px;
}

.slider-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.slider-slide.active {
    position: relative;
    visibility: visible;
    opacity: 1;
}

.slider-image {
    min-height: 315px;
}

.slider-placeholder {
    position: relative;
    display: grid;
    min-height: 315px;
    place-items: center;
    overflow: hidden;
}

.slider-placeholder::before {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 18px solid rgba(255,255,255,0.14);
    border-radius: 30px;
    content: "";
    transform: rotate(14deg);
}

.slider-placeholder::after {
    position: absolute;
    width: 275px;
    height: 275px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    content: "";
}

.slider-hype {
    background: linear-gradient(145deg, #223d2a, #718b75);
}

.slider-display {
    background: linear-gradient(145deg, #333833, #828981);
}

.slider-personalized {
    background: linear-gradient(145deg, #806942, #c5b089);
}

.slider-printing {
    background: linear-gradient(145deg, #253c36, #658176);
}

.slider-number,
.slider-symbol,
.slider-file-placeholder span {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.96);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
}

.slider-file-placeholder span {
    font-size: 4.4rem;
    letter-spacing: 0.02em;
}

.slider-caption {
    display: grid;
    grid-template-columns: minmax(180px, 0.75fr) 1.25fr;
    align-items: center;
    gap: 25px;
    min-height: 95px;
    padding: 16px 65px 17px 20px;
}

.slider-category {
    display: block;
    margin-bottom: 3px;
    color: var(--forest);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slider-caption h2 {
    margin-bottom: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0;
}

.slider-caption p {
    margin-bottom: 0;
    color: #666d66;
    font-size: 0.85rem;
    line-height: 1.5;
}

.slider-arrow {
    position: absolute;
    top: 140px;
    z-index: 5;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--charcoal);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
    background: var(--white);
    transform: scale(1.05);
}

.slider-prev {
    left: 14px;
}

.slider-next {
    right: 14px;
}

.slider-dots {
    position: absolute;
    right: 18px;
    bottom: 16px;
    z-index: 6;
    display: flex;
    gap: 6px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c7ccc7;
    cursor: pointer;
    transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
}

.slider-dot.active {
    width: 20px;
    border-radius: 999px;
    background: var(--forest);
}

/* ==========================================================
   CUSTOMIZATION STRIP
   ========================================================== */

.customize-strip {
    padding: 30px 0;
    color: var(--white);
    background: var(--charcoal);
}

.customize-strip-inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 45px;
}

.customize-strip-heading > span {
    display: block;
    margin-bottom: 3px;
    color: #9cb1a0;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.customize-strip-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.customize-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.customize-options span {
    padding: 6px 11px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: rgba(255,255,255,0.82);
    font-size: 0.74rem;
    font-weight: 700;
}

/* ==========================================================
   CRAFT SHOW SECTION
   ========================================================== */

.show-section {
    padding: 62px 0;
    background: var(--cream-dark);
}

.show-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 50px;
}

.show-icon {
    display: grid;
    width: 180px;
    height: 180px;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
}

.show-icon span {
    color: rgba(255,255,255,0.96);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.show-copy {
    max-width: 750px;
}

.show-copy h2 {
    margin-bottom: 12px;
}

.show-copy .show-lead {
    margin-bottom: 10px;
    color: var(--charcoal);
    font-size: 1rem;
}

.show-copy p {
    color: #5a625a;
    font-size: 0.95rem;
}

.show-copy .button {
    margin-top: 4px;
}

/* ==========================================================
   PRODUCTS
   ========================================================== */

.products-section {
    padding: 70px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px;
}

.section-heading > div {
    max-width: 700px;
}

.section-heading h2 {
    margin-bottom: 10px;
}

.section-heading p:not(.eyebrow) {
    max-width: 630px;
    margin-bottom: 0;
    color: #606760;
    font-size: 0.94rem;
}

.section-link {
    flex: 0 0 auto;
    color: var(--forest-dark);
    font-size: 0.88rem;
    font-weight: 800;
}

.section-link:hover {
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-card-image {
    position: relative;
    display: flex;
    min-height: 225px;
    align-items: flex-end;
    padding: 17px;
    overflow: hidden;
}

.product-card-image::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 15px solid rgba(255,255,255,0.16);
    border-radius: 24px;
    content: "";
    transform: translate(-50%, -50%) rotate(15deg);
}

.product-card-hype {
    background: linear-gradient(145deg, #294832, #758f7a);
}

.product-card-display {
    background: linear-gradient(145deg, #333833, #848a81);
}

.product-card-custom {
    background: linear-gradient(145deg, #806942, #c5b089);
}

.product-card-image span {
    position: relative;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--charcoal);
    background: rgba(255,255,255,0.88);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card-content {
    padding: 21px;
}

.product-category {
    margin-bottom: 6px;
    color: var(--forest);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.product-card-content h3 {
    margin-bottom: 9px;
}

.product-card-content p:not(.product-category) {
    color: #5d645d;
    font-size: 0.9rem;
}

.product-card-content .custom-note {
    padding-top: 10px;
    border-top: 1px solid var(--border);
    font-size: 0.81rem;
}

.product-card-content a {
    color: var(--forest-dark);
    font-size: 0.86rem;
    font-weight: 800;
}

/* ==========================================================
   CUSTOM PRINTING
   ========================================================== */

.custom-printing {
    padding: 70px 0;
    background: var(--cream-dark);
}

.custom-printing-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 60px;
}

.custom-printing-visual {
    min-height: 350px;
}

.printer-placeholder {
    display: flex;
    height: 100%;
    min-height: 350px;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border-radius: var(--radius-large);
    color: var(--white);
    background: linear-gradient(145deg, var(--forest-dark), #54735b);
}

.printer-placeholder::before {
    display: block;
    width: 70%;
    height: 2px;
    background: rgba(255,255,255,0.3);
    content: "";
}

.printer-big {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.5rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 0.85;
}

.printer-small {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.custom-printing-copy {
    max-width: 650px;
}

.custom-printing-copy p:not(.eyebrow) {
    color: #585f58;
    font-size: 0.94rem;
}

.custom-printing-note {
    margin: 19px 0;
    padding: 14px 17px;
    border-left: 3px solid var(--tan);
    background: var(--cream);
}

.custom-printing-note strong {
    color: var(--charcoal);
}

/* ==========================================================
   FINAL CTA
   ========================================================== */

.final-cta {
    padding: 46px 0;
    color: var(--white);
    background: var(--forest-dark);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.final-cta h2 {
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.final-cta p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.73);
    font-size: 0.92rem;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
    padding: 48px 0 22px;
    color: rgba(255,255,255,0.72);
    background: #101210;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.6fr 0.6fr;
    gap: 55px;
    padding-bottom: 38px;
}

.footer-brand img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 14px;
    filter: invert(1);
}

.footer-brand p {
    max-width: 400px;
    margin-bottom: 0;
    font-size: 0.86rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    font-size: 0.86rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.76rem;
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {
    .header-inner {
        flex-direction: column;
        gap: 9px;
        padding: 12px 0;
    }

    .brand {
        flex: none;
        width: min(100%, 340px);
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-copy {
        max-width: 700px;
    }

    .product-slider {
        max-width: 720px;
    }

    .show-grid {
        grid-template-columns: 160px 1fr;
        gap: 38px;
    }

    .show-icon {
        width: 160px;
        height: 160px;
    }

    .show-icon span {
        font-size: 3.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-printing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .custom-printing-visual {
        max-width: 600px;
    }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: auto;
        padding: 11px 0;
    }

    .brand {
        width: min(100%, 300px);
    }

    .main-nav {
        width: 100%;
        gap: 9px 15px;
        font-size: 0.83rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 2px;
        text-align: center;
    }

    h1 {
        font-size: clamp(2.15rem, 10vw, 3.15rem);
    }

    h2 {
        font-size: clamp(1.65rem, 7vw, 2.35rem);
    }

    .hero {
        padding: 36px 0 42px;
    }

    .hero-grid {
        gap: 26px;
    }

    .hero-lead {
        font-size: 0.96rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .slider-viewport {
        min-height: 0;
    }

    .slider-image,
    .slider-placeholder {
        min-height: 250px;
    }

    .slider-caption {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 14px 18px 38px;
    }

    .slider-caption p {
        font-size: 0.8rem;
    }

    .slider-arrow {
        top: 106px;
        width: 35px;
        height: 35px;
    }

    .slider-dots {
        bottom: 13px;
    }

    .customize-strip {
        padding: 25px 0;
    }

    .customize-strip-inner {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .customize-options {
        justify-content: flex-start;
    }

    .show-section,
    .products-section,
    .custom-printing {
        padding: 52px 0;
    }

    .show-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .show-icon {
        width: 130px;
        height: 130px;
    }

    .show-icon span {
        font-size: 3rem;
    }

    .section-heading {
        display: block;
    }

    .section-link {
        display: inline-block;
        margin-top: 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card-image {
        min-height: 215px;
    }

    .custom-printing-visual,
    .printer-placeholder {
        min-height: 290px;
    }

    .printer-placeholder {
        padding: 26px;
    }

    .final-cta {
        padding: 40px 0;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 21px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }
}

/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 500px) {
    .main-nav {
        justify-content: center;
    }

    .slider-image,
    .slider-placeholder {
        min-height: 220px;
    }

    .slider-number,
    .slider-symbol {
        font-size: 4.5rem;
    }

    .slider-file-placeholder span {
        font-size: 3.5rem;
    }

    .customize-options span {
        font-size: 0.69rem;
    }
}

/* ==========================================================
   PRODUCTS PAGE
   ========================================================== */

.products-hero {
    padding: 52px 0 48px;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}

.products-hero-inner {
    max-width: 760px;
}

.products-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}

.products-hero p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: #5b625b;
    font-size: 1rem;
    line-height: 1.65;
}

/* ==========================================================
   PRODUCT FEATURE SECTIONS
   ========================================================== */

.product-feature {
    padding: 72px 0;
}

.product-feature-hype {
    background: var(--white);
}

.product-feature-display {
    background: var(--cream-dark);
}

.product-feature-figures {
    background: var(--cream);
}

.product-feature-lightboxes {
    color: var(--white);
    background: var(--charcoal);
}

.product-feature-custom {
    background: var(--white);
}

.product-feature-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 65px;
}

.product-feature-reverse .product-feature-image {
    order: 2;
}

.product-feature-reverse .product-feature-copy {
    order: 1;
}

.product-feature-copy {
    max-width: 650px;
}

.product-feature-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
}

.product-feature-copy p {
    color: #596059;
    font-size: 0.95rem;
}

.product-feature-copy .product-feature-lead {
    margin-bottom: 13px;
    color: var(--charcoal);
    font-size: 1.08rem;
    font-weight: 700;
}

.product-feature-lightboxes .product-feature-copy p {
    color: rgba(255,255,255,0.72);
}

.product-feature-lightboxes .product-feature-copy .product-feature-lead {
    color: var(--white);
}

.product-feature-lightboxes .eyebrow {
    color: #9db8a2;
}

/* ==========================================================
   PRODUCT IMAGE PLACEHOLDERS
   ========================================================== */

.product-feature-image {
    min-width: 0;
}

.feature-placeholder {
    position: relative;
    display: grid;
    min-height: 390px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.feature-placeholder::before {
    position: absolute;
    width: 190px;
    height: 190px;
    border: 18px solid rgba(255,255,255,0.14);
    border-radius: 30px;
    content: "";
    transform: rotate(14deg);
}

.feature-placeholder::after {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    content: "";
}

.feature-placeholder-hype {
    background: linear-gradient(145deg, #23402c, #6f8b74);
}

.feature-placeholder-display {
    background: linear-gradient(145deg, #353a35, #838b81);
}

.feature-placeholder-figures {
    background: linear-gradient(145deg, #826a43, #c2ad83);
}

.feature-placeholder-lightbox {
    background: linear-gradient(145deg, #111713, #314e39);
}

.feature-placeholder-custom {
    background: linear-gradient(145deg, #29463d, #678377);
}

.feature-big-number,
.feature-symbol,
.feature-file-text {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.96);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
}

.feature-symbol {
    font-size: 5rem;
}

.feature-file-text {
    font-size: 4.4rem;
    letter-spacing: 0.03em;
}

.feature-placeholder-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--charcoal);
    background: rgba(255,255,255,0.88);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ==========================================================
   LIGHTBOX PLACEHOLDER
   ========================================================== */

.lightbox-demo {
    position: relative;
    z-index: 2;
    display: grid;
    width: 210px;
    height: 140px;
    place-items: center;
    border: 7px solid rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow:
        0 0 22px rgba(255,255,255,0.3),
        0 0 50px rgba(255,255,255,0.12);
}

.lightbox-demo span {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 800;
}

/* ==========================================================
   PRODUCT TAGS
   ========================================================== */

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 22px 0 24px;
}

.product-tags span {
    padding: 6px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #565d56;
    background: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    font-weight: 700;
}

.product-feature-lightboxes .product-tags span {
    border-color: rgba(255,255,255,0.17);
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.05);
}

.product-feature-lightboxes .button-primary {
    color: var(--forest-dark);
    background: var(--white);
}

.product-feature-lightboxes .button-primary:hover {
    background: var(--cream);
}

/* ==========================================================
   PRODUCTS FINAL CTA
   ========================================================== */

.products-final-cta {
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ==========================================================
   PRODUCTS PAGE TABLET
   ========================================================== */

@media (max-width: 950px) {
    .product-feature-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .product-feature-reverse .product-feature-image,
    .product-feature-reverse .product-feature-copy {
        order: initial;
    }

    .product-feature-copy {
        max-width: 720px;
    }

    .product-feature-image {
        max-width: 650px;
    }
}

/* ==========================================================
   PRODUCTS PAGE MOBILE
   ========================================================== */

@media (max-width: 760px) {
    .products-hero {
        padding: 38px 0 36px;
    }

    .products-hero h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .product-feature {
        padding: 52px 0;
    }

    .product-feature-grid {
        gap: 28px;
    }

    .feature-placeholder {
        min-height: 290px;
    }

    .feature-placeholder::before {
        width: 145px;
        height: 145px;
    }

    .feature-placeholder::after {
        width: 225px;
        height: 225px;
    }

    .feature-big-number {
        font-size: 5rem;
    }

    .feature-symbol {
        font-size: 4rem;
    }

    .feature-file-text {
        font-size: 3.6rem;
    }

    .lightbox-demo {
        width: 170px;
        height: 110px;
    }

    .lightbox-demo span {
        font-size: 2.4rem;
    }

    .product-feature-copy h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }
}

/* ==========================================================
   PRODUCT IMAGE GALLERIES
   ========================================================== */

.product-gallery {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.product-gallery-track {
    position: relative;
}

.product-gallery-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.product-gallery-slide.active {
    position: relative;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.product-gallery .feature-placeholder {
    border-radius: 0;
    box-shadow: none;
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--charcoal);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 14px rgba(0,0,0,0.14);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.product-gallery-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.product-gallery-prev {
    left: 14px;
}

.product-gallery-next {
    right: 14px;
}

.product-gallery-dots {
    position: absolute;
    right: 0;
    bottom: 15px;
    left: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    gap: 7px;
    pointer-events: none;
}

.product-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.58);
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    cursor: pointer;
    pointer-events: auto;
    transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.product-gallery-dot.active {
    width: 23px;
    border-radius: 999px;
    background: var(--white);
}

.feature-placeholder-alt {
    filter: brightness(0.93);
}

/* ==========================================================
   REAL PRODUCT GALLERY IMAGES
   ========================================================== */

.product-gallery-slide img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
}

/* ==========================================================
   PRODUCT GALLERY MOBILE
   ========================================================== */

@media (max-width: 760px) {
    .product-gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.6rem;
    }

    .product-gallery-prev {
        left: 10px;
    }

    .product-gallery-next {
        right: 10px;
    }

    .product-gallery-slide img {
        height: 290px;
    }
}

/* ==========================================================
   PRODUCT GALLERY CLICKABLE IMAGES
   ========================================================== */

.product-gallery-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
}

.product-gallery-open img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.product-gallery-open:hover img {
    transform: scale(1.015);
}

/* ==========================================================
   PRODUCT PHOTO LIGHTBOX
   ========================================================== */

body.lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 10, 0.92);
}

.product-lightbox-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1400px;
    max-height: calc(100vh - 60px);
    align-items: center;
    justify-content: center;
}

.product-lightbox-image-wrap {
    display: flex;
    max-width: calc(100% - 120px);
    max-height: calc(100vh - 60px);
    align-items: center;
    justify-content: center;
}

.product-lightbox-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 60px);
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-lightbox-close {
    position: absolute;
    top: -8px;
    right: 0;
    z-index: 5;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--charcoal);
    background: rgba(255,255,255,0.94);
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
}

.product-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--charcoal);
    background: rgba(255,255,255,0.92);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.product-lightbox-prev {
    left: 0;
}

.product-lightbox-next {
    right: 0;
}

.product-lightbox-close:hover,
.product-lightbox-arrow:hover {
    background: var(--white);
}

/* ==========================================================
   MOBILE LIGHTBOX
   ========================================================== */

@media (max-width: 760px) {
    .product-gallery-open img {
        height: 290px;
    }

    .product-lightbox {
        padding: 15px;
    }

    .product-lightbox-content {
        max-height: calc(100vh - 30px);
    }

    .product-lightbox-image-wrap {
        max-width: 100%;
        max-height: calc(100vh - 30px);
    }

    .product-lightbox-image {
        max-height: calc(100vh - 30px);
    }

    .product-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .product-lightbox-arrow {
        top: auto;
        bottom: 12px;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .product-lightbox-prev {
        left: 12px;
    }

    .product-lightbox-next {
        right: 12px;
    }
}

/* ==========================================================
   ABOUT PAGE
   ========================================================== */

.about-hero {
    padding: 42px 0 70px;
    background: var(--cream);
}

.about-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
    background: var(--charcoal);
    box-shadow: var(--shadow);
}

.about-hero-image > img {
    display: block;
    width: 100%;
    height: auto;
}

.about-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 60px;
    align-items: center;
    padding: 30px 38px 32px;
    border-radius: 0 0 var(--radius-large) var(--radius-large);
    background: var(--charcoal);
    color: var(--white);
    box-shadow: var(--shadow);
}

.about-hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 38px;
    left: 38px;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.about-hero-heading .eyebrow {
    margin: 0 0 9px;
    color: rgba(255,255,255,0.62);
}

.about-hero-card h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.about-hero-intro {
    max-width: 630px;
    margin: 0;
    color: rgba(255,255,255,0.84);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================
   ABOUT STORY
   ========================================================== */

.about-story {
    padding: 95px 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
    align-items: start;
}

.about-story-heading {
    position: sticky;
    top: 130px;
}

.about-story-heading h2,
.about-gile-copy h2,
.about-section-heading h2,
.about-cats-heading h2 {
    margin: 0;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.about-story-copy {
    max-width: 720px;
}

.about-story-copy p {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-story-copy p:last-child {
    margin-bottom: 0;
}

.about-story-copy .about-lead {
    color: var(--charcoal);
    font-size: 1.42rem;
    line-height: 1.6;
    font-weight: 600;
}

/* ==========================================================
   GILE HOLLOW SECTION
   ========================================================== */

.about-gile {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background: var(--charcoal);
    color: var(--white);
}

.about-gile::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
}

.about-gile::after {
    content: "";
    position: absolute;
    right: 120px;
    bottom: -270px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.about-gile-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 90px;
    align-items: center;
}

.about-gile-copy {
    max-width: 720px;
}

.about-gile-copy h2 {
    margin-bottom: 28px;
    color: var(--white);
}

.about-gile-copy > p:not(.eyebrow) {
    margin: 0 0 22px;
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-gile-copy > p:last-child {
    margin-bottom: 0;
}

.about-gile-mark {
    display: flex;
    min-height: 310px;
    padding: 45px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-large);
    background: rgba(255,255,255,0.04);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.about-gile-mark span {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
}

.about-gile-mark strong {
    display: block;
    margin: 5px 0;
    font-size: clamp(3rem, 6vw, 5.25rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.about-gile-mark .about-gile-small {
    margin-bottom: 5px;
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
}

/* ==========================================================
   ABOUT SHOP
   ========================================================== */

.about-shop {
    padding: 100px 0;
    background: var(--cream);
}

.about-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.about-section-heading h2 {
    margin-bottom: 18px;
}

.about-section-heading > p:last-child {
    margin: 0;
    font-size: 1.15rem;
}

.about-shop-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-info-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 38px;
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-card-number {
    display: inline-block;
    margin-bottom: 55px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.about-info-card h3 {
    margin: 0 0 18px;
    font-size: 1.45rem;
}

.about-info-card p {
    margin: 0;
    line-height: 1.75;
}

/* ==========================================================
   SHOP CATS
   ========================================================== */

.about-cats {
    padding: 100px 0;
    background: var(--white);
}

.about-cats-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 90px;
    align-items: start;
}

.about-cats-heading h2 {
    margin-bottom: 18px;
}

.about-cats-heading > p:not(.eyebrow):not(.about-team-note) {
    margin: 0;
    font-size: 1.1rem;
}

.about-cats-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.about-cat {
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-large);
    background: var(--cream);
}

/* Circular profile photos */

.about-cat-photo {
    width: 165px;
    height: 165px;
    margin: 0 auto 28px;
    overflow: hidden;
    border: 6px solid var(--white);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-cat-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-cat-name {
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    gap: 12px;
}

.about-cat-name h3 {
    margin: 0;
    font-size: 1.5rem;
}

.about-cat p {
    margin: 0;
    line-height: 1.75;
}

.cat-collar {
    display: block;
    width: 34px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
}

.cat-collar-blue {
    background: #3976b8;
}

.cat-collar-red {
    background: #b63d32;
}

/* Team note lives in the left heading column on desktop */

.about-team-note {
    margin: 30px 0 0;
    padding: 24px 26px;
    border-left: 4px solid var(--green);
    background: rgba(0,0,0,0.035);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* ==========================================================
   ABOUT FINAL CTA
   ========================================================== */

.about-final-cta {
    margin-top: 0;
}

/* ==========================================================
   ABOUT RESPONSIVE
   ========================================================== */

@media (max-width: 1000px) {

    .about-hero-card {
        gap: 38px;
        padding: 28px 32px 30px;
    }

    .about-hero-card h1 {
        font-size: clamp(2rem, 4.6vw, 3rem);
    }

    .about-story-grid,
    .about-gile-inner,
    .about-cats-grid {
        gap: 55px;
    }

    .about-shop-cards {
        gap: 16px;
    }

    .about-info-card {
        padding: 30px;
    }

    .about-cat {
        padding: 28px;
    }

    .about-cat-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto 26px;
    }
}

@media (max-width: 760px) {

    .about-hero {
        padding: 24px 0 55px;
    }

    .about-hero-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }

    .about-hero-card::before {
        right: 24px;
        left: 24px;
    }

    .about-hero-card h1 {
        font-size: clamp(2.15rem, 10vw, 3.1rem);
    }

    .about-hero-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-story,
    .about-gile,
    .about-shop,
    .about-cats {
        padding: 70px 0;
    }

    .about-story-grid,
    .about-gile-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-story-heading {
        position: static;
    }

    .about-shop-cards {
        grid-template-columns: 1fr;
    }

    .about-info-card {
        min-height: 0;
    }

    .about-card-number {
        margin-bottom: 32px;
    }

    .about-gile-mark {
        min-height: 240px;
    }

    /* ------------------------------------------------------
       SHOP MANAGEMENT MOBILE ORDER

       1. Shop Management / heading / supervision text
       2. Simon & Anubis cards
       3. Team note
       ------------------------------------------------------ */

    .about-cats-grid {
        display: flex;
        flex-direction: column;
        gap: 38px;
    }

    .about-cats-heading {
        display: contents;
    }

    .about-cats-heading .eyebrow {
        order: 1;
    }

    .about-cats-heading h2 {
        order: 2;
    }

    .about-cats-heading > p:not(.eyebrow):not(.about-team-note) {
        order: 3;
    }

    .about-cats-copy {
        order: 4;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-team-note {
        order: 5;
        margin: 0;
    }

    .about-cat {
        padding: 26px;
    }

    .about-cat-photo {
        width: 145px;
        height: 145px;
        margin: 0 auto 24px;
    }
}

/* ==========================================================
   START YOUR PROJECT PAGE
   ========================================================== */

.project-hero {
    padding: 70px 0 55px;
    background: var(--cream);
}

.project-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 70px;
    align-items: end;
}

.project-hero-copy {
    max-width: 760px;
}

.project-hero-copy h1 {
    max-width: 760px;
    margin: 0 0 22px;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.project-hero-copy > p:last-child {
    max-width: 650px;
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.75;
}

.project-hero-note {
    display: flex;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow);
}

.project-hero-note-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 1.15rem;
}

.project-hero-note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.project-hero-note p {
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================
   BUILDER
   ========================================================== */

.project-builder-section {
    padding: 0 0 100px;
    background: var(--cream);
}

.project-builder {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow: var(--shadow);
}

.project-honeypot {
    position: absolute;
    left: -99999px;
}

/* ==========================================================
   PROGRESS
   ========================================================== */

.project-progress {
    padding: 26px 38px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    background: rgba(0,0,0,0.018);
}

.project-progress-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 0.84rem;
}

.project-step-label {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-step-name {
    color: rgba(0,0,0,0.55);
}

.project-progress-track {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0,0,0,0.08);
}

.project-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--green);
    transition: width 0.35s ease;
}

.project-progress-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 11px;
    color: rgba(0,0,0,0.4);
    font-size: 0.72rem;
}

.project-progress-steps span:nth-child(2),
.project-progress-steps span:nth-child(3) {
    text-align: center;
}

.project-progress-steps span:last-child {
    text-align: right;
}

.project-progress-steps span.active {
    color: var(--charcoal);
    font-weight: 700;
}

/* ==========================================================
   STEPS
   ========================================================== */

.project-step {
    display: none;
    padding: 55px 58px 58px;
}

.project-step.active {
    display: block;
    animation: projectStepIn 0.25s ease;
}

@keyframes projectStepIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-step-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.project-step-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.project-step-heading > p:last-child {
    max-width: 680px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================
   PROJECT TYPE CARDS
   ========================================================== */

.project-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-type-card {
    position: relative;
    display: flex;
    min-height: 220px;
    padding: 28px;
    flex-direction: column;
    border: 2px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-large);
    background: var(--cream);
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.project-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.project-type-card:hover,
.project-type-card.selected {
    border-color: var(--green);
    background: var(--white);
    transform: translateY(-2px);
}

.project-type-card:focus-within {
    outline: 3px solid rgba(0,0,0,0.14);
    outline-offset: 3px;
}

.project-type-check {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.project-type-card.selected .project-type-check {
    opacity: 1;
    transform: scale(1);
}

.project-type-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 32px;
    place-items: center;
    border-radius: 14px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.project-type-card strong {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.project-type-card > span:last-child {
    color: rgba(0,0,0,0.62);
    font-size: 0.94rem;
    line-height: 1.55;
}

.project-type-grid.project-validation-error {
    animation: projectShake 0.35s ease;
}

@keyframes projectShake {
    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* ==========================================================
   FORM FIELDS
   ========================================================== */

.project-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.project-field {
    min-width: 0;
}

.project-field-full {
    grid-column: 1 / -1;
}

.project-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 700;
}

.project-field .required {
    color: var(--green);
}

.project-field input,
.project-field select,
.project-field textarea {
    width: 100%;
    min-width: 0;
    padding: 15px 16px;
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 10px;
    outline: none;
    background: var(--white);
    color: var(--charcoal);
    font: inherit;
    font-size: 1rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.project-field textarea {
    min-height: 170px;
    resize: vertical;
    line-height: 1.6;
}

.project-field input:focus,
.project-field select:focus,
.project-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.project-field-help {
    display: block;
    margin-top: 7px;
    color: rgba(0,0,0,0.5);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ==========================================================
   FILE UPLOAD
   ========================================================== */

.project-upload {
    margin-top: 42px;
}

.project-upload-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 18px;
}

.project-upload-heading h3 {
    margin: 0 0 5px;
    font-size: 1.3rem;
}

.project-upload-heading p {
    margin: 0;
    color: rgba(0,0,0,0.58);
    line-height: 1.55;
}

.project-upload-heading > span {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--cream);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-dropzone {
    display: flex;
    min-height: 210px;
    padding: 35px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0,0,0,0.16);
    border-radius: var(--radius-large);
    background: var(--cream);
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.project-dropzone:hover,
.project-dropzone.dragging {
    border-color: var(--green);
    background: var(--white);
}

.project-dropzone input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.project-upload-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    place-items: center;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    font-size: 1.35rem;
}

.project-dropzone strong {
    margin-bottom: 5px;
}

.project-dropzone > span:not(.project-upload-icon) {
    color: rgba(0,0,0,0.55);
    font-size: 0.9rem;
}

.project-dropzone small {
    margin-top: 6px;
    color: rgba(0,0,0,0.4);
}

.project-file-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.project-file-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 14px;
    border-radius: 8px;
    background: rgba(0,0,0,0.035);
    font-size: 0.86rem;
}

.project-file-item span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-file-item small {
    flex: 0 0 auto;
    color: rgba(0,0,0,0.48);
}

/* ==========================================================
   STEP BUTTONS
   ========================================================== */

.project-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 45px;
}

.project-step-actions-end {
    justify-content: flex-end;
}

.project-back {
    border: 1px solid rgba(0,0,0,0.12);
    background: transparent;
    color: var(--charcoal);
}

.project-submit:disabled {
    opacity: 0.55;
    cursor: wait;
}

/* ==========================================================
   REVIEW
   ========================================================== */

.project-review {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.project-review-card {
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    background: var(--cream);
}

.project-review-wide {
    grid-column: span 2;
}

.project-review-label {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-review-card strong {
    display: block;
    font-size: 1rem;
}

.project-review-card p {
    margin: 0;
    line-height: 1.65;
}

.project-submit-note {
    display: flex;
    gap: 15px;
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 4px solid var(--green);
    background: rgba(0,0,0,0.03);
}

.project-submit-note > span {
    color: var(--green);
    font-weight: 800;
}

.project-submit-note p {
    margin: 0;
    line-height: 1.65;
}

.project-form-error {
    margin-top: 15px;
    color: #9d2c22;
    font-weight: 700;
}

/* ==========================================================
   HELP SECTION
   ========================================================== */

.project-help {
    padding: 85px 0;
    background: var(--charcoal);
    color: var(--white);
}

.project-help-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: center;
}

.project-help .eyebrow {
    color: rgba(255,255,255,0.6);
}

.project-help h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.project-help-inner > p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 1.08rem;
    line-height: 1.8;
}

/* ==========================================================
   PROJECT PAGE RESPONSIVE
   ========================================================== */

@media (max-width: 1000px) {

    .project-hero-inner {
        gap: 40px;
    }

    .project-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-step {
        padding: 45px 40px;
    }

    .project-review {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {

    .project-hero {
        padding: 45px 0 35px;
    }

    .project-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project-hero-copy h1 {
        font-size: clamp(2.6rem, 13vw, 4.2rem);
    }

    .project-hero-note {
        padding: 22px;
    }

    .project-builder-section {
        padding-bottom: 70px;
    }

    .project-progress {
        padding: 22px 20px 20px;
    }

    .project-progress-steps {
        display: none;
    }

    .project-step {
        padding: 38px 22px 32px;
    }

    .project-step-heading {
        margin-bottom: 30px;
    }

    .project-type-grid {
        grid-template-columns: 1fr;
    }

    .project-type-card {
        min-height: 0;
        padding: 22px;
    }

    .project-type-icon {
        margin-bottom: 22px;
    }

    .project-fields {
        grid-template-columns: 1fr;
    }

    .project-field-full {
        grid-column: auto;
    }

    .project-upload-heading {
        flex-direction: column;
        gap: 12px;
    }

    .project-dropzone {
        min-height: 190px;
        padding: 28px 20px;
    }

    .project-step-actions {
        flex-direction: column-reverse;
    }

    .project-step-actions .button {
        width: 100%;
        text-align: center;
    }

    .project-step-actions-end {
        flex-direction: column;
    }

    .project-review {
        grid-template-columns: 1fr;
    }

    .project-review-wide {
        grid-column: auto;
    }

    .project-help {
        padding: 70px 0;
    }

    .project-help-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .project-step.active {
        animation: none;
    }

    .project-progress-bar,
    .project-type-card,
    .project-type-check {
        transition: none;
    }
}