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

body {
    font-family: 'Inter', sans-serif;
    background: #f8f8f6;
    color: #1c1c1c;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    color: #111;
}

.logo p {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: #000;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f1f1ee, #ffffff);
    border-bottom: 1px solid #ddd;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #777;
    font-size: 12px;
    margin-bottom: 20px;
}

.hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 60px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #111;
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-dark {
    background: #111;
    color: white;
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn-light {
    border: 1px solid #ccc;
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    color: #222;
    background: white;
    font-size: 14px;
    font-weight: 600;
}

.feature-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 35px;
}

.feature-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    margin: 18px 0;
}

.feature-box p {
    color: #555;
    margin-bottom: 25px;
}

.study-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.study-item {
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 14px 18px;
    background: #fafafa;
}

.features {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 35px;
}

.card h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.card p {
    color: #555;
}

.posts {
    background: #f3f3f0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 45px;
}

.section-heading p {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #777;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.post-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 30px;
}

.post-category {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 14px;
}

.post-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.post-card p {
    color: #555;
    margin-bottom: 20px;
}

.post-date {
    font-size: 14px;
    color: #777;
}

.subscribe {
    padding: 90px 0;
}

.subscribe-box {
    background: #111;
    color: white;
    border-radius: 28px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.subscribe-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 12px;
}

.subscribe-box p {
    color: #cfcfcf;
}

.subscribe-form {
    background: white;
    padding: 10px;
    border-radius: 16px;
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    border: none;
    outline: none;
    padding: 12px;
    min-width: 240px;
}

.subscribe-form button {
    background: #111;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
}

.feed-hero {
    padding: 80px 0 50px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.feed-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 58px;
    margin-bottom: 20px;
}

.feed-controls {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.feed-controls input,
.feed-controls select {
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid #ccc;
    background: white;
}

.feed-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    padding: 60px 0;
}

.feed-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feed-post {
    background: white;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 35px;
}

.feed-post h2 {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    margin: 15px 0;
}

.sidebar-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 25px;
}

.sidebar-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 18px;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 14px 16px;
    background: #fafafa;
}

footer {
    background: white;
    border-top: 1px solid #ddd;
    padding: 35px 0;
    color: #777;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

@media(max-width: 950px) {

.hero-grid,
.feature-grid,
.post-grid,
.feed-layout,
.subscribe-box {
    grid-template-columns: 1fr;
    display: grid;
}

.hero h2 {
    font-size: 42px;
}

.feed-hero h1 {
    font-size: 42px;
}

nav ul {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.subscribe-form {
    flex-direction: column;
}

.subscribe-form input {
    width: 100%;
}

}