* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Instrument Sans", sans-serif;
}

body {
    color: #34111A;
    background: #F2E0D6;
}

.wrapper {
    position: relative;
}
.wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(img/bg.svg) no-repeat top 200px center;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: multiply;
}

.container {
    max-width: calc(1400px + 40px);
    padding: 0 20px;
    margin: 0 auto;
}
@media (max-width: 599px) {
    .container { padding: 0; }
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 0 130px 0;
}
@media (max-width: 1366px) {
    header { padding: 50px 0 130px 0; }
}
@media (max-width: 599px) {
    header { padding: 50px 30px 110px 30px; }
}

.logo-symbol { max-width: 132px; }
@media (max-width: 767px) {
    .logo-symbol { max-width: 334px; margin: 0 auto; }
}

.logo-type { transform: translateY(30px); }
@media (max-width: 767px) {
    .logo-type { display: none; }
}

h1 {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 96px;
    line-height: 93%;
    text-align: center;
}
@media (max-width: 599px) {
    h1 { max-width: 260px; margin: 0 auto 70px auto; font-size: 64px; }
}

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

main p {
    margin: 100px 0;
    font-size: 55px;
    font-weight: 500;
    line-height: 93%;
    text-align: center;
}
@media (max-width: 599px) {
    main p { padding: 0 30px; font-size: 42px; }
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 100px;
}
footer p {
    font-family: "Instrument Serif", serif;
    font-size: 55px;
    font-style: italic;
    font-weight: 400;
    line-height: 93%;
    text-align: center;
}
footer ul { display: flex; align-items: center; gap: 20px; }
footer li { list-style: none; }

/* ===== Adăugări La Foresta — CTA + Formular ===== */

html { scroll-behavior: smooth; }

.cta-wrap {
    margin: 60px 0 0 0;
    text-align: center;
}
@media (max-width: 599px) {
    .cta-wrap { margin-top: 40px; padding: 0 30px; }
}

.cta-label {
    display: block;
    margin-bottom: 16px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8923C;
}

.cta-link {
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    line-height: 110%;
    color: #34111A;
    text-decoration: none;
}
.cta-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #B8923C;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}
.cta-link:hover::after { width: 90px; }
@media (max-width: 599px) {
    .cta-link { font-size: 24px; }
}

.btn-cta {
    display: inline-block;
    padding: 18px 40px;
    border: none;
    border-radius: 999px;
    background: #34111A;
    color: #F2E0D6;
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn-cta:hover { transform: translateY(-2px); opacity: 0.9; }

.reserve {
    max-width: 480px;
    margin: 100px auto 100px auto;
}
@media (max-width: 599px) {
    .reserve { margin: 70px 30px 80px 30px; }
}

.form-row { margin-bottom: 18px; }
.reserve input,
.reserve select,
.reserve textarea {
    width: 100%;
    padding: 14px 4px;
    border: none;
    border-bottom: 1.5px solid rgba(52, 17, 26, 0.3);
    background: transparent;
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    color: #34111A;
}
.reserve input::placeholder,
.reserve textarea::placeholder { color: rgba(52, 17, 26, 0.5); }
.reserve input:focus,
.reserve select:focus,
.reserve textarea:focus {
    outline: none;
    border-bottom-color: #34111A;
}
.reserve textarea { resize: vertical; }
.reserve button.btn-cta { width: 100%; margin-top: 8px; }

.form-note {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}
.field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: rgba(52, 17, 26, 0.6);
    text-align: left;
}
.location-line {
    margin: 40px auto 60px auto !important;
    max-width: 700px;
    font-family: "Instrument Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.55;
    text-align: center;
}
@media (max-width: 599px) {
    .location-line { font-size: 13px !important; padding: 0 30px; }
}