:root {
    --gold-soft: #D5A24E;
    --blue-deep: #2C5282;
    --nude-light: #E8DBCC;
    --off-white: #F9F7F2;
    --gold-rose: #D4B27B;
    --green-olive: #41513C;
    --white-ice: #F6F6F2;
    --graphite: #2A2A2A;
    --font-playfair: 'Playfair Display', serif;
    --font-cinzel: 'Cinzel', serif;
    --font-libre: 'Libre Baskerville', serif;
    --font-lato: 'Lato', sans-serif;
    --font-nunito: 'Nunito', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--off-white);
    color: var(--graphite);
    font-family: var(--font-lato);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* Header / Nav */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(249, 247, 242, 0.98);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    color: var(--gold-soft);
    letter-spacing: 0.1em;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--graphite);
    margin: 5px 0;
    transition: all 0.3s;
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(249, 247, 242, 0.98);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    gap: 0;
}

.nav-links.active {
    display: flex;
}

.nav-link {
    color: var(--graphite);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.nav-link:hover {
    color: var(--gold-soft);
}

.btn-contact {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gold-soft);
    color: var(--gold-soft);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0.125rem;
    transition: all 0.3s;
    display: inline-block;
    margin: 1rem auto;
    font-weight: 600;
}

.btn-contact:hover {
    background-color: var(--gold-soft);
    color: var(--blue-deep);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        width: auto;
        background-color: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 2rem;
        align-items: center;
    }

    .nav-link {
        margin: 0;
        padding: 0.5rem 0;
    }

    .btn-contact {
        margin: 0;
        padding: 0.5rem 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to bottom, rgba(10, 26, 47, 0.6), rgba(10, 26, 47, 0.4)), url('https://images.unsplash.com/photo-1499209974431-9dddcece7f88?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 47, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-playfair);
    font-size: 2rem;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.text-gold-highlight {
    color: var(--gold-soft);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-montserrat);
    font-size: 1.125rem;
    color: var(--nude-light);
    margin-bottom: 2.5rem;
    letter-spacing: 0.025em;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.btn-hero {
    display: inline-block;
    background-color: var(--gold-soft);
    color: var(--blue-deep);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 0.125rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: var(--gold-rose);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}

.scroll-icon {
    width: 2rem;
    height: 2rem;
    color: var(--off-white);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-icon:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, -25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translate(-50%, 0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Sections General */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--gold-soft);
    font-family: var(--font-cinzel);
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-playfair);
    font-size: 2.25rem;
    color: var(--blue-deep);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--gold-soft);
    margin: 0 auto;
    border-radius: 9999px;
}

/* Purpose Section */
.bg-off-white {
    background-color: var(--off-white);
}

.purpose-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .purpose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.purpose-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--graphite);
}

.purpose-quote {
    font-family: var(--font-libre);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--green-olive);
    margin-top: 1rem;
    border-left: 4px solid var(--gold-soft);
    padding-left: 1rem;
}

.purpose-img-wrapper {
    position: relative;
}

.purpose-img-border {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold-soft);
    transform: translate(1rem, 1rem);
    border-radius: 0.125rem;
}

.purpose-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s;
}

.purpose-img:hover {
    filter: grayscale(0);
}

/* Cards Section */
.bg-white-ice {
    background-color: var(--white-ice);
}

.cards-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 0.125rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    border-top-width: 4px;
    border-top-style: solid;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
    display: flex;
    justify-content: center;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon svg {
    width: 3rem;
    height: 3rem;
}

.card-title {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    color: var(--blue-deep);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.5rem;
    }
}

.card-text {
    color: rgba(42, 42, 42, 0.8);
    line-height: 1.6;
}

/* Depth Section */
.bg-blue-deep {
    background-color: var(--blue-deep);
    color: var(--off-white);
}

.bg-light-depth {
    background-color: var(--white-ice);
    color: var(--graphite);
}

.depth-title {
    font-family: var(--font-playfair);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--blue-deep);
    text-align: center;
}

@media (min-width: 768px) {
    .depth-title {
        font-size: 3rem;
    }
}

.depth-list {
    list-style: none;
    margin-top: 2rem;
}

.depth-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.depth-bullet {
    color: var(--gold-soft);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.depth-footer {
    margin-top: 2.5rem;
    font-family: var(--font-cinzel);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: var(--gold-rose);
    text-align: center;
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: white;
    border-radius: 0.125rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.service-line {
    height: 0.25rem;
    width: 3rem;
    margin-bottom: 1.5rem;
    transition: width 0.5s;
}

.service-card:hover .service-line {
    width: 100%;
}

.service-title {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    color: var(--blue-deep);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.875rem;
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.6;
}

/* Audience Section */
.bg-nude-light-30 {
    background-color: rgba(232, 219, 204, 0.3);
}

.audience-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: white;
    padding: 2rem;
    border-radius: 0.125rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.audience-number {
    flex-shrink: 0;
    font-size: 3rem;
    font-family: var(--font-playfair);
    color: rgba(213, 162, 78, 0.2);
    font-weight: 700;
    line-height: 1;
}

.audience-title {
    font-family: var(--font-playfair);
    font-size: 1.25rem;
    color: var(--blue-deep);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Deliverables Section */
.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .deliverables-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.deliverable-item {
    padding: 0 1rem;
    border-right: 1px solid rgba(213, 162, 78, 0.2);
}

.deliverable-item:last-child {
    border-right: none;
}

.deliverable-number {
    font-size: 2.25rem;
    font-family: var(--font-cinzel);
    color: var(--gold-soft);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .deliverable-number {
        font-size: 3rem;
    }
}

.deliverable-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.deliverable-sub {
    font-size: 0.75rem;
    color: rgba(232, 219, 204, 0.7);
}

/* Footer */
.footer {
    background-color: var(--graphite);
    color: var(--nude-light);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(213, 162, 78, 0.3);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    font-family: var(--font-cinzel);
    font-size: 1.875rem;
    color: var(--gold-soft);
    letter-spacing: 0.1em;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: var(--gold-soft);
    transition: color 0.3s;
}

.social-icon:hover {
    color: white;
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-title {
    font-family: var(--font-playfair);
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    font-size: 0.875rem;
    color: rgba(232, 219, 204, 0.7);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-soft);
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-icon {
    color: var(--gold-soft);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}