body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fafafa;
}
header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 5px 24px;     
    height: 85px;        
    box-sizing: border-box;   
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-block {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    height: 100%;         
}

.logo-img {
    height: 100%;           
    width: auto;
    display: block;
}

.logo {
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.logo-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #777;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
nav a {
    margin-left: 16px;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
}
nav a:first-child {
    margin-left: 0;
}
nav a:hover {
    text-decoration: underline;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-sub-toggle {
    display: none;
}

.nav-parent {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    cursor: pointer;
}

.nav-parent-desktop {
    display: inline-block;
}
.nav-parent-mobile {
    display: none;
}

.nav-dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 220px;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    z-index: 20;
}

.nav-dropdown-menu a {
    margin: 0;
    padding: 8px 16px;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background-color: #f5f7fa;
}

.btn-primary,
.btn-secondary {
    padding: 10px 18px;
    border-radius: 4px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background-color: #2d5147;
    color: #ffffff;
    border-color: #2d5147;
}
.btn-secondary {
    background-color: #ffffff;
    color: #2d5147;
    border-color: #2d5147;
}
.btn-book-now {
    font-size: 0.9rem;
    padding: 8px 14px;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
}
.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 16px;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    position: relative;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
}
.nav-toggle-label span::before {
    top: -6px;
}
.nav-toggle-label span::after {
    top: 6px;
}

.hero {
    background-color: #f3f4f1;
    padding: 48px 24px;
}
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-text {
    max-width: 640px;
}

.hero-love {
    margin-top: 16px;
    font-style: italic;
    color: #425569;
}

.hero-apartments .hero-inner {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: flex-start;
}

.hero-apartments .hero-image-placeholder {
    min-height: 220px;
    max-width: 420px;
    margin-left: auto;
}

.hero-apartments {
    padding-bottom: 32px;
}

.hero-apartments .hero-booking-row {
    max-width: 1200px;
    margin: 24px auto 0;
}

h1 {
    font-size: 2rem;
    margin: 8px 0 16px;
}
h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 18px;
}

.two-column > div > h3:first-child {
    margin-top: 0;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 6px;
    color: #444;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 6px;
}
.hero-image-placeholder {
    width: 100%;
    min-height: 260px;
    background-color: #e3e3e3;
    border-radius: 8px;
    border: 1px dashed #c4c4c4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    box-sizing: border-box;
    font-size: 0.9rem;
    color: #425569;
}

.hero-image {
    width: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	padding-top: 20px;
    box-sizing: border-box;
    font-size: 0.9rem;
    color: #425569;
}

main {
    padding: 32px 24px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

main a {
    color: #2f7b64;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.14em;
}

main a:hover {
    color: #2d5147;
}

section {
    margin-bottom: 48px;
}
p {
    margin-bottom: 12px;
}
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 6px;
}

.highlight-box {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 16px 18px;
}

.highlight-box + .highlight-box {
    margin-top: 20px;
}

.activity-block {
    margin-bottom: 40px;
}

.two-column {
    display: grid;
    column-gap: 24px;
    row-gap: 0;
    align-items: flex-start;
}


.two-column-right {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.two-column-left {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.two-column-full {
    grid-column: 1 / -1;
    margin-top: 12px;
}

.image-col {
    display: flex;
    align-items: flex-start;
}

.image-col-right {
    justify-content: flex-end;
}

.image-col-left {
    justify-content: flex-start;
}

.image-placeholder {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    border: 1px dashed #c8c8c8
;
    background-color: #e6e6e6;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.image-4x3 {
    padding-top: 0;
}

.image-placeholder span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
}
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.info-card {
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid #c3c8d0;
    padding: 14px 16px;
    box-sizing: border-box;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 6px;
    color: #444;
}

.timeline {
    margin-top: 12px;
    border-left: 2px solid #c4b38a;
    padding-left: 18px;
}
.timeline-item {
    margin-bottom: 24px;
}
.timeline-item h3 {
    margin-top: 0;
}

.final-cta {
    text-align: left;
}
.final-cta-buttons {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

footer {
    border-top: 1px solid #ddd;
    padding: 16px 24px;
    font-size: 0.85rem;
    color: #666;
    background-color: #ffffff;
    margin-top: 32px;
}

.explore-links-row {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.explore-link {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid #2d5147;
    font-size: 0.9rem;
    text-decoration: none;
    color: #2d5147;
    background-color: #ffffff;
    white-space: nowrap;
}

.explore-link:hover {
    background-color: #2d5147;
    color: #ffffff;
}

.hero-support {
    font-size: 1rem;
    margin-top: 12px;
    color: #444;
}

.hero-cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tiles-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tile {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tile-spacer {
    background: transparent;
    border: none;
    box-shadow: none;
}

.tile-image-placeholder {
    width: 100%;
    height: 140px;
    background-color: #e6e6e6;
    border-bottom: 1px dashed #c8c8c8
;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    padding: 8px;
    box-sizing: border-box;
}

.tile-image {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    box-sizing: border-box;
	object-fit: cover;
	object-position: center;
	display: block;
}

.tile-content {
    padding: 12px 14px 14px;
    flex: 1;
}

.tile-title {
    font-weight: bold;
    margin-bottom: 6px;
}

.apartment-type {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 18px 18px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.apartment-type-body {
    margin-top: 12px;
}

.apartment-type-left {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.apartment-type-left .apartment-meta:last-of-type {
    margin-bottom: 4px;
}

.apartment-meta {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0px;
}

.apartment-media {
    margin-bottom: 12px;
}

.unit-box {
    margin-top: 14px;
    margin-bottom: 10px;
    padding: 12px 14px 14px;
    background-color: #fafafa;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
}

.unit-box + .unit-box {
    margin-top: 10px;
}

.unit-box h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: bold;
}

.unit-box .apartment-meta {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.unit-box .spec-list {
    margin-top: 4px;
    margin-bottom: 0;
}

.unit-box .spec-list li {
    margin-bottom: 3px;
}

.spec-list {
    margin-top: 8px;
    margin-bottom: 8px;
}

.spec-list li {
    margin-bottom: 4px;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 4px;
}

.pill {
    background-color: #ffffff;
    border-radius: 999px;
    border: 1px solid #d0d7e2;
    padding: 6px 10px;
    font-size: 0.9rem;
}

.icon-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.icon-pill {
    background-color: #ffffff;
    border-radius: 999px;
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 0.9rem;
}

.tbc-note {
    color: #c00;
    font-weight: bold;
}

.activity-intro {
    max-width: 720px;
}

.activity-tiles-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.activity-tile {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.activity-tile-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.activity-tile:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    border-color: #c3c8d0;
}

.image-placeholder-side {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    background-color: #e6e6e6;
    border-radius: 8px;
    border: 1px dashed #c8c8c8
;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    box-sizing: border-box;
    font-size: 0.9rem;
    color: #555;
}

.image-side {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	padding-top: 16px;
    box-sizing: border-box;
    font-size: 0.9rem;
    color: #555;
}

.inline-cta {
    margin-top: 10px;
    font-size: 0.95rem;
}

.inline-cta a {
    text-decoration: none;
}

.inline-cta a:hover {
    text-decoration: underline;
}

.apartment-type-left .inline-cta {
    margin-top: 4px;
}

.home-booking-strip {
    padding: 0px 24px 0px;
}

.home-booking-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-booking-widget {
    margin: 0 auto;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #c7d2e2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
}

.hero-booking-widget .field {
    flex: 1 1 140px;
    min-width: 140px;
}

.hero-booking-widget label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: #444;
}

.hero-booking-widget input,
.hero-booking-widget select {
    width: 100%;
    padding: 7px 8px;
    border-radius: 3px;
    border: 1px solid #ccd3de;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.hero-booking-widget .btn-primary {
    flex: 0 0 auto;
    white-space: nowrap;
}

.hero-booking-widget .widget-note {
    width: 100%;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

.reviews-placeholder {
    padding: 40px 24px;
    background-color: #ffffff;
}

.reviews-placeholder h2 {
    max-width: 1200px;
    margin: 0 auto 10px;
}

.reviews-intro {
    max-width: 800px;
    margin: 0 auto 18px;
}

.reviews-widget-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 0px;
    border: 1px dashed #c7d2e2;
    background-color: #f7f6f3;
    font-size: 0.9rem;
    color: #555a66;
    text-align: center;
}

/* Groups & events - enquiry form */

.enquiry-intro {
    max-width: 720px;
}

.enquiry-form {
    margin-top: 18px;
    padding: 16px 18px 18px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #c7d2e2;
}

.enquiry-form form {
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px 18px;
    align-items: flex-start;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
    padding: 7px 8px;
    border-radius: 3px;
    border: 1px solid #ccd3de;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group small {
    font-size: 0.75rem;
    color: #666;
    margin-top: 3px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.enquiry-form-actions {
    margin-top: 14px;
}

.form-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #555;
}

.form-note a {
    color: #2d5147;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Contact page - main layout */

.contact-intro {
    max-width: 720px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 26px;
    align-items: flex-start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: 4px;
}

.contact-block p {
    margin: 0 0 4px;
}

.contact-block a {
    color: #2d5147;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

/* Contact form */

.contact-form-wrapper {
    padding: 16px 18px 18px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #c7d2e2;
}

.contact-form-wrapper h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-form {
    margin: 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px 18px;
    align-items: flex-start;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group label {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 4px;
}

.contact-form-group input,
.contact-form-group textarea {
    padding: 7px 8px;
    border-radius: 3px;
    border: 1px solid #ccd3de;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.contact-form-group textarea {
    min-height: 70px;
    resize: vertical;
}

.contact-form-group small {
    font-size: 0.75rem;
    color: #666;
    margin-top: 3px;
}

.contact-form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form-actions {
    margin-top: 14px;
}

/* Contact form helper texts */

.contact-helper-text {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #555;
}

.contact-helper-text a {
    color: #2d5147;
    text-decoration: none;
}

.contact-helper-text a:hover {
    text-decoration: underline;
}

/* CTA buttons - shared style & animation */

.btn-primary,
.btn-secondary,
.explore-link,
.map-link a {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
/* Primary and secundary CTA colours */

.btn-primary {
    background-color: #2d5147;
    border-color: #2d5147;
    color: #ffffff;
}

.btn-secondary {
    background-color: #ffffff;
    border-color: #2d5147;
    color: #2d5147;
}

/* Pills and links in CTA style */

.explore-link,
.map-link a {
    border-color: #2d5147;
    color: #2d5147;
}

/* Hover effect CTA - light "lift" a secondary colour */

.btn-primary:hover,
.btn-secondary:hover,
.explore-link:hover,
.map-link a:hover {
    background-color: #debb5b;
    border-color: #debb5b;
    color: #2d5147;
    transform: translateY(-1px);
}
/* Map section */

.map-section {
    margin-top: 40px;
}

.map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 22px;
    align-items: flex-start;
}

.map-placeholder {
    min-height: 260px;
    border-radius: 6px;
    border: 1px dashed #b9c3d5;
    background-color: #f5f4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
    color: #555a66;
}

.map-details p {
    margin-top: 0;
}

.map-details strong {
    display: inline-block;
    margin-bottom: 2px;
}

.map-link {
    margin-top: 10px;
}

.map-link a {
    display: inline-block;
    padding: 8px 11px;
    border-radius: 4px;
    border: 1px solid #2d5147;
    font-size: 0.85rem;
    text-decoration: none;
    color: #2d5147;
}

	/* Guest information page */

.info-intro {
    max-width: 720px;
}

.info-section {
    padding: 18px 20px;
    border-radius: 6px;
    border: 1px solid #dde2ec;
    background-color: #f9fafc;
}

.info-section + .info-section {
    margin-top: 24px;
}

.info-box {
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #c7d2e2;
    padding: 12px 14px;
    font-size: 0.9rem;
	margin-top: 16px;
}

.info-list {
    margin: 8px 0 0;
    padding-left: 18px;
}

.info-list li {
    margin-bottom: 4px;
}

.info-section-collapsible {
    padding: 0;
}

.info-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.info-toggle-header {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}

.info-toggle-header h2 {
    margin: 0;
	font-size: 1.4rem
}

.info-toggle-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #c3c8d0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.info-toggle-icon::before,
.info-toggle-icon::after {
    content: "";
    position: absolute;
    background: #555;
    border-radius: 1px;
}

.info-toggle-icon::before {
    width: 9px;
    height: 1.5px;
}

.info-toggle-icon::after {
    width: 1.5px;
    height: 9px;
}

.info-section-body {
    padding: 0 20px 18px;
    display: none;
    border-top: 1px solid #dde2ec;
}

.info-toggle:checked ~ .info-section-body {
    display: block;
}

.info-toggle:checked ~ .info-toggle-header .info-toggle-icon::after {
    transform: scaleY(0);
}

#house-guidelines.info-section-collapsible {
    margin-bottom: 32px;
}


@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
	
	.hero-apartments .hero-inner {
        grid-template-columns: 1fr;
    }
	
    .hero-image-placeholder {
        order: 1;
    }
    .hero-text {
        order: 2;
    }
    .two-column {
        grid-template-columns: 1fr;
		gap: 20px;
    }
    .image-col {
        justify-content: center;
    }
    .image-placeholder {
        max-width: 100%;
    }
    .two-column-left .image-col {
        order: 2;
    }

    .two-column-left > :not(.image-col) {
        order: 1;
    }

    .activity-tiles-row {
        grid-template-columns: 1fr;
    }
	
	.tiles-row {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .tile-spacer {
        display: none;
    }
	
	.two-column-apartments .apartment-type-right {
        order: 1;
    }

    .two-column-apartments .apartment-type-left {
        order: 2;
    }
	
	.contact-layout,
    .map-layout {
        grid-template-columns: minmax(0, 1fr);
    }
	
	.info-section {
        padding: 14px 16px;
    }
	
	.info-toggle-header {
        padding: 12px 16px;
    }
	
	
    .info-section-body {
        padding: 0 16px 16px;
    }

}
	


@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
    }
    .header-right {
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background-color: #ffffff;
		border-bottom: 1px solid #ddd;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 20px;
        flex-direction: column;
        align-items: center;
		display: none;
        z-index: 20;
	}
	
    nav {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    nav a {
        margin: 4px 0;
    }

    .btn-book-now {
        align-self: flex-start;
    }

    .nav-toggle-label {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        padding: 8px;
    }

    .nav-toggle:checked + .nav-toggle-label + .header-right {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-parent-desktop {
        display: none;
    }

    .nav-parent-mobile {
        display: block;
        margin: 4px 0;
    }

    .nav-dropdown-menu {
        position: static;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        display: none;
    }

    .nav-dropdown-menu a {
        padding-left: 24px;
    }

    .nav-sub-toggle:checked + .nav-parent-mobile + .nav-dropdown-menu {
        display: flex;
    }
	
	.home-booking-strip {
        padding: 12px 16px 16px;
    }
	
	.reviews-placeholder {
        padding: 28px 16px;
    }
	
	.form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
	
	    .contact-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
	
	
}


@media (max-width: 600px) {
    .explore-links-row {
        gap: 6px;
    }
    .explore-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) {
    .nav-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
    }

    .nav-dropdown {
        margin-left: 16px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: flex;
    }

    .nav-parent-mobile {
        display: none;
    }

    .btn-book-now {
        margin-left: 24px;
    }
}

@media (min-width: 901px) {
    .activity-block > .two-column-left:first-child {
        margin-top: 60px;
    }
    .two-column-left .image-col {
        padding-top: 32px;
    }

    .two-column-apartments {
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
        column-gap: 24px;
        row-gap: 10px;
        align-items: flex-start;
        grid-template-areas:
            "media right"
            "left  right";
    }

    .apartment-media {
        grid-area: media;
        margin-bottom: 0;
    }

    .apartment-type-right {
        grid-area: right;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .apartment-type-left {
        grid-area: left;
        margin-bottom: 0;
    }

    .apartment-media .image-placeholder-side {
        margin-top: 14px;
    }
}
