/*
Theme Name: Green Street Flats
Theme URI: https://greenstreetflats.com
Author: Green Street Flats
Author URI: https://greenstreetflats.com
Description: Custom theme for Green Street Flats - Toronto's premier multiplex developer. Building the missing middle, one neighbourhood at a time.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greenstreetflats
*/

:root {
    --gold: #C4A44E;
    --gold-light: #D4B85E;
    --gold-dark: #A68A3C;
    --charcoal: #0d1f12;
    --charcoal-light: #162a1a;
    --cream: #F9F7F4;
    --cream-dark: #F0EBE3;
    --white: #FFFFFF;
    --text-dark: #0d1f12;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; background: transparent; transition: all 0.3s ease; }
.nav.scrolled { background: rgba(13,31,18,0.98); padding: 12px 0; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; background: var(--gold); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--charcoal); stroke-width: 1.5; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 600; color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; }

/* Desktop Nav */
.nav-menu { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav-menu { display: flex; } }
.nav-item { position: relative; }
.nav-link { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); text-decoration: none; padding: 8px 0; display: flex; align-items: center; gap: 4px; transition: color 0.2s; }
.nav-link:hover { color: var(--gold); }
.nav-link svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown { position: absolute; top: 100%; left: -16px; min-width: 220px; background: var(--white); padding: 16px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s ease; box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 10px 24px; font-size: 0.8125rem; color: var(--text-dark); text-decoration: none; transition: all 0.2s; }
.nav-dropdown a:hover { background: var(--cream); color: var(--gold-dark); }

.nav-cta { display: none; padding: 12px 24px; background: var(--gold); color: var(--charcoal); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-block; } }

/* Mobile Toggle */
.mobile-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; z-index: 1001; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle span { width: 22px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: var(--white); z-index: 1000; transition: right 0.3s ease; overflow-y: auto; }
.mobile-menu.active { right: 0; }
.mobile-menu-inner { padding: 80px 24px 40px; }
.mobile-menu-item { border-bottom: 1px solid rgba(13,31,18,0.1); }
.mobile-menu-link { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dark); text-decoration: none; }
.mobile-menu-link svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 2; fill: none; transition: transform 0.3s; }
.mobile-menu-item.active .mobile-menu-link svg { transform: rotate(180deg); }
.mobile-submenu { display: none; padding-bottom: 12px; }
.mobile-menu-item.active .mobile-submenu { display: block; }
.mobile-submenu a { display: block; padding: 10px 0 10px 16px; font-size: 0.9375rem; color: var(--text-medium); text-decoration: none; font-weight: 400; text-transform: none; letter-spacing: 0; }
.mobile-submenu a:hover { color: var(--gold-dark); }
.mobile-menu-cta { display: block; margin-top: 24px; padding: 16px 24px; background: var(--gold); color: var(--charcoal); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; text-align: center; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(13,31,18,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* HERO */
.hero { min-height: 100vh; background: var(--charcoal); display: flex; align-items: center; padding: 100px 0 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, rgba(196,164,78,0.08) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--white); margin-bottom: 20px; line-height: 1.05; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-subtitle { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn { padding: 16px 28px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; }
.hero-btn-primary { background: var(--gold); color: var(--charcoal); }
.hero-btn-primary:hover { background: var(--gold-light); }
.hero-btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.hero-btn-secondary:hover { border-color: var(--white); }

/* FEATURED IN - Thin beige banner, single line carousel */
.featured-in { background: var(--cream-dark); padding: 20px 0; overflow: hidden; }
.featured-in-inner { display: flex; align-items: center; gap: 32px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; white-space: nowrap; padding: 0 24px; }
.featured-in-inner::-webkit-scrollbar { display: none; }
.featured-in-label { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-medium); flex-shrink: 0; }
.featured-in-logos { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.featured-in-logos img { height: 20px; filter: grayscale(100%); opacity: 0.6; flex-shrink: 0; }
.featured-in-logos span { font-family: 'Georgia', serif; font-size: 0.875rem; font-weight: 700; color: var(--charcoal); opacity: 0.5; letter-spacing: 0.02em; flex-shrink: 0; white-space: nowrap; }

/* WHO WE ARE */
.who-section { padding: 80px 0; background: var(--white); }
.who-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 992px) { .who-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }
.who-content { text-align: left; }
.who-content .section-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; text-align: left; }
.who-content h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 20px; text-align: left; }
.who-content p { color: var(--text-medium); font-size: 1rem; line-height: 1.8; margin-bottom: 24px; text-align: left; }
.who-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); text-decoration: none; }
.who-link:hover { color: var(--gold); }
.who-link svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.who-image { display: none; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); }
@media (min-width: 992px) { .who-image { display: block; } }

/* WAYS TO PARTNER - Three Pathways */
.partner-section { padding: 100px 0; background: var(--charcoal); }
.partner-header { text-align: center; margin-bottom: 64px; }
.partner-header .section-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.partner-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--white); margin-bottom: 16px; }
.partner-header p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }

.partner-pathways { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .partner-pathways { grid-template-columns: repeat(3, 1fr); } }

.partner-pathway { padding: 48px 32px; text-align: center; position: relative; transition: all 0.4s ease; cursor: pointer; overflow: hidden; background-size: cover; background-position: center; }
.partner-pathway::before { content: ''; position: absolute; inset: 0; background: rgba(13,31,18,0.85); transition: background 0.4s ease; }
.partner-pathway::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s ease; z-index: 2; }
.partner-pathway:hover::before { background: rgba(13,31,18,0.75); }
.partner-pathway:hover::after { transform: scaleX(1); }

@media (min-width: 900px) {
    .partner-pathway { padding: 80px 40px; min-height: 420px; display: flex; flex-direction: column; justify-content: center; }
}

.partner-pathway > * { position: relative; z-index: 1; }

.partner-pathway-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 20px; transition: opacity 0.4s ease; }
.partner-pathway:hover .partner-pathway-number { opacity: 1; }
.partner-pathway h3 { font-size: 1.375rem; color: var(--white); margin-bottom: 14px; }
.partner-pathway p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.partner-pathway-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap 0.3s ease; }
.partner-pathway-link:hover { gap: 12px; }
.partner-pathway-link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

/* FEATURED PROJECT - Single project spotlight */
.featured-project { padding: 80px 0; background: var(--white); }
.featured-project-header { text-align: left; margin-bottom: 32px; }
.featured-project-header .section-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; }
.featured-project-header h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); }

.featured-project-card { position: relative; overflow: hidden; }
.featured-project-image { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); position: relative; background-size: cover; background-position: center; }
.featured-project-image::after { content: ''; position: absolute; inset: 0; background: rgba(13,31,18,0.5); }
.featured-project-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 1; }
.featured-project-badge { display: inline-block; background: var(--gold); padding: 6px 12px; font-size: 0.5625rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 12px; }
.featured-project-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: 8px; }
.featured-project-meta { display: flex; align-items: center; gap: 16px; }
.featured-project-meta span { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.featured-project-stat { display: flex; align-items: baseline; gap: 6px; }
.featured-project-stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--gold); }
.featured-project-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }

/* BUILDER-OWNER ADVANTAGE - Updated with stats-forward carousel */
.advantage-section { padding: 80px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.advantage-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(196,164,78,0.06) 0%, transparent 70%); }
.advantage-header { text-align: left; margin-bottom: 48px; position: relative; z-index: 1; }
.advantage-header .section-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.advantage-header h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--white); }

.advantage-carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 -24px; padding: 0 24px 20px; position: relative; z-index: 1; }
.advantage-carousel::-webkit-scrollbar { display: none; }
.advantage-track { display: flex; gap: 20px; }
.advantage-card { flex: 0 0 300px; background: var(--charcoal-light); padding: 32px 28px; border-top: 3px solid var(--gold); transition: all 0.3s ease; }
@media (min-width: 1000px) { .advantage-card { flex: 1; } }
.advantage-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.advantage-stat { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 8px; }
.advantage-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.advantage-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* CASE STUDY */
.case-study { padding: 80px 0; background: var(--white); }
.case-study-header { text-align: left; margin-bottom: 32px; }
.case-study-header .section-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; }
.case-study-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.case-study-header p { color: var(--text-medium); max-width: 500px; }

.case-study-video { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); position: relative; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.case-study-play { width: 80px; height: 80px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease; }
.case-study-play:hover { transform: scale(1.1); }
.case-study-play svg { width: 32px; height: 32px; fill: var(--charcoal); margin-left: 4px; }

/* BLOG - Card carousel */
.blog-section { padding: 80px 0; background: var(--cream); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.blog-header-text .section-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
.blog-header-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.blog-link { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; }
.blog-link:hover { color: var(--gold-dark); }

.blog-carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 -24px; padding: 0 24px; }
.blog-carousel::-webkit-scrollbar { display: none; }
.blog-track { display: flex; gap: 20px; }
.blog-card { flex: 0 0 300px; background: var(--white); transition: all 0.3s ease; }
@media (min-width: 768px) { .blog-card { flex: 0 0 350px; } }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.blog-card-image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); background-size: cover; background-position: center; }
.blog-card-content { padding: 24px; }
.blog-card-date { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.blog-card h3 { font-size: 0.9375rem; line-height: 1.4; }
.blog-card a { text-decoration: none; color: inherit; display: block; }

/* CTA */
.cta { padding: 80px 0; background: var(--charcoal); }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 992px) { .cta-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }
.cta-content { text-align: left; }
.cta-content h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.6); line-height: 1.7; }

.cta-form { background: rgba(255,255,255,0.05); padding: 32px; border: 1px solid rgba(255,255,255,0.08); }
.cta-form h3 { font-size: 1.125rem; color: var(--white); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.form-input, .form-textarea { width: 100%; padding: 14px 16px; font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--white); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-textarea { min-height: 80px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 20px; }
.form-submit button { width: 100%; padding: 16px; background: var(--gold); color: var(--charcoal); font-family: 'Inter', sans-serif; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; }
.form-submit button:hover { background: var(--gold-light); }

/* FOOTER */
.footer { background: var(--charcoal); padding: 48px 0 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-brand { grid-column: auto; } }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.875rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 32px; height: 32px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 14px; height: 14px; fill: var(--white); }

/* PAGE HEADER */
.page-header { background: var(--charcoal); padding: 140px 0 60px; text-align: center; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; line-height: 1.7; max-width: 550px; margin: 0 auto; }
.section-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }

/* ABOUT PAGE */
.about-hero { min-height: 80vh; display: grid; grid-template-columns: 1fr; }
@media (min-width: 992px) { .about-hero { grid-template-columns: 1fr 1fr; min-height: 70vh; } }
.about-hero-content { background: var(--charcoal); display: flex; align-items: center; padding: 140px 40px 80px; }
@media (min-width: 992px) { .about-hero-content { padding: 80px 64px; } }
.about-hero-inner { max-width: 500px; }
.about-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin-bottom: 24px; }
.about-hero h1 em { font-style: italic; color: var(--gold); }
.about-hero p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; line-height: 1.8; }
.about-hero-image { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); min-height: 300px; display: none; background-size: cover; background-position: center; }
@media (min-width: 992px) { .about-hero-image { display: block; } }

/* INTRO */
.intro { padding: 80px 0; background: var(--cream); }
@media (min-width: 992px) { .intro { padding: 100px 0; } }
.intro-content { max-width: 700px; }
.intro-content h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 24px; }
.intro-content p { color: var(--text-medium); font-size: 1.0625rem; line-height: 1.9; }

/* PROJECT STRIP - FULL WIDTH IMAGES */
.project-strip { display: grid; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .project-strip { grid-template-columns: repeat(4, 1fr); } }
.project-strip-item { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); position: relative; overflow: hidden; }
.project-strip-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%); }
.project-strip-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 1; }
.project-strip-content h3 { font-size: 0.9375rem; color: var(--white); margin-bottom: 4px; }
.project-strip-content span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* APPROACH */
.approach { padding: 80px 0; background: var(--white); }
@media (min-width: 992px) { .approach { padding: 100px 0; } }
.approach-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 992px) { .approach-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } }
.approach-content .section-label { color: var(--gold-dark); }
.approach-content h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 32px; }
.approach-list { display: flex; flex-direction: column; gap: 24px; }
.approach-item { display: flex; gap: 16px; }
.approach-item-number { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--gold); line-height: 1; min-width: 32px; }
.approach-item-content h3 { font-size: 1rem; margin-bottom: 6px; }
.approach-item-content p { font-size: 0.9375rem; color: var(--text-medium); line-height: 1.6; }
.approach-image { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); display: none; background-size: cover; background-position: center; }
@media (min-width: 992px) { .approach-image { display: block; } }

/* QUOTE STRIP */
.quote-strip { padding: 80px 0; background: var(--charcoal); text-align: center; }
.quote-strip blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 3vw, 1.75rem); font-style: italic; color: var(--white); max-width: 800px; margin: 0 auto 24px; line-height: 1.6; }
.quote-strip cite { font-size: 0.8125rem; font-style: normal; color: var(--gold); }

/* TEAM */
.team { padding: 80px 0; background: var(--cream); }
@media (min-width: 992px) { .team { padding: 100px 0; } }
.team-header { max-width: 500px; margin-bottom: 48px; }
.team-header .section-label { color: var(--gold-dark); }
.team-header h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 16px; }
.team-header p { color: var(--text-medium); }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: center; }
.team-card-image { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); background-size: cover; background-position: center; }
.team-card h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.team-card-role { font-size: 0.8125rem; color: var(--gold-dark); }

/* CONTACT PAGE */
.contact-page { padding: 80px 0; min-height: auto; background: var(--cream); }
.contact-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.contact-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.contact-header p { color: var(--text-medium); font-size: 1.0625rem; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1.5fr; gap: 48px; } }
.contact-info { background: var(--charcoal); padding: 48px; }
.contact-info h2 { font-size: 1.375rem; color: var(--white); margin-bottom: 32px; }
.contact-method { margin-bottom: 32px; }
.contact-method:last-of-type { margin-bottom: 0; }
.contact-method-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-method-value { color: rgba(255,255,255,0.8); font-size: 1rem; }
.contact-method-value a { color: rgba(255,255,255,0.8); text-decoration: none; }
.contact-method-value a:hover { color: var(--gold); }
.contact-social { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-social-label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.contact-social-links { display: flex; flex-direction: column; gap: 8px; }
.contact-social-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.contact-social-links a:hover { color: var(--gold); }
.contact-form-wrapper { background: var(--white); padding: 48px; }
.contact-form-wrapper h2 { font-size: 1.375rem; margin-bottom: 8px; }
.contact-form-wrapper > p { color: var(--text-medium); margin-bottom: 32px; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-color: var(--cream); }

/* PROJECTS PAGE */
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 80px 0; }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card { position: relative; overflow: hidden; }
.project-card-image { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); background-size: cover; background-position: center; }
.project-card-content { padding: 24px; background: var(--white); }
.project-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.project-card-meta { display: flex; gap: 16px; font-size: 0.875rem; color: var(--text-medium); }

/* FOR RENT PAGE */
.rentals-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 80px 0; }
@media (min-width: 768px) { .rentals-grid { grid-template-columns: repeat(2, 1fr); } }
.rental-card { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.rental-card-image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%); background-size: cover; background-position: center; position: relative; }
.rental-card-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); padding: 6px 12px; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); }
.rental-card-content { padding: 24px; }
.rental-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.rental-card-details { display: flex; gap: 16px; font-size: 0.875rem; color: var(--text-medium); margin-bottom: 16px; }
.rental-card-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold-dark); }

/* SERVICES PAGES */
.services-hero { background: var(--charcoal); padding: 140px 0 80px; }
.services-hero-content { max-width: 700px; }
.services-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin-bottom: 24px; }
.services-hero h1 em { font-style: italic; color: var(--gold); }
.services-hero p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; line-height: 1.8; }

.services-content { padding: 80px 0; background: var(--white); }
.services-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 24px; }
.services-content p { color: var(--text-medium); font-size: 1rem; line-height: 1.8; margin-bottom: 24px; }

.services-features { display: grid; grid-template-columns: 1fr; gap: 32px; margin: 48px 0; }
@media (min-width: 768px) { .services-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-features { grid-template-columns: repeat(3, 1fr); } }
.service-feature { padding: 32px; background: var(--cream); }
.service-feature h3 { font-size: 1.125rem; margin-bottom: 12px; }
.service-feature p { font-size: 0.9375rem; color: var(--text-medium); line-height: 1.6; }

/* BLOG PAGE */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 80px 0; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* SINGLE POST */
.single-post { padding: 80px 0; }
.single-post-content { max-width: 700px; margin: 0 auto; }
.single-post-content h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 24px; }
.single-post-meta { font-size: 0.875rem; color: var(--text-medium); margin-bottom: 48px; }
.single-post-content p { font-size: 1.0625rem; line-height: 1.9; margin-bottom: 24px; }
.single-post-content h2 { font-size: 1.5rem; margin: 48px 0 24px; }
.single-post-content img { max-width: 100%; height: auto; margin: 32px 0; }

/* CTA BUTTON STANDALONE */
.cta-button { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; background: var(--gold); color: var(--charcoal); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; }
.cta-button:hover { background: var(--gold-light); transform: translateY(-2px); }
.cta-button svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

/* WordPress-specific styles */
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 24px auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--text-medium); text-align: center; margin-top: 8px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.gallery-item { margin: 0; }
.gallery-icon img { max-width: 100%; height: auto; }
