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

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

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

ol, ul {
    list-style: none;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #f5f1ed;
    color: #252323;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    overflow: hidden;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: 'Domine', serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.1;
    text-align: left;
}

.hero-cta {
    display: inline-block;
    align-self: flex-end;
    margin-top: 2rem;
    padding: 0.85rem 1.5rem;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #252323;
    background-color: transparent;
    border: 1px solid #252323;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-cta:hover {
    background-color: #252323;
    color: #f5f1ed;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    padding: 0 40px;
}

.nav-brand {
    font-family: 'Domine', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: inherit;
}

.nav-contact {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.nav-contact:hover {
    color: #9a8f86;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    padding: 0 40px;
}

.footer-copyright,
.footer-location {
    font-size: 0.72rem;
    color: #9a8f86;
}

@media (max-width: 480px) {
    body {
        padding-bottom: 20px;
    }

    footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 20px 40px;
    }
}
