:root {
    --ink-black: #1a1a1a;
    --charcoal: #2a2a2a;
    --paper-white: #f8f7f4;
    --cream: #fffbf5;
    --saffron: #d89a3a;
    --saffron-light: #e8b85a;
    --lilac-grey: #a8a5bb;
    --lilac-grey-light: #c8c5d8;
    --graphite: #3a3a3a;
    --light-grey: #d5d5d5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--paper-white);
    color: var(--graphite);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ink-black);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    letter-spacing: 0.5px;
    margin-top: 2rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: var(--saffron);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--saffron-light);
    text-decoration: underline;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

ul li, ol li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.container-fluid {
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 768px) {
    .container-fluid {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (min-width: 1200px) {
    .container-fluid {
        padding-left: 72px;
        padding-right: 72px;
    }
}

.navbar-section {
    background-color: var(--ink-black);
    padding: 1rem 0;
    border-bottom: 1px solid var(--charcoal);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream) !important;
    letter-spacing: 1px;
    margin-right: 2rem;
}

.navbar-nav .nav-link {
    color: rgba(248, 247, 244, 0.7) !important;
    margin-left: 2rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--saffron) !important;
}

.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--saffron);
    color: var(--ink-black);
    border-color: var(--saffron);
}

.btn-primary:hover {
    background-color: var(--saffron-light);
    border-color: var(--saffron-light);
    transform: scale(1.02);
}

.btn-saffron {
    background-color: var(--saffron);
    color: var(--ink-black);
    border-color: var(--saffron);
}

.btn-saffron:hover {
    background-color: var(--saffron-light);
    border-color: var(--saffron-light);
    transform: scale(1.02);
}

.btn-outline-saffron {
    background-color: transparent;
    color: var(--saffron);
    border-color: var(--saffron);
}

.btn-outline-saffron:hover {
    background-color: var(--saffron);
    color: var(--ink-black);
    border-color: var(--saffron);
    transform: scale(1.02);
}

.btn-secondary {
    background-color: var(--lilac-grey);
    color: var(--ink-black);
    border-color: var(--lilac-grey);
}

.btn-secondary:hover {
    background-color: var(--lilac-grey-light);
    border-color: var(--lilac-grey-light);
}

.btn-outline-secondary {
    background-color: transparent;
    color: var(--lilac-grey);
    border-color: var(--lilac-grey);
}

.btn-outline-secondary:hover {
    background-color: var(--lilac-grey);
    color: var(--ink-black);
    border-color: var(--lilac-grey);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.hero-section {
    background-color: var(--ink-black);
    color: var(--cream);
    padding: 3rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
}

.hero-text-col {
    padding: 3rem 2rem;
}

.hero-text-inner h1 {
    color: var(--cream);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    color: rgba(248, 247, 244, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-col {
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    border: 12px solid var(--cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
}

.decision-modules {
    background-color: var(--paper-white);
    padding: 4rem 0;
}

.decision-container {
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--ink-black);
}

.decision-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .decision-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.decision-card {
    background-color: var(--cream);
    border: 1px solid var(--light-grey);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.decision-card:hover {
    border-color: var(--saffron);
    box-shadow: 0 8px 20px rgba(216, 154, 58, 0.1);
}

.decision-inner {
    display: flex;
    flex-direction: column;
}

.decision-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.decision-card h3 {
    margin-bottom: 1rem;
}

.decision-card p {
    font-size: 0.95rem;
    color: var(--graphite);
    margin-bottom: 0;
}

.decision-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.content-block {
    padding: 4rem 0;
}

.content-container {
    padding: 0 2rem;
}

.content-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .content-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .content-row.content-row {
        gap: 3rem;
    }
}

.content-text {
    flex: 1;
}

.content-text h2 {
    margin-top: 0;
}

.content-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.layout-map-section {
    background-color: var(--cream);
}

.cover-touch-section {
    background-color: var(--paper-white);
}

.ink-flow-section {
    background-color: var(--cream);
}

.products-header {
    background-color: var(--cream);
    padding: 3rem 0;
}

.products-intro-container {
    padding: 0 2rem;
}

.products-intro-text p {
    font-size: 1rem;
    line-height: 1.8;
}

.products-section {
    padding: 4rem 0;
}

.products-container {
    padding: 0 2rem;
}

.category-title {
    font-size: 1.6rem;
    color: var(--ink-black);
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--lilac-grey);
}

.products-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-col {
    display: flex;
}

.product-card {
    background-color: var(--cream);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.product-card:hover {
    border-color: var(--saffron);
    box-shadow: 0 10px 25px rgba(216, 154, 58, 0.15);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--graphite);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.product-desc-usage {
    font-size: 0.85rem;
    color: var(--lilac-grey);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 1.2rem;
    margin-top: auto;
}

.quiet-tuning-section {
    background-color: var(--ink-black);
    color: var(--cream);
    padding: 4rem 0;
}

.tuning-container {
    padding: 0 2rem;
}

.tuning-container h2 {
    color: var(--cream);
}

.tuning-text p {
    color: rgba(248, 247, 244, 0.9);
    font-size: 1rem;
    line-height: 1.8;
}

.about-header {
    background-color: var(--cream);
    padding: 3rem 0;
}

.about-intro-container {
    padding: 0 2rem;
}

.about-content {
    background-color: var(--paper-white);
    padding: 4rem 0;
}

.about-container {
    padding: 0 2rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-grey);
}

.contact-section {
    padding: 3rem 0 4rem 0;
}

.contact-container {
    padding: 0 2rem;
}

.contact-section h1 {
    margin-top: 0;
    margin-bottom: 2rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

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

.contact-info {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-details h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--saffron);
}

.contact-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.inquiry-form-section {
    background-color: var(--cream);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.inquiry-form-section h2 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--ink-black);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background-color: var(--paper-white);
}

.form-control:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 0.2rem rgba(216, 154, 58, 0.25);
    outline: none;
}

.form-check-input {
    border-color: var(--light-grey);
}

.form-check-input:checked {
    background-color: var(--saffron);
    border-color: var(--saffron);
}

.form-check-label {
    margin-left: 0.5rem;
    color: var(--graphite);
    font-size: 0.95rem;
}

.form-check-label a {
    color: var(--saffron);
}

.thank-you-section {
    background-color: var(--cream);
    padding: 6rem 0;
    text-align: center;
}

.thank-you-container {
    padding: 0 2rem;
}

.thank-you-container h1 {
    color: var(--ink-black);
    margin-top: 0;
}

.thank-you-message {
    font-size: 1.1rem;
    color: var(--graphite);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section {
    padding: 3rem 0 4rem 0;
}

.legal-container {
    padding: 0 2rem;
    max-width: 900px;
}

.legal-section h1 {
    margin-top: 0;
}

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--graphite);
}

.legal-section ul, .legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section {
    background-color: var(--ink-black);
    color: var(--cream);
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

.footer-container {
    padding: 0 2rem;
}

.footer-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: var(--saffron);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(248, 247, 244, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--saffron);
    text-decoration: none;
}

.footer-col p {
    color: rgba(248, 247, 244, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--saffron);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(248, 247, 244, 0.5);
    font-size: 0.85rem;
}

.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--ink-black);
    color: var(--cream);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.consent-banner.hidden {
    display: none !important;
}

.consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

.consent-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 250px;
}

.consent-content a {
    color: var(--saffron);
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .consent-banner {
        padding: 1rem;
    }

    .consent-content {
        flex-direction: column;
        gap: 1rem;
    }

    .consent-content p {
        min-width: auto;
    }

    .consent-buttons {
        width: 100%;
    }

    .consent-buttons .btn {
        flex: 1;
    }
}

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

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-text-col, .hero-image-col {
        padding: 1.5rem 0;
    }

    .hero-text-inner h1 {
        font-size: 2rem;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 0.8rem;
    }

    body {
        padding-bottom: 280px;
    }
}
