/* =========================================================
   DIAMOND F WELDING
   Luxury / Architectural / Modern Brutalist Theme
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background-color: #0d0d0d;
    color: #e8e8e8;

    font-family: "Inter", Arial, sans-serif;

    font-weight: 400;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;

    color: #f1eee8;

    letter-spacing: 0.5px;
}

p {
    color: #b7b4ae;
    line-height: 1.7;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: relative;

    padding-top: 40px;
    padding-bottom: 60px;

    background-color: #0d0d0d;
}


/* =========================================================
   CART BUTTON
========================================================= */

.cart-button {
    position: absolute;

    top: 40px;
    right: 60px;

    padding: 10px 20px;

    border: 1px solid #d7d3cb;

    color: #e8e8e8;
    background-color: transparent;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    text-decoration: none;

    z-index: 1000;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.cart-button:hover {
    background-color: #e8e8e8;
    color: #0d0d0d;
}


/* =========================================================
   LOGO
========================================================= */

.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0;

    width: 100%;
}

.logo {
    width: 220px;
    height: auto;

    display: block;
}

.header-line {
    height: 1px;

    background-color: #b7b4ae;

    flex: 1;

    max-width: 500px;
}


/* =========================================================
   NAVIGATION
========================================================= */

nav {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 30px;
}

nav a {
    color: #d7d3cb;

    text-decoration: none;

    margin: 25px;

    font-family: "Inter", sans-serif;

    font-size: 17px;
    font-weight: 500;

    letter-spacing: 0.8px;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

nav a:hover {
    color: #ffffff;
    opacity: 0.7;
}


/* =========================================================
   HOME PAGE HERO
========================================================= */

.hero {
    height: 75vh;

    background:
        linear-gradient(
            rgba(5, 5, 5, 0.38),
            rgba(5, 5, 5, 0.55)
        ),
        url("../images/homepage.background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-content {
    max-width: 900px;

    padding: 50px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;

    margin: 0 0 20px;

    letter-spacing: 1px;
}

.hero-content p {
    max-width: 650px;

    margin: 0 auto 30px;

    font-size: 17px;
    line-height: 1.8;

    color: #ddd9d1;
}


/* =========================================================
   GENERAL BUTTON
========================================================= */

.button {
    display: inline-block;

    margin-top: 25px;

    padding: 16px 38px;

    background-color: #e8e8e8;
    color: #111111;

    border: 1px solid #e8e8e8;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.button:hover {
    background-color: transparent;

    color: #e8e8e8;

    border-color: #e8e8e8;
}


/* =========================================================
   SHOP HEADER
========================================================= */

.shop-header {
    text-align: center;

    padding: 40px 20px 70px;
}

.shop-header h1 {
    font-size: 4rem;

    margin: 0 0 15px;

    line-height: 1;
}

.shop-header p {
    max-width: 650px;

    margin: auto;

    color: #9f9c96;

    font-size: 16px;

    letter-spacing: 0.3px;
}


/* =========================================================
   FEATURED PRODUCT
========================================================= */

.featured-section {
    width: 92%;
    max-width: 1400px;

    margin: 0 auto 40px;
}

.featured-card {
    background-color: #121212;

    border: 1px solid #303030;

    overflow: hidden;

    text-align: center;
}

.featured-card img {
    width: 100%;
    height: 600px;

    display: block;

    object-fit: cover;
}

.featured-content {
    padding: 55px 40px 60px;
}

.featured-content h2 {
    margin: 0 0 15px;

    font-size: 45px;

    line-height: 1;
}

.featured-content p {
    max-width: 700px;

    margin: 0 auto 5px;

    color: #aaa7a1;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   SHOP PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;

    width: 92%;
    max-width: 1400px;

    margin: 0 auto 90px;
    padding: 0;

    align-items: stretch;
}

.product-card {
    background-color: #121212;
    border: 1px solid #303030;

    padding: 0 0 28px;

    text-align: center;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    height: 100%;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: #55514b;
}

/* Photo only: 8px inset from top/left/right card border */
.product-card img {
    width: calc(100% - 16px);
    height: 350px;

    margin: 8px 8px 28px;

    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

/* Keeps compatibility if a card uses a product-content wrapper */
.product-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    padding: 0 30px;
    text-align: center;
}

/* Product title */
.product-card h2,
.product-content h2,
.product-card h3,
.product-content h3 {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;

    color: #f1eee8;
}

/* Optional description */
.product-card p,
.product-content p {
    max-width: 500px;

    margin: 14px auto 0;

    color: #9f9c96;
    font-size: 14px;
    line-height: 1.6;
}

/* Exactly 28px from title/description area to button */
.product-card .button,
.product-content .button {
    align-self: center;

    width: auto;

    margin-top: 28px;
    margin-bottom: 0;

    padding: 15px 38px;
}


/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */

.product-page {
    width: 100%;
}

.product-info {
    text-align: center;
}

.product-info h1,
.product-info h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.product-info p {
    color: #aaa7a1;
}


/* =========================================================
   PRODUCT IMAGE GALLERY
========================================================= */

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;
}

.main-image {
    width: 500px;
    height: 500px;

    object-fit: contain;
}

.side-image {
    width: 300px;
    height: 500px;

    object-fit: contain;

    opacity: 0.45;

    filter:
        brightness(42%)
        grayscale(20%);

    transition:
        opacity 0.3s ease,
        filter 0.3s ease;
}

.gallery-arrow {
    width: 70px;

    padding: 0;

    background: none;

    border: none;

    color: #e8e8e8;

    font-family: "Cormorant Garamond", serif;

    font-size: 55px;

    cursor: pointer;

    transition: opacity 0.3s ease;
}

.gallery-arrow:hover {
    opacity: 0.55;
}

.angled-page {
    margin-top: 0;
    margin-bottom: 60px;
}

.angled-button {
    padding: 20px 60px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   PRODUCT OPTIONS / DROPDOWNS
========================================================= */

select {
    background-color: #121212;

    color: #e8e8e8;

    border: 1px solid #454545;

    padding: 9px 14px;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    outline: none;
}

select:focus {
    border-color: #8a867e;
}


/* =========================================================
   QUANTITY
========================================================= */

.quantity-box {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.quantity-label {
    background-color: transparent;

    color: #aaa7a1;

    border: 1px solid #3a3a3a;

    padding: 10px 18px;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.qty-button {
    width: 38px;
    height: 38px;

    background-color: #e8e8e8;

    color: #111;

    border: 1px solid #e8e8e8;

    font-family: "Inter", sans-serif;

    font-size: 20px;

    cursor: pointer;

    transition: 0.25s ease;
}

.qty-button:hover {
    background-color: transparent;

    color: #e8e8e8;
}

#quantity {
    min-width: 40px;

    color: #e8e8e8;

    text-align: center;

    font-size: 18px;
}


/* =========================================================
   CHECKOUT
========================================================= */

.checkout-container {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
}

.checkout-card {
    width: 100%;
    max-width: 700px;

    padding: 55px;

    background-color: #121212;

    border: 1px solid #303030;

    text-align: center;
}

.checkout-card h1 {
    margin-top: 0;
    margin-bottom: 30px;

    font-size: 42px;
}

.checkout-row {
    display: flex;
    justify-content: space-between;

    margin: 20px 0;

    font-size: 16px;

    color: #c5c2bc;
}

.checkout-card hr {
    margin: 28px 0;

    border: none;

    border-top: 1px solid #303030;
}

.total {
    font-family: "Cormorant Garamond", serif;

    font-size: 32px;

    font-weight: 600;
}

.checkout-button {
    display: inline-block;

    margin-top: 40px;

    padding: 18px 55px;
}


/* =========================================================
   CUSTOM ORDER PAGE
========================================================= */

.custom-order-section {
    display: flex;
    justify-content: center;

    padding: 40px 20px;
}

.custom-order-card {
    width: 100%;
    max-width: 800px;

    padding: 55px;

    background-color: #121212;

    border: 1px solid #303030;
}

.custom-order-card h1 {
    margin-top: 0;
    margin-bottom: 15px;

    text-align: center;

    font-size: 46px;
}

.custom-order-card p {
    margin-bottom: 40px;

    color: #9f9c96;

    text-align: center;
}

.custom-order-card form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.custom-order-card label {
    color: #c9c6bf;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.custom-order-card input,
.custom-order-card textarea {
    padding: 15px;

    background-color: #0d0d0d;

    color: #e8e8e8;

    border: 1px solid #3b3b3b;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    outline: none;

    transition: border-color 0.3s ease;
}

.custom-order-card input:focus,
.custom-order-card textarea:focus {
    border-color: #77736c;
}

.custom-order-card textarea {
    min-height: 180px;

    resize: vertical;
}

.custom-order-card input[type="file"] {
    padding: 10px;
}

.file-email-note {
    padding: 20px;

    background-color: #0d0d0d;

    color: #e8e8e8;

    border: 1px solid #303030;
}

.file-email-note h3 {
    margin-top: 0;

    font-size: 25px;
}

.file-email-note p {
    margin-bottom: 10px;

    text-align: left;
}


/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page {
    padding: 60px 40px 100px;
}

.gallery-header {
    margin-bottom: 50px;

    text-align: center;
}

.gallery-header h1 {
    margin-top: -50px;
    margin-bottom: 25px;

    font-size: 4rem;
}

.gallery-header p {
    font-size: 16px;

    color: #9f9c96;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(350px, 350px));

    gap: 30px;

    max-width: 1400px;

    margin: auto;

    justify-content: center;
}

.gallery-grid img {
    width: 350px;
    height: 350px;

    background-color: #121212;

    border: 1px solid #303030;

    object-fit: cover;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.gallery-grid img:hover {
    transform: translateY(-3px);

    border-color: #55514b;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: 0;

    padding: 70px 20px 60px;

    background-color: #0d0d0d;

    text-align: center;
}

.footer-verse {
    margin-bottom: 15px;

    color: #77736d;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.footer-quote {
    max-width: 900px;

    margin: 0 auto 35px;

    color: #e3dfd7;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 31px;

    font-style: italic;

    font-weight: 500;

    line-height: 1.5;
}

.footer-company {
    margin-bottom: 10px;

    color: #d7d3cb;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.footer-est {
    color: #77736d;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    header {
        padding-top: 25px;
        padding-bottom: 35px;
    }

    .logo {
        width: 170px;
    }

    nav {
        flex-wrap: wrap;

        margin-top: 20px;
    }

    nav a {
        margin: 12px;

        font-size: 14px;
    }

    .cart-button {
        top: 15px;
        right: 15px;

        padding: 7px 12px;

        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .featured-section,
    .product-grid {
        width: 90%;
    }

    .featured-card img {
        height: 450px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 400px;
    }

    .gallery-container {
        gap: 10px;
    }

    .main-image {
        width: 60vw;
        height: 450px;
    }

    .side-image {
        width: 18vw;
        height: 450px;
    }

    .gallery-arrow {
        width: 40px;

        font-size: 40px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .header-line {
        max-width: 100px;
    }

    .hero {
        height: 65vh;
    }

    .hero-content {
        padding: 25px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 15px;
    }

    .shop-header h1 {
        font-size: 3rem;
    }

    .featured-card img {
        height: 350px;
    }

    .featured-content {
        padding: 35px 22px 40px;
    }

    .featured-content h2 {
        font-size: 36px;
    }

    .product-card img {
        height: 300px;
    }

    .product-content {
        padding: 30px 20px 38px;
    }

    .product-card h2,
    .product-content h2 {
        font-size: 30px;
    }

    .checkout-card,
    .custom-order-card {
        padding: 35px 20px;
    }

    .footer-quote {
        font-size: 26px;
    }

    .footer-company {
        font-size: 12px;

        letter-spacing: 3px;
    }
}

/* =========================================================
   ABOUT THE BRAND PAGE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.about-hero {
    position: relative;
    min-height: 78vh;

    display: flex;
    align-items: center;

    padding: 80px 8%;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.72)
        ),
        url("../images/about-hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-sizing: border-box;
}


.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.38) 55%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


.about-hero-content {
    position: relative;

    width: 100%;
    max-width: 900px;

    z-index: 2;
}


.about-eyebrow {
    margin-bottom: 18px;

    color: #c3beb5;

    font-family: "Inter", Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 5px;
}


.about-hero h1 {
    margin: 0 0 28px;

    max-width: 900px;

    color: #f1eee8;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(48px, 6vw, 92px);

    line-height: 0.95;
    letter-spacing: -2px;

    font-weight: 600;
}


.about-hero-content > p:not(.about-eyebrow) {
    max-width: 620px;

    margin-bottom: 36px;

    font-size: 19px;
    line-height: 1.7;

    color: #d9d5ce;
}


/* =========================================================
   GENERAL ABOUT LAYOUT
   ========================================================= */

.about-section {
    padding: 130px 8%;
}


.about-container {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    box-sizing: border-box;
}


.about-narrow {
    max-width: 900px;
}


.about-section-number {
    margin: 0 0 25px;

    color: #8f8b84;

    font-family: "Inter", Arial, sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.about-section h2,
.about-final h2 {
    margin: 0 0 45px;

    color: #f1eee8;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(38px, 5vw, 72px);

    font-weight: 600;

    line-height: 1;
    letter-spacing: -1px;
}


.about-section p,
.about-final p {
    font-size: 18px;
    line-height: 1.8;

    color: #c9c5bd;
}


.about-large-text {
    font-size: 27px !important;

    line-height: 1.55 !important;

    color: #f1eee8 !important;
}


.about-highlight {
    margin-top: 42px;

    padding-left: 28px;

    border-left: 2px solid #d7d3cb;

    font-size: 22px !important;

    color: #f1eee8 !important;
}


/* =========================================================
   ABOUT BUTTONS
   ========================================================= */

.about-button {
    display: inline-block;

    padding: 16px 28px;

    border: 1px solid #e8e8e8;

    background-color: #e8e8e8;
    color: #111111;

    font-family: "Inter", Arial, sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.about-button:hover {
    background-color: transparent;

    color: #e8e8e8;

    border-color: #e8e8e8;
}


.about-button-outline {
    background-color: transparent;

    color: #e8e8e8;
}


.about-button-outline:hover {
    background-color: #e8e8e8;

    color: #111111;
}


.about-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 45px;
}


/* =========================================================
   STORY
   ========================================================= */

.about-story {
    padding-top: 150px;
    padding-bottom: 150px;
}


/* =========================================================
   LARGE BRAND STATEMENT
   LIGHT SECTION
   ========================================================= */

.about-statement {
    padding: 110px 8%;

    background-color: #B9B7B1;

    color: #181818;

    text-align: center;
}


.about-statement p {
    margin: 0;

    color: #181818;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(34px, 4.5vw, 70px);

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -1px;
}


.about-statement span {
    display: block;

    margin-top: 10px;

    color: #181818;
}


/* =========================================================
   TWO COLUMN
   ========================================================= */

.about-two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}


.about-copy p:first-child {
    margin-top: 0;
}


/* =========================================================
   PHILOSOPHY BOX
   ========================================================= */

.about-feature-box {
    min-height: 420px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;

    border: 1px solid #333333;

    background-color: #101010;
}


.feature-small {
    margin-bottom: 40px;

    color: #8f8b84 !important;

    font-family: "Inter", Arial, sans-serif;

    font-size: 11px !important;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.feature-large {
    margin: 6px 0;

    color: #f1eee8 !important;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 32px !important;

    line-height: 1.25 !important;
}


/* =========================================================
   GRAY PRODUCT AREA
   ========================================================= */

.about-gray {
    background-color: #111111;
}


.about-gray h2,
.about-gray h3 {
    color: #f1eee8;
}


.about-gray p {
    color: #bdb9b1;
}


.about-centered-title {
    max-width: 1050px;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center;
}


/* =========================================================
   THREE PRODUCT DETAILS
   ========================================================= */

.about-three-column {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    margin-top: 80px;

    background-color: #333333;
}


.about-detail-card {
    min-height: 340px;

    padding: 45px 40px;

    background-color: #111111;
}


.detail-number {
    display: block;

    margin-bottom: 50px;

    color: #77736d;

    font-family: "Inter", Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 2px;
}


.about-detail-card h3 {
    margin: 0 0 20px;

    color: #f1eee8;

    font-size: 20px;

    letter-spacing: 1px;
}


.about-detail-card p {
    margin: 0;

    color: #b7b4ae;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   ROOT DEPTH SECTION
   ========================================================= */

.about-root-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    margin-top: 100px;
    padding-top: 80px;

    border-top: 1px solid #333333;
}


.root-label {
    margin: 0 0 20px;

    color: #8f8b84 !important;

    font-family: "Inter", Arial, sans-serif;

    font-size: 11px !important;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.about-root-section h3 {
    margin: 0;

    max-width: 500px;

    color: #f1eee8;

    font-size: 38px;

    line-height: 1.15;
}


/* =========================================================
   LANDSCAPE QUOTE
   LIGHT SECTION
   ========================================================= */

.landscape-quote {
    padding: 160px 8%;

    background-color: #e9e6df;

    color: #181818;
}


.landscape-quote .about-container {
    max-width: 1100px;
}


.small-quote-heading {
    margin: 0 0 30px;

    color: #5f625f;

    font-family: "Inter", Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.landscape-quote h2 {
    margin: 0 0 35px;

    color: #181818;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(42px, 6vw, 80px);

    font-weight: 600;

    line-height: 1;

    letter-spacing: -1px;
}


.landscape-quote p:last-child {
    max-width: 700px;

    color: #333333;

    font-size: 25px;

    line-height: 1.5;
}


/* =========================================================
   STANDARD WORDS
   ========================================================= */

.standard-words {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 45px;
}


.standard-words span {
    color: #f1eee8;

    font-family: "Inter", Arial, sans-serif;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 3px;
}


/* =========================================================
   CUSTOM
   ========================================================= */

.about-custom {
    background-color: #111111;
}


.about-custom h2 {
    color: #f1eee8;
}


.about-custom p {
    color: #c2beb6;
}


.custom-callout {
    margin-top: 55px !important;

    color: #f1eee8 !important;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 30px !important;

    line-height: 1.4 !important;
}


/* =========================================================
   SISTER BRAND / BEYOND STEEL
   LIGHT SECTION
   ========================================================= */

.sister-brand {
    padding: 130px 8%;

    background-color: #e9e6df;

    color: #181818;
}


/*
   IMPORTANT:
   This explicitly overrides the site's normal light h2 color.
   The previous version inherited #f1eee8, which caused the
   low-contrast title shown in your screenshot.
*/

.sister-brand h2 {
    margin: 0 0 45px;

    color: #242424;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(38px, 5vw, 72px);

    font-weight: 600;

    line-height: 1;

    letter-spacing: -1px;
}


.sister-brand p {
    color: #333333;

    font-size: 18px;

    line-height: 1.8;
}


.sister-brand .about-section-number {
    color: #62645f;

    font-family: "Inter", Arial, sans-serif;

    font-weight: 600;
}


.about-text-link {
    display: inline-block;

    margin-top: 35px;

    padding-bottom: 5px;

    border-bottom: 1px solid #181818;

    color: #181818;

    font-family: "Inter", Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        opacity 0.25s ease,
        border-color 0.25s ease;
}


.about-text-link:hover {
    opacity: 0.55;
}


/* =========================================================
   FINAL BRAND SECTION
   ========================================================= */

.about-final {
    padding: 160px 8%;

    background-color: #0d0d0d;

    text-align: center;
}


.about-final-logo {
    width: 220px;
    max-width: 65%;

    margin-bottom: 80px;
}


.about-final p {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    color: #b7b4ae;
}


.about-final h2 {
    color: #f1eee8;
}


.final-brand-line {
    margin-top: 50px !important;

    color: #f1eee8 !important;

    font-size: 24px !important;

    line-height: 1.5 !important;
}


.final-location {
    margin-top: 70px !important;

    color: #77736d !important;

    font-family: "Inter", Arial, sans-serif;

    font-size: 11px !important;

    font-weight: 600;

    line-height: 2 !important;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* =========================================================
   ACTIVE PAGE
   ========================================================= */

nav a.active-page {
    border-bottom: 1px solid #d7d3cb;
}


/* =========================================================
   RESPONSIVE ABOUT PAGE - TABLET
   ========================================================= */

@media (max-width: 900px) {

    .about-hero {
        min-height: 70vh;

        padding-left: 6%;
        padding-right: 6%;
    }


    .about-section {
        padding: 90px 6%;
    }


    .about-two-column {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-three-column {
        grid-template-columns: 1fr;
    }


    .about-detail-card {
        min-height: auto;
    }


    .about-root-section {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-feature-box {
        min-height: 300px;
    }


    .landscape-quote {
        padding: 110px 6%;
    }


    .sister-brand {
        padding: 100px 6%;
    }


    .about-final {
        padding: 110px 6%;
    }

}


/* =========================================================
   RESPONSIVE ABOUT PAGE - MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .about-hero {
        min-height: 75vh;

        padding-top: 80px;
        padding-bottom: 80px;
    }


    .about-hero h1 {
        font-size: 46px;

        letter-spacing: -1px;
    }


    .about-hero-content > p:not(.about-eyebrow) {
        font-size: 16px;
    }


    .about-section h2,
    .about-final h2,
    .sister-brand h2 {
        font-size: 39px;
    }


    .about-large-text {
        font-size: 22px !important;
    }


    .about-detail-card {
        padding: 35px 28px;
    }


    .about-feature-box {
        padding: 40px 28px;
    }


    .about-root-section h3 {
        font-size: 31px;
    }


    .landscape-quote h2 {
        font-size: 42px;
    }


    .landscape-quote p:last-child {
        font-size: 21px;
    }


    .about-buttons {
        flex-direction: column;
    }


    .about-button {
        width: 100%;

        text-align: center;

        box-sizing: border-box;
    }


    .sister-brand {
        padding: 85px 6%;
    }

}

/* =========================================
   CHECKOUT CUSTOMER INFORMATION
========================================= */

.checkout-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 20px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.checkout-field label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.checkout-field input {
    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    background: transparent;
    color: white;

    border: 1px solid #555;
    border-radius: 4px;

    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.checkout-field input:focus {
    outline: none;
    border-color: white;
}

.checkout-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#submit-payment {
    width: 100%;

    margin-top: 30px;
    padding: 16px;

    background: white;
    color: black;

    border: none;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
}

#submit-payment:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 650px) {

    .checkout-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}