:root {
    --primary: #5c8d89;
    --primary-light: #74b4af;
    --text: #555;
    --heading: #333;
    --bg: #f9fbfb;
    --white: #ffffff;
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
}

h1,
h2,
h3 {
    font-family: var(--font-head);
    color: var(--heading);
    margin: 0 0 1rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Nav */
.navbar {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-family: var(--font-head);
    letter-spacing: 2px;
    color: var(--heading);
    text-transform: uppercase;
}

.nav-links a {
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    padding: 8px 20px;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* Hero */
.hero {
    padding: 100px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #eef7f6 0%, transparent 70%);
    z-index: -1;
}

.subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
}

.hero p {
    max-width: 500px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Features */
.features {
    margin-top: -80px;
    padding-bottom: 100px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(92, 141, 137, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Highlight */
.highlight {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.placeholder-img {
    background: #e0e0e0;
    width: 100%;
    padding-bottom: 120%;
    border-radius: 100px 0 100px 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.check-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
}

.link-text {
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid #eee;
    margin-top: 50px;
    text-align: center;
}

.socials a {
    margin: 0 10px;
    color: var(--heading);
    font-weight: 500;
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }
}