/* ============================================================
   AvaRam.co — Main Stylesheet
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
    --primary: #1a2744;
    --primary-light: #253660;
    --accent: #c9a84c;
    --accent-light: #e8d5a0;
    --accent-dark: #a8872e;
    --light-bg: #f8f5f0;
    --tinted-bg: #f2ede6;
    --white: #ffffff;
    --text: #222831;
    --text-light: #5a6478;
    --border: #e0d8cc;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
    --radius: 10px;
    --radius-lg: 18px;
    --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
    --transition: 0.25s ease;
    --header-h: 76px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--accent-dark);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--primary);
    line-height: 1.25;
}

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

/* ── Sections ────────────────────────────────────────────── */
.section {
    padding: 80px 0;
}

.section--dark {
    background: var(--primary);
}

.section--tinted {
    background: var(--tinted-bg);
}

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

.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-eyebrow--light {
    color: var(--accent-light);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
}

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

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

.section-header .section-title {
    margin-top: 8px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .7);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--accent-light);
    border-color: var(--accent-light);
}

.btn-outline-light:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: .8rem;
}

.btn-full {
    width: 100%;
    border-radius: var(--radius);
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26, 39, 68, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: var(--primary);
    box-shadow: var(--shadow);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-branding {
    flex: 0 0 auto;
}

.brand-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1;
}

.brand-name--light .brand-accent {
    color: var(--accent);
}

.brand-name .brand-accent {
    color: var(--accent);
}

.brand-name .brand-dot {
    color: var(--accent-light);
    font-size: .9em;
}

.brand-tagline {
    font-size: .65rem;
    color: var(--accent-light);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 2px;
}

.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-menu li a {
    padding: 8px 14px;
    color: rgba(255, 255, 255, .82);
    font-size: .88rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.current {
    color: var(--accent);
    background: rgba(201, 168, 76, .12);
}

.header-cta {
    flex: 0 0 auto;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

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

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-bg-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d1828 0%, #1a2744 60%, #2d4a7a 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 24, 40, .55) 0%, rgba(13, 24, 40, .75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 100px;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title em {
    color: var(--accent);
    font-style: normal;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, .5);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── Quick Booking Bar ───────────────────────────────────── */
.quick-booking-bar {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    padding: 0;
}

.quick-book-form {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: -36px auto 0;
    max-width: 860px;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.qb-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
}

.qb-field label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.qb-field input,
.qb-field select {
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    font-family: var(--font-body);
    cursor: pointer;
}

.qb-divider {
    width: 1px;
    background: var(--border);
    margin: 12px 0;
    flex: 0 0 1px;
}

.qb-submit {
    border-radius: 0;
    padding: 20px 32px;
    white-space: nowrap;
    flex: 0 0 auto;
}

/* ── Features Grid ───────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: var(--accent-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke: currentColor;
}

.feature-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ── Photo Preview Grid ──────────────────────────────────── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.photo-item--large {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: var(--radius-lg);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    cursor: pointer;
    transition: transform .4s ease;
}

.photo-placeholder:hover {
    transform: scale(1.03);
}

.photo-label {
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
    padding: 20px 16px 14px;
    width: 100%;
}

.photo-label span {
    color: var(--white);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
}

/* ── Pricing Highlight ───────────────────────────────────── */
.pricing-highlight-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.pricing-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.pricing-text strong {
    color: var(--primary);
}

.price-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 0;
}

.price-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text);
}

.price-includes li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}

.pricing-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pricing-card-header>span {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.pricing-card-price {
    font-size: 1rem;
    color: var(--white);
}

.pricing-card-price strong {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--accent);
    font-weight: 700;
}

.pricing-card-price span {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    margin-left: 4px;
}

.pc-row {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .75);
}

.pc-row span:last-child {
    font-weight: 600;
    color: var(--white);
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.star {
    color: var(--accent);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: .93rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
}

.testimonial-author strong {
    display: block;
    font-size: .88rem;
}

.testimonial-author span {
    font-size: .78rem;
    color: var(--text-light);
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1828 0%, #1a2744 60%, #2d4a7a 100%);
    overflow: hidden;
}

.cta-section--compact {
    padding: 70px 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta-sub {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--primary);
}

.footer-top {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 48px;
}

.footer-col {}

.footer-brand .footer-desc {
    color: rgba(255, 255, 255, .55);
    font-size: .87rem;
    margin: 16px 0 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, .6);
    font-size: .87rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.footer-contact a {
    color: rgba(255, 255, 255, .6);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .4);
    margin: 0 4px;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + 60px) 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
}

.page-hero--about {
    background: linear-gradient(135deg, #0d1828, #1a3a5f);
}

.page-hero--gallery {
    background: linear-gradient(135deg, #1a2744, #2d3e6b);
}

.page-hero--availability {
    background: linear-gradient(135deg, #0f2040, #1a3a5f);
}

.page-hero--admin {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.page-hero--contact {
    background: linear-gradient(135deg, #1a2744, #253660);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    margin: 8px 0 12px;
}

.page-hero-sub {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
}

/* ── About Page ──────────────────────────────────────────── */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-img-label {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
}

.about-img-label small {
    font-family: var(--font-body);
    font-size: .8rem;
    display: block;
    color: var(--accent);
    margin-top: 6px;
}

.about-stat-chips {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.stat-chip {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 12px;
    text-align: center;
}

.stat-chip strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
}

.stat-chip span {
    font-size: .75rem;
    color: var(--text-light);
}

.about-text-block p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.75;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--primary);
}

.value-item svg {
    color: var(--accent);
}

/* Amenities grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.amenity-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
}

.amenity-cat-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.amenity-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .87rem;
    color: var(--text-light);
    padding: 5px 0;
}

.amenity-list li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.location-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 28px;
}

.location-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: .9rem;
}

.location-list li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-list a {
    color: var(--text-light);
}

.location-list a:hover {
    color: var(--accent);
}

.nearby-places h4 {
    font-size: .95rem;
    margin-bottom: 14px;
}

.nearby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nearby-item {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 12px 14px;
}

.nearby-item strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
}

.nearby-item span {
    font-size: .78rem;
    color: var(--text-light);
}

.map-embed-placeholder {
    background: var(--tinted-bg);
    border-radius: var(--radius-lg);
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed var(--border);
    text-align: center;
    padding: 24px;
}

.map-embed-placeholder svg {
    color: var(--text-light);
    opacity: .4;
}

.map-embed-placeholder p {
    color: var(--text-light);
    font-size: .87rem;
}

/* ── Gallery Page ────────────────────────────────────────── */
.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.gallery-filter {
    padding: 9px 20px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--white);
    font-size: .83rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    color: var(--text-light);
}

.gallery-filter:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.gallery-filter.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

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

.gallery-item-inner {
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform .35s ease;
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover .gallery-item-inner {
    transform: scale(1.04);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s ease;
}

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

.gallery-item-label {
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
}

.gallery-zoom-btn {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.gallery-zoom-btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.gallery-item-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26, 39, 68, .75);
    color: var(--accent);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.gallery-note {
    margin-top: 28px;
    color: var(--text-light);
    font-size: .83rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.gallery-note svg {
    color: var(--accent);
}

.gallery-empty-state {
    grid-column: 1 / -1;
    background: var(--light-bg);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
}

.gallery-empty-state h3 {
    margin-bottom: 8px;
}

.gallery-empty-state p {
    color: var(--text-light);
    margin-bottom: 18px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-content {
    max-width: 80vw;
    max-height: 80vh;
    width: 700px;
    text-align: center;
}

.lightbox-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
}

.lightbox-caption {
    color: rgba(255, 255, 255, .7);
    margin-top: 16px;
    font-size: .9rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, .1);
    border: none;
    cursor: pointer;
    color: var(--white);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    color: var(--primary);
}

.admin-gallery-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef9ec;
    border: 1px solid var(--accent-light);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: .88rem;
    color: var(--primary);
}

.admin-gallery-notice svg {
    color: var(--accent);
    flex-shrink: 0;
}

.admin-notice-section {
    padding: 20px 0 40px;
}

/* ── Availability / Calendar ──────────────────────────────── */
.availability-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Calendar */
.calendar-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-nav {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.cal-nav:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.cal-month-label {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 6px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-loading {
    grid-column: span 7;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    font-size: .82rem;
    cursor: default;
    transition: all .18s ease;
    min-height: 52px;
}

.cal-day--empty {}

.cal-day--past {
    opacity: .35;
    background: var(--light-bg);
}

.cal-day--today .cal-day-num {
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-day--available {
    cursor: pointer;
    background: #f0fdf4;
}

.cal-day--available:hover {
    background: var(--accent-light);
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.cal-day--booked {
    background: #fef2f2;
    cursor: not-allowed;
}

.cal-day--booked .cal-day-num {
    color: #ef4444;
}

.cal-day--selected-start,
.cal-day--selected-end {
    background: var(--accent) !important;
    cursor: pointer;
}

.cal-day--selected-start .cal-day-num,
.cal-day--selected-end .cal-day-num {
    color: var(--primary);
    font-weight: 700;
}

.cal-day--in-range {
    background: var(--accent-light) !important;
    border-radius: 0;
}

.cal-day-num {
    font-weight: 600;
    color: var(--text);
}

.cal-day-price {
    font-size: .62rem;
    color: var(--text-light);
    margin-top: 2px;
}

.cal-day--available:hover .cal-day-price {
    color: var(--primary);
}

.cal-day--selected-start .cal-day-price,
.cal-day--selected-end .cal-day-price {
    color: var(--primary);
}

.cal-day--booked .cal-day-price {
    display: none;
}

.calendar-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-light);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-dot.available {
    background: #f0fdf4;
    border: 1.5px solid #22c55e;
}

.legend-dot.booked {
    background: #fef2f2;
    border: 1.5px solid #ef4444;
}

.legend-dot.selected {
    background: var(--accent);
}

.legend-dot.today {
    background: var(--primary);
}

.price-tooltip-bar {
    margin-top: 12px;
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: .83rem;
    color: var(--text-light);
    min-height: 38px;
}

.cal-message {
    grid-column: span 7;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .88rem;
    margin-top: 8px;
}

.cal-message--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

/* Booking Panel */
.booking-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.booking-step {
    display: none;
    padding: 28px;
}

.booking-step.active {
    display: block;
}

.booking-step h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.booking-hint {
    font-size: .83rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.booking-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-group label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-light);
    margin-bottom: 6px;
}

.field-group input,
.field-group select,
.field-group textarea {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .92rem;
    font-family: var(--font-body);
    color: var(--text);
    transition: border-color var(--transition);
    background: var(--white);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

.field-hint {
    font-size: .75rem;
    color: var(--text-light);
    margin-top: 4px;
}

.required {
    color: #ef4444;
}

/* Price Summary */
.price-summary {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.price-summary h4 {
    font-size: .9rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.price-summary--compact {
    padding: 14px 20px;
}

.price-summary--compact .ps-row {
    padding: 4px 0;
}

.ps-row {
    display: flex;
    justify-content: space-between;
    font-size: .86rem;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.ps-row:last-child {
    border-bottom: none;
}

.ps-total {
    font-weight: 700;
    font-size: .95rem;
    color: var(--primary);
    padding-top: 8px;
    margin-top: 4px;
}

.booking-policy-note {
    font-size: .78rem;
    color: var(--text-light);
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
}

.booking-policy-note svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.back-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: .85rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.back-btn:hover {
    text-decoration: underline;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .86rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

/* Booking success */
.booking-success {
    text-align: center;
    padding: 16px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    color: #22c55e;
}

.booking-success h3 {
    color: #22c55e;
    margin-bottom: 8px;
}

.booking-success p {
    font-size: .9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.confirmation-details {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 16px;
    margin: 12px 0 16px;
    text-align: left;
    font-size: .88rem;
}

.conf-ref {
    font-size: 1rem;
    margin-bottom: 8px;
}

.confirmation-details div {
    padding: 4px 0;
    color: var(--text-light);
}

.pricing-info-bar {
    margin-top: 28px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: .84rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-info-bar svg {
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-info-bar strong {
    color: var(--primary);
}

/* ── Transactions Page ───────────────────────────────────── */
.transactions-section {}

.tx-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.tx-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.tx-stat-confirmed {
    border-top-color: #22c55e;
}

.tx-stat-pending {
    border-top-color: #f59e0b;
}

.tx-stat-cancelled {
    border-top-color: #ef4444;
}

.tx-stat-revenue {
    border-top-color: var(--accent);
}

.tx-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.tx-stat-label {
    font-size: .78rem;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

.tx-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tx-filter-form {}

.tx-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.tx-search,
.tx-select,
.tx-date {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: .88rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
}

.tx-search:focus,
.tx-select:focus,
.tx-date:focus {
    outline: none;
    border-color: var(--accent);
}

.tx-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tx-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.tx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .87rem;
}

.tx-table th {
    background: var(--primary);
    color: var(--accent-light);
    padding: 13px 14px;
    text-align: left;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tx-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.tx-row:last-child td {
    border-bottom: none;
}

.tx-row:hover td {
    background: var(--light-bg);
}

.tx-ref strong {
    font-family: monospace;
    font-size: .88rem;
    color: var(--primary);
}

.tx-guest div {
    font-weight: 500;
}

.tx-contact div {
    font-size: .83rem;
}

.tx-contact a {
    color: var(--text-light);
}

.tx-contact a:hover {
    color: var(--accent);
}

.tx-amount strong {
    color: var(--primary);
}

.tx-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.tx-status--pending {
    background: #fef3c7;
    color: #92400e;
}

.tx-status--confirmed {
    background: #d1fae5;
    color: #065f46;
}

.tx-status--completed {
    background: #dbeafe;
    color: #1e40af;
}

.tx-status--cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.tx-notes-icon {
    margin-right: 6px;
    cursor: help;
    font-style: normal;
}

.tx-empty {
    text-align: center;
    padding: 48px;
    color: var(--text-light);
}

.tx-count {
    font-size: .83rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2,
.contact-form-wrap h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 18px 20px;
}

.contact-card svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card strong {
    display: block;
    font-size: .85rem;
    color: var(--text);
    margin-bottom: 3px;
}

.contact-card a,
.contact-card span {
    font-size: .9rem;
    color: var(--text-light);
}

.contact-card a:hover {
    color: var(--accent);
}

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-highlight-inner {
        grid-template-columns: 1fr;
    }

    .pricing-card-wrap {
        max-width: 400px;
    }

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

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

    .photo-grid {
        grid-template-rows: repeat(3, 180px);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .section {
        padding: 52px 0;
    }

    /* Header */
    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        padding: 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .primary-nav.open {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu li a {
        padding: 14px 0;
        font-size: 1.1rem;
        display: block;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .header-cta {
        display: none;
    }

    /* Quick book */
    .quick-book-form {
        flex-direction: column;
        border-radius: var(--radius);
        margin: -24px 16px 0;
    }

    .qb-divider {
        width: auto;
        height: 1px;
        margin: 0 16px;
    }

    .qb-submit {
        border-radius: var(--radius);
        padding: 16px;
    }

    /* Hero */
    .hero-content {
        max-width: none;
    }

    .hero-badges {
        gap: 14px;
    }

    /* Photo grid */
    .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .photo-item--large {
        grid-column: span 2;
        height: 220px;
    }

    .photo-item {
        height: 160px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

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

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

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Availability */
    .availability-layout {
        grid-template-columns: 1fr;
    }

    /* Txn */
    .tx-summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tx-filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .tx-toolbar {
        flex-direction: column;
    }

    .tx-actions {
        justify-content: flex-start;
    }

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

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

    /* Lightbox */
    .lightbox-content {
        max-width: 95vw;
    }

    .lightbox-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

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

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

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

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

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