/* ========== RESET & BASE ========== */
@font-face {
    font-family: 'Hatton';
    src: url('fonts/PPHatton-Regular.woff2') format('woff2'),
         url('fonts/PPHatton-Regular.woff') format('woff'),
         url('fonts/PPHatton-Regular.otf') format('opentype'),
         url('fonts/PPHatton-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hatton';
    src: url('fonts/PPHatton-Medium.woff2') format('woff2'),
         url('fonts/PPHatton-Medium.woff') format('woff'),
         url('fonts/PPHatton-Medium.otf') format('opentype'),
         url('fonts/PPHatton-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hatton';
    src: url('fonts/PPHatton-MediumItalic.woff2') format('woff2'),
         url('fonts/PPHatton-MediumItalic.woff') format('woff'),
         url('fonts/PPHatton-MediumItalic.otf') format('opentype'),
         url('fonts/PPHatton-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #4b3124;
    --yellow-hover: #3a251b;
    --blue: #8b6f5c;
    --blue-dark: #6b4a37;
    --cream: #F8F4EC;
    --champagne: #e8d5b8;
    --text-dark: #4b3124;
    --text-gray: #555;
    --text-light: #888;
    --white: #ffffff;
    --border: #e5e5e5;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Hatton', 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

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

.btn-book {
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-book:hover {
    background: var(--yellow);
    color: var(--white);
}

.full-width {
    width: 100%;
}

/* ========== SECTION LABELS ========== */
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 16px;
}
.section-label.center {
    text-align: center;
}
.section-label.light {
    color: var(--champagne);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-heading h2 {
    font-size: 42px;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.2)),
                url('herobannerpicture.jpg') center/cover no-repeat;
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    min-height: 108px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(248, 244, 236, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .logo {
    color: var(--text-dark);
}
.navbar.scrolled .logo-light { display: none; }
.navbar.scrolled .logo-dark { display: block; }

.navbar.scrolled .btn-book {
    background: var(--yellow);
    color: var(--white);
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.logo img {
    height: 60px;
    width: auto;
    display: block;
}
.logo .logo-dark {
    display: none;
}

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

.nav-links a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
    transition: opacity 0.3s;
}
.nav-links a:hover {
    opacity: 0.7;
}

.hero-content {
    margin: auto;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.accent-italic {
    font-style: italic;
    color: var(--yellow);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========== INNER PAGE HEADER ========== */
.page-header {
    background: var(--cream);
    color: var(--text-dark);
    position: relative;
    padding-top: 108px;
    padding-bottom: 60px;
}

.navbar-light {
    background: rgba(248, 244, 236, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.navbar-light .nav-links a,
.navbar-light .logo {
    color: var(--text-dark);
}
.navbar-light .nav-links a:hover {
    color: var(--yellow);
    opacity: 1;
}

.btn-book-dark {
    background: var(--yellow);
    color: var(--white);
}
.btn-book-dark:hover {
    background: var(--yellow-hover);
    color: var(--white);
}

.page-hero {
    text-align: center;
    padding: 60px 32px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero h1 {
    font-size: 56px;
    margin-bottom: 18px;
}
.page-hero-subtitle {
    font-size: 16px;
    color: var(--text-gray);
}

.all-services {
    padding: 80px 0;
    background: var(--white);
}
.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 0;
}

/* ========== OUR STORY ========== */
.story {
    padding: 100px 0;
    background: var(--cream);
}

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

.story-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.story-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    justify-content: center;
    text-align: center;
}

.stat h3 {
    font-size: 38px;
    color: var(--text-dark);
    font-weight: 500;
}

.stat p {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 4px;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-img {
    border-radius: 12px;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}
.img-1 { background-image: url('pictureone.jpg'); }
.img-2 { background-image: url('picturetwo.jpg'); transform: translateY(30px); }
.img-3 { background-image: url('picturethree.jpg'); }
.img-4 { background-image: url('picturefour.jpg'); transform: translateY(30px); }

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--cream);
    padding: 32px 28px;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 20px;
}
.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
}
.learn-more:hover {
    color: var(--yellow);
}

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

/* ========== PORTFOLIO ========== */
.portfolio {
    padding: 100px 0;
    background: var(--cream);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.portfolio-header h2 {
    font-size: 42px;
}

.view-all {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 4px;
}

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

.portfolio-item {
    aspect-ratio: 1;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
.portfolio-item:hover {
    transform: scale(1.03);
}

.p-1 { background-image: url('home%20page%20portfolio/picture%201.png'); }
.p-2 { background-image: url('home%20page%20portfolio/picture%202.png'); }
.p-3 { background-image: url('home%20page%20portfolio/picture%203.jpg'); }
.p-4 { background-image: url('home%20page%20portfolio/picture%204.jpg'); }

/* ========== PORTFOLIO PAGE ========== */
.portfolio-page {
    padding: 60px 0 100px;
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}
.filter-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
}

.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.portfolio-card {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    cursor: zoom-in;
}
.portfolio-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 14, 10, 0.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.open {
    display: flex;
    animation: lightbox-fade 0.2s ease;
}

@keyframes lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    font-family: 'Montserrat', sans-serif;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}
.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 28px;
    line-height: 1;
}
.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 560px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close { top: 12px; right: 12px; }
}

/* ========== BLOG ========== */
.blog-section {
    padding: 80px 0 100px;
    background: var(--white);
}

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

.blog-card {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.blog-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-img-1 { background-image: url('pictureone.jpg'); }
.blog-img-2 { background-image: url('picturetwo.jpg'); }
.blog-img-3 { background-image: url('picturethree.jpg'); }
.blog-img-4 { background-image: url('picturefour.jpg'); }
.blog-img-5 { background-image: url('herobannerpicture.jpg'); }
.blog-img-6 { background-image: url('pictureone.jpg'); }

.blog-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex: 1;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 60px 0 100px;
    background: var(--white);
}

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

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-info-dark li h4 {
    color: var(--text-dark);
}
.contact-info-dark li p {
    color: var(--text-gray);
    opacity: 1;
}

.icon-dark {
    background: var(--cream);
}

.contact-form-card {
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 22px;
    margin-bottom: 24px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    scroll-margin-top: 108px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 60px;
    color: var(--yellow);
    font-family: 'Hatton', 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.5;
}

.quote {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-style: italic;
}

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

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ccc, #999);
}

.brand-logo {
    width: 110px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.brand-logo-lg img {
    transform: scale(1.6);
    transform-origin: center;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 12px;
    color: var(--text-light);
}

/* ========== CTA ========== */
.cta {
    padding: 80px 0;
    background: var(--blue);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

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

.cta-text h2 {
    font-size: 46px;
    margin-bottom: 16px;
}

.cta-text > p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-info p {
    font-size: 13px;
    opacity: 0.85;
}

/* ========== FORM ========== */
.cta-form {
    background: var(--white);
    color: var(--text-dark);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b3124' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--blue);
    color: var(--white);
    padding: 70px 0 20px;
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    line-height: 0;
}
.footer-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.footer-col p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--champagne);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.footer-col ul li a:hover {
    opacity: 1;
    color: var(--yellow);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}
.social-icons a svg {
    width: 16px;
    height: 16px;
}
.social-icons a:hover {
    background: var(--champagne);
    color: var(--yellow);
}

.newsletter-input {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 8px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    opacity: 0.7;
}

/* ========== MOBILE NAV TOGGLE ========== */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
}
.navbar.scrolled .nav-toggle span,
.navbar-light .nav-toggle span {
    background: var(--text-dark);
}
body.nav-open .nav-toggle span {
    background: var(--text-dark);
}
body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@keyframes drawer-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 968px) {
    .navbar,
    .navbar-light {
        padding: 16px 24px;
        min-height: 80px;
    }
    .logo img {
        height: 44px;
    }
    .btn-book {
        padding: 8px 18px;
        font-size: 13px;
    }
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    body.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        position: fixed;
        inset: 0;
        background: var(--cream);
        z-index: 1001;
        animation: drawer-fade 0.25s ease;
    }
    body.nav-open .nav-links a {
        color: var(--text-dark);
        font-size: 22px;
        padding: 10px 16px;
    }
    body.nav-open {
        overflow: hidden;
    }

    .hero-content {
        padding-top: 80px;
    }
    .hero-content h1 {
        font-size: 44px;
    }
    .hero-subtitle {
        font-size: 15px;
    }

    .page-header {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .page-hero {
        padding: 40px 24px 16px;
    }
    .page-hero h1 {
        font-size: 38px;
    }

    .story {
        padding: 70px 0;
    }
    .story-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-img {
        transform: none !important;
    }

    .services,
    .all-services {
        padding: 70px 0;
    }
    .services-grid,
    .services-grid-3,
    .portfolio-grid,
    .portfolio-page-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .cta {
        padding: 60px 0;
    }
    .cta-form {
        padding: 28px;
    }

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

    .section-heading h2,
    .story-text h2,
    .portfolio-header h2,
    .cta-text h2 {
        font-size: 32px;
    }
    .stats {
        gap: 24px;
    }
}

/* ========== RESPONSIVE: PHONE ========== */
@media (max-width: 560px) {
    .container {
        padding: 0 20px;
    }

    .navbar,
    .navbar-light {
        padding: 12px 20px;
        min-height: 72px;
    }
    .logo img {
        height: 40px;
    }
    .btn-book {
        padding: 7px 14px;
        font-size: 12px;
    }

    .hero {
        min-height: 90vh;
    }
    .hero-content {
        padding: 80px 16px 0;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
    }

    .page-header {
        padding-top: 72px;
        padding-bottom: 32px;
    }
    .page-hero {
        padding: 32px 20px 12px;
    }
    .page-hero h1 {
        font-size: 30px;
    }
    .page-hero-subtitle {
        font-size: 15px;
    }

    .services,
    .all-services,
    .story,
    .portfolio,
    .blog-section,
    .testimonials {
        padding: 50px 0;
    }
    .portfolio-page {
        padding: 30px 0 60px;
    }
    .contact-section {
        padding: 30px 0 60px;
    }
    .cta {
        padding: 50px 0;
    }

    .services-grid,
    .services-grid-3,
    .portfolio-grid,
    .portfolio-page-grid,
    .blog-grid,
    .testimonials-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 26px 22px;
    }
    .blog-content {
        padding: 22px;
    }
    .blog-image {
        height: 200px;
    }
    .testimonial-card {
        padding: 24px;
    }
    .cta-form {
        padding: 24px;
    }
    .cta-form .form-group,
    .cta-form .form-row {
        margin-bottom: 14px;
    }

    .section-heading {
        margin-bottom: 40px;
    }
    .section-heading h2,
    .story-text h2,
    .portfolio-header h2,
    .cta-text h2 {
        font-size: 28px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    .footer {
        padding: 50px 0 20px;
    }
    .footer-grid {
        gap: 36px;
        margin-bottom: 36px;
    }

    .stats {
        flex-wrap: wrap;
        gap: 24px 32px;
        justify-content: flex-start;
    }
    .story-images {
        gap: 12px;
    }

    .portfolio-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .filter-btn {
        flex-shrink: 0;
    }

    .contact-details h2 {
        font-size: 28px;
    }
}

/* ========== RESPONSIVE: SMALL PHONE ========== */
@media (max-width: 380px) {
    .container {
        padding: 0 16px;
    }
    .btn-book {
        padding: 6px 12px;
        font-size: 11px;
    }
    .logo img {
        height: 36px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .page-hero h1 {
        font-size: 26px;
    }
}
