:root {
    --bg: #f6efe6;
    --bg-soft: #fdf9f3;
    --bg-tint: #efe0ca;
    --panel: rgba(255, 251, 245, 0.84);
    --panel-solid: #fffaf4;
    --panel-strong: #f2e3cd;
    --text: #2b1f15;
    --muted: #766352;
    --line: rgba(118, 99, 82, 0.18);
    --line-strong: rgba(163, 122, 60, 0.34);
    --gold: #d6b37a;
    --gold-strong: #a87733;
    --gold-deep: #7c5422;
    --shadow: 0 30px 70px rgba(100, 69, 34, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background:
        linear-gradient(180deg, #fcfaf7 0%, #f5eee5 48%, #fcfaf7 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 46%),
        repeating-linear-gradient(90deg, rgba(168, 119, 51, 0.025) 0, rgba(168, 119, 51, 0.025) 1px, transparent 1px, transparent 120px);
    opacity: 0.28;
}

body::after {
    content: none;
}

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

img {
    max-width: 100%;
}

.page-shell {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 252, 248, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(118, 99, 82, 0.12);
    box-shadow: 0 8px 24px rgba(56, 39, 20, 0.04);
}

.navbar {
    padding: 0.8rem 0;
    margin: 0 auto;
    max-width: 1320px;
}

.navbar > .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    width: 3.15rem;
    height: 3.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 119, 51, 0.3);
    border-radius: 50%;
    font-family: "Bodoni Moda", serif;
    font-size: 1.28rem;
    letter-spacing: 0.08em;
    color: var(--gold-strong);
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(244, 231, 212, 0.82));
    box-shadow: 0 12px 28px rgba(168, 119, 51, 0.14);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong,
.section-kicker,
.eyebrow,
.panel-label,
.property-tag {
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand-text strong {
    font-size: 1.05rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-link {
    color: rgba(43, 31, 21, 0.84);
    font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold-strong);
}

.navbar-toggler {
    border-color: rgba(168, 119, 51, 0.24);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(214, 179, 122, 0.18);
}

.btn-gold {
    background: #b98a49;
    border: 1px solid #b98a49;
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    box-shadow: none;
}

.btn-gold:hover,
.btn-gold:focus {
    color: #fff;
    background: #a87733;
    border-color: #a87733;
    transform: none;
    box-shadow: none;
}

.btn-outline-luxury {
    border: 1px solid rgba(118, 99, 82, 0.24);
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.btn-outline-luxury:hover,
.btn-outline-luxury:focus {
    color: var(--gold-strong);
    border-color: rgba(168, 119, 51, 0.42);
    background: rgba(255, 251, 246, 0.94);
}

.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 3.5rem;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 20, 14, 0.74) 0%, rgba(26, 20, 14, 0.58) 36%, rgba(26, 20, 14, 0.18) 62%, rgba(26, 20, 14, 0.08) 100%),
        url("https://sgorchard.org/wp-content/uploads/2026/02/Sg_Orchard-pool.png") center/cover no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 0;
}

.hero-section::after {
    content: none;
}

.hero-frame {
    width: 4rem;
    height: 2px;
    margin-bottom: 1.25rem;
    background: #b98a49;
    border: 0;
}

.hero-copy-panel {
    max-width: 39rem;
    padding: 2.2rem;
    border-radius: 1.25rem;
    background: rgba(255, 252, 248, 0.94);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(118, 99, 82, 0.12);
    box-shadow: 0 20px 50px rgba(39, 25, 12, 0.1);
}

.eyebrow,
.section-kicker,
.panel-label {
    color: var(--gold-strong);
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.08;
    color: var(--text);
}

h1 {
    font-family: "Bodoni Moda", serif;
    line-height: 0.95;
    color: var(--text);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    max-width: 8ch;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.hero-copy {
    max-width: 34rem;
    font-size: 1rem;
    padding-right: 0;
    color: rgba(43, 31, 21, 0.78);
}

.hero-lead {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--gold-deep);
    font-weight: 600;
}

.hero-actions {
    margin-top: 2.2rem;
}

.metric-card,
.glass-panel,
.property-card,
.experience-card,
.amenity-card,
.testimonial-card,
.contact-shell,
.intro-shell {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.metric-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.1rem;
    transition: none;
}

.metric-card strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
}

.metric-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.glass-panel {
    position: relative;
    background: #fff;
    backdrop-filter: blur(8px);
    border-radius: 1.25rem;
    padding: 2rem;
    overflow: hidden;
}

.glass-panel::after {
    content: none;
}

.glass-panel::before,
.property-card::before,
.amenity-card::before,
.testimonial-card::before,
.contact-shell::before,
.intro-shell::before {
    content: none;
}

.inquiry-panel h2 {
    font-size: 2.55rem;
    margin-bottom: 1.2rem;
}

.form-label {
    color: var(--text);
    font-weight: 600;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(118, 99, 82, 0.14);
    color: var(--text);
    border-radius: 0.95rem;
    padding: 0.95rem 1rem;
}

.form-control::placeholder {
    color: rgba(118, 99, 82, 0.58);
}

.form-control:focus,
.form-select:focus {
    background: #fffdf9;
    color: var(--text);
    border-color: rgba(168, 119, 51, 0.72);
    box-shadow: 0 0 0 0.2rem rgba(214, 179, 122, 0.14);
}

.section-intro,
.properties-section,
.experience-section,
.highlights-section,
.location-section,
.pricing-section,
.amenities-section,
.testimonial-section,
.faq-section,
.contact-section {
    position: relative;
    padding: 5.5rem 0;
}

.section-intro {
    padding-top: 3rem;
}

.intro-shell {
    position: relative;
    padding: 2rem;
    border-radius: 1.25rem;
    background: #fff;
    overflow: hidden;
}

.section-heading {
    margin-bottom: 2.6rem;
}

.text-link {
    color: var(--gold-strong);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.text-link:hover,
.text-link:focus {
    color: var(--gold-deep);
}

.property-card {
    position: relative;
    background: #fff;
    border-radius: 1.1rem;
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.property-card:hover {
    transform: translateY(-6px);
    border-color: rgba(118, 99, 82, 0.22);
    box-shadow: 0 18px 40px rgba(100, 69, 34, 0.1);
}

.properties-section {
    background: transparent;
}

.property-image {
    min-height: 19rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 58%;
    background: linear-gradient(180deg, transparent, rgba(255, 249, 241, 0.82));
}

.property-tag {
    position: absolute;
    top: 1.3rem;
    left: 1.3rem;
    z-index: 1;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.9);
    color: var(--gold-strong);
    font-size: 0.68rem;
    border: 1px solid rgba(168, 119, 51, 0.18);
}

.property-content {
    padding: 1.7rem;
}

.location,
.details {
    font-size: 0.95rem;
}

.details {
    letter-spacing: 0.04em;
}

.price {
    color: var(--gold-strong);
    font-size: 1.15rem;
    white-space: nowrap;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.experience-card,
.amenity-card {
    position: relative;
    background: #fff;
    border-radius: 1.1rem;
    padding: 1.5rem;
}

.experience-section {
    background: transparent;
}

.experience-card span {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--gold-strong);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.accent-card {
    transform: translateY(2rem);
    background: #f7f1e8;
}

.service-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.service-item {
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(118, 99, 82, 0.12);
}

.stat-card,
.location-card,
.pricing-card,
.faq-card {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.highlights-section::before,
.pricing-section::before {
    content: none;
}

.highlights-section .container,
.pricing-section .container {
    position: relative;
    z-index: 1;
}

.highlights-section .section-kicker,
.highlights-section h2,
.pricing-section .section-kicker,
.pricing-section h2,
.pricing-section .text-link {
    color: inherit;
}

.highlights-section .stat-card,
.pricing-section .pricing-card {
    background: #fff;
}

.stat-card strong {
    display: block;
    margin-bottom: 0.6rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--gold-strong);
    font-weight: 800;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.location-section {
    background: transparent;
}

.location-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-badge {
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(168, 119, 51, 0.2);
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(242, 227, 205, 0.8));
    color: var(--gold-strong);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.pricing-card h3,
.faq-card h3 {
    margin-bottom: 0.9rem;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.faq-section {
    background: transparent;
}

.amenity-card h3 {
    font-size: 1.9rem;
}

.testimonial-section {
    padding-top: 4rem;
}

.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
}

.testimonial-section {
    margin-top: 1rem;
}

.quote-mark {
    width: 3.1rem;
    height: 3.1rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--gold-strong);
    border: 1px solid rgba(168, 119, 51, 0.18);
    background: rgba(255, 250, 243, 0.9);
}

.quote {
    max-width: 44rem;
    margin: 0 auto 1.2rem;
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.5;
}

.client-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-shell {
    position: relative;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.2rem;
    overflow: hidden;
}

.contact-shell::after {
    content: none;
}

.contact-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
    color: var(--muted);
}

.site-footer {
    padding: 1.6rem 0 2.8rem;
    color: var(--muted);
}

.site-footer p {
    margin-top: 0.4rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(255, 248, 238, 0.96);
        border: 1px solid rgba(118, 99, 82, 0.12);
        border-radius: 1rem;
    }

    .hero-section {
        padding-top: 7rem;
    }

    .hero-section::before {
        inset: 0;
    }

    .hero-copy-panel {
        padding: 2rem 1.5rem;
    }

    .inquiry-panel {
        margin-top: 2rem;
    }

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

    .location-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .accent-card {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 3rem;
    }

    .hero-copy-panel {
        padding: 1.5rem 1.25rem;
    }

    .navbar > .container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .section-intro,
    .properties-section,
    .experience-section,
    .highlights-section,
    .location-section,
    .pricing-section,
    .amenities-section,
    .testimonial-section,
    .faq-section,
    .contact-section {
        padding: 4rem 0;
    }

    .glass-panel,
    .contact-shell,
    .testimonial-card,
    .intro-shell {
        padding: 1.5rem;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
