/* ============================================
   The Mahosky House & Silverton Cottage
   Vibrant Modern | Teal + Slate Grey
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-900: #042f2e;
    --teal-800: #064e3b;
    --teal-700: #065f46;
    --teal-600: #047857;
    --teal-500: #0d9488;
    --teal-400: #14b8a6;
    --teal-300: #2dd4bf;
    --teal-200: #5eead4;
    --teal-100: #99f6e4;
    --teal-50:  #ccfbf1;
    --slate-950: #050a14;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Subtle background pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--teal-500) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--slate-500) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 700;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--teal-500);
    color: var(--white);
    border-color: var(--teal-500);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    background: var(--teal-600);
    border-color: var(--teal-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}

.btn-outline:hover {
    border-color: var(--teal-500);
    color: var(--teal-600);
    transform: translateY(-2px);
}

.btn-form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

/* --- Section Tags --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--teal-500);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--slate-900);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 64px;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-desc {
    margin: 0 auto;
}

.section-header-center .section-tag::before {
    display: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    z-index: 1001;
}

.nav-logo-icon {
    color: var(--teal-500);
}

.nav-logo-text {
    transition: color 0.3s;
}

.navbar:not(.scrolled) .nav-logo-text {
    color: var(--white);
}

.navbar:not(.scrolled) .nav-logo-icon {
    color: var(--teal-300);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: 8px;
    transition: all 0.25s var(--ease-out);
}

.navbar:not(.scrolled) .nav-link {
    color: rgba(255,255,255,0.85);
}

.navbar:not(.scrolled) .nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-link:hover {
    color: var(--teal-600);
    background: var(--teal-50);
}

.nav-link-cta {
    background: var(--teal-500);
    color: var(--white) !important;
    border-radius: 60px;
    margin-left: 8px;
}

.nav-link-cta:hover {
    background: var(--teal-600) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.navbar:not(.scrolled) .nav-toggle span {
    background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Geometric background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--teal-600);
    top: -200px;
    right: -100px;
    opacity: 0.15;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--teal-400);
    bottom: -100px;
    left: 10%;
    opacity: 0.1;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--teal-300);
    top: 30%;
    left: 5%;
    opacity: 0.08;
    border-radius: 50%;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--teal-200);
    top: 15%;
    right: 35%;
    opacity: 0.12;
    border-radius: 50%;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 560px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-300);
    margin-bottom: 28px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 900;
}

.title-accent {
    color: var(--teal-400);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--slate-400);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-actions .btn-outline {
    color: var(--slate-300);
    border-color: var(--slate-600);
}

.hero-actions .btn-outline:hover {
    border-color: var(--teal-400);
    color: var(--teal-300);
    background: rgba(20, 184, 166, 0.08);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-300);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-700);
}

/* Hero image stack */
.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

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

.hero-img-main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-float {
    width: 280px;
    height: 210px;
    bottom: 40px;
    right: 60px;
    z-index: 3;
    border: 4px solid var(--slate-900);
}

.float-badge {
    position: absolute;
    bottom: -16px;
    left: 20px;
    background: var(--teal-500);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 60px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-500);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal-400), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.rooms-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300), var(--slate-300), var(--teal-500));
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.room-card-featured {
    border: 2px solid var(--teal-100);
}

.room-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.room-card:hover .room-img img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--teal-500);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.room-badge-secondary {
    background: var(--slate-700);
}

.room-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 8px;
}

.room-name {
    font-size: 1.5rem;
    color: var(--slate-900);
    margin-bottom: 12px;
    line-height: 1.25;
}

.room-desc {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.room-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--slate-700);
}

.room-features li svg {
    color: var(--teal-500);
    flex-shrink: 0;
}

.btn-room {
    align-self: flex-start;
}

/* ============================================
   GARDEN
   ============================================ */
.garden {
    padding: 120px 0;
    background: var(--teal-900);
    position: relative;
    overflow: hidden;
}

.garden-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.garden-shapes {
    position: absolute;
    inset: 0;
}

.garden-shape {
    position: absolute;
    border-radius: 50%;
}

.garden-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--teal-700);
    top: -150px;
    right: -100px;
    opacity: 0.3;
}

.garden-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--teal-600);
    bottom: -80px;
    left: 5%;
    opacity: 0.2;
}

.garden-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--teal-400);
    top: 20%;
    left: 45%;
    opacity: 0.15;
}

.garden-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.garden-content .section-tag {
    color: var(--teal-300);
}

.garden-content .section-tag::before {
    background: var(--teal-400);
}

.garden-title {
    color: var(--white);
    margin-bottom: 24px;
}

.garden-desc {
    color: var(--slate-400);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.garden-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.garden-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(13, 148, 136, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-300);
    flex-shrink: 0;
}

.garden-highlight span {
    font-size: 0.9375rem;
    color: var(--slate-300);
    padding-top: 10px;
    line-height: 1.4;
}

.garden-images {
    position: relative;
    height: 700px;
}

.garden-img {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.garden-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.garden-img-1 {
    width: 280px;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.garden-img-2 {
    width: 240px;
    height: 210px;
    top: 60px;
    right: 0;
    z-index: 3;
    border: 4px solid var(--teal-900);
}

.garden-img-3 {
    width: 200px;
    height: 160px;
    bottom: 40px;
    right: 20px;
    z-index: 4;
    border: 4px solid var(--teal-900);
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
    padding: 120px 0;
    background: var(--slate-50);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--white), var(--slate-50));
    pointer-events: none;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.exp-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--slate-100);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--teal-500);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.exp-card:hover::before {
    transform: scaleX(1);
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--teal-100);
}

.exp-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    margin-bottom: 24px;
    transition: all 0.3s var(--ease-out);
}

.exp-card:hover .exp-icon {
    background: var(--teal-500);
    color: var(--white);
    transform: scale(1.05);
}

.exp-title {
    font-size: 1.25rem;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.exp-desc {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
    padding: 120px 0;
    background: var(--white);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-desc {
    font-size: 1.0625rem;
    color: var(--slate-500);
    line-height: 1.8;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

.location-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-item strong {
    font-size: 1rem;
    color: var(--slate-900);
}

.location-item span {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid var(--slate-100);
}

.map-placeholder {
    height: 100%;
    min-height: 450px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ============================================
   CTA / CONTACT
   ============================================ */
.cta {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--teal-700);
    bottom: -150px;
    left: -100px;
    opacity: 0.2;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--teal-500);
    top: -80px;
    right: 20%;
    opacity: 0.12;
}

.cta-shape-3 {
    width: 120px;
    height: 120px;
    background: var(--teal-300);
    top: 30%;
    right: 10%;
    opacity: 0.1;
}

.cta .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-content .section-tag {
    color: var(--teal-300);
}

.cta-content .section-tag::before {
    background: var(--teal-400);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.0625rem;
    color: var(--slate-400);
    line-height: 1.75;
}

.cta-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--slate-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--slate-800);
    transition: all 0.25s var(--ease-out);
    background: var(--slate-50);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--teal-50);
    border: 2px solid var(--teal-200);
    border-radius: 12px;
    color: var(--teal-800);
    font-weight: 500;
    margin-top: 8px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--teal-500);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--slate-950);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--slate-800);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--teal-400);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
    max-width: 360px;
}

.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--slate-300);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact svg {
    color: var(--teal-400);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image-stack {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-main {
        width: 280px;
        height: 360px;
    }

    .hero-img-float {
        width: 200px;
        height: 160px;
        right: 20px;
    }

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

    .garden-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .garden-images {
        height: 500px;
        max-width: 500px;
    }

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

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

    .cta .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.25rem;
        color: var(--slate-700) !important;
        padding: 12px 24px;
    }

    .nav-link:hover {
        background: var(--teal-50) !important;
        color: var(--teal-600) !important;
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-stack {
        height: 320px;
        margin: 0 auto;
    }

    .hero-img-main {
        width: 220px;
        height: 280px;
    }

    .hero-img-float {
        width: 160px;
        height: 130px;
        right: 10px;
        bottom: 20px;
    }

    .float-badge {
        font-size: 0.6875rem;
        padding: 6px 10px;
    }

    .hero-scroll {
        display: none;
    }

    .rooms, .garden, .experience, .location, .cta {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

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

    .garden-images {
        height: 400px;
        margin: 0 auto;
        max-width: 400px;
    }

    .garden-img-1 {
        width: 200px;
        height: 260px;
    }

    .garden-img-2 {
        width: 160px;
        height: 140px;
    }

    .garden-img-3 {
        width: 140px;
        height: 120px;
    }

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

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

    .cta-form-wrapper {
        padding: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .room-content {
        padding: 24px;
    }

    .exp-card {
        padding: 28px 24px;
    }
}
