
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #221600;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --brown: #6b4c2a;
    --gold: #c9a96e;
    --text-muted: #888;
    --nav-height: 102px;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Belleza', sans-serif;
    background: var(--warm-white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 101px;
    background: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    justify-content: center;
    flex: 1;
}

.navbar.scrolled {
    background: rgba(26, 20, 10, 0.95);
    backdrop-filter: blur(6px);
    transition: background 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

 .nav-logo img {
    height: 80px;
    width: auto;
    margin-top: 11px;
    margin-left: 112px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 13px;
    transform: rotate(45deg);
}

.logo-text {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 400;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    justify-content: center;
    margin-left: -109px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 8px;               
    cursor: pointer;
    padding: 4px;
    justify-self: end;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 55px;              
    height: 2px;        
    background: #fff;
    transition: all 0.3s;
    transform-origin: center;
}

.hamburger.open span:first-child {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:last-child {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===========================
   REQUEST PANEL
   =========================== */

.request-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.request-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.request-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 930px;
    height: 100vh;
    background: rgba(28, 20, 5, 0.97) url('../images/modal-bg.png') center center / cover no-repeat;
    z-index: 300;
    padding: 60px 48px;
    overflow-y: auto;
    transition: right 0.4s ease;
}

.request-panel.open {
    right: 0;
}

.request-panel-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.request-panel-close:hover {
    opacity: 1;
}

.request-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    padding-bottom: 20px;
}

.rf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin-bottom: 20px;
}

.rf-row--full {
    grid-template-columns: 1fr;
}

.rf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rf-field label {
    font-family: 'Belleza', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.03em;
    margin-top: 18px;
}

.rf-field input,
.rf-field textarea {
    background: transparent;                        
    border: 1px solid rgba(255, 255, 255, 0.45);  
    border-radius: 4px;
    padding: 12px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: #fff;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
}

.rf-field input::placeholder,
.rf-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);              /* BAGUHIN: mas visible ang placeholder */
}

.rf-field input:focus,
.rf-field textarea:focus {
    border-color: rgba(201, 169, 110, 0.8);        /* gold on focus */
}

.rf-field textarea {
    resize: none;
}

.rf-submit {
    width: 100%;
    padding: 16px;
    background: #6b4f1f;
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 12px;
    transition: background 0.2s;
}

@media (max-width: 640px) {
    .request-panel {
        max-width: 100%;
        padding: 60px 24px;
    }

    .rf-row {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;          /* full screen height */
    min-height: 580px;
    overflow: hidden;
    display: flex;
    align-items: center;    /* vertically centered */
    justify-content: center;
    padding-top: 0;         /* TANGGALIN ang padding-top: 378px */
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 1200px;    
}

.hero-content h1 {
    font-family: 'Belleza', serif;
    font-size: clamp(45px, 7vw, 120px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding-top: 0;         
}

.hero-content p {
    font-size: clamp(13px, 1.6vw, 20px);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    letter-spacing: 0.02em;
    font-family: 'Jost', sans-serif;
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* ===========================
   HERO BUTTON
   =========================== */
.btn-hero {
    display: inline-block;
    padding: 13px 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    background: transparent;
    border-radius: 2px;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

/* Arrows — nakabalik sa gitna vertically */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    font-size: 69px;
    cursor: pointer;
    padding: 12px 40px;
    transition: color 0.2s;
    letter-spacing: 0;
}


.hero-arrow.left { left: 20px; }  
.hero-arrow.right { right: 20px; }

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 8vw, 60px);
        padding-top: 0;
    }

    .hero-arrow {
        font-size: 40px;
        padding: 8px 16px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}

.hero-arrow:hover {
    color: #fff;
}

.hero-arrow.left { left: 20px; }
.hero-arrow.right { right: 20px; }

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    /* padding: 60px 40px; */
    border-top: none;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}

.about-container {
    /* max-width: 1100px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    /* padding-top: 5rem; */
    padding-bottom: 5rem;
}

.about-label {
    font-size: 24px;
    letter-spacing: 0.12em;
    text-transform: none;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 300;
}

.about-text h2 {
    font-family: 'Belleza', serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-desc {
    font-size: 20px;
    line-height: 1.75;
    color: #4b4b4b;
    font-weight: 400;
    margin-bottom: 24px;
    /* max-width: 380px; */
    font-family: 'Jost', sans-serif;
}

.btn-outline {
    display: inline-block;
    padding: 11px 28px;
    border: 1px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

.btn-outline:hover {
    background: var(--dark);
    color: #fff;
}

.about-images {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    align-items: center;
}

.img-main {
    overflow: hidden;
    border-radius: 2px;
}

.img-main img {
    width: 100%;
    height: 615px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    
}

.img-main img:hover {
    transform: scale(1.04);
}

.img-side {
    overflow: hidden;
    border-radius: 2px;
}

.img-side img {
    width: 100%;
    height: 506px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    margin-top: 312px;
}

.img-side img:hover {
    transform: scale(1.04);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar {
        padding: 0 20px;
    }

    .nav-logo img {
        margin-left: 0;
        height: 60px;
    }

    .about-section {
        padding: 50px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-desc {
        max-width: 100%;
    }

    .about-images {
        grid-template-columns: 1fr 1fr;
    }

    .img-side img {
        margin-top: 0;
    }

    .hero-content p br.hide-mobile {
        display: none;
    }

    .hero-arrow {
        font-size: 40px;
        padding: 8px 20px;
        top: auto;
        bottom: 160px;
        transform: none;
    }

    .hero-arrow.left { left: 0; }
    .hero-arrow.right { right: 0; }

    .gallery-section {
        padding: 40px 20px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-text-left h2 {
        font-size: 36px;
        white-space: normal;
    }

    .gallery-text-right p {
        padding-top: 0;
        max-width: 100%;
    }

    .sister-section {
        padding: 40px 20px;
    }

    .sister-header h2 {
        font-size: 36px;
    }

    .featured-section {
        padding: 40px 20px;
    }

     .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .featured-header .btn-outline {
        align-self: flex-start;
        margin-left: 0;
    }

    .featured-header h2 {
        font-size: 36px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        height: auto;
        min-height: 280px;
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .insta-section {
        padding: 40px 20px;
    }

    .insta-header h2 {
        font-size: 36px;
    }

    .insta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 20px 30px;
        gap: 24px;
    }

    .footer-col h4 {
        font-size: 28px;
    }

    .footer-bottom {
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
        border-radius: 0 !important;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .footer-copy-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 14px 20px;
    }

    .footer-copy-bar p,
    .footer-copy-links a {
        font-size: 12px;
    }

    .subscribe-banner-contact {
        padding: 40px 20px;
    }

    .subscribe-inner-contact {
        flex-direction: column;
        max-width: 100%;
        margin-top: 0 !important;
    }

    .subscribe-left-contact {
        width: 100%;
        padding: 24px 20px;
        justify-content: center;
        text-align: center;
    }

    .subscribe-right-contact {
        padding: 16px;
        width: 100%;
    }

    .subscribe-form-contact {
        min-height: 56px;
        padding: 6px 6px 6px 14px;
    }

    .subscribe-form-contact input {
        font-size: 14px;
    }

    .subscribe-form-contact button {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-images {
        grid-template-columns: 1fr;
    }

    .img-side img {
        height: 200px;
        margin-top: 0;
    }

    .img-main img {
        height: 240px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-content p {
        font-size: 17px;
    }
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
    background: #F0E3D5;
    /* padding: 80px 40px; */
    /* max-width: 1536px; */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 60px;
}

.gallery-container {
    /* max-width: 1100px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5rem;
    max-width: 1536px;
}

.gallery-label {
    font-size: 20px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(to top, #888 0%, #221600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 12px;
    display: inline-block;
}

.gallery-text-left h2 {
    font-family: 'Belleza', serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    white-space: normal;
    word-break: break-word;
}

.gallery-text-right p {
    font-size: 20px;
    line-height: 1.85;
    color: #302e2e;
    font-weight: 400;
    padding-top: 88px;
    max-width: 668px;
    font-family: 'Jost', sans-serif;
}

@media (max-width: 768px) {
    .gallery-container {
        font-size: 40px;
        padding: 8px 20px;
        top: auto;
        bottom: 80px;
        transform: none;
    }

    .hero-arrow.left { left: 0; }
    .hero-arrow.right { right: 0; }


    .gallery-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-text-left h2 {
        font-size: 36px;
        white-space: normal;
    }

    .gallery-text-right p {
        padding-top: 0;
        max-width: 100%;
        font-size: 16px;
    }

    .gallery-slider-section {
        overflow: hidden;
    }

    .gallery-slide-item {
        flex: 0 0 80%;
    }

    .gallery-slide-item img {
        height: 240px;
    }

    .gs-arrow {
        font-size: 48px;
    }

    .gallery-slider-controls {
        padding: 16px 20px;
    }
}

/* ===========================
   GALLERY SLIDER SECTION
   =========================== */
.gallery-slider-section {
    background: #f0ebe3;       
    padding: 0 0 0 0;
    overflow: hidden;
    position: relative;
}

.gallery-slider-section::after {
    display: none;
}

.gallery-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
    gap: 12px;
}

.gallery-slide-item {
    flex: 0 0 33.333%;
    position: relative;
    overflow: hidden;
}

.gallery-slide-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 7px;
}

.gallery-slide-item.center {
    flex: 0 0 33.333%;
}

.gallery-slide-item.center img {
    height: 380px;
}

@media (max-width: 900px) {
    .gallery-slide-item {
        flex: 0 0 60%;
    }

    .gallery-slide-item.center {
        flex: 0 0 60%;
    }

    .gallery-slide-item img,
    .gallery-slide-item.center img {
        height: 320px;
    }
}

@media (max-width: 640px) {
    .gallery-slide-item {
        flex: 0 0 80%;
    }

    .gallery-slide-item.center {
        flex: 0 0 80%;
    }

    .gallery-slide-item img,
    .gallery-slide-item.center img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .gallery-slide-item {
        flex: 0 0 90%;
    }

    .gallery-slide-item.center {
        flex: 0 0 90%;
    }

    .gallery-slide-item img,
    .gallery-slide-item.center img {
        height: 240px;
        border-radius: 5px;
    }
}

.slide-label {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.85);
    color: var(--dark);
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    white-space: nowrap;
    font-family: 'Jost', sans-serif;
}

.gallery-slide-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;                        /* kalahati lang ng larawan ang may gradient */
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(34, 20, 0, 0.55) 60%,
        rgba(58, 35, 5, 0.85) 100%      /* dark brown sa pinaka-ibaba */
    );
    pointer-events: none;
    z-index: 1;
}

.gallery-slider-controls {
    display: flex;
    gap: 20px;
    padding: 24px 40px;
    align-items: center;
    position: relative;
    z-index: 2;   
  }

.gs-arrow {
    background: none;
    border: none;
    font-size: 81px;
    cursor: pointer;
    color: rgb(107 79 31);
    padding: 4px 8px;
    transition: opacity 0.2s;
    letter-spacing: 0;
    line-height: 1;
}

.gs-arrow:hover {
    opacity: 0.5;
    color: #fff;
}

/* REMOVE the line between arrows */
.gallery-slider-controls::after {
    display: none;
}

.sister-section {
    background: #f7f5f0 url('../images/Rectangle.png') center center / cover no-repeat;
    padding: 70px 40px 60px;
}

.sister-header {
    text-align: center;
    margin-bottom: 40px;
}

.sister-label {
    font-size: 20px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.sister-header h2 {
    font-family: 'Belleza', serif;
    font-size: 55px;
    font-weight: 400;
    color: var(--dark);
}

.logo-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.logo-carousel-track {
    display: flex;
    gap: 35px;
    animation: logoScroll 18s linear infinite;
    width: max-content;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

.logo-card {
    flex: 0 0 300px; 
    height: 150px;
    width: 300px;     
    padding: 20px 32px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-card img {
    max-width: 100%;
    max-height: 90px;    
    object-fit: contain;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ===========================
   FEATURED COLLECTIONS
   =========================== */
.featured-section {
    background: var(--warm-white);
    /* padding: 80px 40px; */
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}

.featured-container {
    /* max-width: 1100px; */
    margin: 0 auto;
    width: 100%;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5rem;
}

.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.featured-label {
    font-size: 20px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    margin-top: 107px;
}

.featured-header h2 {
    font-family: 'Belleza', serif;
    font-size: 55px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.15;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.featured-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-img {
    overflow: hidden;
    margin-top: 44px;
}

.featured-img img {
    width: 100%;
    /* height: 220px; */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 11px;
}

.featured-img img:hover {
    transform: scale(1.04);
}

.featured-name {
    font-size: 20px;
    color: var(--dark);
    font-weight: 400;
    letter-spacing: 0.03em;
    font-family: 'Jost', serif;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
    position: relative;
    width: 100%;
    height: 668px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(10, 8, 5, 0.45); */
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5rem;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1536px;
}

@media (max-width: 768px) {
    .cta-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.cta-content h2 {
    font-family: 'Belleza', serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    padding: 11px 28px;
    border: 1px solid #fff;
    color: #3e3016;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    transition: background 0.3s, color 0.3s;
    background-color: #fff;
}

.btn-cta:hover {
    background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
    .cta-banner {
        height: auto;
        min-height: 350px;
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 24px;
    }

    .cta-content h2 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================
   INSTAGRAM FEED SECTION
   =========================== */
.insta-section {
    background: var(--warm-white);
    /* padding: 80px 40px; */
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 60px;
}

.insta-header {
    text-align: center;
    margin-bottom: 40px;
}

.insta-label {
        font-size: 30px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0c0b0b;
    margin-bottom: 10px;
    margin-top: 105px;
}

.insta-header h2 {
    font-family: 'Belleza', serif;
    font-size: 55px;
    font-weight: 400;
    color: var(--dark);
}

.insta-grid {
    /* max-width: 1100px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5rem;
    width: 100%;
    max-width: 1536px;
}

.insta-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    overflow: hidden;
    padding: 15px;
    border-radius: 10px;
}

.insta-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
}

.insta-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid var(--gold);
}

.insta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-username {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    flex: 1;
}

.insta-date {
    font-size: 16px;
    color: var(--text-muted);
    white-space: nowrap;
}

.insta-img img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    display: block;
}

.insta-caption {
    padding: 10px 16px 14px;
    font-size: 20px;
    color: var(--dark);
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Jost', sans-serif;
}

/* ===========================
   SUBSCRIBE BANNER
   =========================== */
.subscribe-banner {
    background: var(--warm-white);
}

.subscribe-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    border: 1px solid #221600;
    overflow: hidden;
    border-radius: 8px;
}

.subscribe-left {
    background: var(--dark);
    padding: 40px 40px;
    display: flex;
    align-items: center;
}

.subscribe-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.subscribe-right {
    padding: 40px;
    display: flex;
    align-items: center;
}

.subscribe-form {
    display: flex;
    width: 100%;
    gap: 0;
}

.subscribe-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1px solid rgba(0,0,0,0.15);
    border-right: none;
    font-size: 13px;
    font-family: 'Jost', sans-serif;
    background: #fff;
    outline: none;
    color: var(--dark);
}

.subscribe-form button {
    padding: 13px 28px;
    background: var(--dark);
    color: #fff;
    border: none;
    font-size: 13px;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background: var(--brown);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-image: url(../images/Vector.png);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--warm-white);
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}


.footer-top {
    /* max-width: 1100px; */
    margin: 0 auto;
    padding: 77px 0px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 1536px;
}

.footer-col h4 {
    font-family: 'Belleza', serif;
    font-size: 41px;
    font-weight: 400;
    color: #221600;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 20px;
    color: #221600;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
    font-family: 'Jost', sans-serif;
}

.footer-col ul li a {
    font-size: 20px;       
    color: #221600;         
    text-decoration: none;
    font-weight: 400;       
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--dark);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    font-size: 20px;
    color: #221600;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
}

.footer-contact li .contact-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    color: var(--gold);
}

/* Footer Bottom Bar */
.footer-bottom {
    background: var(--dark);
    /* padding: 30px 60px; */
    margin: 0 auto;
    /* max-width: 1100px; */
    border-radius: 10px;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    /* width: 100%; */
}

.footer-bottom-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px 40px;
}

.footer-bottom-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-bottom-logo img {
    height: 85px;
    width: auto;
}

.footer-bottom-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-phone-box-icon img {
    height: 36px;
    width: auto;
    filter: invert(0.7) sepia(1) saturate(0.5);
}

.footer-phone-box-text {
    background: transparent;    
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
}

.footer-phone-box small {
    display: block;
    font-size: 20px;
    color: rgba(34, 22, 0, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-phone-box strong {
    font-size: 36px;
    color: #221600;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-phone-box-icon {
    background: #221600;          
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;           
    margin-right: 16px;
}


.footer-phone-box {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    gap: 0;
    background: #c6b48a;           
    padding: 21px 40px;
}


/* Social icons - default colored, hover glow */
.footer-socials {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-socials a {
    display: inline-flex;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-socials a img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.footer-socials a:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Copyright Bar */
.footer-copy-bar {
    background: var(--warm-white);
    /* padding: 14px 408px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0;
    padding-top: 35px;
}

.footer-copy-bar p {
   font-size: 18px; 
   color: #221600;
}

.footer-copy-links {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 11px;
    color: #221600;
}

.footer-copy-links a {
    color: #221600;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 18px;
    font-weight: 100px;
}

.footer-copy-links a:hover {
    color: var(--dark);
}

/* ===========================
   RESPONSIVE FOOTER
   =========================== */
@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
    margin: 0 16px; 
    padding: 24px;
    }

    .footer-copy-bar {
        padding: 14px 24px;
    }

    .subscribe-inner {
        grid-template-columns: 1fr;
    }

    .subscribe-left {
        padding: 30px 24px;
    }

    .subscribe-right {
        padding: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 40px 24px 30px;
        gap: 30px;
    }

    .footer-contact {
        margin-left: -3px;
    }

    .footer-contact li {
        margin-left: 0;
        margin-left: -17px;
    }

    .footer-col:last-child ul.footer-contact {
        padding-left: 0;
        margin-left: 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-copy-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .insta-section {
        padding: 60px 24px;
    }

    .subscribe-banner {
        padding: 0 24px 40px;
    }
}


.navbar--dark .nav-links a {
    color: #221600;              /* dark brown */
}

.navbar--dark .nav-links a:hover,
.navbar--dark .nav-links a.active {
    color: #221600;
}

.navbar--dark .nav-links a::after {
    background: #221600;         /* dark brown underline */
}

/* Hamburger — dark brown sa non-homepage */
.navbar--dark .hamburger span {
    background: #221600;
}

/* Kung nag-scroll na, bumalik sa white */
.navbar--dark.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.navbar--dark.scrolled .nav-links a:hover,
.navbar--dark.scrolled .nav-links a.active {
    color: #fff;
}

.navbar--dark.scrolled .hamburger span {
    color: #fff;
    background: #fff;
}


.footer-socials a:nth-child(1):hover {
    transform: scale(1.08);
    box-shadow: 0 0 12px 3px rgba(24, 119, 242, 0.6);
}

/* Instagram — pink/magenta glow */
.footer-socials a:nth-child(2):hover {
    transform: scale(1.08);
    box-shadow: 0 0 12px 3px rgba(228, 64, 195, 0.6);
}

/* Shopee — orange glow */
.footer-socials a:nth-child(3):hover {
    transform: scale(1.08);
    box-shadow: 0 0 12px 3px rgba(238, 99, 28, 0.6);
}

/* ===========================
   CONTACT SUBSCRIBE BANNER
   =========================== */

.subscribe-banner-contact {
    background: var(--warm-white, #faf9f6);
    padding: 60px;
    box-sizing: border-box;
}

.subscribe-inner-contact {
    display: flex;
    align-items: stretch;
    max-width: 1108px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0c8b8;
    margin-top: 100px;
    max-width: 1536px;
}

.subscribe-left-contact {
    background: #221b00;
    padding: 40px 60px 40px 44px;
    flex: 0 0 auto;
    width: 560px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.subscribe-left-contact h2 {
    font-family: 'Belleza', serif;
    font-size: clamp(20px, 2.5vw, 55px);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    white-space: normal;
}

.subscribe-right-contact {
    background: #ffffff;         
    flex: 1;
    display: flex;
    align-items: center;
    padding: 24px 28px;
}

.subscribe-form-contact {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
    background: #c6b48a;
    border-radius: 5px;
    padding: 8px 4px 8px 20px;
    min-height: 98px;
}

.subscribe-form-contact input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    color: #000000;
    background: transparent;
}

.subscribe-form-contact input::placeholder {
    color: #000000;
    font-size: 24px;
    font-family: 'Jost', sans-serif;
}

.subscribe-form-contact button {
    background: #3d3526;
    color: #fff;
    border: none;
    padding: 34px 38px;
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    letter-spacing: 0.04em;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 11px;
    margin-bottom: 11px;
}

.subscribe-form-contact button:hover {
    background: #221b00;
}

@media (max-width: 900px) {
    .subscribe-left-contact {
        width: 260px;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .subscribe-banner-contact {
        padding: 40px 20px;
    }

    .subscribe-inner-contact {
        flex-direction: column;
        max-width: 100%;
        margin-top: 0 !important;
    }

    .subscribe-left-contact {
        width: 100%;
        padding: 24px 20px;
        justify-content: center;
        text-align: center;
    }

    .subscribe-left-contact h2 {
        font-size: clamp(18px, 5vw, 26px);
        white-space: normal;
    }

    .subscribe-right-contact {
        padding: 16px;
        width: 100%;
    }

    .subscribe-form-contact {
        flex-direction: row;
        min-height: 56px;
        padding: 6px 6px 6px 14px;
    }

    .subscribe-form-contact input {
        font-size: 14px;
    }

    .subscribe-form-contact button {
        padding: 12px 18px;
        font-size: 14px;
        margin: 4px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .subscribe-banner-contact {
        padding: 30px 16px;
    }

    .subscribe-form-contact {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        min-height: auto;
        gap: 8px;
    }

    .subscribe-form-contact input {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .subscribe-form-contact button {
        width: 100%;
        margin: 0;
        padding: 14px;
        font-size: 16px;
        text-align: center;
        height: auto;
    }
}
/* ===========================
   PANEL MOBILE NAV
   (visible only on mobile inside request panel)
   =========================== */

.panel-mobile-nav {
    display: none;
}

.panel-nav-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.panel-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-nav-links li a {
    display: block;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Belleza', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.2s, padding-left 0.2s;
}

.panel-nav-links li a:hover,
.panel-nav-links li a.active {
    color: var(--gold);
    padding-left: 8px;
}

.panel-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .panel-mobile-nav {
        display: block;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .about-section,
    .gallery-section,
    .featured-section,
    .insta-section,
    .footer {
        padding: 0 20px;
    }
}

.about-section,
.gallery-section,
.featured-section,
.insta-section,
.footer,
.cta-content {
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 768px) {
    .about-section,
    .gallery-section,
    .featured-section,
    .insta-section,
    .footer,
    .cta-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===========================
   APPLE LAPTOP RESPONSIVE
   1280px - 1440px
   =========================== */
@media (max-width: 1440px) {
    .about-section,
    .gallery-section,
    .featured-section,
    .insta-section,
    .footer,
    .cta-content {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (max-width: 1280px) {
    .about-section,
    .gallery-section,
    .featured-section,
    .insta-section,
    .footer,
    .cta-content {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .about-text h2 {
        font-size: 44px;
    }

    .cta-content h2 {
        font-size: 70px;
    }

    .featured-header h2,
    .insta-header h2,
    .sister-header h2 {
        font-size: 44px;
    }
}