﻿
@font-face {
  font-family: 'Corporates';
  src: url('../fonts/corporates-regular.woff2') format('woff2'), url('../fonts/corporates-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Corporatesdemi';
  src: url('../fonts/corporates-demi.woff2') format('woff2'), url('../fonts/corporates-demi.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Corporateslight';
  src: url('../fonts/corporates-light.woff2') format('woff2'), url('../fonts/corporates-light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Corporateacon';
  src: url('../fonts/corporateacon-reg.woff2') format('woff2'), url('../fonts/corporateacon-reg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CorpOA';
  src: url('../fonts/c062003t-CorpoA.ttf') format('truetype'), url('../fonts/c062003t-CorpoA.woff') format('woff'), url('../fonts/c062003t -CorpoA.eot') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
/* Custom variables for luxury brand styling */
:root {
    --bg-dark: #0a0a0a;
    --card-bg: #121212;
    --border-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
  
}

/* Force dark background onto the entire screen viewport */
html, body {
    background-color: var(--bg-dark);
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensures full screen height coverage */
}

/* Container layout spanning full screen width */
.service-kit-container {
    background-color: var(--bg-dark);
   
    line-height: 1.6;
    padding: 0 0 3rem 0;
    width: 100%; /* Uses full horizontal window width */
    margin: 0 auto;
}

/* Hero Section Image Handling - full span */
.service-kit-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    box-sizing: border-box;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Typography & Content Layout */
.service-kit-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 2rem;
    box-sizing: border-box;
   /* margin-left:2.5em;*/
}

.page-title {
/*    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;*/
    color: #ffffff;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
    margin-left: 0em;
    font-size: 26px;
    line-height: 1.2;
    margin-top:0.5em;
   /* margin: 0;*/
}
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem; 
    margin: 0 auto 0.5rem; 
    max-width: 1200px; 
    width: 100%;
}

@media (min-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.info-column p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.promo-box {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
  /*  margin-top: 1.5rem;*/
    background-color: var(--card-bg);
    border-radius: 4px;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.promo-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

    .promo-text strong {
        color: var(--text-primary);
    }


.service-kit-footer {
    
    padding-top: 0rem;
    margin-top: 0rem;
}

.cta-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}
.matrix-grid-wrapper {
    margin-bottom: 4rem;
}

.matrix-grid {
    display: grid;
    /* Implements responsive 5-column grid layout decreasing dynamically for mobile devices */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (min-width: 600px) {
    .matrix-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .matrix-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .matrix-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Individual Grid Visual Blocks */
.grid-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    margin-top:0em;
}

    .grid-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }

/*.card-visual-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}*/


.card-visual-wrapper {
    width: 100%;
    aspect-ratio: 565 / 800; 
    background-color: #f5f5f7; 
    overflow: hidden;
    border-radius: 8px; 
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); 
    display: flex;
    align-items: center;
    justify-content: center;
}


.card-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    
    will-change: transform;
}


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


.card-label {
    padding: 0rem 0.75rem;
    text-align: center;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-top: 0px solid var(--border-color);
    transition: color 0.2s ease;
    margin-top:0em;
}

.grid-card:hover .card-label {
    color: var(--text-primary);
}


.matrix-footer {
   
    padding-top: 0rem;
    max-width: 890px;
    /*margin: 0 auto;*/
}

.footnote-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.inline-link {
    color: var(--text-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

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