/* ========================================
   Anchor Cottage — Styles
   Charcoal + Coral · Warm & Friendly
======================================== */

/* ─── Custom Properties ─── */
:root {
    --charcoal: #2C2C2C;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #E8735A;
    --coral-light: #F49783;
    --coral-pale: #FFF0EC;
    --cream: #FAF7F5;
    --cream-dark: #F3EDE8;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A8A;
    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.12);
    --shadow-coral: 0 4px 20px rgba(232, 115, 90, 0.3);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ─── Typography ─── */
.text-coral {
    color: var(--coral);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
    background: var(--coral-pale);
    padding: 6px 14px;
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 115, 90, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-wide {
    min-width: 240px;
    justify-content: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 247, 245, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
}

.nav-brand-icon {
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.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);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--charcoal);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--cream-dark);
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 12px 0;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--coral);
}

.mobile-menu-cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--coral);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-lg);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 115, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--charcoal-light);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 1.25rem;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.hero-img {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-primary {
    width: 340px;
    height: 440px;
    top: 0;
    right: 40px;
    z-index: 2;
}

.hero-img-secondary {
    width: 260px;
    height: 200px;
    bottom: 60px;
    left: 0;
    z-index: 3;
}

.hero-img-card {
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 4;
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral-light);
    font-weight: 600;
}

.hero-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.hero-card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 115, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 560px;
}

.about-img-main {
    width: 320px;
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--charcoal);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: var(--coral);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-coral);
    z-index: 5;
}

.about-floating-icon {
    font-size: 1.3rem;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content .section-label {
    background: rgba(232, 115, 90, 0.2);
}

.about-content .section-title {
    color: var(--white);
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--coral);
    flex-shrink: 0;
}

/* ─── Stay ─── */
.stay {
    padding: 100px 0;
    background: var(--cream);
}

.stay-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.stay-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.stay-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.stay-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stay-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stay-card--large {
    grid-column: span 7;
    min-height: 320px;
}

.stay-card--large img {
    height: 100%;
}

.stay-card:not(.stay-card--large) {
    grid-column: span 5;
    min-height: 240px;
}

.stay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stay-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, transparent 100%);
    color: var(--white);
}

.stay-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 4px;
}

.stay-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.stay-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.stay-card--accent {
    grid-column: span 5;
    min-height: 240px;
    background: var(--charcoal);
}

.stay-card--accent img {
    display: none;
}

.stay-card--accent .stay-card-content {
    position: relative;
    background: none;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stay-card--accent .stay-card-number {
    color: var(--coral);
}

.stay-card--accent h3 {
    color: var(--white);
}

.stay-card--accent p {
    color: rgba(255, 255, 255, 0.65);
}

/* ─── Location ─── */
.location {
    padding: 100px 0;
    background: var(--white);
}

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

.location-content .section-title {
    margin-bottom: 20px;
}

.location-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.location-highlight-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.location-highlight strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.location-highlight span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.location-map {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 360px;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.map-address svg {
    width: 20px;
    height: 20px;
    color: var(--coral);
    flex-shrink: 0;
}

/* ─── Gallery ─── */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    transform: translateY(8px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay span {
    transform: translateY(0);
}

.gallery-item--1 { grid-column: span 5; grid-row: span 2; }
.gallery-item--2 { grid-column: span 4; grid-row: span 1; }
.gallery-item--3 { grid-column: span 3; grid-row: span 1; }
.gallery-item--4 { grid-column: span 5; grid-row: span 1; }
.gallery-item--5 { grid-column: span 4; grid-row: span 1; }

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 115, 90, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 115, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta-content .section-label {
    background: rgba(232, 115, 90, 0.2);
}

.cta-content .section-title {
    color: var(--white);
}

.cta-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-top: 16px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    color: var(--coral);
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--coral);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    background: var(--cream);
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232, 115, 90, 0.1);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #E8F5E9;
    border-radius: var(--radius-md);
    color: #2E7D32;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.form-success svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ─── Footer ─── */
.footer {
    background: var(--charcoal-deep);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo-icon {
    font-size: 1.4rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong,
.footer-contact strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--coral);
}

.footer-contact span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── Scroll to Top ─── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-coral);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--coral-light);
    transform: translateY(-4px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── 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-primary {
        width: 260px;
        height: 340px;
        right: 20px;
    }

    .hero-img-secondary {
        width: 200px;
        height: 160px;
    }

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

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

    .stay-card--large { grid-column: span 12; }
    .stay-card:not(.stay-card--large) { grid-column: span 6; }
    .stay-card--accent { grid-column: span 6; }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item--1 { grid-column: span 2; grid-row: span 1; }
    .gallery-item--2 { grid-column: span 1; }
    .gallery-item--3 { grid-column: span 1; }
    .gallery-item--4 { grid-column: span 1; }
    .gallery-item--5 { grid-column: span 1; }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-container {
        gap: 40px;
    }

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

    .hero-img-primary {
        width: 200px;
        height: 260px;
        right: 10px;
    }

    .hero-img-secondary {
        width: 160px;
        height: 120px;
    }

    .hero-img-card {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .about-images {
        height: 320px;
    }

    .about-img-main {
        width: 220px;
        height: 300px;
    }

    .about-img-accent {
        width: 180px;
        height: 200px;
    }

    .about-floating-card {
        right: -10px;
        font-size: 0.8rem;
        padding: 12px 16px;
    }

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

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

    .stay-card--large,
    .stay-card:not(.stay-card--large),
    .stay-card--accent {
        grid-column: span 12;
        min-height: 220px;
    }

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

    .gallery-item--1,
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4,
    .gallery-item--5 {
        grid-column: span 1;
        grid-row: span 1;
        height: 220px;
    }

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

    .btn-wide {
        min-width: auto;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-stack {
        height: 260px;
    }

    .hero-img-primary {
        width: 160px;
        height: 220px;
    }

    .hero-img-secondary {
        width: 130px;
        height: 100px;
    }

    .section-title {
        font-size: 1.75rem;
    }
}
