/* ========================================
   Wawerski Zakatek – Stylesheet
   ======================================== */

:root {
    --green: #397230;
    --green-dark: #2d5a26;
    --green-light: #4a8c3f;
    --green-pale: #e8f0e6;
    --black: #1a1a1a;
    --white: #ffffff;
    --off-white: #f7f7f5;
    --gray-50: #fafafa;
    --gray-100: #f0f0ee;
    --gray-200: #e2e2de;
    --gray-300: #ccc;
    --gray-400: #999;
    --gray-600: #666;
    --gray-700: #444;
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --radius: 6px;
    --transition: .3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-dark);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .5px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

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

.btn-white {
    background: var(--white);
    color: var(--green);
}

.btn-white:hover {
    background: var(--off-white);
    color: var(--green-dark);
}

.img-cover {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--gray-200);
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    height: 80px;
}

.header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: .7rem;
    font-weight: 400;
    color: var(--gray-600);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 4px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--green);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-contact {
    font-size: .88rem;
    font-weight: 600;
    color: var(--green) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all var(--transition);
    display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 32px 24px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a:hover {
    color: var(--green);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    margin-top: 80px;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-image {
    position: relative;
    min-height: 500px;
}

.hero-image .img-cover {
    position: absolute;
    inset: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 60px 50px;
    background: var(--white);
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.hero-location svg {
    width: 16px;
    height: 16px;
    fill: var(--green);
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--green-dark);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-tag {
    padding: 6px 16px;
    background: var(--green-pale);
    color: var(--green);
    font-size: .82rem;
    font-weight: 600;
    border-radius: 20px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* ========================================
   FEATURES
   ======================================== */

.features {
    padding: 100px 0;
    background: var(--white);
}

.features-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.features-intro h2 {
    margin-bottom: 20px;
}

.features-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.features-intro .btn {
    margin-top: 24px;
}

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

.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 50%;
    margin-bottom: 16px;
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--green);
}

.feature-card h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.feature-card p {
    font-size: .9rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   STATS BAR
   ======================================== */

.stats {
    background: var(--green);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.stat-label {
    font-size: .88rem;
    opacity: .85;
    font-weight: 400;
}

.stats-grid .stat-divider {
    width: 1px;
    background: rgba(255,255,255,.2);
    align-self: stretch;
    justify-self: end;
}

/* ========================================
   STAGES OVERVIEW
   ======================================== */

.stages {
    padding: 100px 0;
    background: var(--off-white);
}

.stages-header {
    text-align: center;
    margin-bottom: 60px;
}

.stages-header .section-subtitle {
    margin: 0 auto;
}

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

.stage-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.stage-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stage-card-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.stage-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
}

.badge-sale {
    background: var(--green);
    color: var(--white);
}

.badge-build {
    background: #e8a42a;
    color: var(--white);
}

.badge-planned {
    background: var(--gray-400);
    color: var(--white);
}

.stage-card-body {
    padding: 28px 24px;
}

.stage-card-body h3 {
    margin-bottom: 6px;
}

.stage-card-status {
    font-size: .85rem;
    color: var(--gray-600);
    margin-bottom: 14px;
}

.stage-card-body p {
    font-size: .92rem;
    margin-bottom: 16px;
}

.stage-card-meta {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.stage-card-meta span {
    font-size: .82rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stage-card-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--green);
}

/* ========================================
   STAGE DETAIL
   ======================================== */

.stage-detail {
    padding: 100px 0;
}

.stage-detail:nth-child(even) {
    background: var(--off-white);
}

.stage-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.stage-detail-header h2 {
    margin-bottom: 0;
}

.stage-badge-inline {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.stage-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.stage-detail-text h3 {
    margin-bottom: 16px;
}

.stage-detail-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.stage-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
}

/* Segments table */
.segments-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: .92rem;
}

.segments-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: .85rem;
}

.segments-table th:first-child {
    border-radius: var(--radius) 0 0 0;
}

.segments-table th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.segments-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.segments-table tr:last-child td {
    border-bottom: none;
}

.segments-table tr:nth-child(even) td {
    background: var(--gray-50);
}

/* Floor plan tabs */
.floor-tabs {
    margin-top: 40px;
}

.floor-tab-nav {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.floor-tab-btn {
    padding: 12px 28px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-bottom: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
    border-radius: var(--radius) var(--radius) 0 0;
    margin-right: -1px;
}

.floor-tab-btn.active {
    background: var(--white);
    color: var(--green);
    border-color: var(--gray-200);
    position: relative;
    z-index: 1;
}

.floor-tab-panel {
    display: none;
    border: 1px solid var(--gray-200);
    border-radius: 0 var(--radius) var(--radius) var(--radius);
    overflow: hidden;
    background: var(--white);
}

.floor-tab-panel.active {
    display: block;
}

.floor-plan-image {
    width: 100%;
    height: 450px;
}

.floor-plan-legend {
    padding: 20px 24px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.floor-plan-legend ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.floor-plan-legend li {
    font-size: .88rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 6px;
}

.floor-plan-legend li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Functional layout list */
.func-layout {
    margin: 20px 0 28px;
}

.func-layout li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: .95rem;
    color: var(--gray-700);
}

.func-layout li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 2px;
    background: var(--green);
}

/* ========================================
   STANDARD WYKONCZENIA
   ======================================== */

.standard {
    padding: 100px 0;
    background: var(--white);
}

.standard-header {
    text-align: center;
    margin-bottom: 60px;
}

.standard-header .section-subtitle {
    margin: 0 auto;
}

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

.standard-item {
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.standard-item:hover {
    border-color: var(--green);
}

.standard-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 50%;
    margin-bottom: 16px;
}

.standard-item-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--green);
}

.standard-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.standard-item p {
    font-size: .88rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   GALLERY
   ======================================== */

.gallery {
    padding: 100px 0;
    background: var(--off-white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header .section-subtitle {
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(57,114,48,.0);
    transition: background var(--transition);
}

.gallery-item:hover::after {
    background: rgba(57,114,48,.15);
}

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

.gallery-item .img-cover {
    transition: transform .5s ease;
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

/* ========================================
   LOCATION
   ======================================== */

.location {
    padding: 100px 0 0;
    background: var(--white);
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-header .section-subtitle {
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.location-info h3 {
    margin-bottom: 20px;
}

.location-info p {
    line-height: 1.8;
}

.location-list {
    margin-top: 28px;
}

.location-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: .95rem;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-weight: 500;
}

.location-list-name svg {
    width: 18px;
    height: 18px;
    fill: var(--green);
}

.location-list-dist {
    color: var(--gray-600);
    font-size: .88rem;
}

.location-map-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
}

.location-map {
    width: 100%;
    height: 400px;
    border: none;
}

.location-map-full {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   CONTACT
   ======================================== */

.contact {
    padding: 100px 0;
    background: var(--off-white);
}

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

.contact-form h3 {
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: .92rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--black);
    transition: border-color var(--transition);
    outline: none;
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.contact-info {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--green);
}

.contact-detail-text {
    padding-top: 2px;
}

.contact-detail-text span {
    display: block;
    font-size: .82rem;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.contact-detail-text a,
.contact-detail-text p {
    font-size: .95rem;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0;
}

.contact-detail-text a:hover {
    color: var(--green);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 50%;
    transition: all var(--transition);
}

.contact-social a:hover {
    background: var(--green);
}

.contact-social a:hover svg {
    fill: var(--white);
}

.contact-social svg {
    width: 20px;
    height: 20px;
    fill: var(--green);
    transition: fill var(--transition);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--black);
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}

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

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-text span {
    color: rgba(255,255,255,.5);
}

.footer-brand p {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .9rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--green-light);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255,255,255,.6);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,.6);
    transition: fill var(--transition);
}

.footer-social a:hover svg {
    fill: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
}

.footer-bottom a {
    color: rgba(255,255,255,.5);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */

@media (max-width: 1024px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image {
        min-height: 400px;
    }

    .hero-content {
        padding: 48px 32px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .stage-detail-grid {
        grid-template-columns: 1fr;
    }

    .stage-detail-image {
        order: -1;
        height: 320px;
    }

    .standard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

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

    .location-map-image {
        height: 320px;
    }

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

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

    .nav-list {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */

@media (max-width: 640px) {
    html { font-size: 15px; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.25rem; }

    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 36px 20px;
    }

    .hero-image {
        min-height: 300px;
    }

    .features,
    .stages,
    .stage-detail,
    .standard,
    .gallery,
    .location,
    .contact {
        padding: 64px 0;
    }

    .location {
        padding-bottom: 0;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stage-card-image {
        height: 200px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .segments-table {
        font-size: .82rem;
    }

    .segments-table th,
    .segments-table td {
        padding: 10px 10px;
    }

    .floor-plan-image {
        height: 280px;
    }

    .floor-plan-legend ul {
        flex-direction: column;
        gap: 6px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-tags {
        gap: 8px;
    }

    .contact-info {
        padding: 28px 20px;
    }
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}
