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

:root {
    --color-bg: #FAFAF8;
    --color-surface: #FFFFFF;
    --color-dark: #1A1A1A;
    --color-text: #3A3A3A;
    --color-muted: #7A7A7A;
    --color-border: #E8E6E1;
    --color-accent: #1B3A4B;
    --color-accent-light: #245066;
    --color-accent-bg: #EEF3F6;
    --color-warm: #C4A35A;
    --color-warm-light: #D4B86A;
    --color-maple: #D52B1E;
    --color-warm-bg: #FBF8F0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --nav-height: 80px;
}

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

.section {
    padding: 120px 0;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 680px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(27, 58, 75, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

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

.nav-logo {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    gap: 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.logo-grand {
    color: #fff;
    transition: color 0.3s ease;
}

.logo-can {
    color: var(--color-maple);
    transition: color 0.3s ease;
}

.nav.scrolled .logo-grand {
    color: var(--color-dark);
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav.scrolled .nav-links a {
    color: var(--color-text);
}

.nav-links a:hover {
    color: #fff;
}

.nav.scrolled .nav-links a:hover {
    color: var(--color-dark);
}

.nav-cta {
    padding: 10px 22px !important;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    transition: all 0.3s ease !important;
}

.nav.scrolled .nav-cta {
    background: var(--color-accent) !important;
    color: #fff !important;
    border-color: var(--color-accent) !important;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--color-accent-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
    background: var(--color-dark);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(15, 31, 46, 0.88) 0%, rgba(27, 58, 75, 0.75) 40%, rgba(20, 32, 42, 0.85) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255,255,255,0.015) 120px, rgba(255,255,255,0.015) 121px),
        repeating-linear-gradient(0deg, transparent, transparent 120px, rgba(255,255,255,0.015) 120px, rgba(255,255,255,0.015) 121px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--nav-height);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(196, 163, 90, 0.1);
    border: 1px solid rgba(196, 163, 90, 0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-warm);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-warm);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.75;
}

.about-text strong {
    color: var(--color-dark);
    font-weight: 600;
}

.about-pillars {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillar {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pillar-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: var(--color-accent);
    padding: 8px;
    background: var(--color-accent-bg);
    border-radius: 8px;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.pillar p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.55;
}

.about-visual {
    position: sticky;
    top: 120px;
}

.about-card-stack {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.about-card-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-card-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
}

.about-card-bar {
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    overflow: hidden;
}

.about-card-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-warm));
    border-radius: 2px;
    transition: width 1.2s ease-out;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    background: var(--color-surface);
}

.portfolio-intro {
    font-size: 1.05rem;
    color: var(--color-text);
    max-width: 640px;
    line-height: 1.7;
}

.portfolio-filter {
    display: flex;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.filter-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

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

.portfolio-card {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-bg);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.portfolio-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.05);
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}

.portfolio-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.portfolio-card-body {
    padding: 28px;
}

.portfolio-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.portfolio-card-body p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

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

.portfolio-card-meta span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.02em;
}

.portfolio-card.featured {
    border-color: rgba(196, 163, 90, 0.3);
}

/* ===== BENEFITS ===== */
.benefits {
    background: var(--color-bg);
}

.benefits-header {
    margin-bottom: 60px;
}

.benefits-intro {
    font-size: 1.05rem;
    color: var(--color-text);
    max-width: 640px;
    line-height: 1.7;
}

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

.benefit-card {
    padding: 36px 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-warm);
    opacity: 0.5;
    display: block;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.65;
}

/* ===== NEIGHBOURHOODS ===== */
.neighbourhoods {
    background: var(--color-surface);
}

.neighbourhoods-intro {
    font-size: 1.05rem;
    color: var(--color-text);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 48px;
}

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

.neighbourhood-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease;
}

.neighbourhood-card:hover {
    transform: translateY(-4px);
}

.neighbourhood-card.large {
    grid-column: 1 / -1;
    min-height: 340px;
}

.neighbourhood-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.neighbourhood-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.neighbourhood-card:hover .neighbourhood-bg img {
    transform: scale(1.05);
}

.neighbourhood-content {
    position: relative;
    z-index: 1;
    padding: 32px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
}

.neighbourhood-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(196, 163, 90, 0.2);
    border: 1px solid rgba(196, 163, 90, 0.3);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-warm);
    margin-bottom: 12px;
}

.neighbourhood-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
}

.neighbourhood-card.large .neighbourhood-content h3 {
    font-size: 2rem;
}

.neighbourhood-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 16px;
}

.neighbourhood-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.neighbourhood-features span {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.neighbourhood-map-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--color-accent-bg);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--color-text);
}

.neighbourhood-map-note svg {
    color: var(--color-accent);
    min-width: 20px;
}

/* ===== DEVELOPMENT ===== */
.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.dev-intro {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.dev-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dev-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-top: 7px;
}

.dev-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.dev-feature p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.dev-visual {
    position: sticky;
    top: 120px;
}

.dev-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.dev-card-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--color-border);
}

.dev-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dev-status.active::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-warm);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dev-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dev-metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
}

.dev-metric-label {
    font-size: 0.78rem;
    color: var(--color-muted);
    font-weight: 500;
}

/* Timeline */
.dev-timeline {
    padding: 0 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 0;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 32px;
    bottom: -4px;
    width: 1px;
    background: var(--color-border);
}

.timeline-item.completed::after {
    background: var(--color-accent);
}

.timeline-dot {
    width: 11px;
    height: 11px;
    min-width: 11px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: var(--color-surface);
    margin-top: 2px;
}

.timeline-item.completed .timeline-dot {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.timeline-item.active .timeline-dot {
    border-color: var(--color-warm);
    background: var(--color-warm);
    box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.2);
}

.timeline-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    display: block;
}

.timeline-item.completed .timeline-label {
    color: var(--color-accent);
}

.timeline-item.active .timeline-label {
    color: var(--color-warm);
}

.timeline-text {
    font-size: 0.88rem;
    color: var(--color-dark);
    font-weight: 500;
}

.dev-card-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--color-border);
}

/* ===== APPROACH ===== */
.approach {
    background: var(--color-surface);
}

.approach-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 640px;
    line-height: 1.75;
    margin-bottom: 60px;
}

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

.approach-card {
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-bg);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.approach-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.2;
    display: block;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.approach-detail {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 0.02em;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

/* ===== HAMILTON ===== */
.hamilton-banner {
    background: linear-gradient(135deg, #0f1f2e 0%, #1B3A4B 50%, #14202a 100%);
    border-radius: 20px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.hamilton-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(196, 163, 90, 0.06) 0%, transparent 70%);
}

.hamilton-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hamilton-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 20px;
}

.hamilton-content > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 32px;
}

.hamilton-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hamilton-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.hamilton-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hamilton-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq {
    background: var(--color-bg);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-header p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    transition: transform 0.3s ease;
    color: var(--color-muted);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

.contact-item a,
.contact-item span {
    font-size: 1.05rem;
    color: var(--color-dark);
    font-weight: 500;
}

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

.contact-audiences h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.audience-tag {
    padding: 6px 14px;
    background: var(--color-accent-bg);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group label .optional {
    font-weight: 400;
    color: var(--color-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: var(--color-surface);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237A7A7A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(27, 58, 75, 0.1);
}

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

.form-note {
    font-size: 0.78rem;
    color: var(--color-muted);
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 320px;
    line-height: 1.6;
}

.footer .logo-grand {
    color: #fff;
}

.footer .logo-can {
    color: var(--color-maple);
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.footer-col a,
.footer-col span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-tagline {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.06em;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-surface);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--color-text) !important;
        font-size: 1.05rem;
    }

    .nav-cta {
        background: var(--color-accent) !important;
        color: #fff !important;
        border-color: var(--color-accent) !important;
        text-align: center;
    }

    .about-grid,
    .dev-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .portfolio-grid,
    .approach-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    .hero-stats-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        min-width: 100px;
    }

    .hamilton-banner {
        padding: 48px 28px;
    }

    .hamilton-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .dev-visual {
        position: static;
    }

    .about-visual {
        position: static;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
