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

:root {
    --bg: #f5f0eb;
    --bg-light: #faf7f4;
    --accent: #b8633e;
    --accent-light: #c9856a;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --border: #d4c5b9;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 32px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

.btn-small {
    padding: 8px 24px;
    font-size: 0.7rem;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.nav-links-left,
.nav-links-right {
    display: flex;
    gap: 40px;
}

.nav-links-left a,
.nav-links-right a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links-left a,
.navbar.scrolled .nav-links-right a {
    color: var(--text);
}

.navbar.scrolled .nav-links-left a:hover,
.navbar.scrolled .nav-links-right a:hover {
    color: var(--accent);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    margin: 0 60px;
    transition: color 0.3s ease;
    position: relative;
}

.logo-s,
.logo-r {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-s {
    font-size: 2.2rem;
    color: var(--accent);
    position: relative;
    z-index: 2;
}

.logo-r {
    font-size: 1.6rem;
    color: rgba(184, 99, 62, 0.55);
    margin-left: -8px;
    position: relative;
    z-index: 1;
    top: 2px;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--text);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-light);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.mobile-menu a {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 0;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
                url('hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    overflow: hidden;
}

.hero-portrait {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 95%;
    z-index: 1;
    pointer-events: none;
}

.hero-portrait img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.3));
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 32px;
}

.hero-socials {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.hero-socials a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.hero-socials a:hover {
    color: var(--white);
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    gap: 50px;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== Section Header ========== */
.section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 0 80px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    white-space: nowrap;
}

.section-line {
    flex: 1;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

/* ========== About ========== */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 120px 80px;
    background: var(--bg-light);
}

.about-images {
    position: relative;
    flex-shrink: 0;
    width: 350px;
    height: 420px;
}

.about-img-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 280px;
    border: 2px solid var(--accent);
    padding: 8px;
    background: var(--bg-light);
    z-index: 1;
}

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

.about-img-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 240px;
    height: 300px;
    z-index: 2;
    box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.08);
}

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

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text);
}

.about-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ========== Portfolio ========== */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 80px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.6));
}

.portfolio-overlay span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
}

/* ========== Prices ========== */
.prices {
    padding: 100px 0;
    background: var(--bg-light);
}

.prices-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    padding: 0 80px;
}

.prices-tab {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 10px 28px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.prices-tab:hover {
    border-color: var(--accent-light);
    color: var(--text);
}

.prices-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.prices-panel {
    display: none;
}

.prices-panel.active {
    display: block;
}

.prices-addons {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 40px 48px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.prices-addons h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 20px;
}

.prices-addons h4:not(:first-child) {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 32px;
}

.addons-grid span {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 8px 12px;
    background: var(--bg-light);
    border-left: 2px solid var(--accent-light);
}

.booking-details-list {
    list-style: none;
    padding: 0;
}

.booking-details-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 8px 0 8px 20px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(212, 197, 185, 0.3);
}

.booking-details-list li:last-child {
    border-bottom: none;
}

.booking-details-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

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

.addons-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 80px;
    align-items: start;
}

.price-card {
    background: var(--bg);
    border: 1px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
    border-color: var(--border);
}

.price-card.featured {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.price-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.price-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.price-card-overlay h3 {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
}

.price-details {
    padding: 24px;
}

.price-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

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

.price-details .btn {
    display: block;
    text-align: center;
    margin-top: 16px;
}

/* ========== Booking ========== */
.booking {
    padding: 80px 0 60px;
    background: var(--bg);
}

.cal-embed-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
    min-height: 320px;
    overflow: hidden;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Calendar */
.calendar {
    border: 1px solid var(--border);
    background: var(--bg-light);
    padding: 20px;
    user-select: none;
}

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

.calendar-month {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text);
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 10px;
    transition: color 0.3s ease;
}

.calendar-nav:hover {
    color: var(--accent);
}

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

.calendar-weekdays span {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 4px 0;
}

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

.calendar-days span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 0.85rem;
    color: var(--text);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-days span:hover:not(.disabled):not(.selected) {
    background: var(--border);
}

.calendar-days span.selected {
    background: var(--accent);
    color: var(--white);
}

.calendar-days span.disabled {
    color: var(--border);
    cursor: default;
}

.calendar-days span.today {
    border: 1px solid var(--accent-light);
}

.selected-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
}

.booking-submit {
    text-align: center;
    margin-top: 40px;
}

.booking-confirm {
    display: none;
    text-align: center;
    padding: 40px;
}

.booking-confirm.show {
    display: block;
}

.booking-confirm h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text);
}

.booking-confirm p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== Testimonial ========== */
.testimonial {
    padding: 60px 0 80px;
}

.testimonial .section-header {
    margin-bottom: 60px;
}

.testimonial-card {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 48px 40px 40px;
    position: relative;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: -78px auto 16px;
    border: 3px solid var(--bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.testimonial-card h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.testimonial-card p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

/* ========== Contact ========== */
.contact {
    padding: 60px 0 80px;
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

.contact-info p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-detail svg {
    flex-shrink: 0;
    color: var(--accent);
}

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

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

.contact-form .btn {
    width: 100%;
    margin-top: 8px;
}

/* ========== Footer ========== */
.footer {
    background: var(--bg-light);
    padding: 60px 80px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    justify-items: center;
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo .logo-s {
    font-size: 2.2rem;
    color: var(--accent);
    position: relative;
    z-index: 2;
}

.footer-logo .logo-r {
    font-size: 1.6rem;
    color: rgba(184, 99, 62, 0.55);
    margin-left: -8px;
    position: relative;
    z-index: 1;
    top: 2px;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--text-light);
}

.footer-subscribe h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-light);
}

.subscribe-form {
    display: flex;
    gap: 0;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-right: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text);
    outline: none;
}

.subscribe-form input::placeholder {
    color: var(--text-light);
}

.subscribe-form input:focus {
    border-color: var(--accent);
}

.subscribe-form .btn {
    border-left: 1px solid var(--accent);
    white-space: nowrap;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* ========== Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========== Gallery Page ========== */
.gallery-page {
    min-height: 100vh;
    background: var(--bg);
}

.gallery-header {
    padding: 140px 80px 60px;
    text-align: center;
}

.gallery-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

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

.gallery-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text);
}

.gallery-grid {
    columns: 3;
    column-gap: 16px;
    padding: 0 80px 80px;
}

.gallery-grid img {
    width: 100%;
    margin-bottom: 16px;
    display: block;
    break-inside: avoid;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }

    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }

    .about {
        padding: 80px 40px;
        gap: 40px;
    }

    .hero {
        padding: 0 40px;
    }

    .hero-portrait {
        right: 4%;
        height: 75%;
    }

    .hero-stats {
        left: 40px;
    }

    .section-header {
        padding: 0 40px;
    }

    .footer {
        padding: 60px 40px 24px;
    }

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

    .gallery-grid {
        columns: 2;
        padding: 0 40px 60px;
    }

    .gallery-header {
        padding: 120px 40px 40px;
    }

    .booking-form {
        padding: 0 40px;
    }

    .booking-form-grid {
        gap: 40px;
    }

    .cal-embed-wrapper {
        padding: 0 40px;
    }

    .contact-wrapper {
        padding: 0 40px;
    }
}

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

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

    .navbar {
        justify-content: flex-start;
        padding: 16px 20px;
    }

    .nav-logo {
        margin: 0;
    }

    .hero {
        padding: 0 24px;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }

    .hero-portrait {
        right: 50%;
        transform: translateX(50%);
        height: 65%;
        opacity: 0.25;
    }

    .hero-socials {
        right: 20px;
    }

    .hero-stats {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
        gap: 30px;
    }

    .about {
        flex-direction: column;
        text-align: center;
        padding: 80px 24px;
    }

    .about-images {
        width: 280px;
        height: 340px;
    }

    .about-img-back {
        width: 180px;
        height: 230px;
    }

    .about-img-front {
        width: 200px;
        height: 250px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 24px;
    }

    .section-header {
        padding: 0 24px;
    }

    .prices-tabs {
        flex-wrap: wrap;
        padding: 0 24px;
        gap: 6px;
    }

    .prices-tab {
        padding: 8px 20px;
        font-size: 0.7rem;
    }

    .prices-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .prices-grid-2 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .price-card.featured {
        transform: none;
    }

    .prices-addons {
        margin-left: 24px;
        margin-right: 24px;
        padding: 28px 24px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .testimonial {
        padding: 80px 24px;
    }

    .testimonial-grid {
        gap: 50px;
        margin-top: 50px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 48px 24px 32px;
    }

    .footer {
        padding: 40px 24px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-socials {
        justify-content: center;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 8px;
    }

    .subscribe-form input {
        border-right: 1px solid var(--border);
    }

    .gallery-grid {
        columns: 2;
        padding: 0 24px 40px;
    }

    .gallery-header {
        padding: 100px 24px 30px;
    }

    .gallery-header h1 {
        font-size: 2.2rem;
    }

    .booking-form {
        padding: 0 24px;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cal-embed-wrapper {
        padding: 0 16px;
        min-height: 400px;
    }

    .booking {
        padding: 60px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

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

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-socials {
        right: 12px;
        gap: 14px;
    }

    .hero-stats {
        gap: 20px;
        bottom: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .about {
        padding: 60px 16px;
    }

    .about-images {
        width: 240px;
        height: 290px;
    }

    .about-img-back {
        width: 150px;
        height: 190px;
    }

    .about-img-front {
        width: 170px;
        height: 210px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 16px;
    }

    .section-header {
        padding: 0 16px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .prices-tabs {
        padding: 0 16px;
    }

    .prices-grid,
    .prices-grid-2 {
        padding: 0 16px;
    }

    .prices-addons {
        margin-left: 16px;
        margin-right: 16px;
        padding: 24px 16px;
    }

    .testimonial {
        padding: 60px 16px;
    }

    .testimonial-card {
        padding: 40px 16px 28px;
    }

    .testimonial-card p {
        font-size: 0.8rem;
    }

    .gallery-grid {
        columns: 1;
        padding: 0 16px 40px;
    }

    .gallery-header {
        padding: 90px 16px 24px;
    }

    .gallery-header h1 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        padding: 0 16px;
        gap: 32px;
    }

    .cal-embed-wrapper {
        padding: 0 8px;
    }

    .footer {
        padding: 32px 16px 16px;
    }
}

/* ========== Custom Booking Widget ========== */
.booking-widget {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.booking-step {
    display: none;
}

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

.booking-step-title {
    font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--text, #3a3a3a);
    margin-bottom: 24px;
}

/* Package Buttons */
.booking-packages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.booking-pkg-btn {
    font-family: var(--font-body, 'Jost', Arial, sans-serif);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 24px;
    border: 1px solid var(--border, #d4c5b9);
    background: var(--bg-light, #faf7f4);
    color: var(--text, #3a3a3a);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.booking-pkg-btn:hover,
.booking-pkg-btn.selected {
    border-color: var(--accent, #b8633e);
    background: var(--accent, #b8633e);
    color: #fff;
}

/* Calendar */
.booking-calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.bk-cal {
    user-select: none;
}

.bk-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.bk-cal-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text, #3a3a3a);
    letter-spacing: 0.5px;
}

.bk-cal-nav {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light, #7a6e67);
    padding: 4px 8px;
    transition: color 0.2s;
}

.bk-cal-nav:hover {
    color: var(--accent, #b8633e);
}

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

.bk-cal-day-name {
    text-align: center;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-light, #7a6e67);
    padding: 4px 0;
    letter-spacing: 0.5px;
}

.bk-cal-day,
.bk-cal-empty {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    border-radius: 50%;
    cursor: default;
    transition: all 0.15s ease;
}

.bk-cal-day--available {
    color: var(--accent, #b8633e);
    font-weight: 500;
    cursor: pointer;
}

.bk-cal-day--available:hover {
    background: rgba(184, 99, 62, 0.1);
}

.bk-cal-day--selected {
    background: var(--accent, #b8633e);
    color: #fff;
    cursor: pointer;
}

.bk-cal-day--unavailable {
    color: var(--border, #d4c5b9);
}

.bk-cal-day--past {
    color: var(--border, #d4c5b9);
}

/* Time Slots */
.time-slots-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slots-hint {
    font-size: 0.8rem;
    color: var(--text-light, #7a6e67);
    font-style: italic;
    padding-top: 8px;
}

.time-slot-btn {
    font-family: var(--font-body, 'Jost', Arial, sans-serif);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 16px;
    border: 1px solid var(--border, #d4c5b9);
    background: var(--bg-light, #faf7f4);
    cursor: pointer;
    color: var(--text, #3a3a3a);
    transition: all 0.2s ease;
    text-align: left;
}

.time-slot-btn:hover,
.time-slot-btn.selected {
    border-color: var(--accent, #b8633e);
    background: var(--accent, #b8633e);
    color: #fff;
}

/* Booking Form */
.booking-form {
    max-width: 480px;
}

/* Deposit Box */
.deposit-box {
    border: 1px solid var(--border, #d4c5b9);
    background: var(--bg-light, #faf7f4);
    padding: 20px;
    margin-bottom: 24px;
}

.deposit-title {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--accent, #b8633e);
    margin-bottom: 8px;
}

.deposit-instructions {
    font-size: 0.85rem;
    color: var(--text, #3a3a3a);
    margin-bottom: 14px;
    line-height: 1.6;
}

.deposit-options {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.deposit-option {
    flex: 1;
    border: 1px solid var(--border, #d4c5b9);
    background: #fff;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.deposit-option-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted, #7a6e67);
}

.deposit-option-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent, #b8633e);
}

.deposit-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text, #3a3a3a);
    cursor: pointer;
}

.deposit-check input {
    margin-top: 2px;
    accent-color: var(--accent, #b8633e);
    flex-shrink: 0;
}

/* Nav Buttons */
.booking-nav {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.booking-back-btn {
    background: transparent;
    color: var(--text-light, #7a6e67);
    border-color: var(--border, #d4c5b9);
}

.booking-back-btn:hover {
    border-color: var(--text, #3a3a3a);
    background: transparent;
    color: var(--text, #3a3a3a);
}

.booking-error {
    color: #c0392b;
    font-size: 0.83rem;
    border: 1px solid #f5c6c2;
    background: #fef2f1;
    padding: 10px 14px;
    margin-bottom: 16px;
}

/* Success State */
.booking-confirm {
    text-align: center;
    padding: 48px 24px;
}

.booking-confirm-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent, #b8633e);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-confirm h3 {
    font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.booking-confirm p {
    font-size: 0.9rem;
    color: var(--text-light, #7a6e67);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 640px) {
    .booking-calendar-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-nav {
        flex-direction: column;
        align-items: stretch;
    }
}
