/* ===== Fonts ===== */
@font-face {
    font-family: "Arvo";
    src: url("content/Arvo-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Arvo";
    src: url("content/Arvo-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Arvo";
    src: url("content/Arvo-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Arvo";
    src: url("content/Arvo-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Bahianita";
    src: url("content/Bahianita-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== Design tokens ===== */
:root {
    --color-dark: #3d3c34;
    --color-dark-2: #33322b;
    --color-cream: #ece8d9;
    --color-cream-dim: #d8d3c1;
    --color-accent: #8a9455;
    --color-accent-dark: #6f7844;
    --max-width: 1080px;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Arvo", Georgia, serif;
    color: var(--color-dark);
    background: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--color-accent-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Header / Nav ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav__brand img {
    height: 44px;
    border-radius: 6px;
}

.nav__links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav__links a {
    color: var(--color-cream);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav__links a:hover {
    color: #fff;
    text-decoration: none;
}

/* ===== Hero ===== */
.hero {
    background:
        linear-gradient(rgba(61, 60, 52, 0.85), rgba(51, 50, 43, 0.92)),
        var(--color-dark);
    color: var(--color-cream);
    text-align: center;
    padding: 6rem 1.5rem;
}

.hero__title {
    font-family: "Bahianita", "Arvo", serif;
    font-size: clamp(4rem, 14vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--color-cream);
}

.hero__logo {
    width: min(420px, 80%);
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero__tagline {
    margin-top: 0.5rem;
    font-size: clamp(1rem, 3vw, 1.4rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream-dim);
}

.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: var(--color-accent);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: var(--color-accent-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
    padding: 4.5rem 0;
}

.section--alt {
    background: var(--color-dark);
    color: var(--color-cream);
}

.section__title {
    font-family: "Bahianita", "Arvo", serif;
    font-size: clamp(2.5rem, 7vw, 4rem);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.section--alt .section__title {
    color: var(--color-cream);
}

.section__lead {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: var(--color-cream-dim);
}

.section__body {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section__body p + p {
    margin-top: 1.2rem;
}

/* ===== Videos ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.video {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}

.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Contact ===== */
.contact {
    display: flex;
    justify-content: center;
}

.contact__card {
    font-style: normal;
    background: #fff;
    border: 1px solid var(--color-cream-dim);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 280px;
}

.contact__name {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact__line {
    margin-top: 0.75rem;
}

.contact__line span {
    font-weight: 700;
    margin-right: 0.35rem;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-dark-2);
    color: var(--color-cream-dim);
    text-align: center;
    padding: 2.5rem 0;
}

.site-footer__logo {
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 6px;
}

.site-footer p {
    font-size: 0.9rem;
}
