:root {
    --hnl-primary: #6B8E78; /* Sage Green */
    --hnl-secondary: #D4C5B0; /* Sand Beige */
    --hnl-dark: #4A4A4A;    /* Soft Charcoal */
    --hnl-light: #F9F8F6;   /* Off-White/Paper */
    --hnl-white: #FFFFFF;
    --hnl-text: #5D5D5D;
    --hnl-border: #E5E0D8;
    --hnl-font-head: 'Gowun Batang', serif;
    --hnl-font-body: 'Noto Sans KR', sans-serif;
    --hnl-radius: 12px;
}

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

body {
    font-family: var(--hnl-font-body);
    color: var(--hnl-text);
    background-color: var(--hnl-light);
    line-height: 1.7;
    word-break: keep-all; /* Important for Korean */
}

h1, h2, h3, h4 {
    font-family: var(--hnl-font-head);
    color: var(--hnl-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }

/* Header */
.hnl-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hnl-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hnl-nav-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hnl-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hnl-primary);
    font-family: var(--hnl-font-head);
    gap: 10px;
}
.hnl-logo img { width: 32px; height: 32px; }

.hnl-menu { display: flex; gap: 35px; }
.hnl-menu a {
    font-size: 0.95rem;
    color: var(--hnl-dark);
    font-weight: 500;
}
.hnl-menu a:hover { color: var(--hnl-primary); }

/* Mobile Menu */
.hnl-burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--hnl-dark); }
.hnl-mobile-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: var(--hnl-white);
    border-bottom: 1px solid var(--hnl-border);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(107, 142, 120, 0.1);
}
.hnl-mobile-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--hnl-light); font-weight: 500; }
.hnl-mobile-nav.active { display: block; }

/* Hero Section */
.hnl-hero {
    position: relative;
    height: 550px;
    background: url('https://images.pexels.com/photos/3823039/pexels-photo-3823039.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hnl-overlay {
    position: absolute; inset: 0;
    background: rgba(255, 255, 255, 0.3); /* Light overlay */
}
.hnl-hero-content {
    position: relative; z-index: 10;
    max-width: 700px; padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--hnl-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.hnl-hero h1 { font-size: 2.5rem; color: var(--hnl-primary); margin-bottom: 15px; }
.hnl-hero p { font-size: 1.1rem; color: var(--hnl-text); margin-bottom: 30px; }
.hnl-btn {
    display: inline-block;
    background: var(--hnl-primary);
    color: var(--hnl-white);
    padding: 14px 35px;
    font-weight: 500;
    border-radius: 50px;
    font-size: 1rem;
    transition: 0.3s;
}
.hnl-btn:hover { background: #557260; transform: translateY(-2px); }

/* Sections */
.hnl-section { padding: 90px 20px; }
.hnl-bg-white { background: var(--hnl-white); }
.hnl-container { max-width: 1100px; margin: 0 auto; }

.hnl-title { text-align: center; font-size: 2rem; margin-bottom: 15px; color: var(--hnl-dark); }
.hnl-subtitle { text-align: center; color: #888; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Grid System */
.hnl-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hnl-card {
    background: var(--hnl-white);
    padding: 30px;
    border-radius: var(--hnl-radius);
    border: 1px solid var(--hnl-border);
    transition: 0.3s;
    text-align: center;
}
.hnl-card:hover { border-color: var(--hnl-primary); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(107, 142, 120, 0.1); }
.hnl-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; color: var(--hnl-primary); }
.hnl-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.hnl-card p { font-size: 0.95rem; color: var(--hnl-text); }

/* About Split */
.hnl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hnl-split-img { width: 100%; border-radius: var(--hnl-radius); box-shadow: 15px 15px 0px var(--hnl-secondary); }

/* Form */
.hnl-form-wrap {
    max-width: 600px; margin: 0 auto; background: var(--hnl-white);
    padding: 40px; border-radius: var(--hnl-radius); box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--hnl-border);
}
.hnl-group { margin-bottom: 20px; }
.hnl-label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; color: var(--hnl-dark); }
.hnl-input {
    width: 100%; padding: 12px; background: var(--hnl-light);
    border: 1px solid var(--hnl-border); border-radius: 8px; font-family: inherit;
}
.hnl-input:focus { outline: 1px solid var(--hnl-primary); background: var(--hnl-white); }
.hnl-submit { width: 100%; border: none; cursor: pointer; }

/* Footer */
.hnl-footer { background: #EAE6DF; color: var(--hnl-dark); padding: 60px 20px 20px; font-size: 0.9rem; }
.hnl-footer h4 { color: var(--hnl-primary); font-size: 1.1rem; margin-bottom: 20px; font-family: var(--hnl-font-head); }
.hnl-footer a { display: block; margin-bottom: 10px; }
.hnl-footer a:hover { color: var(--hnl-primary); }
.hnl-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1100px; margin: 0 auto 60px; }
.hnl-copy { text-align: center; border-top: 1px solid #D6CFC5; padding-top: 30px; font-size: 0.85rem; }

/* Cookie */
.hnl-cookie {
    position: fixed; bottom: 20px; left: 20px; max-width: 350px;
    background: var(--hnl-white); padding: 25px; border-radius: var(--hnl-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: none; z-index: 2000;
}
.hnl-cookie p { font-size: 0.9rem; margin-bottom: 15px; color: var(--hnl-text); }
.hnl-cookie-btn {
    background: var(--hnl-primary); color: var(--hnl-white); border: none;
    padding: 10px 20px; width: 100%; border-radius: 50px; cursor: pointer; font-weight: 500;
}

@media (max-width: 768px) {
    .hnl-menu { display: none; }
    .hnl-burger { display: block; }
    .hnl-hero h1 { font-size: 2rem; }
    .hnl-split { grid-template-columns: 1fr; gap: 40px; }
}