:root {
    --ary-primary: #4A6C58; /* Alpine Green */
    --ary-secondary: #D8C3A5; /* Warm Beige */
    --ary-dark: #2C3E50;    /* Dark Slate */
    --ary-light: #F9F7F2;   /* Cream Paper */
    --ary-white: #FFFFFF;
    --ary-text: #4F4F4F;
    --ary-border: #E0E0E0;
    --ary-font-head: 'Playfair Display', serif;
    --ary-font-body: 'Lato', sans-serif;
    --ary-radius: 8px;
}

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

body {
    font-family: var(--ary-font-body);
    color: var(--ary-text);
    background-color: var(--ary-light);
    line-height: 1.6;
}

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

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

/* Header */
.ary-header {
    background: var(--ary-white);
    border-bottom: 1px solid var(--ary-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ary-menu { display: flex; gap: 30px; }
.ary-menu a {
    font-size: 0.95rem;
    color: var(--ary-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}
.ary-menu a:hover { color: var(--ary-primary); border-bottom: 1px solid var(--ary-primary); }

/* Mobile Menu */
.ary-burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ary-primary); }
.ary-mobile-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: var(--ary-light);
    border-bottom: 2px solid var(--ary-primary);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.ary-mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid #ddd; font-weight: 600; }
.ary-mobile-nav.active { display: block; }

/* Hero Section */
.ary-hero {
    position: relative;
    height: 600px;
    background: url('https://loremflickr.com/1200/800/yoga,nature/all?lock=1') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.ary-overlay {
    position: absolute; inset: 0;
    background: rgba(44, 62, 80, 0.4); /* Dark overlay for contrast */
}
.ary-hero-content {
    position: relative; z-index: 10;
    max-width: 800px; padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--ary-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.ary-hero h1 { font-size: 3rem; color: var(--ary-primary); margin-bottom: 20px; }
.ary-hero p { font-size: 1.2rem; color: var(--ary-text); margin-bottom: 35px; font-style: italic; }
.ary-btn {
    display: inline-block;
    background: var(--ary-primary);
    color: var(--ary-white);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.ary-btn:hover { background: #355040; transform: translateY(-2px); }

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

.ary-title { text-align: center; font-size: 2.2rem; margin-bottom: 20px; color: var(--ary-dark); position: relative; }
.ary-subtitle { text-align: center; color: #777; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }

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

.ary-card {
    background: var(--ary-white);
    border-radius: var(--ary-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid #F0F0F0;
}
.ary-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(74, 108, 88, 0.15); border-color: var(--ary-primary); }
.ary-card img { width: 100%; height: 220px; object-fit: cover; }
.ary-card-body { padding: 30px; text-align: center; }
.ary-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--ary-primary); }
.ary-card p { font-size: 0.95rem; color: var(--ary-text); }

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

/* Form */
.ary-form-wrap {
    max-width: 600px; margin: 0 auto; background: var(--ary-white);
    padding: 50px; border-radius: var(--ary-radius); box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--ary-border);
}
.ary-group { margin-bottom: 25px; }
.ary-label { display: block; margin-bottom: 10px; font-weight: 700; font-size: 0.85rem; color: var(--ary-dark); letter-spacing: 0.5px; text-transform: uppercase; }
.ary-input {
    width: 100%; padding: 14px; background: var(--ary-light);
    border: 1px solid var(--ary-border); border-radius: 4px; font-family: inherit;
}
.ary-input:focus { outline: none; border-color: var(--ary-primary); background: var(--ary-white); }
.ary-submit { width: 100%; border: none; cursor: pointer; }

/* Footer */
.ary-footer { background: var(--ary-dark); color: #ccc; padding: 80px 20px 30px; font-size: 0.9rem; }
.ary-footer h4 { color: var(--ary-white); font-size: 1.2rem; margin-bottom: 25px; }
.ary-footer a { display: block; margin-bottom: 10px; }
.ary-footer a:hover { color: var(--ary-secondary); }
.ary-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1100px; margin: 0 auto 60px; }
.ary-copy { text-align: center; border-top: 1px solid #444; padding-top: 30px; font-size: 0.8rem; }

/* Cookie */
.ary-cookie {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--ary-white); padding: 20px; border-top: 4px solid var(--ary-primary);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1); display: none; z-index: 2000; text-align: center;
}
.ary-cookie-btn {
    background: var(--ary-primary); color: var(--ary-white); border: none;
    padding: 8px 30px; margin-left: 20px; border-radius: 50px; cursor: pointer; font-weight: 600;
}

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