@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@500&display=swap');

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

:root {
    --bg: #f9f8f5;
    --white: #ffffff;
    --green: #3d6b4f;
    --gold: #997c45;
    --text: #1e1e1e;
    --muted: #888;
    --border: #ececec;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 28px rgba(0,0,0,0.11);
    --radius: 12px;
}

html {
    font-size: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

/* ── HEADER ── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: 62px;
    padding: 0 36px;
    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s;
}

.logo::before {
    content: '←';
    font-size: 1.1rem;
    line-height: 1;
}

.logo:hover {
    color: var(--green);
}

/* ── SECTION ── */
section.card {
    min-height: unset;
    padding: 52px 20px 80px;
    background: var(--bg);
}

/* ── HEADING ── */
.card .heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    display: block;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 20px;
}

.card .heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* ── CARD CONTAINER ── */
.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ── CARD ITEM ── */
.card-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.card-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: #f0ede5;
}

/* ── IMAGE ── */
.image-container {
    width: 82px;
    height: 82px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f0ede5;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── CONTENT ── */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    min-width: 0;
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    flex: 1;
}

.content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.content > h4 {
    flex: 1;
    min-width: 0;
}

.content p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 400;
}

.content span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .header { padding: 0 16px; }

    section.card { padding: 36px 12px 60px; }

    .card-box {
        padding: 12px 14px;
        gap: 12px;
    }

    .image-container {
        width: 68px;
        height: 68px;
    }

    .card .heading { font-size: 1.6rem; }
    .content h4 { font-size: 0.88rem; }
    .content p { font-size: 0.73rem; }
    .content span { font-size: 0.9rem; }
}
