/* ==========================================================================
    TOKENS
========================================================================== */
:root {
    /* Brand colours */
    --color-ink: #181818;
    /* Unifies the old #1a1a1a / #181818 near-duplicates */
    --color-cream: #eeedd9;
    --color-white: #ffffff;
    --color-taupe: #8a816d;
    --color-tan: #cbbca0;
    --color-tan-light: #e3ddcd;
    --color-error: #c0392b;

    /* Stacking order, low to high */
    --z-header: 1000;
    --z-mobile-overlay: 1500;
    --z-mobile-nav: 2000;
    --z-dropdown-menu: 1050;
    --z-field-error: 1100;
    --z-lightbox: 9999;
}

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

body {
    background-color: var(--color-cream);
    margin: 0;
    /* REMOVES the default gap from the outer edges */
    padding: 0;
    /* Clear any extra inner browser spacing */
    overflow-x: hidden;
    /* Backstop against any element (like a third-party embed) rendering
       wider than the viewport and silently shifting the page off-center */
}

/* ==========================================================================
   HEADER
========================================================================== */
/* Keeps the header locked to the top of the viewport */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    z-index: var(--z-header);
    box-sizing: border-box;
}

/* Flexbox layout to push logo left and navigation right */
.header-container {
    max-width: 1600px;
    margin: auto;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0px clamp(30px, 4vw, 70px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Clamps the width of the logo link wrapper */
.logo {
    display: flex;
    align-items: center;
    padding-left: 0px;
}

/* Constrain the size of logo image */
.logo img {
    height: 75px;
    width: 75px;
    display: block;
    object-fit: contain;
    object-position: left;
}

/* Navigation link allignment */
.nav-links {
    display: flex;
    align-items: center;
    margin-left: clamp(40px, 5vw, 80px);
    gap: clamp(30px, 3.5vw, 100px);
}

/* Style the navigation links */
.nav-links a {
    display: flex;
    align-items: center;
    color: var(--color-ink);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.1vw, 17px);
    text-transform: uppercase;
    letter-spacing: 2px;
    height: 90px;
    border-bottom: 2px solid transparent;
    transition: all .25s ease;
    white-space: nowrap;
}

/* Changes colour of navigation links when you hover over it */
.nav-links a:hover {
    border-color: var(--color-ink);
}

.nav-links a:focus-visible,
.hamburger:focus-visible {
    outline: 2px solid var(--color-ink);
    outline-offset: 4px;
}

/* The Active Page Rule: Keeps the line visible on the current page */
.nav-links a.active {
    border-color: var(--color-ink);
}

/* Prevents the floating header from blocking the top of your webpage content */
.header-spacer {
    height: 90px;
}

/* ==========================================================================
   HERO SECTION
========================================================================== */
/* Core container setup */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Takes up x% of the browser screen height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base setup for the background slider container */
.slideshow-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Individual slides setup */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 75%;
    opacity: 0;
    /* Hidden by default */
    animation: imageFade 20s linear infinite;
    /* 20-second loop cycle */
}

/* Stagger the animation timing for each image file */
.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

.slide:nth-child(4) {
    animation-delay: 15s;
}

/* The loop timeline calculations for clean crossfades */
@keyframes imageFade {
    0% {
        opacity: 0;
    }

    6% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    31% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Dark glass layer over images to ensure text contrast */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    /* 45% black transparency tint */
    z-index: 2;
}

/* Text alignment styling */
.hero-content {
    position: relative;
    z-index: 3;
    /* Forces text to float safely over the dark overlay layer */
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 45px;
    line-height: 1.6;
    font-weight: 400;
}

/* Call to Action Button styling */
.hero-btn {
    display: inline-block;
    background-color: transparent;
    /* Transparent body */
    color: var(--color-white);
    /* Crisp white text */
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    /* Matches your header styling */
    letter-spacing: 2px;
    /* Clean letter spacing */
    border: 2px solid var(--color-white);
    /* Sharp white outline boundary */
    border-radius: 0;
    /* Sharp square corners look more premium than round ones */
    transition: all 0.3s ease;
}

/* Colour on hover interactive state */
.hero-btn:hover {
    background-color: var(--color-white);
    color: var(--color-ink);
}

.hero-btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 4px;
}

/* ==========================================================================
   Mobile Navigation
========================================================================== */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    margin-left: auto;
    color: var(--color-ink);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--color-white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    padding-top: 75px;
    transition: right .35s ease;
    z-index: var(--z-mobile-nav);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 42px;
    font-weight: 300;
    color: var(--color-ink);
    cursor: pointer;
    opacity: 0;
    transform: rotate(-90deg);
    transition: opacity .35s ease, transform .35s ease;
}

.mobile-nav.open .close-menu {
    opacity: 1;
    transform: rotate(0deg);
}

.close-menu:hover {
    transform: rotate(90deg);
    color: #777;
}

.close-menu:focus-visible,
.mobile-nav a:focus-visible {
    outline: 2px solid var(--color-ink);
    outline-offset: -2px;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    padding: 20px 35px;
    text-decoration: none;
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #ececec;
    opacity: 0;
    transform: translateX(25px);
    transition: opacity .35s ease, transform .35s ease;
    transition-delay: var(--delay);
}

.mobile-nav.open a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav a:hover {
    background: #f8f8f8;
}

/* ==========================================================================
   MOBILE OVERLAY
========================================================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: var(--z-mobile-overlay);
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   About
========================================================================== */
.about-page-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 120px 40px;
}

.about-inner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "text image"
        "signature image";
    gap: 0 100px;
    align-items: center;
}

.about-text-column {
    grid-area: text;
    max-width: 620px;
    min-width: 0;
}

.sub-badge {
    display: inline-block;
    color: var(--color-taupe);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 20px;
}

.about-text-column h2 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--color-ink);
    margin-bottom: 30px;
    overflow-wrap: break-word;
    hyphens: auto;
}

.lead-text {
    font-size: 23px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
}

.about-text-column p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

.about-signature {
    grid-area: signature;
    margin-top: 50px;
    border-left: 3px solid var(--color-ink);
    padding-left: 22px;
    min-width: 0;
}

.sig-name {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.9;
    color: #555;
}

.sig-title {
    color: #777;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.9;
}

.about-image-column {
    grid-area: image;
    min-width: 0;
}

.about-image-frame {
    overflow: hidden;
}

.about-image-frame img {
    width: 100%;
    display: block;
}

.artisan-focus-section {
    margin-top: 140px;
}

.artisan-inner-box {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 90px;
}

.quote-mark {
    font-size: 120px;
    color: #c9b89a;
    line-height: 0.6;
}

blockquote {
    font-size: 34px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    color: var(--color-ink);
}

.artisan-meta {
    margin-top: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

.artisan-standards-side h3 {
    margin-bottom: 35px;
    font-size: 30px;
}

.standards-list {
    padding: 0;
    list-style: none;
}

.standards-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.standards-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-tan);
}

.standards-list strong {
    display: block;
    margin-bottom: 6px;
}

/* ==========================================================================
   PORTFOLIO PAGE
========================================================================== */



/* ==========================================================================
   PORTFOLIO WRAPPER
========================================================================== */

.portfolio-page-wrapper {
    max-width: 1800px;
    margin: auto;
    padding: 120px 32px;
}



/* ==========================================================================
   PORTFOLIO HEADER
========================================================================== */

.portfolio-header {
    text-align: center;
    margin-bottom: 70px;
}

.portfolio-header h2 {
    font-size: 56px;
    color: var(--color-ink);
    margin: 18px 0 45px;
}



/* ==========================================================================
   FILTER BUTTONS
========================================================================== */

.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.filter-btn {
    padding: 14px 28px;
    border: 1px solid var(--color-tan);
    background: transparent;
    color: var(--color-ink);
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .35s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-ink);
    color: var(--color-cream);
    border-color: var(--color-ink);
}

.filter-btn:focus-visible {
    outline: 2px solid var(--color-ink);
    outline-offset: 2px;
}



/* ==========================================================================
   PORTFOLIO GRID
========================================================================== */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-rows: 12px;
    grid-auto-flow: dense;
    gap: 24px;
    transition: height .5s ease;
}


/* ==========================================================================
   INDIVIDUAL GRID ITEMS
========================================================================== */

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

/* ==========================================================================
   PORTFOLIO IMAGE HEIGHTS
========================================================================== */
.short {
    grid-row: span 22;
}

.medium {
    grid-row: span 30;
}

.tall {
    grid-row: span 40;
}

.masonry-item.landscape {
    grid-column: span 2;
    grid-row: span 16;
}

@media (max-width: 700px) {
    .masonry-item.landscape {
        grid-column: span 1;
    }
}

/* ==========================================================================
   IMAGE HOVER EFFECT
========================================================================== */

.masonry-item:hover img {
    transform: scale(1.05);
}



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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background: linear-gradient(transparent,
            rgba(24, 24, 24, .82));
    opacity: 0;
    transition: .35s ease;
}

.masonry-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay p {
    display: none;
}

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

@media(max-width:992px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* ==========================================================================
   RESPONSIVE MOBILE
========================================================================== */

@media(max-width:700px) {
    .portfolio-page-wrapper {
        padding: 80px 25px;
    }

    .portfolio-header h2 {
        font-size: 42px;
    }

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

    .filter-controls {
        gap: 12px;
    }

    .filter-btn {
        width: 100%;
    }

}

/* ==========================================================================
   PORTFOLIO LIGHTBOX
========================================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, .95);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: var(--z-lightbox);
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 72vh;
    object-fit: contain;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
}

.lightbox-info {
    display: none;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 46px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 54px;
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox button:hover {
    color: var(--color-tan);
}

.lightbox button:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* ==========================================================================
   CONTACT PAGE LAYOUT
========================================================================== */
.contact-page-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 120px 40px;
}

.legal-page-content {
    max-width: 800px;
}

.legal-page-content h2 {
    margin-bottom: 8px;
}

.legal-page-content h3 {
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-page-content p,
.legal-page-content ul {
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.legal-page-content ul {
    padding-left: 20px;
}

.legal-page-content a {
    color: var(--color-ink);
    text-decoration: underline;
}

.legal-updated {
    color: var(--color-taupe);
    font-size: 14px;
}

.legal-disclaimer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-tan-light);
    font-size: 13px;
    font-style: italic;
    color: var(--color-taupe);
}

.contact-inner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* ==========================================================================
   LEFT COLUMN (Studio Information)
========================================================================== */

.contact-details-column {
    max-width: 560px;
    min-width: 0;
}

.contact-details-column h2 {
    font-size: 56px;
    margin: 18px 0 35px;
    color: var(--color-ink);
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-intro {
    font-size: 21px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 55px;
    overflow-wrap: break-word;
}

/* ==========================================================================
   CONTACT INFORMATION BLOCKS
========================================================================== */
.info-block {
    margin-bottom: 38px;
}

.info-block h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-taupe);
    margin-bottom: 12px;
}

.info-block p {
    margin: 6px 0;
    line-height: 1.8;
    font-size: 18px;
    color: #444;
}

.hours-block p {
    font-size: 15px;
}

/* ==========================================================================
   MAP PLACEHOLDER
========================================================================== */
.map-placeholder-box {
    position: relative;
    margin-top: 50px;
    height: 320px;
    border: 2px solid #d8d2bd;
    background: #f7f4e8;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.map-placeholder-box:not(.map-loaded)::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/contact/MapPreview.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    transform: scale(1.1);
}

.map-placeholder-box:not(.map-loaded)::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
}

.map-placeholder-box .hero-btn {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   RIGHT COLUMN (Contact Form Card)
========================================================================== */
.contact-form-column {
    background: var(--color-white);
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    min-width: 0;
}

.contact-form-column h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.contact-form-column p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ==========================================================================
   FORM ROWS
========================================================================== */
.form-row-group {
    position: relative;
    margin-bottom: 32px;
}

.cf-turnstile {
    max-width: 100%;
}

.cf-turnstile iframe {
    max-width: 100%;
}

.form-row-group label {
    display: block;
    margin-bottom: 10px;

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

.required-mark {
    color: var(--color-error);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================================
   INPUTS / TEXTAREA / SELECT
========================================================================== */
.luxury-contact-form input,
.luxury-contact-form textarea,
.luxury-contact-form select {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid var(--color-tan);
    background: transparent;
    font-size: 17px;
    font-family: inherit;
    color: var(--color-ink);
    outline: none;
    transition: border-color .3s ease;
}

/* ==========================================================================
   PLACEHOLDER TEXT
========================================================================== */
.luxury-contact-form input::placeholder,
.luxury-contact-form textarea::placeholder {
    color: #a6a6a6;
    font-style: italic;
    opacity: 1;
}

/* ==========================================================================
   DROPDOWN STYLING
========================================================================== */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-trigger {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-tan);
    font-size: 17px;
    font-style: italic;
    color: #a6a6a6;
    cursor: pointer;
    background: transparent;
    user-select: none;
    transition: border-color .3s ease, color .3s ease;
}

.dropdown-trigger::after {
    content: "\2304";
    position: absolute;
    right: 5px;
    bottom: 14px;
    font-size: 20px;
    font-style: normal;
    color: #8a7b61;
}

.custom-dropdown.is-open .dropdown-trigger {
    border-bottom: 1px solid var(--color-ink);
}

.dropdown-trigger:focus-visible {
    outline: 2px solid var(--color-ink);
    outline-offset: 2px;
}

.custom-dropdown.error .dropdown-trigger {
    border-bottom: 1px solid var(--color-error);
}

.luxury-contact-form input.error,
.luxury-contact-form textarea.error {
    border-bottom: 1px solid var(--color-error);
}

.field-error-message {
    display: none;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: var(--z-field-error);
    background: var(--color-white);
    border: 1px solid var(--color-tan-light);
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 12px 16px;
    font-size: 15px;
    font-style: normal;
    color: var(--color-ink);
    white-space: nowrap;
}

.field-error-message.show {
    display: flex;
}

.field-error-message::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-left: 1px solid var(--color-tan-light);
    border-top: 1px solid var(--color-tan-light);
    transform: rotate(45deg);
}

.field-error-message .error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e08a1e;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    margin: 4px 0 0 0;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: var(--z-dropdown-menu);
    display: none;
}

.custom-dropdown.is-open .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 12px 20px;
    font-size: 16px;
    color: #444444;
    font-style: normal;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.dropdown-menu li:hover,
.dropdown-menu li:focus-visible {
    background-color: #f7f5f0;
    color: var(--color-ink);
    outline: none;
}

.dropdown-menu li.placeholder-option {
    color: #a6a6a6;
    font-style: italic;
    background-color: transparent;
}

/* ==========================================================================
   SUCCESS MESSAGE STYLING
========================================================================== */
.form-success-message {
    display: none;
    background-color: #f7f5f0;
    border: 1px solid #eae7e1;
    padding: 40px 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}


.form-success-message.is-visible {
    display: block;
    opacity: 1;
}

.success-icon {
    display: block;
    font-size: 28px;
    color: #8a7b61;
    margin-bottom: 15px;
}

.form-success-message h4 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-ink);
    margin: 0 0 10px 0;
}

.form-success-message p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* ==========================================================================
   FOCUS EFFECTS
========================================================================== */
.luxury-contact-form input:focus,
.luxury-contact-form textarea:focus,
.luxury-contact-form select:focus {
    border-bottom: 1px solid var(--color-ink);
}

/* ==========================================================================
   TEXTAREA
========================================================================== */
.luxury-contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

/* ==========================================================================
   SUBMIT BUTTON
========================================================================== */
.form-privacy-notice {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.form-privacy-notice a {
    color: var(--color-ink);
    text-decoration: underline;
}

.form-submit-error {
    display: none;
    color: var(--color-error);
    font-size: 14px;
    margin-bottom: 16px;
}

.form-submit-error.show {
    display: block;
}

.form-submit-btn {
    background: var(--color-ink);
    color: var(--color-cream);
    padding: 18px 42px;
    border: 2px solid var(--color-ink);
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all .35s ease;
}

.form-submit-btn:hover {
    background: transparent;
    color: var(--color-ink);
}

.form-submit-btn:focus-visible {
    outline: 2px solid var(--color-cream);
    outline-offset: 2px;
}

.form-submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* ==========================================================================
   FOOTER
========================================================================== */
.site-footer {
    background: var(--color-ink);
    color: var(--color-white);
    margin-top: 120px;
}

.footer-container {
    width: min(1400px, 90%);
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding: 100px 0 80px;
}

.footer-column h3 {
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 35px;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    background: var(--color-cream);
    margin-top: 15px;
}

.footer-column p {
    color: #b9b9b9;
    line-height: 1.8;
}

.footer-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 40px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    color: #b9b9b9;
    text-decoration: none;
    transition: .25s;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-column a:focus-visible,
.footer-privacy-link:focus-visible,
.contact-address:focus-visible {
    outline: 2px solid var(--color-cream);
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 25px;
    color: #9a9a9a;
    font-size: 14px;
}

.footer-privacy-link {
    display: inline-block;
    margin-top: 6px;
    color: #9a9a9a;
    font-size: 13px;
    text-decoration: underline;
}

.footer-privacy-link:hover {
    color: var(--color-cream);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    transition: transform .3s ease;
}

.contact-item img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-item img.location-icon {
    width: 32px;
    height: 32px;
}

.contact-item p {
    margin: 0;
    color: #b9b9b9;
    line-height: 1.7;
    transition: color .25s;
}

.contact-address {
    display: block;
    text-decoration: none;
}

.contact-address:hover p {
    color: var(--color-white);
}

.contact-item:hover {
    transform: translateX(6px);
}

.contact-item img {
    transition: transform .3s ease;
}

.contact-item:hover img {
    transform: scale(1.1);
}

/* ==========================================================================
   MEDIA QUERIES
========================================================================== */
/* Large Laptop */
@media screen and (max-width: 1300px) {

    /* Shrink the gap between links so they don't break onto two lines */
    .nav-links {
        gap: clamp(20px, 2vw, 40px);
    }

    /* Slightly shrink the typography text size so it sits elegantly */
    .nav-links a {
        font-size: 13px;
        letter-spacing: 1px;
    }

    /* Slightly shrink your massive banner heading so it looks balanced on laptop */
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

/* Tablet */
@media (max-width:900px) {
    .logo img {
        height: 70px;
        width: 70px;
    }

    .main-header {
        height: 80px;
    }

    .header-spacer {
        height: 80px;
    }

    .nav-links {
        gap: 18px;
        margin-left: 25px;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-column h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-logo {
        margin: auto auto 25px;
    }

    .about-inner-container {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        align-items: stretch;
        gap: 60px;
    }

    .about-text-column {
        grid-area: auto;
        order: 1;
    }

    .about-image-column {
        grid-area: auto;
        order: 2;
    }

    .about-signature {
        grid-area: auto;
        order: 3;
        margin-top: 0;
    }

    .artisan-inner-box {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .artisan-standards-side {
        order: 1;
    }

    .artisan-quote-side {
        order: 2;
    }

    .about-text-column h2 {
        font-size: 42px;
    }

    blockquote {
        font-size: 28px;
    }

    .contact-inner-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .contact-form-column {
        padding: 35px;
    }

    .contact-details-column h2 {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width:768px) {
    .main-header {
        height: 75px;
    }

    .header-spacer {
        height: 75px;
    }

    .logo img {
        height: 60px;
        width: 60px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        margin-left: auto;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: var(--color-ink);
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

}

/* Small Phones */
@media (max-width:480px) {
    .about-text-column h2 {
        font-size: 36px;
    }

    .contact-page-wrapper {
        padding: 80px 16px;
    }

    .contact-form-column {
        padding: 20px;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo img {
        height: 55px;
        width: 55px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==========================================================================
   Service Grid
========================================================================== */
.services {
    padding: 100px 0;
    background: var(--color-cream);
}

.home-cta {
    background: var(--color-cream);
    padding: 100px 0;
}

.home-cta-box {
    position: relative;
    max-width: 680px;
    margin: auto;
    padding: 220px 50px;
    text-align: center;
    border: 1px solid var(--color-taupe);
    background-image: url('images/about/CTA.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.home-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
}

.home-cta-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.home-cta-content h2 {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 22px;
}

.home-cta-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #eaeaea;
    margin-bottom: 36px;
}

.services-container {
    width: min(1400px, 90%);
    margin: auto;
}

.services-heading {
    text-align: center;
    margin-bottom: 70px;
}

.services-heading h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--color-ink);
}

.services-heading p {
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    color: #555;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    position: relative;
    background: var(--color-white);
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    margin-top: 0;
    font-size: 26px;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-content a {
    text-decoration: none;
    color: var(--color-ink);
    font-weight: 600;
    letter-spacing: 1px;
}

.service-content a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.service-content a:hover {
    text-decoration: underline;
}

.service-content a:focus-visible {
    outline: 2px solid var(--color-ink);
    outline-offset: 2px;
}


/* ==========================================================================
   SCROLL ANIMATIONS
========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s ease, transform .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) {
    transition-delay: .1s;
}

.service-card:nth-child(2) {
    transition-delay: .25s;
}

.service-card:nth-child(3) {
    transition-delay: .4s;
}