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

body {
    font-family: 'Georgia', serif;
    color: #4a4a4a;
    line-height: 1.6;
    background-color: #f8f6f3;
}

/* Navigation */
nav {
    background: #4a6741;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

nav .logo {
    color: white;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
}

nav ul li a:hover {
    opacity: 0.8;
}

nav ul li a.active {
    border-bottom: 2px solid white;
    padding-bottom: 4px;
}

/* Weather Widget */
.weather-widget {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.35rem 0.75rem;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 1;
    min-width: 0;
}

.weather-loading,
.weather-error {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-align: center;
    padding: 0.25rem;
}

.weather-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.weather-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.weather-temp {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.weather-desc {
    font-size: 0.85rem;
    opacity: 0.95;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.weather-wind {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.wind-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.wind-speed {
    font-size: 0.9rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    background: linear-gradient(135deg, #4a6741 0%, #5d7d54 100%);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.95;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero */
.hero {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-text {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.5rem;
    font-style: italic;
}

/* Sections */
.intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro h2 {
    font-size: 2.5rem;
    color: #4a6741;
    margin-bottom: 1rem;
    font-weight: 300;
}

.intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.75;
    color: #666;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.feature-box h3 {
    color: #4a6741;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-box p {
    color: #777;
}

/* Gallery Section */
.gallery-section {
    margin: 4rem 0;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4a6741;
    margin-bottom: 1rem;
    font-weight: 300;
}

.gallery-section h3 {
    font-size: 1.8rem;
    color: #4a6741;
    margin: 3rem 0 1.5rem;
    font-weight: 300;
    border-bottom: 2px solid #4a6741;
    padding-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-size: 1.1rem;
    text-align: center;
}

/* View More Button */
.view-more-btn {
    display: inline-block;
    background: #4a6741;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    margin: 1rem 0;
    transition: background 0.3s;
}

.view-more-btn:hover {
    background: #5d7d54;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow-y: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: 2rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
    transition: transform 0.3s;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.lightbox-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.lightbox-thumbnail {
    width: 100px;
    height: 75px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    border: 2px solid transparent;
}

.lightbox-thumbnail:hover,
.lightbox-thumbnail.active {
    opacity: 1;
    transform: scale(1.1);
    border-color: white;
}

/* Floor Plans */
.floor-plans {
    margin: 4rem 0;
}

.floor-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4a6741;
    margin-bottom: 2rem;
    font-weight: 300;
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.floor-plan-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.floor-plan-item h3 {
    text-align: center;
    color: #4a6741;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.floor-plan-item img {
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.floor-plan-item img:hover {
    transform: scale(1.02);
}

/* House Rules */
.rules-section {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rules-section h2 {
    font-size: 2rem;
    color: #4a6741;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.rules-section h3 {
    font-size: 1.5rem;
    color: #4a6741;
    margin: 2rem 0 1rem;
    font-weight: 300;
}

.rules-section ul {
    list-style-position: inside;
    padding-left: 1rem;
    margin: 1rem 0;
}

.rules-section li {
    margin: 0.35rem 0;
    line-height: 1.25;
}

.rules-section p {
    margin: 1rem 0;
    line-height: 1.8;
}

.highlight-box {
    background: #f4f7f3;
    padding: 1.5rem;
    border-left: 4px solid #4a6741;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box h3 {
    color: #4a6741;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.highlight-box li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.highlight-box li::before {
    content: "\2022";
    color: #4a6741;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.guest-agreement {
    margin: 1rem 0 3rem;
    padding: 2rem;
}

/* Quick Reference */
.quick-ref {
    margin-bottom: 3rem;
}

.quick-ref-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.quick-ref-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid #4a6741;
}

.quick-ref-card h3 {
    color: #4a6741;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quick-ref-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.quick-ref-note {
    font-size: 0.85rem;
    color: #777;
}

.quick-ref-detail {
    font-size: 0.9rem;
    color: #555;
    padding: 0.3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-ref-detail:last-child {
    border-bottom: none;
}

/* Rules Accordion */
.rules-accordion {
    margin: 2rem 0 3rem;
}

.rules-accordion > h2 {
    font-size: 2rem;
    color: #4a6741;
    margin-bottom: 1rem;
    font-weight: 300;
}

.rule-group {
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.rule-group summary {
    padding: 1rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 400;
    color: #4a6741;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    font-family: 'Georgia', serif;
}

.rule-group summary::-webkit-details-marker {
    display: none;
}

.rule-group summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #4a6741;
    flex-shrink: 0;
    margin-left: 1rem;
}

.rule-group[open] summary::after {
    content: '\2212';
}

.rule-group summary:hover {
    background: #f4f7f3;
}

.rule-group[open] summary {
    border-bottom: 1px solid #eee;
}

.rule-content {
    padding: 1rem 1.5rem 1.25rem;
}

.rule-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-content li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.rule-content li::before {
    content: "\2022";
    color: #4a6741;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rule-content p {
    color: #555;
    line-height: 1.7;
    margin: 0.25rem 0;
}

/* Amenity Categories */
.amenity-category {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.amenity-category h2 {
    font-size: 1.3rem;
    color: #4a6741;
    font-weight: 400;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e8ede7;
}

.amenity-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-category li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.amenity-category li::before {
    content: "\2022";
    color: #4a6741;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Location Section */
.location-section {
    margin: 4rem 0;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4a6741;
    margin-bottom: 2rem;
    font-weight: 300;
}

.map-embed-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-embed-container iframe {
    display: block;
}

/* Contact Section */
.contact-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4a6741;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.contact-box {
    background: #f4f7f3;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #4a6741;
}

.contact-box h3 {
    color: #4a6741;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-box p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #4a6741;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #4a6741;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-link:hover {
    background: #4a6741;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 103, 65, 0.3);
}

/* Rental Guidelines */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.guideline-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.guideline-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.guideline-card h3 {
    color: #4a6741;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8ede7;
}

.guideline-detail p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.guideline-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guideline-detail li {
    color: #555;
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    line-height: 1.5;
}

.guideline-detail li::before {
    content: "\2022";
    color: #4a6741;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.guideline-highlight {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a6741 !important;
    margin-bottom: 0.5rem !important;
}

/* Emergency Section */
.guidelines-emergency {
    margin: 3rem 0;
}

.guidelines-emergency h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #4a6741;
    margin-bottom: 2rem;
    font-weight: 300;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.emergency-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #4a6741;
}

.emergency-card-primary {
    border-top-color: #4a6741;
    background: #f4f7f3;
}

.emergency-card-urgent {
    border-top-color: #c0392b;
    background: #fdf2f2;
}

.emergency-card h3 {
    color: #4a6741;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emergency-card-urgent h3 {
    color: #c0392b;
}

.emergency-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.emergency-address {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.emergency-phone {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a6741;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.emergency-phone:hover {
    background: #4a6741;
    color: white;
}

.emergency-911 {
    font-size: 2.5rem;
    color: #c0392b;
    letter-spacing: 4px;
}

.emergency-911:hover {
    background: #c0392b;
    color: white;
}

/* Licensing Section */
.guidelines-licensing {
    margin: 3rem 0;
}

.guidelines-licensing h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #4a6741;
    margin-bottom: 2rem;
    font-weight: 300;
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.license-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #e8ede7;
}

.license-card h3 {
    color: #4a6741;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.license-label {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.license-number {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    font-family: 'Courier New', monospace;
    background: #f4f7f3;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.license-contact {
    border-top: 1px solid #e8ede7;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.license-contact p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.license-contact a {
    color: #4a6741;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.license-contact a:hover {
    color: #5d7d54;
}

/* Footer */
footer {
    background: #4a6741;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
}

footer p {
    opacity: 0.9;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 0;
    }

    nav .container {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 0.5rem;
    }

    nav ul li a {
        font-size: 0.95rem;
        padding: 0.25rem 0.4rem;
    }

    .weather-widget {
        width: 100%;
        max-width: 350px;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
        max-height: 100px;
        opacity: 1;
        overflow: hidden;
    }

    nav.scrolled .weather-widget {
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

    .weather-display {
        justify-content: center;
    }

    .weather-icon {
        font-size: 2rem;
    }

    .weather-temp {
        font-size: 1.2rem;
    }

    header h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

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

    .floor-plans-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 2rem 1rem;
    }

    .rules-section {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .rules-section h2 {
        font-size: 1.5rem;
    }

    .rules-section h3 {
        font-size: 1.25rem;
    }

    .highlight-box {
        padding: 1rem 1rem 1rem 1.75rem;
        margin: 1.5rem 0;
    }

    .intro h2 {
        font-size: 1.75rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .lightbox-nav {
        font-size: 2rem;
    }

    .lightbox-close {
        right: 20px;
        font-size: 2rem;
    }

    .map-embed-container iframe {
        height: 300px;
    }

    .contact-section {
        padding: 2rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-box {
        padding: 1.5rem;
    }

    .contact-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        word-wrap: break-word;
    }

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

    .guideline-card {
        padding: 1.5rem;
    }

    .guideline-highlight {
        font-size: 1.5rem;
    }

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

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

    .guidelines-emergency h2,
    .guidelines-licensing h2 {
        font-size: 1.75rem;
    }

    .quick-ref-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .quick-ref-card {
        padding: 1.25rem 0.75rem;
    }

    .quick-ref-value {
        font-size: 1.3rem;
    }

    .rules-accordion > h2 {
        font-size: 1.5rem;
    }

    .rule-group summary {
        padding: 0.875rem 1rem;
        font-size: 1.05rem;
    }

    .rule-content {
        padding: 0.75rem 1rem 1rem;
    }

    .guest-agreement {
        padding: 1.25rem;
    }

    .amenity-category {
        padding: 1.5rem 1rem;
    }
}
