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

:root {
    --black: #181515;
    --white: #FFFDF6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1001;
    font-size: 14px;
}

.skip-link:focus {
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1000;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand h1 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
    text-transform: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    position: absolute;
}

.hamburger-line:nth-child(1) {
    top: 6px;
}

.hamburger-line:nth-child(2) {
    top: 11px;
}

.hamburger-line:nth-child(3) {
    top: 16px;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

.hamburger:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 4px;
    border-radius: 2px;
}

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

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    position: relative;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu {
    padding: 20px 40px 40px;
    max-width: 100%;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(24, 21, 21, 0.1);
}

.mobile-nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.3px;
    display: block;
    padding: 20px 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-menu a:hover {
    opacity: 0.6;
}

.mobile-nav-menu a:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: -2px;
    border-radius: 2px;
}


/* Hero Section */
.hero {
    margin-top: 82px;
    padding: 120px 0;
    text-align: left;
}

.hero-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-pronunciation {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
    letter-spacing: -1px;
}

.hero-meaning {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 40px;
    text-align: left;
}

/* Team Section */
.team-content {
    max-width: 800px;
    margin: 0;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-member-photo {
    width: 360px;
    height: 360px;
    object-fit: cover;
    margin-bottom: 12px;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.team-member-photo:hover {
    opacity: 0.9;
}

.team-member-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.team-member-role {
    font-size: 12px;
    font-weight: 400;
    color: var(--black);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Portfolio Section */
.portfolio-content {
    max-width: 1000px;
    margin: 0;
}

.portfolio-properties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin: 0;
}

.portfolio-property {
    display: flex;
    flex-direction: column;
}

.portfolio-image {
    margin-bottom: 20px;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 5px;
}

.portfolio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.portfolio-photo:hover {
    opacity: 0.95;
}

.property-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-address {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 0;
}

.property-date {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    opacity: 0.7;
    margin: 0;
    letter-spacing: 0.5px;
}

.property-tenants {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(24, 21, 21, 0.1);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tenant {
    display: flex;
    flex-direction: column;
}

.tenant-slider {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    outline: none;
}

.tenant-slider:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.tenant-slides {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.tenant-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: block;
}

.tenant-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(24, 21, 21, 0.2);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    outline: none;
}

.slider-btn:focus-visible {
    opacity: 1;
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.tenant-slider:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--white);
    border-color: var(--black);
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tenant-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tenant-name {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.2px;
}

.tenant-instagram {
    color: var(--black);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 4px;
    border-radius: 2px;
    min-width: 24px;
    min-height: 24px;
}

.tenant-instagram:hover {
    opacity: 1;
}

.tenant-instagram:focus-visible {
    opacity: 1;
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.tenant-instagram svg {
    width: 16px;
    height: 16px;
}

/* Contact Section */
.contact-content {
    max-width: 700px;
    margin: 0;
    text-align: left;
}

.contact-info {
    padding: 0;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-info a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    transition: opacity 0.3s ease;
    padding-bottom: 1px;
}

.contact-info a:hover {
    opacity: 0.6;
}

.contact-info a:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
    border-radius: 2px;
}

.contact-email {
    margin-top: 24px;
}

/* Footer */
.footer {
    padding: 40px 0;
    /* border-top: 1px solid rgba(24, 21, 21, 0.1); */
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        scroll-padding-top: 70px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .container {
        padding: 0 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-brand h1 {
        font-size: 16px;
    }

    .mobile-menu-overlay {
        top: 70px;
    }

    .mobile-menu {
        padding: 20px 24px 40px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-pronunciation {
        font-size: 20px;
    }

    .hero-meaning {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .portfolio-properties {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .property-address {
        font-size: 18px;
    }

    .property-date {
        font-size: 13px;
    }

    .property-tenants {
        gap: 30px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .tenant-name {
        font-size: 13px;
    }

    .slider-btn {
        opacity: 1;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .team-member-photo {
        width: 100%;
        max-width: 360px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

}

@media (max-width: 480px) {
    body {
        scroll-padding-top: 60px;
    }

    .nav-brand h1 {
        font-size: 16px;
    }

    .nav-menu {
        gap: 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-pronunciation {
        font-size: 16px;
    }

    .hero-meaning {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

