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

:root {
    --dark:       #0A0A0A;
    --dark-2:     #131313;
    --light:      #F4F2ED;
    --light-2:    #ECEAE4;
    --gold:       #C9A96E;
    --gold-dim:   rgba(201,169,110,0.18);
    --amber:      #9B7B45;
    --white:      #FFFFFF;
    --off-white:  rgba(255,255,255,0.86);
    --muted:      rgba(255,255,255,0.4);
    --text-dark:  #1C1C1C;
    --text-mid:   #5C5C5C;
    --serif:      'Playfair Display', Georgia, serif;
    --sans:       'Inter', system-ui, sans-serif;
    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --nav-h:      72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 100;
    transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

#navbar.scrolled {
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.055);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 46px;
    width:  46px;
    transition: opacity 0.3s;
}
.nav-logo:hover img { opacity: 0.65; }

.nav-links {
    display: flex;
    gap: 44px;
}

.nav-links a {
    font-size: 10.5px;
    font-weight: 300;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--off-white);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 1px;
    background: var(--gold);
    transition: right 0.35s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 102;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform 0.35s var(--ease), opacity 0.35s;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
}

.mobile-menu a {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 7s var(--ease) forwards;
}

@keyframes kenBurns {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,10,10,0.25) 0%,
        rgba(10,10,10,0.55) 60%,
        rgba(10,10,10,0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.hero-logo {
    width: 210px;
    height: 210px;
    opacity: 0;
    animation: fadeInScale 1.6s var(--ease) 0.3s forwards;
    filter: drop-shadow(0 0 40px rgba(201,169,110,0.15));
}

.hero-tagline {
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeUp 1.4s var(--ease) 0.9s forwards;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 2s ease 1.6s forwards;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.scroll-hint span {
    font-size: 8.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.2s ease infinite;
}

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.section-dark  { padding: 120px 48px; background: var(--dark); }
.section-light { padding: 120px 48px; background: var(--light); color: var(--text-dark); }

.section-intro {
    text-align: center;
    margin-bottom: 72px;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}

.thin-line {
    width: 36px;
    height: 1px;
}
.thin-line.gold  { background: var(--gold); }
.thin-line.amber { background: var(--amber); }

.section-label {
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.section-label.amber { color: var(--amber); }

.section-title {
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.5px;
}
.section-title.dark { color: var(--text-dark); }

/* ============================================================
   PORTFOLIO
============================================================ */
.portfolio-header {
    text-align: center;
    margin-bottom: 72px;
}

/* Back navigation */
.portfolio-back {
    max-width: 1440px;
    margin: -40px auto 48px;
    padding: 0 48px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
    padding: 0;
}
.back-btn:hover { opacity: 0.65; }

/* View containers */
.p-view {
    opacity: 1;
    transition: opacity 0.35s ease;
}
.p-view.fading { opacity: 0; }

/* Category / sub-category card grid */
.cat-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 10;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.cat-card:hover img { transform: scale(1.05); }

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,10,0.85) 0%,
        rgba(10,10,10,0.1) 60%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 44px;
    transition: background 0.4s var(--ease);
}
.cat-card:hover .cat-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.2) 60%,
        transparent 100%
    );
}

.cat-card-rule {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-bottom: 16px;
    transition: width 0.5s var(--ease);
}
.cat-card:hover .cat-card-rule { width: 40px; }

.cat-card-title {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cat-card-sub {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Gallery grid */
.gallery-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    grid-auto-flow: dense;
}

#viewGallery { padding-top: 0; }

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 2;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-overlay {
    background: rgba(10,10,10,0.28);
}

/* ============================================================
   ABOUT
============================================================ */
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

.about-text { padding-right: 20px; }

.body-text {
    font-size: 15px;
    line-height: 1.95;
    color: var(--text-mid);
    margin-bottom: 22px;
}

.btn-outline-dark {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 38px;
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

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

.about-image { overflow: hidden; }

.about-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    padding: 56px 40px 52px;
    border: 1px solid rgba(255,255,255,0.07);
    position: relative;
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.service-card:hover {
    border-color: rgba(201,169,110,0.28);
    background: var(--gold-dim);
}

.service-card--featured {
    border-color: rgba(201,169,110,0.22);
    background: rgba(201,169,110,0.06);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 8.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 5px 12px;
}

.service-num {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.service-name {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.service-duration {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.service-rule {
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.45;
    margin: 28px 0;
}

.service-desc {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,0.48);
    margin-bottom: 36px;
}

.service-price {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 300;
    color: var(--white);
}

.enquiry-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: opacity 0.3s;
}
.enquiry-link:hover { opacity: 0.65; }

/* ============================================================
   CONTACT
============================================================ */
.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
}

.contact-details {
    margin: 40px 0 44px;
    display: flex;
    flex-direction: column;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: opacity 0.3s;
}
.contact-row:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.contact-row:hover { opacity: 0.6; }

.contact-lbl {
    font-size: 8.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--amber);
}

.contact-val {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-dark);
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-mid);
    transition: color 0.3s;
}
.social-item:hover { color: var(--text-dark); }

.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0,0,0,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.social-item:hover .social-icon {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--white);
}
.social-icon svg { width: 16px; height: 16px; }

.social-item span {
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* Form */
.form-wrap { padding-top: 72px; }

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    font-size: 8.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--amber);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.18);
    padding: 11px 0;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    outline: none;
    width: 100%;
    transition: border-color 0.35s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath stroke='%235C5C5C' stroke-width='1' fill='none' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 22px;
}

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

.form-group textarea { resize: none; }

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0,0,0,0.28);
}

.btn-submit {
    align-self: flex-start;
    margin-top: 8px;
    background: var(--text-dark);
    color: var(--white);
    border: 1px solid var(--text-dark);
    padding: 14px 42px;
    font-family: var(--sans);
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn-submit:hover {
    background: transparent;
    color: var(--text-dark);
}

.form-success {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--text-dark);
    padding: 48px 0;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--dark);
    padding: 56px 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo { width: 56px; height: 56px; opacity: 0.65; transition: opacity 0.3s; }
.footer-logo-wrap:hover .footer-logo { opacity: 1; }

.footer-links { display: flex; gap: 36px; }
.footer-links a {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.4px;
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lb-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lb-backdrop.active { opacity: 1; pointer-events: all; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 201;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lb-img-wrap {
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lbImg {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    transition: opacity 0.18s ease;
    box-shadow: 0 30px 100px rgba(0,0,0,0.7);
}

.lb-close {
    position: fixed;
    top: 22px;
    right: 30px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    z-index: 202;
    transition: color 0.25s;
}
.lb-close:hover { color: var(--white); }

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 68px;
    line-height: 1;
    cursor: pointer;
    padding: 16px 22px;
    z-index: 202;
    transition: color 0.25s;
    user-select: none;
}
.lb-arrow:hover { color: var(--white); }
.lb-prev { left: 8px; }
.lb-next { right: 8px; }

.lb-counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.35);
    z-index: 202;
    pointer-events: none;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.8; transform: scaleY(1) translateY(0); }
    50%       { opacity: 0.3; transform: scaleY(0.6) translateY(6px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-text { padding-right: 0; }

    .about-image img { height: 420px; }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
    }

    .form-wrap { padding-top: 0; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; aspect-ratio: 3 / 2; }

    .cat-grid { grid-template-columns: 1fr; }
    .cat-card { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .section-dark, .section-light { padding: 88px 24px; }
    .featured-wrap  { padding: 0 24px; }
    .gallery-grid   { padding: 0 24px; }

    .hero-logo { width: 170px; height: 170px; }

    .featured-image img { height: 52vh; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }

    .footer { padding: 48px 24px; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 500px) {
    .nav-container { padding: 0 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .service-card { padding: 44px 24px 40px; }
    .lb-arrow { font-size: 48px; padding: 10px 14px; }
}
