/* Design System Variables */
:root {
    /* Colors - Dark Theme */
    --bg: #0b0d12;
    --card: rgba(18, 21, 30, 0.78);
    --line: rgba(255, 255, 255, 0.08);
    --text: #f3f6ff;
    --muted: rgba(243, 246, 255, 0.70);
    --soft: rgba(243, 246, 255, 0.10);
    
    /* Colors - Accent */
    --accent1: #6ee7ff;
    --accent2: #a78bfa;
    
    /* Colors - Legacy (for compatibility) */
    --earth-dark: #0b0d12;
    --earth-base: rgba(243, 246, 255, 0.70);
    --earth-light: rgba(243, 246, 255, 0.10);
    --green-accent: #6ee7ff;
    --green-light: #a78bfa;
    --red-accent: #6ee7ff;
    --red-light: #a78bfa;
    --white: #f3f6ff;
    --cream: #0b0d12;
    --gray-100: rgba(243, 246, 255, 0.10);
    --gray-300: rgba(255, 255, 255, 0.08);
    --gray-600: rgba(243, 246, 255, 0.60);
    --gray-800: rgba(18, 21, 30, 0.78);
    
    /* Colors - Text */
    --text-primary: #f3f6ff;
    --text-secondary: rgba(243, 246, 255, 0.70);
    --text-inverse: #f3f6ff;
    
    /* Typography */
    --font-heading: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-body: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    
    /* Spacing */
    --spacing-0: 0px;
    --spacing-1: 4px;
    --spacing-2: 8px;
    --spacing-3: 12px;
    --spacing-4: 16px;
    --spacing-5: 24px;
    --spacing-6: 32px;
    --spacing-7: 48px;
    --spacing-8: 64px;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 18px;
    --radius: 18px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 18px 70px rgba(0, 0, 0, 0.55);
    --shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

body {
    font-family: var(--font-body);
    background: 
        radial-gradient(1100px 650px at 20% -10%, rgba(167, 139, 250, 0.22), transparent 60%),
        radial-gradient(900px 520px at 80% 0%, rgba(110, 231, 255, 0.18), transparent 55%),
        var(--bg);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    min-height: 100vh;
    margin: 0;
}

/* Header Section */
.header-section {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(11, 13, 18, 0.93), rgba(11, 13, 18, 0.70), rgba(11, 13, 18, 0));
    backdrop-filter: blur(10px);
    height: auto;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: none;
}

.header-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr 0.8fr 1fr;
    gap: 0;
    align-items: start;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* BIO Section */
.bio-section {
    padding: 18px;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.10), rgba(18, 21, 30, 0));
    height: 100%;
    overflow: hidden;
}

.bio-top {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.bio-square {
    width: 120px;
    height: 120px;
    min-width: 120px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--line);
}

.bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bio-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bio-name {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 850;
    letter-spacing: 0.2px;
    color: var(--text);
    font-family: var(--font-heading);
    display: block;
}

.bio-position {
    margin: 0;
    color: var(--muted);
    line-height: 1.4;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    display: block;
    letter-spacing: 0.2px;
}

.bio-summary {
    margin: 0;
    color: rgba(243, 246, 255, 0.78);
    line-height: 1.6;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-body);
    display: block;
    text-align: justify;
    width: 100%;
}

/* CALENDAR Section */
.calendar-section {
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.08), rgba(167, 139, 250, 0.05));
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    min-height: 240px;
    border: 1px solid rgba(110, 231, 255, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.calendar-section h1 {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent1);
    font-family: var(--font-heading);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(110, 231, 255, 0.3);
}

.calendar-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2);
    padding: 0;
    gap: var(--spacing-1);
}

.calendar-nav-btn {
    background: rgba(110, 231, 255, 0.1);
    border: 1px solid rgba(110, 231, 255, 0.25);
    color: var(--accent1);
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(110, 231, 255, 0.15);
    flex-shrink: 0;
}

.calendar-nav-btn:hover {
    background: rgba(110, 231, 255, 0.2);
    border-color: rgba(110, 231, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(110, 231, 255, 0.25);
}

.calendar-nav-btn:active {
    transform: scale(0.95);
}

.calendar-nav-btn:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.calendar-month-year {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    text-shadow: none;
    text-transform: capitalize;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: var(--spacing-3);
    padding: var(--spacing-2) 0;
    border-bottom: 1px solid rgba(110, 231, 255, 0.2);
}

.weekday {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent1);
    font-family: var(--font-heading);
    opacity: 0.9;
    padding: var(--spacing-1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    padding: var(--spacing-1) 0;
}

.calendar-day {
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(110, 231, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-body);
    transition: all 0.2s ease;
    padding: 3px;
    min-height: 40px;
    max-height: 44px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.calendar-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.1), rgba(167, 139, 250, 0.1));
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 10px;
}

.calendar-day:hover::before {
    opacity: 1;
}

.calendar-day:hover {
    background: rgba(110, 231, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(110, 231, 255, 0.3);
    box-shadow: 0 4px 12px rgba(110, 231, 255, 0.2);
    z-index: 2;
}

.calendar-day.other-month {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(110, 231, 255, 0.05);
    color: rgba(243, 246, 255, 0.4);
}

.calendar-day.past {
    opacity: 0.35;
    cursor: not-allowed;
    background: rgba(128, 128, 128, 0.1);
    border-color: rgba(128, 128, 128, 0.2);
    color: rgba(243, 246, 255, 0.4);
    box-shadow: none;
}

.calendar-day.past:hover {
    transform: none;
    background: rgba(128, 128, 128, 0.1);
    border-color: rgba(128, 128, 128, 0.2);
    box-shadow: none;
}

.calendar-day.past::before {
    display: none;
}

.calendar-day.selected {
    border: 2px solid var(--accent1);
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.25), rgba(167, 139, 250, 0.2));
    color: var(--text);
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(110, 231, 255, 0.3);
    transform: scale(1.05);
}

.calendar-day.selected::before {
    opacity: 1;
}

.calendar-day.today {
    border: 2px solid var(--accent2);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(110, 231, 255, 0.1));
    box-shadow: 0 2px 8px rgba(167, 139, 250, 0.25);
    font-weight: 700;
    color: var(--text);
    position: relative;
}

.calendar-day.today::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background: var(--accent2);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent2);
}

.calendar-day.excluded {
    opacity: 0.35;
    cursor: not-allowed !important;
    background: rgba(229, 57, 53, 0.15);
    border-color: rgba(229, 57, 53, 0.3);
    color: rgba(243, 246, 255, 0.4);
    position: relative;
    pointer-events: none !important;
    user-select: none;
}

.calendar-day.excluded::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: rgba(229, 57, 53, 0.5);
    transform: translateY(-50%) rotate(-45deg);
    border-radius: 2px;
}

.calendar-day.excluded::before {
    display: none;
}

.calendar-day.excluded:hover {
    background: rgba(229, 57, 53, 0.15) !important;
    transform: none !important;
    border-color: rgba(229, 57, 53, 0.3) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* Booking Section */
.booking-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-2);
    padding: 16px;
    border-right: 1px solid var(--line);
    height: 100%;
    justify-content: flex-start;
}

.time-selection {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-1);
    width: 100%;
}

.time-label {
    color: var(--accent1);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: var(--spacing-1);
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
}

.time-label::before {
    content: '🕐';
    font-size: 12px;
    opacity: 0.8;
}

.time-input {
    background: rgba(110, 231, 255, 0.08);
    border: 1.5px solid rgba(110, 231, 255, 0.25);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(110, 231, 255, 0.1);
    appearance: none;
    cursor: pointer;
    position: relative;
}

.time-input:hover {
    background: rgba(110, 231, 255, 0.12);
    border-color: rgba(110, 231, 255, 0.35);
    box-shadow: 0 4px 12px rgba(110, 231, 255, 0.15);
}

.time-input::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(160deg) brightness(1.2);
    cursor: pointer;
    padding: 4px;
    margin-left: 4px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.time-input:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

.time-input::-webkit-datetime-edit {
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.time-input::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.time-input::-webkit-datetime-edit-text {
    color: var(--accent1);
    padding: 0 2px;
    font-weight: 700;
}

.time-input::-webkit-datetime-edit-hour-field,
.time-input::-webkit-datetime-edit-minute-field {
    color: var(--text);
    background: rgba(110, 231, 255, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
    margin: 0 1px;
}

.time-input::-webkit-datetime-edit-hour-field:focus,
.time-input::-webkit-datetime-edit-minute-field:focus {
    background: rgba(110, 231, 255, 0.2);
    color: var(--accent1);
    outline: none;
}

.time-input::placeholder {
    color: rgba(243, 246, 255, 0.5);
    opacity: 0.7;
}

.time-input:focus {
    outline: none;
    border-color: var(--accent1);
    background: rgba(110, 231, 255, 0.15);
    box-shadow: 0 4px 16px rgba(110, 231, 255, 0.25);
    transform: translateY(-1px);
}

.time-input:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}

.time-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
    align-items: stretch;
    width: 100%;
    justify-content: flex-start;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    transition: all var(--transition-base);
    width: 100%;
    justify-content: stretch;
}

.time-item:hover {
    background-color: transparent;
}

.time-item.selected {
    background-color: transparent;
}

.time-square {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: auto;
    min-height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: none;
    transition: transform 0.08s ease, border-color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    cursor: pointer;
}

.time-square:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.time-item.selected .time-square {
    border: none;
    color: #071016;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    transform: none;
}

.time-square span {
    color: var(--text);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.2px;
    font-family: var(--font-body);
    white-space: nowrap;
}

.time-item.selected .time-square span {
    color: #071016;
}

.price {
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.2px;
    font-family: var(--font-heading);
    margin: 0;
    text-align: right;
    width: 100%;
}

.book-button {
    color: #071016;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px 12px;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    border: none;
    border-radius: 12px;
    transition: transform 0.08s ease, filter 0.15s ease;
    font-family: var(--font-heading);
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.book-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.book-button:focus {
    outline: 2px solid var(--earth-light);
    outline-offset: 2px;
}

/* Blog Section */
.blog-section {
    background: transparent;
    padding: var(--spacing-6) 14px;
    min-height: auto;
    overflow: visible;
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 0;
    align-items: start;
    overflow: visible;
}

@media (max-width: 768px) {
    .blog-container {
        padding: 0;
    }
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    overflow: visible;
    height: 100%;
    padding: 18px;
    border-right: 1px solid var(--line);
}

.blog-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
    line-height: 1.2;
    margin: 0;
}

.blog-date {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.2px;
    font-family: var(--font-body);
    margin-bottom: var(--spacing-1);
}

.divider {
    height: 1px;
    background-color: var(--line);
    width: 100%;
    margin: var(--spacing-1) 0;
}

.email-subscription {
    margin-top: var(--spacing-1);
    display: flex;
    gap: var(--spacing-3);
    align-items: flex-end;
}

.email-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 14px;
    padding: var(--spacing-2) 0;
    flex: 1;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    transition: border-color var(--transition-base);
}

.subscribe-button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.08s ease, border-color 0.15s ease;
    min-height: 32px;
    text-transform: uppercase;
    white-space: nowrap;
}

.subscribe-button:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-sm);
}

.subscribe-button:focus {
    outline: 2px solid var(--earth-light);
    outline-offset: 2px;
}

.subscribe-button:active {
    transform: scale(0.98);
}

.email-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.newsletter-message {
    margin-top: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    line-height: 1.4;
    animation: slideDown 0.3s ease;
}

.newsletter-message.success {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.newsletter-message.info {
    background: rgba(33, 150, 243, 0.15);
    color: #64b5f6;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.newsletter-message.error {
    background: rgba(244, 67, 54, 0.15);
    color: #e57373;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-input:focus {
    outline: none;
    border-bottom-color: var(--earth-dark);
}

.email-input:focus-visible {
    outline: 2px solid var(--earth-dark);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.past-topics {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-top: var(--spacing-5);
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: var(--spacing-1);
    padding-bottom: var(--spacing-7);
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

.topic-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.topic-item:hover {
    color: var(--accent1);
    transform: translateX(4px);
}

.topic-item.active {
    color: var(--accent1);
    font-weight: 600;
}

.topic-item {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

/* Blog Content */
.blog-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
    min-height: 0;
    overflow: visible;
    padding: 0;
    padding-bottom: var(--spacing-8);
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.post-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0 0 var(--spacing-4);
    background: linear-gradient(135deg, var(--text), rgba(243, 246, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blog Post Thumbnail/Featured Image
   Recommended aspect ratio: 16:9 (e.g., 1200x675px, 1600x900px)
   Recommended resolution: 1200x675px (for optimal quality and file size)
   This ensures the image displays fully without cropping */
.post-image {
    width: 100%;
    min-height: 450px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.15), rgba(167, 139, 250, 0.12));
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    margin-bottom: var(--spacing-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.post-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.post-image:hover img {
    transform: scale(1.02);
}

.post-text {
    font-size: 18px;
    color: rgba(243, 246, 255, 0.85);
    font-family: var(--font-body);
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-transform: none;
    margin: 0 0 var(--spacing-5);
    font-weight: 400;
}

.post-text:first-of-type {
    font-size: 20px;
    color: rgba(243, 246, 255, 0.9);
    line-height: 1.75;
    margin-bottom: var(--spacing-6);
}

/* Post content from WYSIWYG editor */
.post-content {
    font-size: 18px;
    color: rgba(243, 246, 255, 0.85);
    font-family: var(--font-body);
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin-top: var(--spacing-4);
}

.post-content p {
    margin-bottom: var(--spacing-5);
    color: rgba(243, 246, 255, 0.85);
}

.post-content p:first-of-type {
    font-size: 20px;
    color: rgba(243, 246, 255, 0.9);
    line-height: 1.75;
    margin-bottom: var(--spacing-6);
}

/* Images within blog post content (from WYSIWYG editor)
   Recommended aspect ratios: 16:9 (e.g., 1200x675px) or 4:3 (e.g., 1200x900px)
   Recommended resolution: 1200x675px (16:9) or 1200x900px (4:3)
   Max width ensures responsive display without cropping */
.post-content img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    height: auto;
    border-radius: 12px;
    margin: var(--spacing-5) 0;
    display: block;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text);
    margin-top: var(--spacing-6);
    margin-bottom: var(--spacing-4);
}

.post-content h1 { font-size: 36px; }
.post-content h2 { font-size: 30px; }
.post-content h3 { font-size: 24px; }

.post-content ul,
.post-content ol {
    margin-left: var(--spacing-5);
    margin-bottom: var(--spacing-4);
    padding-left: var(--spacing-4);
}

.post-content li {
    margin-bottom: var(--spacing-2);
    color: rgba(243, 246, 255, 0.85);
}

.post-content strong {
    font-weight: 700;
    color: var(--text);
}

.post-content em {
    font-style: italic;
    color: rgba(243, 246, 255, 0.9);
}

.post-content a {
    color: var(--accent1);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.post-content a:hover {
    color: var(--accent2);
}

/* Booking Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 13, 18, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: var(--spacing-7);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    background: none;
    border: none;
    font-size: 32px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-base);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text);
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-5);
    text-align: center;
    letter-spacing: 0.2px;
}

.booking-summary {
    background: rgba(12, 14, 20, 0.40);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: var(--spacing-4);
    margin-bottom: var(--spacing-5);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-2);
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-label {
    font-weight: 600;
    color: rgba(243, 246, 255, 0.62);
    font-family: var(--font-heading);
    font-size: 14px;
}

.summary-value {
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
}

.email-section {
    margin-bottom: var(--spacing-4);
}

.email-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-2);
    letter-spacing: 0.2px;
}

.email-label .required {
    color: #ff6b6b;
    margin-left: 2px;
}

.email-input-field {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.email-input-field:focus {
    outline: none;
    border-color: rgba(110, 231, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(110, 231, 255, 0.1);
}

.email-input-field::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.email-hint {
    font-size: 11px;
    color: var(--muted);
    margin-top: var(--spacing-1);
    line-height: 1.4;
}

.message-section {
    margin-bottom: var(--spacing-5);
}

.message-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-2);
}

.message-label .required {
    color: #E53935;
    font-weight: 700;
}

.message-input {
    width: 100%;
    padding: var(--spacing-3);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    resize: vertical;
    transition: border-color var(--transition-base);
}

.message-input:focus {
    outline: none;
    border-color: rgba(110, 231, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.message-input:invalid {
    border-color: #E53935;
}

.message-input:valid {
    border-color: var(--line);
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: var(--muted);
    font-family: var(--font-body);
    margin-top: var(--spacing-1);
}

.modal-actions {
    display: flex;
    gap: var(--spacing-3);
    justify-content: flex-end;
}

.modal-cancel-btn,
.modal-confirm-btn {
    padding: var(--spacing-3) var(--spacing-5);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 44px;
}

.modal-cancel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.modal-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.modal-confirm-btn {
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    color: #071016;
    border: none;
}

.modal-confirm-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.modal-confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .bio-section,
    .calendar-section,
    .booking-section,
    .blog-sidebar {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .bio-section:nth-child(2n),
    .calendar-section:nth-child(2n),
    .booking-section:nth-child(2n),
    .blog-sidebar:nth-child(2n) {
        border-right: none;
    }

    .calendar-section {
        min-height: 280px;
    }

    .blog-container {
        display: block;
    }

    .booking-section {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .header-section {
        position: static;
        padding: var(--spacing-5) var(--spacing-4);
        height: auto;
    }

    .header-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bio-section,
    .calendar-section,
    .booking-section,
    .blog-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .bio-section:last-child,
    .calendar-section:last-child,
    .booking-section:last-child,
    .blog-sidebar:last-child {
        border-bottom: none;
    }

    .blog-section {
        margin-top: 0;
        padding: var(--spacing-6) var(--spacing-4);
        height: auto;
        overflow: visible;
    }

    .blog-content {
        overflow: visible;
        min-height: 0;
    }

    .post-image {
        min-height: 250px;
    }
    
    .post-image img {
        max-height: 400px;
    }

    .blog-container {
        gap: var(--spacing-5);
    }

    .calendar-section {
        padding: var(--spacing-5) var(--spacing-4);
        min-height: 260px;
    }

    .booking-section {
        padding: var(--spacing-5) var(--spacing-4);
    }

    .blog-sidebar {
        padding: var(--spacing-5) var(--spacing-4);
    }

    .calendar-section h1 {
        font-size: 28px;
        margin-bottom: var(--spacing-3);
    }

    .calendar-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .calendar-month-year {
        font-size: 16px;
    }

    .calendar-days {
        gap: 0;
    }

    .calendar-day {
        font-size: 13px;
        min-height: 36px;
        max-height: 40px;
        padding: 4px;
        border-radius: 8px;
        border-width: 0.5px;
    }

    .blog-title {
        font-size: 42px;
    }

    .post-title {
        font-size: 28px;
    }

    .bio-section {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-3);
    }

    .bio-top {
        display: contents;
    }

    .bio-square {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        min-width: auto;
        order: 1;
    }

    .bio-text {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-2);
        order: 2;
    }

    .bio-summary {
        margin: 0;
        order: 3;
    }

    .bio-text span {
        font-size: 16px;
    }

    .price {
        font-size: 28px;
    }

    .book-button {
        font-size: 14px;
        padding: var(--spacing-2) var(--spacing-4);
    }

    .modal-content {
        padding: var(--spacing-5);
        max-width: 95%;
        margin: var(--spacing-4);
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-actions {
        flex-direction: column;
        gap: var(--spacing-2);
    }

    .modal-cancel-btn,
    .modal-confirm-btn {
        width: 100%;
    }

    .email-subscription {
        flex-direction: column;
        gap: var(--spacing-2);
    }

    .subscribe-button {
        width: 100%;
    }

    .time-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .header-section {
        position: static;
        padding: var(--spacing-4) var(--spacing-3);
        height: auto;
    }

    .header-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bio-section,
    .calendar-section,
    .booking-section,
    .blog-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .bio-section:last-child,
    .calendar-section:last-child,
    .booking-section:last-child,
    .blog-sidebar:last-child {
        border-bottom: none;
    }

    .calendar-section {
        padding: var(--spacing-4) var(--spacing-3);
        min-height: 240px;
    }

    .blog-sidebar {
        padding: var(--spacing-4) var(--spacing-3);
    }

    .calendar-section h1 {
        font-size: 24px;
        margin-bottom: var(--spacing-2);
        letter-spacing: 2px;
    }

    .calendar-header {
        margin-bottom: var(--spacing-2);
    }

    .calendar-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .calendar-month-year {
        font-size: 14px;
    }

    .calendar-weekdays {
        gap: 1px;
        margin-bottom: var(--spacing-1);
    }

    .weekday {
        font-size: 10px;
        padding: var(--spacing-1) 2px;
    }

    .calendar-days {
        gap: 0;
        padding: var(--spacing-1) 0;
    }

    .calendar-day {
        font-size: 12px;
        min-height: 32px;
        max-height: 36px;
        padding: 3px;
        border-radius: 6px;
        margin: 0;
        border-width: 0.5px;
    }

    .blog-section {
        margin-top: 0;
        padding: var(--spacing-5) var(--spacing-3);
        height: auto;
        overflow: visible;
    }

    .blog-content {
        overflow: visible;
        min-height: 0;
    }

    .post-image {
        min-height: 200px;
    }
    
    .post-image img {
        max-height: 300px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-date {
        font-size: 14px;
    }

    .post-title {
        font-size: 24px;
    }

    .post-text {
        font-size: 14px;
    }

    .bio-section {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-2);
    }

    .bio-top {
        display: contents;
    }

    .bio-square {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        min-width: auto;
        order: 1;
    }

    .bio-text {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-2);
        order: 2;
    }

    .bio-summary {
        margin: 0;
        order: 3;
    }

    .bio-text span {
        font-size: 14px;
    }

    .booking-section {
        gap: var(--spacing-3);
        width: 100%;
        padding: var(--spacing-4) var(--spacing-3);
    }

    .time-options {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }

    .time-item {
        width: auto;
        justify-content: center;
    }

    .time-square {
        min-width: 50px;
        width: auto;
        min-height: 44px;
        height: auto;
        padding: 10px 14px;
    }

    .time-item span {
        font-size: 14px;
        white-space: nowrap;
    }

    .price {
        font-size: 24px;
    }

    .book-button {
        width: 100%;
        font-size: 15px;
    }

    .modal-content {
        padding: var(--spacing-4);
        max-width: 100%;
        margin: var(--spacing-2);
        max-height: 95vh;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: var(--spacing-3);
    }

    .booking-summary {
        padding: var(--spacing-3);
    }

    .summary-item {
        font-size: 13px;
    }

    .message-input {
        font-size: 14px;
    }

    .char-count {
        font-size: 11px;
    }

    .email-subscription {
        flex-direction: column;
    }

    .email-input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }
}
