
/*
  Brand Colors & Variables
  Adhering to KW Identity: KW Red, Grays, Black, White.
*/
:root {
    --kw-red: #CE011F;
    --kw-main-gray: #828282;
    --kw-medium-gray: #4D4D4D;
    --kw-light-gray: #CCCCCC;
    --kw-off-white: #F5F5F5;
    --kw-black: #000000;
    --kw-white: #FFFFFF;
}

/* Base Reset & Smooth Scrolling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--kw-medium-gray);
    line-height: 1.6;
    background-color: var(--kw-white);
}

/* Typography Hierarchy */
h1, h2, h3 {
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    color: var(--kw-black);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--kw-red);
    color: var(--kw-white);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--kw-black);
    color: var(--kw-white);
}

/* Navigation - Sticky & Fixed */
.sticky-nav {
    position: sticky;
    top: 0;
    background-color: var(--kw-white);
    border-bottom: 1px solid var(--kw-light-gray);
    z-index: 1000;
}

.sticky-nav nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
}

.logo {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: var(--kw-black);
}

.logo span {
    font-weight: 300;
    color: var(--kw-red);
}

.sticky-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.sticky-nav a {
    color: var(--kw-medium-gray);
    font-weight: 500;
    font-family: 'Jost', sans-serif;
}

.sticky-nav a:hover {
    color: var(--kw-red);
}

section {
    scroll-margin-top: 80px;
    padding: 6rem 0;
}

/* Section 1: Hero */
.hero-section {
    background-color: var(--kw-off-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--kw-medium-gray);
    margin-bottom: 2rem;
}

/* Section 2: About (Updated styling for longer text readability) */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--kw-medium-gray);
}

/* Section 3: Contact */
.contact-section {
    background-color: var(--kw-black);
    color: var(--kw-white);
}

.contact-section h2 {
    color: var(--kw-white);
}

.contact-section p {
    color: var(--kw-light-gray);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.email-link {
    display: block;
    color: var(--kw-red);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    margin-bottom: 2rem;
}

.email-link:hover {
    color: var(--kw-white);
}

address {
    font-style: normal;
    color: var(--kw-light-gray);
    line-height: 1.8;
}

/* Footer */
.legal-footer {
    background-color: var(--kw-white);
    color: var(--kw-main-gray);
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--kw-red);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--kw-black);
    text-decoration: underline;
}

.legal-footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Navigation & Footer Adjustments */
@media (max-width: 768px) {
    .sticky-nav nav {
        flex-direction: column;
        gap: 1rem;
    }
    .sticky-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
}