:root {
    --green-900: #09391B;
    --green-300: #A5C5B1;
    --red-500:   #CC3300;
    --pink-200:  #FFCCCC;
    --gray-500:  #999999;
    --bg:        #FBF8F3;
    --ink:       #1A1A1A;
    --maxw:      1100px;
    --radius:    4px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green-900); }
a:hover { color: var(--red-500); }

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

/* ---------- Hero ---------- */
.hero {
    background: var(--green-900);
    color: var(--green-300);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}

.hero__inner {
    max-width: 640px;
    margin: 0 auto;
}

.hero__logo {
    width: min(360px, 80%);
    height: auto;
    margin: 0 auto 2rem;
    /* logo SVG é preto — inverte pra ficar claro no fundo verde */
    filter: brightness(0) invert(1);
}

.hero__tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #fff;
    margin: 0 0 0.5rem;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--green-300);
    margin: 0 0 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    background: var(--red-500);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 120ms ease, background 120ms ease;
}

.btn:hover {
    background: #b52d00;
    color: #fff;
    transform: translateY(-1px);
}

.btn--lg {
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
}

/* ---------- Sections ---------- */
.section {
    padding: 4rem 0;
}

.section--about {
    background: var(--bg);
}

.section--when {
    background: var(--pink-200);
}

.section--gallery {
    background: var(--bg);
}

.section--where {
    background: var(--green-300);
}

.section--reserve {
    background: var(--green-900);
    color: #fff;
    text-align: center;
}

.section--reserve .section__title { color: #fff; }
.section--reserve .muted { color: rgba(255,255,255,0.6); }
.section--reserve .lead  { color: rgba(255,255,255,0.85); }

.section__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    color: var(--green-900);
    margin: 0 0 1.2rem;
}

.lead {
    font-size: 1.15rem;
    max-width: 620px;
}

.muted {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.big {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin: 0.2rem 0;
}

.big--accent { color: var(--red-500); }

.price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin: 0.4rem 0;
}

.price__value { color: var(--red-500); font-weight: 600; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 720px) {
    .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ---------- Gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 720px) {
    .gallery { grid-template-columns: repeat(3, 1fr); }
}

.gallery__item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--green-300);
}

.gallery__item img { width: 100%; height: 100%; object-fit: cover; }

.gallery__ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-900);
    font-family: var(--font-serif);
    font-style: italic;
    background: repeating-linear-gradient(
        45deg,
        var(--green-300),
        var(--green-300) 10px,
        #b6cfbe 10px,
        #b6cfbe 20px
    );
}

/* ---------- Map ---------- */
.map {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg);
}

.map iframe { width: 100%; height: 100%; border: 0; }

.map__ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--green-900);
    font-family: var(--font-serif);
    font-style: italic;
    background: var(--bg);
    border: 1px dashed var(--gray-500);
}

.map__ph small { color: var(--gray-500); font-style: normal; }

/* ---------- Address & links ---------- */
address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.link {
    color: var(--green-900);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.link:hover { color: var(--red-500); }

/* ---------- Footer ---------- */
.footer {
    background: var(--green-900);
    color: var(--green-300);
    padding: 2.5rem 0;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

@media (min-width: 720px) {
    .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer__logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__nav a {
    color: var(--green-300);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer__nav a:hover { color: var(--pink-200); }

.footer__copy {
    margin: 0;
    font-size: 0.9rem;
    color: var(--green-300);
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn { transition: none; }
}
