
:root {
    --color-bg: #0b1512;
    --color-bg-alt: #122019;
    --color-gold: #d8b26b;
    --color-gold-soft: #f2e2b8;
    --color-green: #1f4c3b;
    --color-green-light: #2c6b4c;
    --color-text: #f7f3ea;
    --color-text-muted: #b9c2b8;

    --font-title: "Cinzel", "Times New Roman", serif;
    --font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-large: 1.5rem;
    --radius-medium: 1rem;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: radial-gradient(circle at top, #1f3b32 0, #050808 55%, #020403 100%);
    color: var(--color-text);
    line-height: 1.6;
}

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

a {
    color: var(--color-gold-soft);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* HEADER & NAV */

.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(7, 15, 12, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(216, 178, 107, 0.35);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-rect {
    height: 48px;
    width: auto;
    border-radius: 0.75rem;
    object-fit: cover;
    border: 1px solid rgba(216, 178, 107, 0.55);
    box-shadow: var(--shadow-soft);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.15rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-soft));
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    background: transparent;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--color-gold-soft);
    border-radius: 999px;
}

/* HERO / SLIDER */

.hero {
    margin: 1.5rem auto 0;
    max-width: 1200px;
    padding: 0 1.5rem;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(216, 178, 107, 0.35);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 10, 8, 0.8), rgba(15, 34, 27, 0.5), rgba(10, 8, 5, 0.9));
}

.slide-content {
    position: relative;
    padding: 3rem 3rem 3.5rem;
    max-width: 520px;
}

.slide-content h1,
.slide-content h2 {
    font-family: var(--font-title);
    font-weight: 500;
    margin: 0 0 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold-soft);
}

.slide-content p {
    margin: 0;
    color: var(--color-text);
    opacity: 0.94;
}

.hero-indicators {
    position: absolute;
    bottom: 1.25rem;
    right: 1.5rem;
    display: flex;
    gap: 0.4rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(248, 235, 207, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.indicator.active {
    background: var(--color-gold);
}

/* LAYOUT SECTIONS */

.intro-section {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding: 0 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.5rem;
}

.intro-text h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-gold-soft);
}

.intro-text p {
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.intro-image img {
    border-radius: var(--radius-large);
    border: 1px solid rgba(216, 178, 107, 0.35);
    box-shadow: var(--shadow-soft);
}

.highlight-galleries {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.highlight-galleries h2 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold-soft);
}

.gallery-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    background: radial-gradient(circle at top left, #234631, #08100c);
    border-radius: var(--radius-medium);
    overflow: hidden;
    border: 1px solid rgba(216, 178, 107, 0.3);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-card img {
    height: 190px;
    width: 100%;
    object-fit: cover;
}

.gallery-card h3 {
    font-size: 1.05rem;
    margin: 0.75rem 1rem 0.25rem;
}

.gallery-card p {
    margin: 0 1rem 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
    border-color: rgba(243, 211, 152, 0.7);
}

/* GENERIC PAGE LAYOUTS */

.page-header {
    max-width: 1100px;
    margin: 2.5rem auto 1.5rem;
    padding: 0 1.5rem;
}

.page-header h1 {
    font-family: var(--font-title);
    color: var(--color-gold-soft);
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--color-text-muted);
}

/* GALLERY GRID */

.gallery-grid {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    border-radius: var(--radius-medium);
    border: 1px solid rgba(216, 178, 107, 0.35);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
}

/* CONTENT TWO COLUMNS */

.content-two-columns {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.content-two-columns p {
    color: var(--color-text-muted);
}

/* PROJECTS */

.projects-list {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.project-item {
    background: radial-gradient(circle at top left, #234631, #050909);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(216, 178, 107, 0.35);
    padding: 1.5rem 1.5rem 1.35rem;
    box-shadow: var(--shadow-soft);
}

.project-item h2 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--color-gold-soft);
}

.project-item p {
    margin: 0;
    color: var(--color-text-muted);
}

/* CONTACT */

.contact-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.contact-form {
    background: radial-gradient(circle at top left, #234631, #050909);
    border-radius: var(--radius-large);
    padding: 1.75rem 1.5rem 1.5rem;
    border: 1px solid rgba(216, 178, 107, 0.35);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group-inline {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold-soft);
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(216, 178, 107, 0.25);
    background: rgba(5, 10, 8, 0.9);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(243, 211, 152, 0.9);
}

textarea {
    resize: vertical;
}

.form-success,
.form-error {
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-success {
    background: rgba(37, 107, 78, 0.45);
    border: 1px solid rgba(168, 233, 192, 0.7);
}

.form-error {
    background: rgba(107, 47, 37, 0.45);
    border: 1px solid rgba(233, 168, 168, 0.7);
}

/* BUTTON */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    background: radial-gradient(circle at top left, var(--color-gold-soft), var(--color-gold));
    color: #1a1206;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

/* FOOTER */

.main-footer {
    padding: 2.25rem 1.5rem 1.75rem;
    background: #050907;
    border-top: 1px solid rgba(216, 178, 107, 0.35);
    margin-top: 2rem;
}

.footer-columns {
    max-width: 1100px;
    margin: 0 auto 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.footer-columns h3,
.footer-columns h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: var(--font-title);
    color: var(--color-gold-soft);
    font-size: 1.1rem;
}

.footer-columns p {
    margin: 0.1rem 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(215, 212, 203, 0.8);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .intro-section {
        grid-template-columns: 1fr;
    }

    .gallery-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 720px) {
    .main-header {
        padding-inline: 1rem;
    }

    .main-nav {
        position: absolute;
        inset: 100% 0 auto 0;
        background: rgba(5, 10, 8, 0.98);
        border-bottom: 1px solid rgba(216, 178, 107, 0.35);
        padding: 0.75rem 1rem 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .main-nav.open {
        max-height: 300px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-inline: 1rem;
    }

    .slide-content {
        padding: 2.25rem 1.75rem 2.5rem;
    }

    .gallery-cards {
        grid-template-columns: 1fr;
    }

    .content-two-columns {
        grid-template-columns: 1fr;
    }

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