:root {
    --gold: #f4caa2;
    --gold-strong: #f6b879;
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.72);
    --bg-overlay: rgba(18, 10, 32, 0.55);
    --bg-overlay-2: rgba(18, 10, 32, 0.25);
    --btn-from: #f6c56f;
    --btn-to: #ff4aa2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    /* font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
    font-family: "Playfair Display", serif;
    font-weight: 200;
    background-image:
        linear-gradient(to top, var(--bg-overlay), var(--bg-overlay-2)),
        url("bg.jpg");
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

/* Topbar / Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(10, 6, 22, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.nav a {
    color: var(--gold);
    text-decoration: none;
    font-family: "Playfair Display", serif;
    font-weight: 200;
    /* font-family: Cinzel, serif; */
    /* font-weight: 600; */
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav a:hover {
    opacity: 1;
}

.hero {
    /* min-height: calc(100vh - 150px); */
    /* min-height: calc(100vh - 140px); */
    display: grid;
    place-items: center;
    text-align: center;
    padding-top: 50px;
}

h1 {
    margin: 0 0 16px;
    font-family: "Playfair Display", serif;
    font-weight: 200;
    -webkit-font-smoothing: antialiased;
    /* font-family: Cinzel, serif;
      font-weight: 700; */
    font-size: clamp(42px, 6vw, 72px);
    color: var(--gold);
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.tagline {
    margin: 0 0 26px;
    /* font-family: Cinzel, serif;
      font-family: 'Playfair Display', serif; */
    font-weight: 200;
    /* letter-spacing: .22em; */
    text-transform: uppercase;
    color: rgba(244, 202, 162, 0.92);
    font-size: 14px;
}

.lead {
    margin: 0 auto 30px;
    max-width: 52ch;
    color: rgba(244, 202, 162, 0.92);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 200;
    padding-left: 10px;
    padding-right: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    color: rgba(30, 12, 24, 0.92);
    /* font-weight: 700;
      font-family: Cinzel, serif; */
    font-family: "Playfair Display", serif;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 18px;
    background: linear-gradient(90deg, var(--btn-from), var(--btn-to));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.12s ease,
        filter 0.12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.btn:active {
    transform: translateY(0px);
}

section {
    padding: 64px 0;
}

h2 {
    margin: 0 0 10px;
    /* font-family: Cinzel, serif; */
    font-family: "Playfair Display", serif;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.02em;
    font-size: 28px;
}

p {
    margin: 0;
    line-height: 1.75;
    font-size: 16px;
    font-weight: 300;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 860px) {
    .grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Footer */
footer {
    padding: 34px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    background: rgba(10, 6, 22, 0.28);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Accessibility helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.circle-image {
    border-radius: 50%;
    object-fit: cover;
    width: 200px;
    height: 200px;
    margin-bottom: 12px;
}
