:root {
    --bg: #FAF9F6;
    --text-main: #1f1f1f;
    --text-muted: #5f5f5f;
}

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

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    min-height: 100vh;
}

section {
    margin-bottom: 80px;
}

.container {
    max-width: 680px;
    padding: 64px 24px;
    text-align: center;
    margin: 0 auto;
}

.border-section {
    padding: 20px;
    border: 2px solid black;
    border-radius: 20px;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 500;
    margin-bottom: 10px;
}

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

h1 a:hover,
h1 a:focus {
  text-decoration: none;
  color: inherit;
}

h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

img {
    max-width: 50%;
    height: auto;
}

footer {
    margin-top: 25px;
}
.footer-name {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .container {
    padding: 48px 20px;
    }

    .tagline {
    margin-bottom: 40px;
    }

    .body-text {
    margin-bottom: 40px;
    }
}

.body-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 48px;
}

.body-text p {
    margin-bottom: 20px;
}

.cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.cta a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.cta a:hover {
    opacity: 0.65;
}

.ig-handle {
    color: black;
    text-decoration: underline;
    font-weight: bold;
}