
        :root {
            --ds-primary: #1a2e35;
            --ds-secondary: #8b7355;
            --ds-accent: #c4a77d;
            --ds-bg: #faf9f7;
            --ds-surface: #ffffff;
            --ds-text: #1a2e35;
            --ds-text-dim: #5c6b70;
            --ds-border: #e8e4df;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background:
                radial-gradient(circle at 10% 10%, rgba(196, 167, 125, 0.08), transparent 24%),
                radial-gradient(circle at 90% 80%, rgba(36, 63, 73, 0.08), transparent 24%),
                var(--ds-bg);
            color: var(--ds-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        a {
            color: inherit;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.03em;
        }

        p {
            color: var(--ds-text-dim);
        }

        .container {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto;
        }

        .section-eyebrow {
            display: inline-block;
            margin-bottom: 1rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--ds-secondary);
        }

        .btn-primary,
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            text-decoration: none;
            transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--ds-primary), #27444e);
            color: var(--ds-surface);
            padding: 1rem 1.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            box-shadow: 0 16px 36px rgba(26, 46, 53, 0.14);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, var(--ds-secondary), var(--ds-accent));
        }

        .btn-secondary {
            border: 1px solid var(--ds-border);
            color: var(--ds-primary);
            padding: 1rem 1.35rem;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            background: rgba(255,255,255,0.76);
            backdrop-filter: blur(12px);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            border-color: rgba(139,115,85,0.4);
            color: var(--ds-secondary);
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 2rem auto 0;
        }

        nav {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 1000;
            padding: 1.2rem 1.5rem;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(250, 249, 247, 0.9);
            backdrop-filter: blur(16px);
            box-shadow: 0 1px 0 rgba(26, 46, 53, 0.08);
        }

        .nav-inner {
            width: min(1240px, calc(100% - 0rem));
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            color: var(--ds-primary);
            letter-spacing: 0.03em;
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 600;
            color: var(--ds-text);
        }

        .nav-cta {
            background: var(--ds-primary);
            color: var(--ds-surface) !important;
            padding: 0.85rem 1.2rem;
        }

        .nav-cta:hover {
            background: var(--ds-secondary);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            width: 26px;
            height: 1.5px;
            background: var(--ds-primary);
            transition: 0.3s ease;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(250, 249, 247, 0.98);
            backdrop-filter: blur(18px);
            padding: 7rem 1.5rem 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }

        .mobile-menu li {
            margin-bottom: 1.4rem;
        }

        .mobile-menu a {
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--ds-primary);
        }

        .hero {
            min-height: 100vh;
            padding: 7rem 0 2rem;
        }

        .hero-grid {
            width: min(1320px, calc(100% - 3rem));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            align-items: stretch;
        }

        .hero-copy {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 960px;
            margin: 0 auto;
            min-height: 72vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            overflow: hidden;
            box-shadow: 0 28px 80px rgba(26, 46, 53, 0.12);
        }

        .hero-copy::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url("images/IMG_9648.JPG") center center / cover no-repeat;
            transform: scale(1.08) translateY(var(--parallax-y, 0px));
            will-change: transform;
        }

        .hero-copy::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26,46,53,0.45) 0%, rgba(26,46,53,0.05) 40%, rgba(139,88,30,0.08) 70%, rgba(196,167,125,0.38) 100%);
        }

        .hero-copy-inner {
            position: relative;
            z-index: 2;
            max-width: 760px;
            margin: 0 auto;
        }

        .hero-copy .section-eyebrow {
            color: rgba(255,255,255,0.86);
        }

        .hero h1 {
            font-size: clamp(4rem, 8vw, 7rem);
            line-height: 0.92;
            color: var(--ds-surface);
            max-width: 10ch;
            margin: 0 auto 1.4rem;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
        }

        .hero h1 span {
            display: block;
            color: #f3e7d4;
            font-style: italic;
        }

        .hero-description {
            max-width: 680px;
            font-size: 1.05rem;
            line-height: 1.85;
            margin: 0 auto 1.8rem;
            color: rgba(255,255,255,0.86);
        }

        .hero-facts {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            max-width: 760px;
            margin: 0 auto;
        }

        .hero-fact {
            padding: 1rem 1rem 0.95rem;
            background: rgba(255,255,255,0.14);
            border: 1px solid rgba(255,255,255,0.22);
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .hero-fact strong {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: var(--ds-surface);
            line-height: 1;
            margin-bottom: 0.35rem;
        }

        .hero-fact span {
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.76);
        }

        .hero-visual {
            position: relative;
            min-height: 780px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 1rem;
            align-items: stretch;
        }

        .hero-card-large,
        .hero-card-stack {
            position: relative;
            overflow: hidden;
            background: var(--ds-surface);
            box-shadow: 0 24px 70px rgba(26, 46, 53, 0.1);
        }

        .hero-card-large img,
        .hero-card-stack img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-card-large {
            min-height: 780px;
        }

        .hero-card-stack {
            display: grid;
            grid-template-rows: 1.1fr 0.9fr;
            gap: 1rem;
            background: transparent;
            box-shadow: none;
        }

        .hero-card-small,
        .hero-note {
            position: relative;
            overflow: hidden;
            background: var(--ds-surface);
            box-shadow: 0 24px 70px rgba(26, 46, 53, 0.1);
        }

        .hero-card-small {
            min-height: 430px;
        }

        .hero-note {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            background: linear-gradient(160deg, var(--ds-primary), #27444e);
        }

        .hero-note .section-eyebrow {
            color: var(--ds-accent);
        }

        .hero-note h3 {
            font-size: 2rem;
            color: var(--ds-surface);
            margin-bottom: 0.65rem;
        }

        .hero-note p {
            color: rgba(255,255,255,0.78);
            line-height: 1.8;
            max-width: 420px;
            margin: 0 auto;
        }

        .summary {
            padding: 2rem 0 6rem;
        }

        .summary-grid {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: start;
        }

        .summary-intro {
            background: var(--ds-surface);
            border: 1px solid var(--ds-border);
            padding: 2.8rem;
            box-shadow: 0 18px 48px rgba(26, 46, 53, 0.06);
            max-width: 880px;
            margin: 0 auto;
            text-align: center;
        }

        .summary-intro h2 {
            font-size: clamp(2.7rem, 4vw, 4.4rem);
            line-height: 1.02;
            color: var(--ds-primary);
            margin-bottom: 1rem;
        }

        .summary-intro p {
            max-width: 700px;
            line-height: 1.85;
            margin: 0 auto;
        }

        .property {
            padding: 4rem 0 7rem;
        }

        .property-grid {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            align-items: center;
        }

        .property-copy {
            text-align: center;
            max-width: 100%;
            margin: 0 auto;
            width: 100%;
        }

        .property-copy h2 {
            font-size: clamp(2.8rem, 5vw, 4.8rem);
            line-height: 1.02;
            color: var(--ds-primary);
            margin: 0 auto 1rem;
            max-width: 100%;
        }

        .property-copy p {
            max-width: 860px;
            line-height: 1.85;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

        .property-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
            max-width: 860px;
            margin: 0 auto;
        }

        .property-item {
            padding: 1.2rem;
            border-top: 1px solid var(--ds-border);
            text-align: center;
        }

        .property-item strong {
            display: block;
            color: var(--ds-primary);
            margin-bottom: 0.3rem;
            font-size: 1rem;
        }

        .property-visual {
            position: relative;
            min-height: 620px;
            display: grid;
            grid-template-columns: 0.68fr 0.32fr;
            gap: 1rem;
        }

        .property-main,
        .property-side {
            position: relative;
            overflow: hidden;
        }

        .property-main img,
        .property-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .property-main:hover img,
        .property-side:hover img {
            transform: scale(1.03);
        }

        .property-side {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 1rem;
        }

        .experience {
            padding: 7rem 0;
            background: linear-gradient(180deg, var(--ds-primary), #203841);
            color: var(--ds-surface);
            position: relative;
            overflow: hidden;
        }

        .experience::before {
            content: "";
            position: absolute;
            inset: auto -8% -18% auto;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: rgba(196, 167, 125, 0.08);
            filter: blur(10px);
        }

        .experience-shell {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto;
        }

        .experience-head {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.4rem;
            margin-bottom: 2rem;
            align-items: end;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .experience-head h2 {
            font-size: clamp(2.8rem, 5vw, 4.8rem);
            line-height: 1.02;
        }

        .experience-head p {
            color: rgba(255,255,255,0.74);
            max-width: 680px;
            line-height: 1.8;
            margin: 0 auto;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 1rem;
        }

        .experience-feature,
        .experience-mini {
            position: relative;
            overflow: hidden;
            min-height: 520px;
        }

        .experience-mini {
            min-height: 255px;
        }

        .experience-stack {
            display: grid;
            gap: 1rem;
        }

        .experience-feature img,
        .experience-mini img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .experience-feature:hover img,
        .experience-mini:hover img {
            transform: scale(1.04);
        }

        .experience-feature::after,
        .experience-mini::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26,46,53,0.06), rgba(26,46,53,0.82));
        }

        .experience-content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            padding: 1.7rem;
            text-align: center;
        }

        .experience-content h3 {
            color: var(--ds-surface);
            font-size: 2rem;
            margin-bottom: 0.45rem;
        }

        .experience-content p {
            color: rgba(255,255,255,0.76);
            line-height: 1.75;
            max-width: 520px;
            margin: 0 auto;
        }

        /* GALLERY */
        .gallery {
            padding: 7rem 0;
            overflow: hidden;
            position: relative;
        }

        .gallery::before,
        .gallery::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 9vw;
            z-index: 3;
            pointer-events: none;
        }

        .gallery::before {
            left: 0;
            background: linear-gradient(90deg, var(--ds-bg) 0%, rgba(250,249,247,0) 100%);
        }

        .gallery::after {
            right: 0;
            background: linear-gradient(270deg, var(--ds-bg) 0%, rgba(250,249,247,0) 100%);
        }

        .gallery-head {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto 2rem;
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 1rem;
        }

        .gallery-head h2 {
            font-size: clamp(2.7rem, 4vw, 4.4rem);
            color: var(--ds-primary);
            text-align: center;
        }

        .gallery-head > div:first-child {
            flex: 1;
            text-align: center;
        }

        .gallery-nav {
            display: flex;
            gap: 0.75rem;
        }

        .gallery-nav button {
            width: 50px;
            height: 50px;
            border: 1px solid var(--ds-border);
            background: transparent;
            color: var(--ds-primary);
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-nav button:hover {
            background: var(--ds-primary);
            color: var(--ds-surface);
            border-color: var(--ds-primary);
        }

        .gallery-play {
            width: 50px;
            height: 50px;
            border: 1px solid var(--ds-border);
            background: transparent;
            color: var(--ds-primary);
            display: none;
            place-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-play.visible {
            display: grid;
        }

        .gallery-play:hover {
            background: var(--ds-primary);
            color: var(--ds-surface);
            border-color: var(--ds-primary);
        }

        .gallery-viewport {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .gallery-track {
            display: flex;
            gap: 1rem;
            padding: 0 1.5rem;
            will-change: transform;
        }

        .gallery-track.is-manual {
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item {
            flex: 0 0 auto;
            position: relative;
            overflow: hidden;
            background: var(--ds-surface);
            box-shadow: 0 18px 48px rgba(26, 46, 53, 0.08);
        }

        .gallery-item.tall {
            width: 340px;
            aspect-ratio: 3 / 4;
        }

        .gallery-item.wide {
            width: 520px;
            aspect-ratio: 4 / 3;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .gallery-caption {
            display: none;
        }

        .details {
            padding: 3rem 0 7rem;
        }

        .details-grid {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: start;
        }

        .details-copy {
            text-align: center;
            max-width: 860px;
            margin: 0 auto;
        }

        .details-copy h2 {
            font-size: clamp(2.8rem, 5vw, 4.6rem);
            line-height: 1.02;
            color: var(--ds-primary);
            margin-bottom: 1rem;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .details-copy p {
            max-width: 560px;
            line-height: 1.85;
            margin: 0 auto;
        }

        .details-cards {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
            max-width: 980px;
            margin: 0 auto;
        }

        .detail-card {
            background: var(--ds-surface);
            border: 1px solid var(--ds-border);
            padding: 1.4rem;
            min-height: 180px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            text-align: center;
        }

        .detail-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 38px rgba(26, 46, 53, 0.07);
            border-color: rgba(139,115,85,0.3);
        }

        .detail-card h3 {
            font-size: 1.5rem;
            color: var(--ds-primary);
            margin-bottom: 0.45rem;
        }

        .location {
            padding: 7rem 0;
            background: linear-gradient(180deg, rgba(232,228,223,0.45), rgba(250,249,247,0.5));
        }

        .location-grid {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        .location-copy {
            background: rgba(255,255,255,0.72);
            border: 1px solid var(--ds-border);
            padding: 2.5rem;
            backdrop-filter: blur(12px);
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .location-copy h2 {
            font-size: clamp(2.7rem, 4vw, 4.3rem);
            line-height: 1.04;
            margin-bottom: 1rem;
            color: var(--ds-primary);
        }

        .location-copy p {
            line-height: 1.85;
            margin-bottom: 1.2rem;
        }

        .location-list {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .location-item {
            padding-top: 1rem;
            border-top: 1px solid var(--ds-border);
        }

        .location-item strong {
            display: block;
            color: var(--ds-secondary);
            font-size: 0.76rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 0.3rem;
        }

        .location-visual {
            position: relative;
            min-height: 620px;
            overflow: hidden;
            max-width: 980px;
            margin: 0 auto;
            width: 100%;
        }

        .location-visual img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .location-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26,46,53,0.12), rgba(26,46,53,0.68));
        }

        .location-badge {
            position: absolute;
            left: 50%;
            bottom: 1.5rem;
            transform: translateX(-50%);
            z-index: 2;
            background: rgba(255,255,255,0.9);
            padding: 1.2rem 1.3rem;
            text-align: center;
        }

        .location-badge strong {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            color: var(--ds-primary);
        }

        .location-badge span {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--ds-text-dim);
        }

        .contact {
            padding: 7rem 0 0;
        }

        .contact-grid {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 2rem;
            align-items: stretch;
        }

        .contact-copy {
            background: linear-gradient(145deg, var(--ds-primary), #243f49);
            padding: 2.5rem;
            color: var(--ds-surface);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .contact-copy::after {
            content: "";
            position: absolute;
            right: -60px;
            bottom: -60px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(196, 167, 125, 0.12);
        }

        .contact-copy .section-eyebrow {
            color: var(--ds-accent);
        }

        .contact-copy h2 {
            font-size: clamp(2.7rem, 4vw, 4.2rem);
            line-height: 1.04;
            margin-bottom: 1rem;
        }

        .contact-copy p,
        .contact-copy a {
            color: rgba(255,255,255,0.8);
        }

        .contact-points {
            display: grid;
            gap: 1rem;
            margin-top: 1.8rem;
        }

        .contact-point strong {
            display: block;
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--ds-accent);
            margin-bottom: 0.3rem;
        }

        .contact-form {
            background: var(--ds-surface);
            border: 1px solid var(--ds-border);
            box-shadow: 0 20px 56px rgba(26,46,53,0.08);
            padding: 2.5rem;
        }

        .contact-form h3 {
            font-size: 1.8rem;
            color: var(--ds-primary);
            margin-bottom: 1.4rem;
            text-align: center;
        }

        .airbnb-card {
            margin-bottom: 1.8rem;
            padding: 1.35rem;
            border: 1px solid var(--ds-border);
            background:
                linear-gradient(135deg, rgba(243,231,212,0.55), rgba(255,255,255,0.92));
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .airbnb-card strong {
            display: block;
            color: var(--ds-primary);
            font-size: 1.05rem;
            margin-bottom: 0.2rem;
        }

        .airbnb-card p {
            margin: 0;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.45rem;
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 600;
            color: var(--ds-text-dim);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.95rem 1rem;
            border: 1px solid var(--ds-border);
            background: var(--ds-bg);
            font: inherit;
            color: var(--ds-text);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--ds-secondary);
            box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.08);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            border: none;
            background: var(--ds-primary);
            color: var(--ds-surface);
            padding: 1rem 1.2rem;
            font: inherit;
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: var(--ds-secondary);
            transform: translateY(-2px);
        }

        .form-note {
            margin-top: 1rem;
            font-size: 0.84rem;
            color: var(--ds-text-dim);
            text-align: center;
        }

        footer {
            margin-top: 7rem;
            background: var(--ds-primary);
            color: var(--ds-surface);
            padding: 3rem 0 2rem;
        }

        .footer-inner {
            width: min(1240px, calc(100% - 3rem));
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.12);
            text-align: center;
        }

        .footer-brand .logo {
            color: var(--ds-surface);
            display: inline-block;
            margin-bottom: 0.8rem;
        }

        .footer-brand p,
        .footer-column a {
            color: rgba(255,255,255,0.68);
        }

        .footer-column h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--ds-accent);
            margin-bottom: 0.9rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.6rem;
        }

        .footer-column a {
            text-decoration: none;
        }

        .footer-column a:hover {
            color: var(--ds-surface);
        }

        .footer-bottom {
            padding-top: 1.4rem;
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            color: rgba(255,255,255,0.45);
            font-size: 0.82rem;
        }

        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.08s; }
        .reveal-delay-2 { transition-delay: 0.16s; }
        .reveal-delay-3 { transition-delay: 0.24s; }

        @media (max-width: 1100px) {
            .hero-grid,
            .summary-grid,
            .property-grid,
            .experience-head,
            .experience-grid,
            .details-grid,
            .location-grid,
            .contact-grid,
            .footer-top {
                grid-template-columns: 1fr;
            }

            .hero-copy {
                min-height: 62vh;
            }

            .hero-visual {
                min-height: auto;
                grid-template-columns: 1fr;
            }

            .hero-card-large {
                min-height: 580px;
            }

            .property-visual {
                min-height: auto;
            }

            .location-visual {
                min-height: 500px;
            }

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

        @media (max-width: 820px) {
            nav {
                padding: 1rem 1rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero-facts,
            .property-list,
            .details-cards,
            .form-row {
                grid-template-columns: 1fr;
            }

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

            .property-side {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: none;
            }

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

            .gallery-head {
                flex-direction: column;
                align-items: center;
            }

            .gallery-item.tall {
                width: 280px;
            }

            .gallery-item.wide {
                width: 380px;
            }

            .summary-intro,
            .location-copy,
            .contact-copy,
            .contact-form {
                padding: 2rem;
            }

            .hero-copy {
                padding: 3rem 1.4rem;
            }

            .airbnb-card {
                flex-direction: column;
                text-align: center;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
        }

        @media (max-width: 560px) {
            .container,
            .hero-grid,
            .summary-grid,
            .property-grid,
            .experience-shell,
            .gallery-head,
            .details-grid,
            .location-grid,
            .contact-grid,
            .footer-inner {
                width: min(100% - 1.25rem, 1240px);
            }

            .hero h1,
            .summary-intro h2,
            .property-copy h2,
            .experience-head h2,
            .gallery-head h2,
            .details-copy h2,
            .location-copy h2,
            .contact-copy h2 {
                font-size: 2.5rem;
            }

            .hero-card-large {
                min-height: 440px;
            }

            .hero-card-small {
                min-height: 240px;
            }

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

            .experience-feature,
            .experience-mini,
            .location-visual {
                min-height: 380px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .mobile-menu a {
                font-size: 1.7rem;
            }

            .location-badge {
                width: calc(100% - 2rem);
            }

            .hero-copy {
                min-height: 58vh;
            }
        }
    