:root {
    font-family: "Poppins", "Inter", "Nunito", system-ui, sans-serif;
    --peach: #ffe1d6;
    --cream: #fff8f1;
    --lavender: #ede7ff;
    --mint: #d3f6ed;
    --text: #2c2a35;
    --muted: #5c5368;
    --cta: #ff8ba7;
}

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

body {
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 28px;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tag {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

h1 {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    line-height: 1.15;
}

p {
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
}

.card {
    padding: 2rem;
    border-radius: 28px;
    background: white;
    box-shadow: 0 20px 40px rgba(31, 28, 45, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: var(--cta);
    color: white;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.back-link {
    margin-top: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
