:root {
    --bg: #fdfaf6;
    --text: #2c2c2c;
    --text-light: #666;

    --primary: #d4a373;
    --primary-hover: #c38c5c;

    --section-bg: #f4ede4;
    --card-bg: #ffffff;

    --title-bg: #ebeef0;

    --radius: 10px;
}

/* BASE */
body {
    background: var(--bg);
    color: var(--text);
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1.7;
    margin: 0;
}

/* CONTAINER */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px 50px;
}

.hero h1 {
    font-size: 38px;
    font-weight: 500;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
}

/* SECTION */
.section {
    width: 100%;
    padding: 30px 0;
}

/* TEXT */
.section p {
    white-space: pre-line;
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 15px;
    color: var(--text);
}

/* TITLES */
.section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    padding: 6px 12px;
    background: var(--title-bg);
    display: inline-block;
    border-radius: 4px;
}

.title-full {
    display: block;
    width: 100%;
    background: var(--title-bg);
    padding: 10px 16px;
    border-radius: 4px;
}

/* BUTTON */
.btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    margin: 10px;
    display: inline-block;
}

.btn:hover {
    background: var(--primary-hover);
}

/* CHIPS (RESTORE) */
.chips {
    margin: 15px 0 25px;

}

.chip {
    display: inline-block;
    background: var(--section-bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin: 5px 5px 0 0;
    color: var(--text);
}



/* LIST RESET */
.section ul {
    list-style: none;
    padding: 0;
    margin: 10px auto;
    max-width: 600px;
}

.section li {
    margin-bottom: 6px;
}

/* SPLIT */
.split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.split-text {
    text-align: left;
}

/* IMAGE FIX */
.split-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* GALLERY */
.gallery {
    background: var(--section-bg);
    border-radius: var(--radius);
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--card-bg);
    padding: 2px;
    transition: transform 0.25s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* COLUMNS */
.columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* FEATURES */
.features-block {
    margin: 20px 0;
}

.feature-item {
    background: var(--card-bg);
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.feature-item::before {
    content: "✔";
    margin-right: 8px;
    color: var(--primary);
}

/* ADVANCED GRID */
.advanced-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.advanced-grid.cols-1 {
    grid-template-columns: 1fr;
}

.advanced-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.advanced-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.advanced-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.advanced-item {
    background: var(--card-bg);
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* DECORATION */
.decorated .advanced-item::before {
    content: "✔";
    margin-right: 8px;
    color: var(--primary);
}

/* BACKGROUND SECTION */
.section-bg {
    background: var(--section-bg);
    border-radius: var(--radius);
    padding: 30px 20px;
}

/* DEFAULT = ROUNDED */
.is-rounded {
    border-radius: var(--radius);
}

/* FLAT VERSION */
.no-rounded {
    border-radius: 0 !important;

}

/* INLINE LIST */
.inline-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.inline-list li {
    padding-left: 12px;
    position: relative;
}

.inline-list li::before {
    content: "";

    position: absolute;
    left: 0;
    color: var(--primary);
}

/* CTA */
.section:last-of-type:not(.no-rounded) {
    background: var(--section-bg);
    border-radius: var(--radius);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 20px;
    opacity: 0.6;
}

/* MOBILE */
@media (max-width: 768px) {

    .site-container {
        padding: 0 15px;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .columns {
        grid-template-columns: 1fr;
    }

    .advanced-grid {
        grid-template-columns: 1fr !important;
    }
}

.guest-promise p {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 10px;
}

.guest-promise strong {
    color: var(--primary);
    font-weight: 600;
}


.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    font-size: 18px;
    text-decoration: none;
    color: var(--primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.social-left {
    justify-content: flex-start;
}

.social-center {
    justify-content: center;
}

.social-right {
    justify-content: flex-end;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}