.property {
    padding: 120px 0;
    background-color: var(--background);
    overflow: hidden;
}

.property-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.property-left {
    flex: 1;
}

.property-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 24px;
    display: block;
}

.property-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 24px;
}

.property-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 520px;
}

.property-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.property-diagram {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Only hide for animation when JS is available */
.js-loaded .property-diagram {
    opacity: 0;
}

.property-diagram.visible {
    opacity: 1;
}

.diagram-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: all 0.6s ease;
}

.js-loaded .diagram-node {
    opacity: 0;
    transform: scale(0.8);
}

.diagram-node.visible {
    opacity: 1;
    transform: scale(1);
}

.node-icon {
    width: 80px;
    height: 80px;
    border: 1.5px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.node-icon:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 24px rgba(184, 134, 11, 0.12);
}

.node-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
    max-width: 140px;
    line-height: 1.4;
}

.diagram-arrow {
    flex-shrink: 0;
}

.arrow-svg {
    width: 120px;
    height: 24px;
}

.arrow-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.2s ease;
}

.arrow-line.drawn {
    stroke-dashoffset: 0;
}

.arrow-head {
    opacity: 0;
    transition: opacity 0.4s ease 1s;
}

.arrow-head.visible {
    opacity: 1;
}
