@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --terracotta:       #C1440E;
    --terracotta-light: #E8956A;
    --terracotta-dark:  #8B2E08;
    --cream:            #FAF0E8;
    --cream-dark:       #F0DDD0;
    --navy:             #1B2A4A;
    --navy-light:       #2C3E66;
    --dark:             #1A0D08;
    --brown-mid:        #8B5E52;
    --white:            #FFFFFF;
    --text-primary:     #1A0D08;
    --text-secondary:   #8B5E52;
    --text-light:       #B09080;
    --border-color:     #E8D5C4;
    --font-heading:     'Cormorant Garamond', Georgia, serif;
    --font-body:        'DM Sans', system-ui, -apple-system, sans-serif;
    --transition:       all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm:        0 2px 8px rgba(26,13,8,0.08);
    --shadow-md:        0 4px 20px rgba(26,13,8,0.12);
    --shadow-lg:        0 8px 40px rgba(26,13,8,0.16);
    --radius-sm:        6px;
    --radius-md:        12px;
    --radius-lg:        20px;
    --radius-xl:        32px;
    --navbar-height:    68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--text-primary); }

/* ---- Page Transition ---- */
#page-transition {
    position: fixed; inset: 0;
    background: var(--cream);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
#page-transition.active { opacity: 1; pointer-events: all; }
.transition-logo { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.transition-logo span { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--terracotta); }
.transition-dots { display: flex; gap: 8px; }
.transition-dots span {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--terracotta);
    animation: dotBounce 1.2s ease-in-out infinite;
    font-size: 0; line-height: 0;
}
.transition-dots span:nth-child(2) { animation-delay: 0.2s; }
.transition-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

#progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: var(--terracotta);
    z-index: 10000;
    transition: width 0.4s ease;
    border-radius: 0 2px 2px 0;
}

/* ---- Navbar ---- */
.navbar-archi {
    background: rgba(250,240,232,0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: sticky; top: 0; z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.navbar-archi.scrolled { box-shadow: var(--shadow-sm); }
.navbar-archi .container,
.navbar-archi .container-fluid,
.navbar-archi .container-lg {
    height: var(--navbar-height);
    display: flex; align-items: center; flex-wrap: nowrap;
}

.navbar-brand-wrap {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
    max-height: var(--navbar-height);
    overflow: hidden;
}
.navbar-brand-logo {
    height: 44px; width: 44px;
    object-fit: contain; flex-shrink: 0; display: block;
}
.navbar-brand-text {
    display: flex; flex-direction: column; line-height: 1.15;
    overflow: hidden;
}
.navbar-brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700;
    color: var(--terracotta); letter-spacing: 0.01em;
}
.navbar-brand-tagline {
    font-size: 0.6rem; color: var(--brown-mid);
    letter-spacing: 0.04em; white-space: nowrap;
    font-family: var(--font-body);
}

.navbar-archi .nav-link {
    font-size: 0.88rem; font-weight: 500;
    color: var(--brown-mid) !important;
    padding: 8px 12px !important;
    transition: var(--transition);
    position: relative; white-space: nowrap;
}
.navbar-archi .nav-link::after {
    content: ''; position: absolute;
    bottom: 2px; left: 12px; right: 12px;
    height: 2px; background: var(--terracotta);
    border-radius: 2px;
    transform: scaleX(0); transition: transform 0.3s ease;
    transform-origin: center;
}
.navbar-archi .nav-link:hover,
.navbar-archi .nav-link.active { color: var(--terracotta) !important; }
.navbar-archi .nav-link:hover::after,
.navbar-archi .nav-link.active::after { transform: scaleX(1); }

.lang-toggle { display: flex; gap: 4px; align-items: center; }
.lang-btn {
    font-size: 0.72rem; font-weight: 600;
    padding: 5px 11px; border-radius: 999px;
    border: 1.5px solid var(--border-color);
    color: var(--brown-mid); background: transparent;
    cursor: pointer; transition: var(--transition);
    text-decoration: none; letter-spacing: 0.05em; line-height: 1;
}
.lang-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.lang-btn.active { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }

.btn-book-nav {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 999px !important;
    font-weight: 600 !important; font-size: 0.83rem !important;
    transition: var(--transition) !important;
    border: 2px solid var(--terracotta) !important;
    white-space: nowrap; display: inline-block;
    text-decoration: none;
}
.btn-book-nav:hover {
    background: var(--terracotta-dark) !important;
    border-color: var(--terracotta-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(193,68,14,0.3) !important;
}
.btn-book-nav::after { display: none !important; }

.navbar-toggler {
    border: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-sm) !important;
    padding: 6px 10px !important; flex-shrink: 0;
}
.navbar-toggler:focus { box-shadow: none !important; outline: none !important; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238B5E52' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 20px !important; height: 20px !important;
}
.navbar-collapse { background: rgba(250,240,232,0.99); }

/* ---- Buttons ---- */
.btn-primary-archi {
    background: var(--terracotta); color: var(--white);
    border: 2px solid var(--terracotta);
    padding: 12px 28px; border-radius: 999px;
    font-weight: 600; font-size: 0.93rem;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.btn-primary-archi:hover {
    background: var(--terracotta-dark); border-color: var(--terracotta-dark);
    color: var(--white); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193,68,14,0.3);
}
.btn-outline-archi {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.55);
    padding: 12px 28px; border-radius: 999px;
    font-weight: 600; font-size: 0.93rem;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.btn-outline-archi:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white); color: var(--white);
}
.btn-navy-archi {
    background: var(--navy); color: var(--white);
    border: 2px solid var(--navy);
    padding: 12px 28px; border-radius: 999px;
    font-weight: 600; font-size: 0.93rem;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.btn-navy-archi:hover {
    background: var(--navy-light); border-color: var(--navy-light);
    color: var(--white); transform: translateY(-2px);
}
.btn-wa {
    background: #25D366; color: var(--white);
    border: 2px solid #25D366;
    padding: 12px 28px; border-radius: 999px;
    font-weight: 600; font-size: 0.93rem;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.btn-wa:hover {
    background: #1ebe5d; border-color: #1ebe5d;
    color: var(--white); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* ---- Sections ---- */
.section-padding    { padding: 80px 0; }
.section-padding-sm { padding: 56px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--terracotta); background: rgba(193,68,14,0.08);
    padding: 6px 16px; border-radius: 999px; margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; color: var(--text-primary); margin-bottom: 14px;
}
.section-sub {
    font-size: 0.97rem; color: var(--text-secondary);
    max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* ---- Hero ---- */
.hero-section {
    min-height: calc(100vh - var(--navbar-height));
    height: calc(100vh - var(--navbar-height));
    background: var(--dark);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.32;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,13,8,0.88) 0%,
        rgba(27,42,74,0.5) 55%,
        rgba(193,68,14,0.2) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    padding: 40px 0; width: 100%;
}
.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 11vw, 8rem);
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-tagline-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    max-width: 520px;
    line-height: 1.5;
    margin-bottom: 40px;
}
.hero-btns {
    display: flex; flex-wrap: wrap;
    gap: 12px; margin-bottom: 52px;
}
.hero-stats {
    display: flex; flex-wrap: wrap;
    gap: 32px; padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700; color: var(--terracotta-light);
    line-height: 1; margin-bottom: 4px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.hero-stat-label {
    font-size: 0.7rem; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-scroll-indicator {
    position: absolute; bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.3);
    font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
    animation: bounceDown 2s ease-in-out infinite; z-index: 2;
}
.scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}
@keyframes bounceDown {
    0%,100%{transform:translateX(-50%) translateY(0)}
    50%{transform:translateX(-50%) translateY(8px)}
}

/* ---- Service Cards ---- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--terracotta);
    transform: scaleX(0); transition: transform 0.4s ease;
    transform-origin: center;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    background: rgba(193,68,14,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--terracotta);
    margin-bottom: 18px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--terracotta); color: var(--white); }
.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    color: var(--text-primary); margin-bottom: 8px;
}
.service-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ---- Gallery ---- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.filter-btn {
    padding: 7px 20px; border-radius: 999px;
    border: 1.5px solid var(--border-color);
    background: transparent; color: var(--text-secondary);
    font-size: 0.83rem; font-weight: 500;
    cursor: pointer; transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--terracotta); border-color: var(--terracotta); color: var(--white);
}
.gallery-grid { columns: 3; column-gap: 14px; }
.gallery-item {
    break-inside: avoid; margin-bottom: 14px;
    border-radius: var(--radius-md); overflow: hidden;
    position: relative; cursor: pointer; display: block;
}
.gallery-item img { width: 100%; height: auto; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(26,13,8,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--white); }

/* ---- Testimonials ---- */
.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg); padding: 28px;
    border: 1px solid var(--border-color);
    transition: var(--transition); height: 100%; position: relative;
}
.testi-card::before {
    content: '\201C'; font-family: var(--font-heading);
    font-size: 5rem; color: var(--terracotta); opacity: 0.1;
    position: absolute; top: 8px; left: 18px; line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: #F59E0B; margin-bottom: 12px; font-size: 0.9rem; }
.testi-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); flex-shrink: 0; }
.testi-avatar-placeholder {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--terracotta); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
    font-family: var(--font-heading); flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.92rem; color: var(--text-primary); margin-bottom: 2px; }
.testi-service { font-size: 0.78rem; color: var(--text-light); }

/* ---- CTA Section ---- */
.cta-section {
    background: var(--terracotta-dark);
    padding: 80px 0; position: relative; overflow: hidden;
    border-top: 4px solid var(--terracotta);
}
.cta-section::before {
    content: ''; position: absolute;
    top: -40%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(250,240,232,0.08) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.cta-section::after {
    content: ''; position: absolute;
    bottom: -30%; left: -5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(27,42,74,0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.cta-section .section-title { color: var(--cream); }
.cta-section .section-sub { color: rgba(250,240,232,0.75); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- About ---- */
.about-story { font-size: 1rem; color: var(--text-secondary); line-height: 1.9; }
.vision-mission-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid var(--border-color); height: 100%;
}
.vision-mission-card h4 {
    font-family: var(--font-heading); font-size: 1.2rem;
    color: var(--terracotta); margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.team-card { text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); }
.team-photo-wrap {
    width: 148px; height: 148px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 14px;
    border: 3px solid var(--border-color); transition: var(--transition);
}
.team-card:hover .team-photo-wrap { border-color: var(--terracotta); }
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; }
.team-role { font-size: 0.82rem; color: var(--terracotta); font-weight: 500; margin-bottom: 8px; }
.team-bio { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.team-ig a { font-size: 0.8rem; color: var(--text-light); transition: var(--transition); }
.team-ig a:hover { color: var(--terracotta); }

/* ---- Booking ---- */
.booking-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color);
}
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-control, .form-select {
    border: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-sm) !important;
    padding: 11px 14px !important; font-size: 0.93rem !important;
    color: var(--text-primary) !important; background: var(--cream) !important;
    transition: var(--transition) !important;
    -webkit-appearance: none; appearance: none;
}
.form-control:focus, .form-select:focus {
    border-color: var(--terracotta) !important;
    box-shadow: 0 0 0 3px rgba(193,68,14,0.1) !important;
    background: var(--white) !important; outline: none !important;
}
.form-control::placeholder { color: var(--text-light) !important; }
textarea.form-control { min-height: 120px; resize: vertical; }
.booking-info-card {
    background: var(--navy); border-radius: var(--radius-xl);
    padding: 36px 28px; color: var(--white); height: 100%;
}
.booking-info-card h3 { font-family: var(--font-heading); color: var(--cream); margin-bottom: 6px; font-size: 1.4rem; }
.booking-info-card p { color: rgba(250,240,232,0.65); font-size: 0.88rem; }
.booking-info-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.booking-info-item:last-child { border-bottom: none; }
.booking-info-icon { width: 38px; height: 38px; background: rgba(193,68,14,0.18); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--terracotta-light); font-size: 1rem; flex-shrink: 0; }
.booking-info-text strong { display: block; font-size: 0.83rem; color: var(--cream); margin-bottom: 2px; }
.booking-info-text span { font-size: 0.8rem; color: rgba(250,240,232,0.55); }

/* ---- Services Page ---- */
.service-package-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 24px; border: 1.5px solid var(--border-color);
    text-align: center; transition: var(--transition); height: 100%; position: relative;
}
.service-package-card.popular { border-color: var(--terracotta); box-shadow: var(--shadow-md); }
.popular-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--terracotta); color: var(--white);
    font-size: 0.7rem; font-weight: 700; padding: 4px 16px;
    border-radius: 999px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.service-package-card:hover:not(.popular) { border-color: var(--terracotta); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.package-price-note { font-size: 0.83rem; color: var(--text-light); margin-bottom: 18px; font-style: italic; }
.package-features { text-align: left; margin-bottom: 24px; }
.package-features li { font-size: 0.86rem; color: var(--text-secondary); padding: 5px 0; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border-color); }
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--terracotta); font-size: 0.88rem; flex-shrink: 0; }

/* ---- Footer ---- */
.footer-archi { background: var(--navy); color: var(--cream); padding: 60px 0 0; }
.footer-brand { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.footer-tagline { font-size: 0.88rem; color: rgba(250,240,232,0.58); line-height: 1.7; max-width: 240px; margin-bottom: 22px; }
.footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta-light); margin-bottom: 16px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.88rem; color: rgba(250,240,232,0.62); transition: var(--transition); display: flex; align-items: center; gap: 5px; }
.footer-links a:hover { color: var(--cream); padding-left: 3px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; font-size: 0.86rem; color: rgba(250,240,232,0.62); }
.footer-contact-item i { color: var(--terracotta-light); margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(250,240,232,0.62); font-size: 0.95rem;
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
    -webkit-tap-highlight-color: transparent;
}
.footer-social a:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0; margin-top: 44px;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
    gap: 10px; font-size: 0.8rem; color: rgba(250,240,232,0.38);
}
.footer-bottom a { color: var(--terracotta-light); }
.footer-bottom a:hover { color: var(--cream); }

/* ---- Lightbox ---- */
.lightbox-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 9000;
    align-items: center; justify-content: center; padding: 16px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close {
    position: absolute; top: 16px; right: 16px;
    width: 42px; height: 42px; background: rgba(255,255,255,0.1);
    border: none; border-radius: 50%; color: var(--white); font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover { background: var(--terracotta); }

/* ---- Alerts ---- */
.alert-archi { padding: 13px 18px; border-radius: var(--radius-md); font-size: 0.88rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(16,185,129,0.1); color: #065f46; border: 1px solid rgba(16,185,129,0.22); }
.alert-error   { background: rgba(239,68,68,0.1);  color: #7f1d1d; border: 1px solid rgba(239,68,68,0.22); }

/* ---- Page Header ---- */
.page-header { background: var(--dark); padding: 80px 0 52px; position: relative; overflow: hidden; text-align: center; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(193,68,14,0.22), rgba(27,42,74,0.38)); pointer-events: none; }
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 5vw, 3.2rem); color: var(--cream); margin-bottom: 10px; }
.page-header p { color: rgba(250,240,232,0.62); font-size: 0.97rem; }
.breadcrumb-archi { display: flex; justify-content: center; gap: 8px; margin-top: 14px; font-size: 0.8rem; color: rgba(250,240,232,0.45); }
.breadcrumb-archi a { color: var(--terracotta-light); }

.booking-success-box {
    background: rgba(16,185,129,0.06);
    border: 1.5px solid rgba(16,185,129,0.25);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 20px;
}
.booking-success-icon {
    width: 60px; height: 60px;
    background: rgba(16,185,129,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #059669;
    margin: 0 auto 14px;
}
.booking-success-box h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 700;
    color: #065f46; margin-bottom: 8px;
}
.booking-success-box p {
    font-size: 0.88rem; color: #047857;
    line-height: 1.7; margin-bottom: 18px;
}

/* ---- About Page ---- */
.about-stats-bar { background: var(--navy); padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.about-stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.about-stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--terracotta-light); line-height: 1; }
.about-stat-label { font-size: 0.72rem; color: rgba(250,240,232,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.about-values { display: flex; flex-direction: column; }
.about-value-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.about-value-item:last-child { border-bottom: none; }
.about-value-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(193,68,14,0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--terracotta); }
.about-value-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.about-value-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; margin: 0; }
.vm-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 32px; height: 100%; position: relative; overflow: hidden; transition: var(--transition); }
.vm-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(193,68,14,0.3); transform: translateY(-4px); }
.vm-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.vm-icon { width: 48px; height: 48px; background: rgba(193,68,14,0.2); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--terracotta-light); flex-shrink: 0; }
.vm-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--cream); margin: 0; }
.vm-card p { font-size: 0.95rem; color: rgba(250,240,232,0.7); line-height: 1.8; margin: 0; }
.vm-deco { position: absolute; bottom: -20px; right: -20px; width: 80px; height: 80px; background: rgba(193,68,14,0.08); border-radius: 50%; }
.team-card-new { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); }
.team-card-new:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-photo-new { position: relative; height: 220px; background: linear-gradient(135deg, var(--cream-dark), var(--border-color)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-photo-new img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 90px; height: 90px; border-radius: 50%; background: var(--terracotta); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; }
.team-role-badge { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); background: var(--terracotta); color: var(--white); font-size: 0.72rem; font-weight: 600; padding: 5px 16px; border-radius: 999px; white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase; }
.team-info { padding: 24px; text-align: center; }
.team-name-new { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.team-bio-new { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.team-ig-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--terracotta); transition: var(--transition); }
.team-ig-link:hover { color: var(--terracotta-dark); }

/* ---- Services Page ---- */
/* ---- Services Page ---- */
.svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card-visual {
    min-height: 160px;
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.svc-card-visual::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.svc-card-visual::after {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.svc-card-visual-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #FFFFFF;
    position: relative; z-index: 2;
    border: 1px solid rgba(255,255,255,0.25);
}
.svc-card-visual-num {
    font-family: var(--font-heading);
    font-size: 3.5rem; font-weight: 700;
    color: rgba(255,255,255,0.2);
    line-height: 1;
    position: relative; z-index: 2;
}
.svc-card-body {
    padding: 24px 24px 24px;
    display: flex; flex-direction: column;
    flex: 1;
}
.svc-card-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.svc-card-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.svc-card-features {
    display: flex; flex-direction: column; gap: 7px;
    margin-bottom: 20px; padding: 14px;
    background: var(--cream); border-radius: var(--radius-md);
    flex: 1;
}
.svc-feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.81rem; color: var(--text-secondary); }
.svc-feature-item i { color: var(--terracotta); font-size: 0.85rem; flex-shrink: 0; }
.svc-card-actions { display: flex; gap: 8px; }
.pkg-section { margin-bottom: 48px; }
.pkg-section-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.pkg-section-icon {
    width: 40px; height: 40px; background: rgba(193,68,14,0.08);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; color: var(--terracotta);
}
.pkg-section-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin: 0; }

/* ---- Gallery Page ---- */
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,13,8,0.85), transparent);
    padding: 24px 14px 14px;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption span { font-size: 0.88rem; font-weight: 600; color: var(--white); font-family: var(--font-heading); }
.gallery-caption small { font-size: 0.72rem; color: var(--terracotta-light); text-transform: uppercase; letter-spacing: 0.08em; }
.gallery-empty { text-align: center; padding: 80px 20px; }
.gallery-empty-icon {
    width: 90px; height: 90px;
    background: rgba(193,68,14,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 2.2rem; color: var(--terracotta);
}
.gallery-empty h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-primary); margin-bottom: 10px; }
.gallery-empty p { color: var(--text-secondary); font-size: 0.95rem; max-width: 360px; margin: 0 auto; }

/* ---- Utility ---- */
.text-terracotta { color: var(--terracotta) !important; }
.text-navy { color: var(--navy) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-navy  { background: var(--navy) !important; }
.bg-dark-archi { background: var(--dark) !important; }

/* ---- Animations ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }
::selection { background: rgba(193,68,14,0.18); color: var(--text-primary); }
   RESPONSIVE
============================================================ */
@media (min-width: 1200px) { .hero-name { font-size: 8rem; } }

@media (max-width: 991.98px) {
    :root { --navbar-height: 64px; }
    .section-padding { padding: 60px 0; }
    .gallery-grid { columns: 2; column-gap: 12px; }
    .gallery-item { margin-bottom: 12px; }
    .hero-stats { gap: 20px; }
    .booking-card { padding: 32px 24px; }
    .booking-info-card { margin-top: 20px; }
    .cta-section { padding: 60px 0; }
}

@media (max-width: 767.98px) {
    :root { --navbar-height: 60px; }
    .section-padding { padding: 48px 0; }
    .section-header { margin-bottom: 32px; }
    .hero-section { min-height: calc(100svh - var(--navbar-height)); height: auto; padding: 40px 0 60px; align-items: flex-start; }
    .hero-content { padding: 28px 0; }
    .hero-name { font-size: clamp(3rem, 13vw, 4.5rem); }
    .hero-tagline-text { font-size: clamp(1rem, 3vw, 1.2rem); margin-bottom: 28px; }
    .hero-btns { gap: 10px; margin-bottom: 32px; }
    .hero-stats { gap: 16px; padding-top: 24px; }
    .hero-stat-num { font-size: 1.6rem; }
    .hero-scroll-indicator { display: none; }
    .gallery-grid { columns: 2; column-gap: 10px; }
    .gallery-item { margin-bottom: 10px; }
    .footer-archi { padding: 44px 0 0; }
    .footer-tagline { max-width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn-primary-archi, .cta-btns .btn-wa { width: 100%; max-width: 300px; justify-content: center; }
    .team-photo-wrap { width: 120px; height: 120px; }
}

@media (max-width: 575.98px) {
    :root { --navbar-height: 56px; }
    .navbar-brand-logo { height: 38px; width: 38px; }
    .navbar-brand-name { font-size: 1.1rem; }
    .navbar-collapse {
        position: absolute; top: var(--navbar-height); left: 0; right: 0;
        border-bottom: 1px solid var(--border-color);
        padding: 12px 16px 20px; box-shadow: var(--shadow-md);
    }
    .navbar-archi .nav-link { padding: 10px 0 !important; border-radius: 0; }
    .navbar-archi .nav-link::after { left: 0; right: 0; bottom: 0; }
    .lang-toggle { margin: 8px 0; }
    .btn-book-nav { display: block; text-align: center; margin-top: 10px; padding: 10px 20px !important; }
    .hero-section { padding: 24px 0 44px; }
    .hero-name { font-size: clamp(2.8rem, 14vw, 3.8rem); }
    .hero-tagline-text { font-size: 1rem; margin-bottom: 24px; }
    .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 28px; }
    .hero-btns .btn-primary-archi, .hero-btns .btn-outline-archi { justify-content: center; padding: 12px 20px; }
    .hero-stats { gap: 12px; }
    .gallery-grid { columns: 2; column-gap: 8px; }
    .gallery-item { margin-bottom: 8px; border-radius: var(--radius-sm); }
    .section-padding { padding: 40px 0; }
    .service-card { padding: 24px 18px; }
    .booking-card { padding: 24px 16px; border-radius: var(--radius-lg); }
    .booking-info-card { padding: 24px 18px; border-radius: var(--radius-lg); margin-top: 16px; }
    .testi-card { padding: 22px 18px; }
    .footer-brand { font-size: 1.4rem; }
}

@media (max-width: 380px) {
    .hero-name { font-size: 2.6rem; }
    .navbar-brand-tagline { display: none; }
    .hero-stats { gap: 10px; }
    .gallery-grid { columns: 1; }
}

@supports (-webkit-touch-callout: none) {
    .hero-section { min-height: -webkit-fill-available; }
}