| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Sydenham - 72 Durham Street | Bayleys</title> |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; |
| color: #002147; |
| line-height: 1.5; |
| } |
| |
| |
| .header { |
| background-color: #002147; |
| padding: 12px 24px; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| position: sticky; |
| top: 0; |
| z-index: 100; |
| } |
| |
| .header-logo { |
| display: flex; |
| align-items: center; |
| gap: 12px; |
| } |
| |
| .header-logo img { |
| height: 32px; |
| } |
| |
| .header-logo .tagline { |
| color: white; |
| font-size: 14px; |
| font-weight: 600; |
| letter-spacing: 1px; |
| } |
| |
| .header-nav { |
| display: flex; |
| align-items: center; |
| gap: 20px; |
| } |
| |
| .header-nav a { |
| color: white; |
| text-decoration: none; |
| font-size: 14px; |
| display: flex; |
| align-items: center; |
| gap: 4px; |
| } |
| |
| .header-nav a:hover { |
| opacity: 0.8; |
| } |
| |
| .header-nav .dropdown::after { |
| content: '▼'; |
| font-size: 8px; |
| margin-left: 4px; |
| } |
| |
| .header-icons { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| } |
| |
| .header-icons img { |
| height: 20px; |
| filter: brightness(0) invert(1); |
| } |
| |
| .mobile-menu-btn { |
| display: none; |
| background: none; |
| border: none; |
| cursor: pointer; |
| } |
| |
| .mobile-menu-btn img { |
| height: 24px; |
| filter: brightness(0) invert(1); |
| } |
| |
| |
| .breadcrumbs { |
| padding: 20px 24px 8px; |
| font-size: 12px; |
| font-weight: 600; |
| color: #002147; |
| text-transform: uppercase; |
| } |
| |
| .breadcrumbs span { |
| color: #002147; |
| } |
| |
| .property-id { |
| float: right; |
| font-weight: 700; |
| } |
| |
| |
| .property-title { |
| padding: 8px 24px 16px; |
| display: flex; |
| justify-content: space-between; |
| align-items: flex-start; |
| flex-wrap: wrap; |
| gap: 16px; |
| } |
| |
| .property-title h1 { |
| font-size: 32px; |
| font-weight: 600; |
| color: #002147; |
| line-height: 1.2; |
| } |
| |
| .property-title .subtitle { |
| font-size: 28px; |
| font-weight: 300; |
| color: #002147; |
| } |
| |
| .property-actions { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| } |
| |
| .property-actions button { |
| background: none; |
| border: none; |
| cursor: pointer; |
| display: flex; |
| align-items: center; |
| gap: 6px; |
| color: #002147; |
| font-size: 14px; |
| } |
| |
| .property-actions button img { |
| height: 18px; |
| } |
| |
| |
| .image-gallery { |
| padding: 0 24px 16px; |
| display: grid; |
| grid-template-columns: 2.5fr 1fr; |
| grid-template-rows: 1fr 1fr; |
| gap: 8px; |
| } |
| |
| .image-gallery .main-image { |
| grid-row: 1 / 3; |
| position: relative; |
| } |
| |
| .image-gallery .main-image img { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| display: block; |
| } |
| |
| .image-gallery .side-images { |
| display: flex; |
| flex-direction: column; |
| gap: 8px; |
| } |
| |
| .image-gallery .side-images img { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| display: block; |
| } |
| |
| .image-gallery .more-photos { |
| position: relative; |
| background-color: #333; |
| } |
| |
| .image-gallery .more-photos::after { |
| content: '+3'; |
| position: absolute; |
| top: 50%; |
| left: 50%; |
| transform: translate(-50%, -50%); |
| color: white; |
| font-size: 40px; |
| font-weight: 300; |
| } |
| |
| .leased-badge { |
| position: absolute; |
| top: 0; |
| left: 0; |
| background-color: #c41e3a; |
| color: white; |
| padding: 12px 24px; |
| font-weight: 700; |
| font-size: 20px; |
| clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%); |
| z-index: 10; |
| } |
| |
| .property-size { |
| padding: 12px 24px; |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| font-size: 20px; |
| color: #002147; |
| } |
| |
| .property-size img { |
| height: 24px; |
| } |
| |
| |
| .property-details { |
| background-color: #002147; |
| color: white; |
| padding: 48px 24px; |
| } |
| |
| .property-details-content { |
| max-width: 1200px; |
| margin: 0 auto; |
| display: grid; |
| grid-template-columns: 1fr 350px; |
| gap: 48px; |
| } |
| |
| .property-details h2 { |
| font-size: 28px; |
| font-weight: 300; |
| margin-bottom: 16px; |
| padding-bottom: 12px; |
| border-bottom: 1px solid rgba(255,255,255,0.3); |
| } |
| |
| .property-details p { |
| font-size: 14px; |
| line-height: 1.6; |
| margin-bottom: 16px; |
| opacity: 0.9; |
| } |
| |
| .property-details ul { |
| list-style: none; |
| margin-bottom: 16px; |
| } |
| |
| .property-details ul li { |
| font-size: 14px; |
| padding: 2px 0; |
| opacity: 0.9; |
| } |
| |
| .property-details .rent { |
| font-size: 14px; |
| opacity: 0.8; |
| margin-top: 20px; |
| } |
| |
| |
| .agent-card { |
| background-color: #f5f5f5; |
| padding: 24px; |
| color: #002147; |
| } |
| |
| .agent-card .lease-price { |
| background-color: white; |
| padding: 12px 16px; |
| font-weight: 600; |
| font-size: 16px; |
| margin-bottom: 20px; |
| } |
| |
| .agent-card-content { |
| display: flex; |
| gap: 16px; |
| align-items: flex-start; |
| } |
| |
| .agent-card img { |
| width: 100px; |
| height: 100px; |
| border-radius: 50%; |
| object-fit: cover; |
| } |
| |
| .agent-card .agent-info { |
| flex: 1; |
| } |
| |
| .agent-card .agent-name { |
| font-weight: 600; |
| font-size: 16px; |
| margin-bottom: 8px; |
| } |
| |
| .agent-card .agent-contact { |
| font-size: 13px; |
| line-height: 1.5; |
| margin-bottom: 16px; |
| } |
| |
| .agent-card .agent-license { |
| font-size: 10px; |
| font-weight: 600; |
| text-transform: uppercase; |
| margin-top: 8px; |
| } |
| |
| .agent-card .agent-actions { |
| display: flex; |
| gap: 12px; |
| margin-top: 16px; |
| } |
| |
| .agent-card .btn { |
| padding: 10px 20px; |
| font-size: 13px; |
| font-weight: 600; |
| cursor: pointer; |
| border: 1px solid #002147; |
| background: white; |
| color: #002147; |
| } |
| |
| .agent-card .btn-primary { |
| background-color: #002147; |
| color: white; |
| border-color: #002147; |
| } |
| |
| |
| .features-section { |
| padding: 48px 24px; |
| max-width: 1200px; |
| margin: 0 auto; |
| } |
| |
| .features-section h2 { |
| font-size: 28px; |
| font-weight: 300; |
| color: #002147; |
| margin-bottom: 24px; |
| padding-bottom: 12px; |
| border-bottom: 1px solid #ddd; |
| display: inline-block; |
| } |
| |
| .features-content { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 48px; |
| } |
| |
| .features-list { |
| display: flex; |
| flex-direction: column; |
| gap: 24px; |
| } |
| |
| .feature-item { |
| padding-bottom: 16px; |
| border-bottom: 1px solid #002147; |
| } |
| |
| .feature-item h3 { |
| font-size: 16px; |
| font-weight: 600; |
| color: #002147; |
| margin-bottom: 8px; |
| } |
| |
| .feature-item p { |
| font-size: 14px; |
| color: #002147; |
| } |
| |
| .map-container { |
| height: 400px; |
| position: relative; |
| background-color: #f5f5f5; |
| } |
| |
| .map-container img { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| display: block; |
| } |
| |
| .map-pin { |
| position: absolute; |
| top: 50%; |
| left: 50%; |
| transform: translate(-50%, -50%); |
| } |
| |
| .map-pin::before { |
| content: ''; |
| width: 24px; |
| height: 24px; |
| background-color: #c41e3a; |
| border-radius: 50%; |
| display: block; |
| margin: 0 auto; |
| } |
| |
| .map-pin::after { |
| content: ''; |
| width: 0; |
| height: 0; |
| border-left: 8px solid transparent; |
| border-right: 8px solid transparent; |
| border-bottom: 16px solid #c41e3a; |
| margin: 0 auto; |
| } |
| |
| .map-controls { |
| position: absolute; |
| bottom: 12px; |
| right: 12px; |
| display: flex; |
| flex-direction: column; |
| gap: 2px; |
| } |
| |
| .map-controls button { |
| width: 28px; |
| height: 28px; |
| background: white; |
| border: 1px solid #ccc; |
| cursor: pointer; |
| font-size: 16px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| .map-attribution { |
| position: absolute; |
| bottom: 4px; |
| left: 4px; |
| font-size: 9px; |
| color: #666; |
| background: rgba(255,255,255,0.8); |
| padding: 1px 3px; |
| } |
| |
| |
| .footer { |
| background-color: #002147; |
| color: white; |
| padding: 48px 24px 24px; |
| } |
| |
| .footer-content { |
| max-width: 1200px; |
| margin: 0 auto; |
| display: grid; |
| grid-template-columns: 250px 1fr 1fr 1fr; |
| gap: 48px; |
| } |
| |
| .footer-logo { |
| margin-bottom: 24px; |
| } |
| |
| .footer-logo img { |
| height: 32px; |
| } |
| |
| .footer-social { |
| display: flex; |
| gap: 16px; |
| margin-top: 24px; |
| } |
| |
| .footer-social img { |
| height: 24px; |
| filter: brightness(0) invert(1); |
| } |
| |
| .footer-column h3 { |
| font-size: 18px; |
| font-weight: 300; |
| margin-bottom: 16px; |
| padding-bottom: 12px; |
| border-bottom: 1px solid rgba(255,255,255,0.3); |
| } |
| |
| .footer-column ul { |
| list-style: none; |
| } |
| |
| .footer-column ul li { |
| margin-bottom: 8px; |
| } |
| |
| .footer-column ul li a { |
| color: white; |
| text-decoration: none; |
| font-size: 14px; |
| opacity: 0.8; |
| } |
| |
| .footer-column ul li a:hover { |
| opacity: 1; |
| } |
| |
| .footer-bottom { |
| max-width: 1200px; |
| margin: 0 auto; |
| padding-top: 24px; |
| margin-top: 24px; |
| border-top: 1px solid rgba(255,255,255,0.3); |
| font-size: 14px; |
| opacity: 0.8; |
| } |
| |
| |
| @media (max-width: 1024px) { |
| .header-nav { |
| display: none; |
| } |
| |
| .mobile-menu-btn { |
| display: block; |
| } |
| |
| .property-details-content { |
| grid-template-columns: 1fr; |
| gap: 32px; |
| } |
| |
| .features-content { |
| grid-template-columns: 1fr; |
| gap: 32px; |
| } |
| |
| .footer-content { |
| grid-template-columns: 1fr 1fr; |
| gap: 32px; |
| } |
| } |
| |
| |
| @media (max-width: 768px) { |
| .header { |
| padding: 12px 16px; |
| } |
| |
| .header-logo .tagline { |
| display: none; |
| } |
| |
| .breadcrumbs { |
| padding: 16px 16px 8px; |
| } |
| |
| .property-title { |
| padding: 8px 16px 16px; |
| } |
| |
| .property-title h1 { |
| font-size: 24px; |
| } |
| |
| .property-title .subtitle { |
| font-size: 20px; |
| } |
| |
| .image-gallery { |
| display: none; |
| } |
| |
| .mobile-carousel { |
| display: block; |
| position: relative; |
| padding: 0 16px 16px; |
| } |
| |
| .mobile-carousel img { |
| width: 100%; |
| height: 300px; |
| object-fit: cover; |
| } |
| |
| .mobile-carousel .carousel-nav { |
| position: absolute; |
| top: 50%; |
| left: 0; |
| right: 0; |
| transform: translateY(-50%); |
| display: flex; |
| justify-content: space-between; |
| padding: 0 8px; |
| pointer-events: none; |
| } |
| |
| .mobile-carousel .carousel-nav button { |
| background: rgba(255,255,255,0.8); |
| border: none; |
| width: 40px; |
| height: 40px; |
| border-radius: 50%; |
| cursor: pointer; |
| pointer-events: auto; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| .mobile-carousel .carousel-nav button img { |
| height: 20px; |
| } |
| |
| .property-size { |
| padding: 12px 16px; |
| } |
| |
| .property-details { |
| padding: 32px 16px; |
| } |
| |
| .property-details h2 { |
| font-size: 24px; |
| } |
| |
| .features-section { |
| padding: 32px 16px; |
| } |
| |
| .features-section h2 { |
| font-size: 24px; |
| } |
| |
| .map-container { |
| height: 300px; |
| } |
| |
| .footer-content { |
| grid-template-columns: 1fr; |
| gap: 32px; |
| } |
| |
| .footer { |
| padding: 32px 16px 16px; |
| } |
| |
| .footer-column { |
| margin-bottom: 24px; |
| } |
| } |
| |
| .mobile-carousel { |
| display: none; |
| } |
| </style> |
| </head> |
| <body> |
| |
| <header class="header"> |
| <div class="header-logo"> |
| <img src="images/ATB-Logo.svg" alt="Bayleys"> |
| <span class="tagline">ALTOGETHER BETTER</span> |
| </div> |
| <nav class="header-nav"> |
| <a href="#" class="dropdown">Residential</a> |
| <a href="#" class="dropdown">Commercial</a> |
| <a href="#" class="dropdown">Rural</a> |
| <a href="#" class="dropdown">Property Services</a> |
| <a href="#">News and Editorial</a> |
| <a href="#" class="dropdown">Auctions</a> |
| <a href="#"> |
| <img src="images/our-network.svg" alt="" style="height: 16px; filter: brightness(0) invert(1);"> |
| Our Network |
| </a> |
| <a href="#"> |
| <img src="images/my-bayleys.svg" alt="" style="height: 16px; filter: brightness(0) invert(1);"> |
| My Bayleys |
| </a> |
| <a href="#"> |
| <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"> |
| <circle cx="11" cy="11" r="8"></circle> |
| <path d="M21 21l-4.35-4.35"></path> |
| </svg> |
| </a> |
| </nav> |
| <button class="mobile-menu-btn"> |
| <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"> |
| <line x1="3" y1="6" x2="21" y2="6"></line> |
| <line x1="3" y1="12" x2="21" y2="12"></line> |
| <line x1="3" y1="18" x2="21" y2="18"></line> |
| </svg> |
| </button> |
| </header> |
|
|
| |
| <div class="breadcrumbs"> |
| <span>Commercial | Canterbury | Christchurch</span> |
| <span class="property-id">#559842</span> |
| </div> |
|
|
| |
| <div class="property-title"> |
| <div> |
| <h1>Sydenham</h1> |
| <div class="subtitle">72 Durham Street</div> |
| </div> |
| <div class="property-actions"> |
| <button> |
| <img src="images/watchlist-icon-thin.svg" alt=""> |
| Watchlist |
| </button> |
| <button> |
| <img src="images/share.svg" alt=""> |
| Share |
| </button> |
| </div> |
| </div> |
|
|
| |
| <div class="image-gallery"> |
| <div class="main-image"> |
| <div class="leased-badge">LEASED</div> |
| <img src="images/559842_1.jpg" alt="Property exterior"> |
| </div> |
| <div class="side-images"> |
| <img src="images/559842_2.jpg" alt="Interior view"> |
| <div class="more-photos"> |
| <img src="images/559842_3.jpg" alt="Interior view"> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mobile-carousel"> |
| <div class="leased-badge">LEASED</div> |
| <img src="images/559842_1.jpg" alt="Property exterior"> |
| <div class="carousel-nav"> |
| <button> |
| <img src="images/chevron-left.svg" alt=""> |
| </button> |
| <button> |
| <img src="images/carousel-arrow.svg" alt="" style="transform: scaleX(-1);"> |
| </button> |
| </div> |
| </div> |
|
|
| |
| <div class="property-size"> |
| <span>129<sub>sqm</sub></span> |
| <img src="images/floor-area.svg" alt=""> |
| </div> |
|
|
| |
| <section class="property-details"> |
| <div class="property-details-content"> |
| <div> |
| <h2>Corner profile - Sydenham</h2> |
| <p>This warehouse and office premises provides a great location for the small business. Close to the central business district and main arterial routes of Christchurch. Premises and billboard in one with great profile and signage opportunities.</p> |
| <p>Approx<br> |
| - 79.10sqm of warehouse<br> |
| - 49.50sqm of office<br> |
| - Two to four car parks<br> |
| - 128.60sqm total</p> |
| <p>Available Now!!</p> |
| <p class="rent">Rent per annum - $18,500 + OPEX + GST</p> |
| </div> |
| <div class="agent-card"> |
| <div class="lease-price">For Lease NZ$18,500 + GST (if any)</div> |
| <div class="agent-card-content"> |
| <img src="images/BENAND_profile.jpg" alt="Benji Andrews"> |
| <div class="agent-info"> |
| <div class="agent-name">Benji Andrews</div> |
| <div class="agent-contact"> |
| Christchurch<br> |
| +64 27 676 6707<br> |
| benji.andrews@bayleys.co.nz |
| </div> |
| <div class="agent-license">Whalan and Partners Ltd, Bayleys,<br>Licensed under the REA Act 2008</div> |
| <div class="agent-actions"> |
| <button class="btn">View profile</button> |
| <button class="btn btn-primary">Contact</button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="features-section"> |
| <h2>Features</h2> |
| <div class="features-content"> |
| <div class="features-list"> |
| <div class="feature-item"> |
| <h3>Car parks</h3> |
| <p>4</p> |
| </div> |
| <div class="feature-item"> |
| <h3>Office</h3> |
| <p>49.50 Sqm</p> |
| </div> |
| <div class="feature-item"> |
| <h3>Warehouse</h3> |
| <p>79.10 sqm</p> |
| </div> |
| </div> |
| <div class="map-container"> |
| <img src="images/559842_1.jpg" alt="Map location"> |
| <div class="map-pin"></div> |
| <div class="map-controls"> |
| <button>+</button> |
| <button>−</button> |
| </div> |
| <div class="map-attribution">© MapTiler © OpenStreetMap contributors</div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="footer"> |
| <div class="footer-content"> |
| <div> |
| <div class="footer-logo"> |
| <img src="images/ATB-Logo.svg" alt="Bayleys"> |
| </div> |
| <div class="footer-social"> |
| <img src="images/facebook.svg" alt="Facebook"> |
| <img src="images/5-4-instagram-icon.svg" alt="Instagram"> |
| <img src="images/5-5-LinkedIn-icon.svg" alt="LinkedIn"> |
| <img src="images/5-6-YouTube.svg" alt="YouTube"> |
| </div> |
| </div> |
| <div class="footer-column"> |
| <h3>About Bayleys</h3> |
| <ul> |
| <li><a href="#">About Bayleys</a></li> |
| <li><a href="#">Being Altogether Better</a></li> |
| <li><a href="#">Bayleys Foundation</a></li> |
| <li><a href="#">Join us</a></li> |
| <li><a href="#">Contact us</a></li> |
| </ul> |
| </div> |
| <div class="footer-column"> |
| <h3>Information</h3> |
| <ul> |
| <li><a href="#">Complaints procedure</a></li> |
| <li><a href="#">Policy and privacy</a></li> |
| <li><a href="#">Real Estate Agents Act 2008</a></li> |
| <li><a href="#">ESG</a></li> |
| <li><a href="#">AML</a></li> |
| </ul> |
| </div> |
| <div class="footer-column"> |
| <h3>Tools and resources</h3> |
| <ul> |
| <li><a href="#">Insights, data and consulting</a></li> |
| <li><a href="#">News and editorial</a></li> |
| <li><a href="#">Bayleys magazine suite</a></li> |
| <li><a href="#">Live Auctions</a></li> |
| <li><a href="#">Get finance pre-approved</a></li> |
| </ul> |
| </div> |
| </div> |
| <div class="footer-bottom"> |
| © Bayleys Realty Group. Licensed (REAA 2008) |
| </div> |
| </footer> |
| </body> |
| </html> |
|
|