/* AGENCY Landing Page Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: white;
    color: #000;
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1280px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: #d1d5db;
    margin-top: 2rem;
}

.hero p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #9ca3af;
    max-width: 40rem;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 0.5px solid #4A7C7A;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #4A7C7A;
    color: #000;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-white {
    background: white;
    color: #000;
}

.section-black {
    background: #000;
    color: white;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 0.5px solid currentColor;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: 5fr 7fr;
    }
}

.grid-3 {
    display: grid;
    gap: 1.5rem;
    margin-top: 4rem;
}

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

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

/* Content Box */
.content-box {
    padding: 2rem;
    border: 0.5px solid #4A7C7A;
    background: inherit;
}

.content-box p {
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: 500;
}

/* Text Styles */
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
}

.section-black .text-lg {
    color: #9ca3af;
}

.semibold {
    font-weight: 600;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #000;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Service Cards */
.service-card {
    padding: 1.5rem;
    border: 0.5px solid white;
    background: #000;
    transition: all 0.3s;
}

.service-card:hover {
    background: white;
    color: #000;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-number {
    font-size: 1.875rem;
    font-weight: 900;
    color: #374151;
}

.service-card:hover .service-number {
    color: #d1d5db;
}

.service-description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #9ca3af;
}

.service-card:hover .service-description {
    color: #374151;
}

/* Contact */
#contact {
    position: relative;
}

.contact-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#contact .container {
    position: relative;
    z-index: 10;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.contact-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.contact-link:hover {
    color: #4A7C7A;
}

/* Footer */
.footer {
    background: white;
    border-top: 0.5px solid #000;
    padding: 0rem 0;
}

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

.footer-logo {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-nma img {
    height: 5rem;
    width: auto;
}

.footer-nma:hover {
    opacity: 0.7;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}

.divider-line {
    width: 4rem;
    height: 0.125rem;
    background: #000;
}

.divider-link {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.divider-link:hover {
    color: #6b7280;
}

/* Diagonal Cuts */
.diagonal-cut-top {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    margin-top: -3rem;
    padding-top: 6rem;
}

.diagonal-cut-bottom {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    padding-bottom: 6rem;
    margin-bottom: -3rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
