/* =========================================================
   JHWC — CLEAN MASTER STYLESHEET
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --green: #2F5D3A;
    --green-dark: #21452B;
    --gold: #C99A3D;
    --cream: #F5F0E5;
    --sand: #E7DDCA;
    --ink: #20231F;
    --muted: #6B6A61;
    --white: #FFFFFF;
    --line: #D7D1C5;
    --paper: #FBFAF7;
    --terra: #9B5B43;
    --lime: #C7D98B;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 15px/1.7 "DM Sans", sans-serif;
}

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

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

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

section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

section h2,
section h3 {
    margin-top: 0;
}

/* =========================================================
   2. ANNOUNCEMENT BAR
   ========================================================= */

.announcement {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    font-size: 9px;
    letter-spacing: 2px;
    padding: 8px;
}

.announcement span {
    color: var(--lime);
    padding: 0 8px;
}

/* =========================================================
   3. HEADER
   ========================================================= */

.site-header {
    height: 92px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 250, 247, 0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.brand img {
    width: 205px;
    height: auto;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 28px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.3px;
}

.nav-cta,
.btn {
    display: inline-block;
    padding: 13px 19px;
    font-size: 10px;
    letter-spacing: 1.4px;
    border: 0;
    cursor: pointer;
}

.nav-cta {
    background: var(--green);
    color: var(--white);
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    font-size: 25px;
    cursor: pointer;
}

/* Header social icons */

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 25px;
}

.header-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 13px;
    transition: color .25s ease, transform .25s ease;
}

.header-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}



/* Image */


.image-tag {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: var(--white);
    padding: 9px 12px;
    font-size: 9px;
    letter-spacing: 1.5px;
}


.eyebrow {
    margin: 0;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 2.4px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
}



.hero h1 em,
h2 em {
    color: var(--terra);
    font-weight: 500;
}

.lead {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
}



.btn.dark {
    background: var(--ink);
    color: var(--white);
}

.btn.light {
    background: var(--white);
    color: var(--ink);
}

.text-link {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.5px;
    transition: color .25s ease, transform .25s ease;
}

.text-link:hover {
    color: var(--gold);
}



/* =========================================================
   5. GENERAL SECTION SPACING
   ========================================================= */

.intro,
.collection,
.gallery-section,
.craft,
.numbers,
.contact {
    padding: 80px 30px;
    max-width: 1500px;
    margin: 0 auto;
}

.collection,
.gallery-section,
.numbers {
    max-width: none;
}

/* =========================================================
   6. INTRO / TEAM
   ========================================================= */

.intro {
    background: var(--cream);
}

.intro .section-no {
    width: 100%;
    text-align: center;
    margin: 0 0 30px;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
}

.team-image {
    width: 100%;
    margin: 0 0 25px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.team-image:hover img {
    transform: scale(1.015);
}

.intro-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 30px;
    margin: 0;
    padding: 0;
}

.story-column {
    width: 100%;
    margin: 0;
    padding: 0;
}

.story-column h2 {
    margin: 0 0 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
}

.story-column h2 i {
    font-style: italic;
    color: var(--green);
}

.story-column p {
    max-width: 650px;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.story-column .text-link {
    display: inline-block;
    margin-top: 5px;
    font-weight: 700;
    transition: color .25s ease, transform .25s ease;
}

.story-column .text-link:hover {
    transform: translateX(4px);
}

/* =========================================================
   7. TYPOGRAPHY
   ========================================================= */

h2 {
    font: 600 clamp(40px, 5.2vw, 70px) / 1.05 "Playfair Display", Georgia, serif;
    letter-spacing: -2.5px;
    margin: 15px 0 30px;
}

.intro p,
.contact p {
    color: var(--muted);
    max-width: 750px;
}

/* =========================================================
   8. FEATURE PHOTO
   ========================================================= */

.feature-photo {
    max-width: none;
    background: var(--ink);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
}

.feature-copy {
    padding: 11%;
    align-self: center;
}

.feature-copy p {
    color: #BBB;
}

.feature-photo img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* =========================================================
   9. COLLECTION
   ========================================================= */

.collection {
    background: var(--cream);
}

.section-heading {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    align-items: start;
    margin-bottom: 40px;
}

.section-heading > div {
    min-width: 0;
}

.section-heading > p {
    color: var(--muted);
    max-width: 720px;
    margin: 14px 0 0;
    min-width: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-auto-rows: 300px;
    gap: 14px;
}

.category {
    position: relative;
    overflow: hidden;
    background: #DDD;
}

.category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.category:hover img {
    transform: scale(1.04);
}

.category::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0, 0, 0, .7));
}

.category > div {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 22px;
    color: var(--white);
}

.category span {
    font-size: 9px;
    letter-spacing: 2px;
}

.category h3 {
    font: 28px Georgia, serif;
    margin: 4px 0;
}

.category p {
    font-size: 10px;
    margin: 0;
    color: #EEE;
}

.category.large {
    grid-row: span 2;
}

/* Collection card slideshow */

.category-slider .card-slides,
.category-slider .card-slide,
.category-shade {
    position: absolute;
    inset: 0;
}

.category-slider .card-slides {
    overflow: hidden;
}

.category-slider .card-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .7s ease, transform 5.5s ease;
}

.category-slider .card-slide.active {
    opacity: 1;
    transform: scale(1);
}

.category-slider .category-shade {
    z-index: 2;
    background: linear-gradient(transparent 38%, rgba(0, 0, 0, .72));
    pointer-events: none;
}

.category-slider .category-content {
    z-index: 4;
}

.card-arrow {
    position: absolute;
    z-index: 6;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    background: rgba(0, 0, 0, .22);
    color: var(--white);
    font-size: 27px;
    line-height: 30px;
    cursor: pointer;
    opacity: 0;
    transition: .25s;
    backdrop-filter: blur(4px);
}

.category-slider:hover .card-arrow,
.category-slider:focus-within .card-arrow {
    opacity: 1;
}

.card-arrow:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--gold);
}

.card-arrow.prev {
    left: 16px;
}

.card-arrow.next {
    right: 16px;
}

.card-dots {
    position: absolute;
    z-index: 6;
    bottom: 16px;
    right: 18px;
    display: flex;
    gap: 5px;
}

.card-dot {
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: .25s;
}

.card-dot.active {
    width: 19px;
    border-radius: 8px;
    background: var(--gold);
}

/* =========================================================
   10. GALLERY
   ========================================================= */

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    grid-auto-rows: 270px;
    gap: 12px;
}

.gallery-item {
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #EEE;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(0, 0, 0, .53));
}

.gallery-item figcaption {
    position: absolute;
    z-index: 2;
    bottom: 16px;
    left: 18px;
    color: var(--white);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================================
   11. CUSTOM
   ========================================================= */

.custom {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--green);
    color: var(--white);
}

.custom-image {
    min-height: 620px;
}

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

.custom-copy {
    padding: 12%;
    align-self: center;
}

.custom-copy p:not(.eyebrow) {
    color: #DFE7DA;
    max-width: 540px;
}

/* =========================================================
   12. CRAFT
   ========================================================= */

.craft {
    background: var(--paper);
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.craft-grid article {
    margin: 0;
}

.craft-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.craft-grid h3 {
    font: 25px Georgia, serif;
    margin: 17px 0 3px;
}

.craft-grid p {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
}

/* =========================================================
   13. NUMBERS
   ========================================================= */

.numbers {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 7vw;
    background: var(--cream);
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.number-grid div {
    padding: 25px 15px;
    border-right: 1px solid var(--line);
}

.number-grid strong {
    display: block;
    font: 42px Georgia, serif;
}

.number-grid span {
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================================
   14. QUOTE
   ========================================================= */

.quote {
    padding: 90px 8%;
    background: var(--terra);
    color: var(--white);
    text-align: center;
    font: clamp(40px, 6vw, 80px) Georgia, serif;
}

.quote em {
    color: #F6D8C9;
}

/* =========================================================
   15. RESOURCES
   ========================================================= */

.resources {
    padding: 110px 8%;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 7vw;
    align-items: center;
}

.resources > div > p:not(.eyebrow) {
    color: var(--muted);
    max-width: 500px;
}

.resource-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.resource-card {
    min-height: 145px;
    padding: 24px;
    background: var(--white);
    border: 1px solid #DED8CC;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: .25s;
}

.resource-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
}

.resource-card span {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--green);
    font-weight: 700;
}

.resource-card strong {
    font: 21px Georgia, serif;
    margin: 7px 0;
}

.resource-card small {
    font-size: 10px;
    color: var(--muted);
}

.resource-card.download {
    background: #75AA6C;
    color: var(--white);
    border-color: #75AA6C;
}

.resource-card.download span,
.resource-card.download small {
    color: #E2ECD9;
}

.resource-card.website {
    grid-column: span 2;
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.resource-card.website span,
.resource-card.website small {
    color: #BBB;
}

.resource-card.download:hover {
    background: var(--green-dark);
}

/* =========================================================
   16. CONTACT
   ========================================================= */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.7;
}

.contact-details p {
    border-top: 1px solid var(--line);
    padding-top: 12px;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-details b {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact form {
    display: grid;
    gap: 22px;
}

.contact label {
    font-size: 9px;
    letter-spacing: 1.7px;
}

/* Contact form */

#contactForm {
    width: 100%;
}

#contactForm label {
    display: block;
    margin-bottom: 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--green);
    text-transform: uppercase;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    display: block;
    width: 100%;
    margin-top: 9px;
    padding: 14px 15px;
    background: var(--white);
    border: 1px solid #C9C3B5;
    border-radius: 0;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color .25s ease, box-shadow .25s ease;
}

#contactForm input,
#contactForm select {
    height: 50px;
}

#contactForm textarea {
    min-height: 140px;
    resize: vertical;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #99958B;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(47, 93, 58, .08);
}

#contactForm select {
    cursor: pointer;
}

#contactForm .btn {
    margin-top: 5px;
}

.form-message {
    margin-top: 20px;
    padding: 15px 18px;
    font-size: 13px !important;
    line-height: 1.6;
    display: none;
}

.form-message.success {
    display: block;
    color: var(--green) !important;
    background: #EEF4ED;
    border-left: 3px solid var(--green);
}

.form-message.error {
    display: block;
    color: #9B3B32 !important;
    background: #FAEEEE;
    border-left: 3px solid #9B3B32;
}

/* Contact typography */

.contact-section h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-section h2 em {
    font-style: italic;
}

.contact-section > div > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
}

.contact-section .eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* =========================================================
   17. SOCIAL ICONS
   ========================================================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    border: 1px solid #D7D1C5;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s, background .25s, border-color .25s;
}

.social-icons a:hover {
    transform: translateY(-4px);
    background: var(--gold);
    border-color: var(--gold);
}

.social-icons img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social-icons a i,
.footer-social a i {
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 9px;
    align-items: center;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: .25s;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* =========================================================
   18. LOCATION / MAP
   ========================================================= */

.location-map {
    display: grid;
    grid-template-columns: .8fr 1.7fr;
    min-height: 520px;
    background: var(--cream);
}

.map-heading {
    padding: 90px 10%;
    align-self: center;
}

.map-heading p:not(.eyebrow) {
    color: var(--muted);
    max-width: 430px;
    margin-bottom: 28px;
}

.map-frame {
    min-height: 520px;
    background: #DDD;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

/* Map link card */

.map-link-card {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(28, 31, 26, .78), rgba(28, 31, 26, .78)),
        radial-gradient(circle at 25% 25%, #2F5D3A 0, #21452B 35%, #20231F 75%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.map-link-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(90deg, transparent 49.5%, #FFF 50%, transparent 50.5%),
        linear-gradient(transparent 49.5%, #FFF 50%, transparent 50.5%);
    background-size: 90px 90px;
    transform: rotate(-12deg) scale(1.4);
}

.map-link-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 45px 30px;
}

.map-pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    font-size: 27px;
    margin-bottom: 20px;
}

.map-link-inner p {
    font-size: 9px;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin: 0 0 10px;
}

.map-link-inner h3 {
    font: 500 clamp(30px, 4vw, 48px) / 1.05 "Playfair Display", Georgia, serif;
    margin: 0 0 12px;
}

.map-link-inner span:not(.map-pin) {
    display: block;
    color: #D7D7D2;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.map-link-inner a {
    display: inline-block;
    padding: 14px 22px;
    background: var(--white);
    color: var(--ink);
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: .25s;
}

.map-link-inner a:hover {
    background: var(--gold);
    color: var(--white);
}

/* =========================================================
   19. FOOTER
   ========================================================= */

footer {
    background: var(--ink);
    color: var(--white);
    padding: 50px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 35px;
    align-items: center;
}

footer img {
    width: 180px;
    background: var(--white);
    padding: 7px;
}

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

.footer-links {
    display: flex;
    gap: 18px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p,
footer small {
    color: #AAA;
    font-size: 10px;
}

.footer-links a:hover {
    color: var(--gold);
}

/* =========================================================
   20. LIGHTBOX
   ========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .87);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 5%;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox button {
    position: absolute;
    right: 25px;
    top: 15px;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
}

/* =========================================================
   21. GENERAL HOVER FINISHING
   ========================================================= */

a:hover {
    border-color: var(--gold);
}

.collection-arrow:hover {
    border-color: var(--gold);
}

/* =========================================================
   22. RESPONSIVE — LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .intro {
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 100px;
    }

    .team-image img {
        height: 560px;
    }

    .intro-content {
        column-gap: 80px;
    }

    .story-column h2 {
        font-size: 40px;
    }

    .story-column p {
        font-size: 17px;
        line-height: 1.8;
    }
}

/* =========================================================
   23. RESPONSIVE — LAPTOP
   ========================================================= */

@media (max-width: 1200px) {


    .team-image img {
        height: 450px;
    }

    .intro-content {
        column-gap: 45px;
    }

    .story-column h2 {
        font-size: 32px;
    }

    .story-column p {
        font-size: 15px;
    }
}

/* =========================================================
   24. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .site-header nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header nav.open {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .header-social {
        margin-left: auto;
        margin-right: 15px;
    }



    .feature-photo,
    .custom {
        grid-template-columns: 1fr;
    }

    .feature-photo img {
        height: 480px;
    }

    .intro {
        padding: 60px 25px;
    }

    .intro-content {
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }

    .section-heading > p {
        max-width: 100%;
        margin-top: 0;
    }

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

    .category.large {
        grid-row: span 1;
    }

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

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

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

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

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

    .location-map {
        grid-template-columns: 1fr;
    }

    .map-heading {
        padding: 75px 7%;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 420px;
    }

    .map-link-card {
        min-height: 420px;
    }

    footer {
        grid-template-columns: 1fr 1fr;
    }

    .card-arrow {
        opacity: .9;
    }
}

/* =========================================================
   25. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .site-header {
        height: 78px;
        padding: 0 5%;
    }

    .site-header nav {
        top: 78px;
    }

    .brand img {
        width: 175px;
    }

    .header-social {
        gap: 4px;
        margin-right: 8px;
    }

    .header-social a {
        width: 27px;
        height: 27px;
        font-size: 11px;
    }

    .intro,
    .collection,
    .gallery-section,
    .craft,
    .numbers,
    .contact {
        padding: 55px 15px;
    }

    .intro {
        display: block;
    }

    .team-image {
        margin-bottom: 20px;
    }

    .team-image img {
        height: 330px;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-column h2 {
        font-size: 29px;
        margin-bottom: 15px;
    }

    .story-column p {
        max-width: none;
        font-size: 15px;
        line-height: 1.75;
    }

    .category-grid,
    .gallery-grid,
    .craft-grid,
    .contact-details {
        grid-template-columns: 1fr;
    }

    .category.large {
        grid-row: auto;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

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

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

    .resource-card.website {
        grid-column: span 2;
    }

    .contact-section h2 {
        font-size: 38px;
    }

    .contact-section > div > p:not(.eyebrow) {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-details p {
        font-size: 16px;
    }

    .social-icons {
        gap: 7px;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }

    .map-heading {
        padding: 65px 7%;
    }

    .map-link-card {
        min-height: 360px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 360px;
    }

    .map-link-inner {
        padding: 30px 20px;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 45px 7%;
    }

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

    .footer-social {
        gap: 7px;
    }


    .image-tag {
        left: 12px;
        bottom: 12px;
        padding: 7px 9px;
        font-size: 8px;
    }



    .card-arrow {
        width: 34px;
        height: 34px;
        font-size: 23px;
    }

    .card-dots {
        bottom: 13px;
        right: 13px;
    }

    .resources {
        padding: 65px 15px;
    }
}

/* =========================================================
   26. RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .header-social a:nth-child(1),
    .header-social a:nth-child(2) {
        display: none;
    }

    .header-social {
        gap: 2px;
        margin-right: 7px;
    }

    .header-social a {
        width: 25px;
        height: 25px;
    }

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

    .resource-card.website {
        grid-column: auto;
    }

    .social-icons {
        gap: 7px;
    }



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

    .number-grid div {
        min-height: 110px;
    }
}



    .intro {
        padding-left: 12px;
        padding-right: 12px;
    }

    .team-image img {
        height: 240px;
    }

    .story-column h2 {
        font-size: 25px;
    }
}

/* =========================================================
   END OF JHWC MASTER STYLESHEET
   ========================================================= */


/* =========================================================
   FINAL SECTION-HEADING ALIGNMENT
   Collection, Gallery and Our Craft
   ========================================================= */

.collection .section-heading,
.gallery-section .section-heading,
.craft .section-heading {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: 35px;
    align-items: start;
}

.collection .section-heading > p,
.gallery-section .section-heading > p,
.craft .section-heading > p {
    max-width: 720px;
    margin: 14px 0 0;
}

@media (max-width: 900px) {
    .collection .section-heading,
    .gallery-section .section-heading,
    .craft .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection .section-heading > p,
    .gallery-section .section-heading > p,
    .craft .section-heading > p {
        max-width: 100%;
        margin-top: 0;
    }
}


/* =========================================================
   CENTER ALL SECTION LABELS
   ========================================================= */

.section-no,
.eyebrow {
    display: block;
    width: 100%;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center section labels across the full section */
.section-no {
    display: block;
    width: 100%;
    text-align: center !important;
    margin: 0 auto 30px auto !important;
}

/* =========================================================
   RESOURCES — CENTER SECTION LABEL
   ========================================================= */

.resources {
    grid-template-columns: 1fr 1.5fr;
}

.resources > .section-no {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center !important;
    margin: 0 0 35px !important;
}

/* Keep the two main content areas below the centered title */
.resources-content {
    align-self: center;
}

.resources .resource-grid {
    align-self: center;
}

@media (max-width: 900px) {
    .resources > .section-no {
        grid-column: 1;
        margin-bottom: 30px !important;
    }
}

/* =========================================================
   CONTACT — CENTER SECTION LABEL
   ========================================================= */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
}

/* Section label spans the full width */
.contact > .section-no {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center !important;
    margin: 0 0 5px !important;
}

/* Left content */
.contact-content {
    align-self: start;
}

/* Contact form */
.contact > form {
    align-self: start;
}

@media (max-width: 900px) {

    .contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact > .section-no {
        grid-column: 1;
        margin-bottom: 5px !important;
    }
}

/* =========================================================
   JHWC — REDUCE SPACE BEFORE SECTION LABELS
   ========================================================= */

.section-no {
    display: block;
    width: 100%;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Reduce the empty space before each section label */
.intro,
.collection,
.gallery-section,
.craft,
.resources,
.contact {
    padding-top: 30px !important;
    margin-top: 0 !important;
}

/* Contact section specifically */
.contact > .section-no {
    grid-column: 1 / -1;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Resources section specifically */
.resources > .section-no {
    grid-column: 1 / -1;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Keep mobile spacing compact */
@media (max-width: 900px) {
    .intro,
    .collection,
    .gallery-section,
    .craft,
    .resources,
    .contact {
        padding-top: 25px !important;
    }

    .section-no {
        margin-bottom: 18px !important;
    }
}

/* Reduce space between CONTACT label and content */
.contact > .section-no {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.contact-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.contact-content h2 {
    margin-top: 0 !important;
}

/* ===== FIX CONTACT SECTION SPACING ===== */

.contact {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 10vw !important;
    row-gap: 0 !important;
}

/* Center JHWC_06 / CONTACT */
.contact > .section-no {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

/* Remove space below the label */
.contact-content {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove default heading space */
.contact-content h2 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Keep form aligned with contact content */
.contact > #contactForm {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Mobile */
@media (max-width: 900px) {
    .contact {
        grid-template-columns: 1fr !important;
        column-gap: 0 !important;
        row-gap: 25px !important;
    }

    .contact > .section-no {
        grid-column: 1 !important;
        margin: 0 !important;
    }

    .contact-content,
    .contact > #contactForm {
        margin-top: 0 !important;
    }
}


/* =========================================================
   JHWC — CONSISTENT SECTION LABELS
   ========================================================= */

.section-no {
    display: block !important;
    width: 100% !important;
    grid-column: 1 / -1 !important;

    text-align: center !important;

    margin: 0 0 20px 0 !important;
    padding: 0 !important;

    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.12em;
}

/* Keep the content immediately below the label */
.section-no + div {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Sections using a grid */
.intro,
.collection,
.gallery-section,
.craft,
.resources,
.contact {
    row-gap: 0 !important;
}

/* Contact */
.contact > .section-no {
    grid-column: 1 / -1 !important;
}

/* Resources */
.resources > .section-no {
    grid-column: 1 / -1 !important;
}

/* Mobile */
@media (max-width: 900px) {
    .section-no {
        grid-column: 1 !important;
        margin-bottom: 15px !important;
    }
}

/* =====================================================
   JHWC SECTION LABELS
   CENTERED + DOUBLE DOTTED UNDERLINE
   ===================================================== */

.section-no {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 0 0 25px 0 !important;
    padding: 0 !important;
    text-align: center !important;

    color: #4472C4 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
}

/* The text itself */
.section-no span {
    display: inline-block !important;
    position: relative !important;
    padding-bottom: 9px !important;
}

/* First dotted line */
.section-no span::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    border-top: 1px dotted #4472C4;
}

/* Second dotted line */
.section-no span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px dotted #4472C4;
}

/* Contact */
.contact > .section-no {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
}

/* Stay Connected */
.resources > .section-no {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
}

/* Mobile */
@media (max-width: 900px) {
    .section-no {
        grid-column: 1 !important;
        margin-bottom: 20px !important;
    }
}


/* =====================================================
   STAY CONNECTED — TWO COLUMN LAYOUT
   ===================================================== */

.resources {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 70px !important;
    row-gap: 0 !important;
    align-items: center;
}

/* Section title spans both columns */
.resources > .section-no {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: 100% !important;
    margin-bottom: 35px !important;
}

/* LEFT COLUMN */
.resources-content {
    grid-column: 1;
    align-self: center;
}

/* RIGHT COLUMN */
.resources .resource-grid {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-self: center;
}

/* Social icons */
.resources .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 900px) {

    .resources {
        grid-template-columns: 1fr !important;
        row-gap: 30px !important;
    }

    .resources > .section-no {
        grid-column: 1 !important;
        margin-bottom: 20px !important;
    }

    .resources-content,
    .resources .resource-grid {
        grid-column: 1;
    }

    .resources .resource-grid {
        width: 100%;
    }
}

/* =====================================================
   JHWC — SAME LEFT & RIGHT MARGINS FOR ALL SECTIONS
   ===================================================== */

.hero,
.intro,
.collection,
.gallery-section,
.craft,
.resources,
.contact {
    padding-left: 30px !important;
    padding-right: 30px !important;
    box-sizing: border-box !important;
}

/* Mobile */
@media (max-width: 600px) {
    .hero,
    .intro,
    .collection,
    .gallery-section,
    .craft,
    .resources,
    .contact {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* =====================================================
   REAL GOOGLE MAP
   ===================================================== */

/* ===== MAP HEIGHT ===== */

.map-frame {
    height: 3500px !important;
    min-height: 0 !important;
    max-height: 350px !important;
    overflow: hidden !important;
}

.map-frame iframe {
    width: 100% !important;
    height: 350px !important;
    min-height: 0 !important;
    max-height: 350px !important;
    display: block !important;
}


/* Mobile */
@media (max-width: 600px) {
    .map-frame {
        height: 220px !important;
        max-height: 220px !important;
    }

    .map-frame iframe {
        height: 220px !important;
        max-height: 220px !important;
    }
}

/* ===== MAP — SAME MARGINS AS OTHER SECTIONS ===== */

.map-frame {
    margin-left: 30px !important;
    margin-right: 30px !important;
    width: auto !important;
    box-sizing: border-box !important;
}

/* Mobile */
@media (max-width: 600px) {
    .map-frame {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }
}

/* ===== MAP SECTION TO FOOTER ===== */

.map-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.map-section .map-frame {
    margin-bottom: 0 !important;
}

.map-section + footer {
    margin-top: 0 !important;
}

/* ===== REDUCE FOOTER HEIGHT ONLY ===== */

footer {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    min-height: auto !important;
}

footer p {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

footer h1,
footer h2,
footer h3,
footer h4 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

/* Mobile */
@media (max-width: 600px) {
    footer {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

/* =====================================================
   JHWC CONTACT FORM COLORS
   ===================================================== */

#contactForm label {
    color: #75AA6C !important;
    font-weight: 600;
}

/* Input fields */
#contactForm input,
#contactForm select,
#contactForm textarea {
    color: #0070C0 !important;
    border: 1px solid #75AA6C !important;
    background-color: #ffffff;
    outline: none;
}

/* Placeholder text */
#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #0070C0;
    opacity: 0.65;
}

/* When a field is selected */
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: #0070C0 !important;
    box-shadow: 0 0 0 2px rgba(117, 170, 108, 0.15);
}

/* Select options */
#contactForm select {
    color: #0070C0 !important;
}

#contactForm select option {
    color: #0070C0;
    background: #ffffff;
}

/* Submit button */
#contactForm button.btn.dark {
    background-color: #0070C0 !important;
    color: #ffffff !important;
    border: 1px solid #0070C0 !important;
}

/* Button hover */
#contactForm button.btn.dark:hover {
    background-color: #75AA6C !important;
    border-color: #75AA6C !important;
    color: #ffffff !important;
}

/* Success message */
#contactForm .form-message.success {
    color: #75AA6C !important;
}

/* Error message */
#contactForm .form-message.error {
    color: #0070C0 !important;
}

/* =====================================================
   JHWC HERO — FINAL
   ===================================================== */

.hero {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 10px;
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0 30px;
    background: var(--cream);
    overflow: hidden;
}

/* IMAGE COLUMN */
.hero-image {
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
}

/* TEXT COLUMN */
.hero-copy {
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-intro {
    margin: 0 0 15px 0;
    padding: 0;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
    padding-top: 12px;
}

.hero-bottom {
    margin: 10px 0 0 0;
    padding: 0;
}


/* =====================================================
   PHONE
   ===================================================== */

@media (max-width: 700px) {

    .hero {
        display: grid !important;
        grid-template-columns: 40% 60% !important;
        gap: 8px !important;

        width: 100% !important;
        height: 330px !important;
        min-height: 330px !important;
        max-height: 330px !important;

        margin: 0 !important;
        padding: 0 20px !important;

        overflow: hidden !important;
    }

    .hero-image {
        width: 100% !important;
        height: 330px !important;
        min-height: 330px !important;
        max-height: 330px !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }

    .hero-image img {
        width: 100% !important;
        height: 330px !important;
        min-height: 330px !important;
        max-height: 330px !important;

        display: block !important;
        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover !important;
        object-position: center !important;
    }

    .hero-copy {
        width: 100% !important;
        height: 330px !important;
        min-height: 330px !important;
        max-height: 330px !important;

        margin: 0 !important;
        padding: 15px 8px !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;

        overflow: hidden !important;
    }

    .hero-intro {
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;

        margin: 5px 0 8px 0 !important;
        padding: 0 !important;
    }

    .hero-actions a {
        width: 100% !important;
        padding: 7px 4px !important;
        font-size: 8px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .hero-facts {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 5px !important;

        margin: 5px 0 !important;
        padding-top: 8px !important;

        font-size: 7px !important;
        line-height: 1.2 !important;
    }

    .hero-facts strong {
        font-size: 12px !important;
        margin-bottom: 2px !important;
    }

    .hero-bottom {
        margin: 5px 0 0 0 !important;
        padding: 0 !important;
    }

    .hero-bottom p {
        margin: 0 0 5px 0 !important;
        padding: 0 !important;
        font-size: 9px !important;
        line-height: 1.3 !important;
    }

    .hero-bottom .text-link {
        font-size: 8px !important;
    }
}


/* =====================================================
   VERY SMALL PHONES
   ===================================================== */

@media (max-width: 380px) {

    .hero,
    .hero-image,
    .hero-image img,
    .hero-copy {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }

    .hero-copy {
        padding: 12px 7px !important;
    }
}

/* ================================
   JHWC VIDEO SECTION
================================ */

.video-section {
    padding: 80px 5%;
    background: #f8f8f5;
}

.video-section .section-no {
    margin-bottom: 25px;
}

.video-section .section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.video-section .section-heading h2 {
    margin: 0;
    line-height: 1.05;
}

.video-section .section-heading p {
    margin: 0;
    line-height: 1.8;
}


/* TWO COLUMN VIDEO GRID */

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 30px;
}


/* VIDEO CARD */

.video-card {
    background: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}


/* VIDEO */

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* VIDEO TEXT */

.video-content {
    padding: 22px 24px 25px;
}

.video-content h3 {
    margin: 0 0 10px;
    color: #75AA6C;
    font-size: 22px;
    font-weight: 600;
}

.video-content p {
    margin: 0;
    color: #0070C0;
    line-height: 1.7;
}


/* ================================
   TABLET
================================ */

@media (max-width: 800px) {

    .video-section {
        padding: 60px 5%;
    }

    .video-section .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* ================================
   PHONE
================================ */

@media (max-width: 500px) {

    .video-section {
        padding: 45px 4%;
    }

    .video-section .section-heading {
        margin-bottom: 35px;
    }

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

    .video-grid {
        gap: 25px;
    }

    .video-content {
        padding: 18px 20px 22px;
    }

    .video-content h3 {
        font-size: 20px;
    }

}

.moving-fade-text {
    display: inline-block;
    color: #0070C0;
    font-size: 24px;
    font-weight: bold;
    animation: jhwcFade 2s ease-in-out infinite;
}

@keyframes jhwcFade {

    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}