* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #f3f6f4;
    --surface: #ffffff;
    --text: #1f2937;
    --text-soft: #4b5563;

    --border: #e5e7eb;

    --primary: #4f7c73;
    --secondary: #6b7280;

    --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

/* =======================
   LAYOUT
======================= */

.container {
    width: min(1150px, 92%);
    margin: 0 auto;
}

/* =======================
   HERO
======================= */

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url("./assets/Hero.jpg")
        center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
    color: white;
}

.subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.15rem;
    max-width: 620px;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* =======================
   BUTTON
======================= */

.primary-btn {
    display: inline-block;
    padding: 0.95rem 1.5rem;

    border-radius: 999px;

    background: var(--surface);
    color: var(--text);

    text-decoration: none;
    font-weight: 600;

    transition: 0.25s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: #f3f4f6;
}

/* =======================
   SECTIONS
======================= */

.section {
    padding: 7rem 0;
}

.light-section {
    background: var(--bg);
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* =======================
   GRID
======================= */

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

/* =======================
   CARDS
======================= */

.card {
    background: var(--surface);
    padding: 2rem;

    border-radius: 24px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
}

.card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.card li:last-child {
    border-bottom: none;
}

/* INFO CARDS */

.section-header {
    margin-bottom: 3rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: var(--surface);
    padding: 2rem;

    border-radius: 22px;
    box-shadow: var(--shadow-soft);

    transition: 0.25s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* =======================
   CONTACT
======================= */

.contact-section {
    background: var(--bg);
}

.contact-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    grid-template-areas:
        "info access"
        "reach access";

    gap: 2rem;

    background: var(--surface);
    padding: 3rem;

    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.contact-info {
    grid-area: info;
}

.contact-access {
    grid-area: access;
}

.contact-reach {
    grid-area: reach;
}

.contact-box h3 {
    margin-bottom: 1rem;
}

.contact-box p {
    margin-bottom: 1.25rem;
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 900px) {

    .grid-2,
    .cards,
    .contact-box {
        grid-template-columns: 1fr;
        grid-template-areas:
            "info"
            "reach"
            "access";
    }

    .hero h1 {
        font-size: 2.7rem;
    }
}